diff --git a/packages/engine-formula/src/functions/cube/cubekpimember/index.ts b/packages/engine-formula/src/functions/cube/cubekpimember/index.ts new file mode 100644 index 0000000000..198a4a0964 --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubekpimember/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubekpimember extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 4; + + // TODO: Implement host-provided cube connections and KPI metadata lookup. +} diff --git a/packages/engine-formula/src/functions/cube/cubemember/index.ts b/packages/engine-formula/src/functions/cube/cubemember/index.ts new file mode 100644 index 0000000000..64f9fb109f --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubemember/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubemember extends NotImplementedFunction { + override minParams = 2; + + override maxParams = 3; + + // TODO: Implement host-provided cube connections and MDX member evaluation. +} diff --git a/packages/engine-formula/src/functions/cube/cubememberproperty/index.ts b/packages/engine-formula/src/functions/cube/cubememberproperty/index.ts new file mode 100644 index 0000000000..e594dd4068 --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubememberproperty/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubememberproperty extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 3; + + // TODO: Implement host-provided cube connections and member property lookup. +} diff --git a/packages/engine-formula/src/functions/cube/cuberankedmember/index.ts b/packages/engine-formula/src/functions/cube/cuberankedmember/index.ts new file mode 100644 index 0000000000..4571d3691c --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cuberankedmember/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cuberankedmember extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 4; + + // TODO: Implement host-provided cube connections and ranked MDX set evaluation. +} diff --git a/packages/engine-formula/src/functions/cube/cubeset/index.ts b/packages/engine-formula/src/functions/cube/cubeset/index.ts new file mode 100644 index 0000000000..1f3dbd0bc9 --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubeset/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubeset extends NotImplementedFunction { + override minParams = 2; + + override maxParams = 5; + + // TODO: Implement host-provided cube connections, MDX set evaluation, and sorting. +} diff --git a/packages/engine-formula/src/functions/cube/cubesetcount/index.ts b/packages/engine-formula/src/functions/cube/cubesetcount/index.ts new file mode 100644 index 0000000000..f6b074d1a5 --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubesetcount/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubesetcount extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 1; + + // TODO: Implement cube set materialization and item counting. +} diff --git a/packages/engine-formula/src/functions/cube/cubevalue/index.ts b/packages/engine-formula/src/functions/cube/cubevalue/index.ts new file mode 100644 index 0000000000..65df048808 --- /dev/null +++ b/packages/engine-formula/src/functions/cube/cubevalue/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Cubevalue extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 255; + + // TODO: Implement host-provided cube connections and aggregate value evaluation. +} diff --git a/packages/engine-formula/src/functions/cube/function-map.ts b/packages/engine-formula/src/functions/cube/function-map.ts index 4e243e50f4..96bbbe677a 100644 --- a/packages/engine-formula/src/functions/cube/function-map.ts +++ b/packages/engine-formula/src/functions/cube/function-map.ts @@ -14,4 +14,21 @@ * limitations under the License. */ -export const functionCube = []; +// import { Cubekpimember } from './cubekpimember'; +// import { Cubemember } from './cubemember'; +// import { Cubememberproperty } from './cubememberproperty'; +// import { Cuberankedmember } from './cuberankedmember'; +// import { Cubeset } from './cubeset'; +// import { Cubesetcount } from './cubesetcount'; +// import { Cubevalue } from './cubevalue'; +// import { FUNCTION_NAMES_CUBE } from './function-names'; + +export const functionCube = [ + // [Cubekpimember, FUNCTION_NAMES_CUBE.CUBEKPIMEMBER], + // [Cubemember, FUNCTION_NAMES_CUBE.CUBEMEMBER], + // [Cubememberproperty, FUNCTION_NAMES_CUBE.CUBEMEMBERPROPERTY], + // [Cuberankedmember, FUNCTION_NAMES_CUBE.CUBERANKEDMEMBER], + // [Cubeset, FUNCTION_NAMES_CUBE.CUBESET], + // [Cubesetcount, FUNCTION_NAMES_CUBE.CUBESETCOUNT], + // [Cubevalue, FUNCTION_NAMES_CUBE.CUBEVALUE], +]; diff --git a/packages/engine-formula/src/functions/financial/amordegrc/index.ts b/packages/engine-formula/src/functions/financial/amordegrc/index.ts new file mode 100644 index 0000000000..1d51abbe4b --- /dev/null +++ b/packages/engine-formula/src/functions/financial/amordegrc/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Amordegrc extends NotImplementedFunction { + override minParams = 6; + + override maxParams = 7; + + // TODO: Implement French declining-balance depreciation with Excel-compatible date and basis rules. +} diff --git a/packages/engine-formula/src/functions/financial/function-map.ts b/packages/engine-formula/src/functions/financial/function-map.ts index 140c484384..007c7d739d 100644 --- a/packages/engine-formula/src/functions/financial/function-map.ts +++ b/packages/engine-formula/src/functions/financial/function-map.ts @@ -16,6 +16,7 @@ import { Accrint } from './accrint'; import { Accrintm } from './accrintm'; +// import { Amordegrc } from './amordegrc'; import { Amorlinc } from './amorlinc'; import { Coupdaybs } from './coupdaybs'; import { Coupdays } from './coupdays'; @@ -73,6 +74,7 @@ import { Yieldmat } from './yieldmat'; export const functionFinancial = [ [Accrint, FUNCTION_NAMES_FINANCIAL.ACCRINT], [Accrintm, FUNCTION_NAMES_FINANCIAL.ACCRINTM], + // [Amordegrc, FUNCTION_NAMES_FINANCIAL.AMORDEGRC], [Amorlinc, FUNCTION_NAMES_FINANCIAL.AMORLINC], [Coupdaybs, FUNCTION_NAMES_FINANCIAL.COUPDAYBS], [Coupdays, FUNCTION_NAMES_FINANCIAL.COUPDAYS], diff --git a/packages/engine-formula/src/functions/financial/oddlyield/index.ts b/packages/engine-formula/src/functions/financial/oddlyield/index.ts index b6a74b125a..f4c06b4214 100644 --- a/packages/engine-formula/src/functions/financial/oddlyield/index.ts +++ b/packages/engine-formula/src/functions/financial/oddlyield/index.ts @@ -24,6 +24,7 @@ import { NumberValueObject } from '../../../engine/value-object/primitive-object import { BaseFunction } from '../../base-function'; export class Oddlyield extends BaseFunction { + // TODO(formula-contract): Align these bounds with the seven required arguments plus optional basis used by calculate. override minParams = 8; override maxParams = 9; diff --git a/packages/engine-formula/src/functions/financial/rri/index.ts b/packages/engine-formula/src/functions/financial/rri/index.ts index dd4f988df1..c0b5b411d2 100644 --- a/packages/engine-formula/src/functions/financial/rri/index.ts +++ b/packages/engine-formula/src/functions/financial/rri/index.ts @@ -26,6 +26,7 @@ import { BaseFunction } from '../../base-function'; export class Rri extends BaseFunction { override minParams = 3; + // TODO(formula-contract): Restrict the runtime maximum to the three documented arguments handled by calculate. override maxParams = 6; override calculate(nper: BaseValueObject, pv: BaseValueObject, fv: BaseValueObject): BaseValueObject { diff --git a/packages/engine-formula/src/functions/information/function-map.ts b/packages/engine-formula/src/functions/information/function-map.ts index 96b2a16e80..3856e0af61 100644 --- a/packages/engine-formula/src/functions/information/function-map.ts +++ b/packages/engine-formula/src/functions/information/function-map.ts @@ -17,6 +17,7 @@ import { Cell } from './cell'; import { ErrorType } from './error-type'; import { FUNCTION_NAMES_INFORMATION } from './function-names'; +// import { Info } from './info'; import { Isbetween } from './isbetween'; import { Isblank } from './isblank'; import { Isdate } from './isdate'; @@ -30,6 +31,7 @@ import { Isna } from './isna'; import { Isnontext } from './isnontext'; import { Isnumber } from './isnumber'; import { Isodd } from './isodd/isodd'; +// import { Isomitted } from './isomitted'; import { Isref } from './isref'; import { Istext } from './istext'; import { Isurl } from './isurl'; @@ -42,6 +44,7 @@ import { Type } from './type'; export const functionInformation = [ [Cell, FUNCTION_NAMES_INFORMATION.CELL], [ErrorType, FUNCTION_NAMES_INFORMATION.ERROR_TYPE], + // [Info, FUNCTION_NAMES_INFORMATION.INFO], [Isbetween, FUNCTION_NAMES_INFORMATION.ISBETWEEN], [Isblank, FUNCTION_NAMES_INFORMATION.ISBLANK], [Isdate, FUNCTION_NAMES_INFORMATION.ISDATE], @@ -55,6 +58,7 @@ export const functionInformation = [ [Isnontext, FUNCTION_NAMES_INFORMATION.ISNONTEXT], [Isnumber, FUNCTION_NAMES_INFORMATION.ISNUMBER], [Isodd, FUNCTION_NAMES_INFORMATION.ISODD], + // [Isomitted, FUNCTION_NAMES_INFORMATION.ISOMITTED], [Isref, FUNCTION_NAMES_INFORMATION.ISREF], [Istext, FUNCTION_NAMES_INFORMATION.ISTEXT], [Isurl, FUNCTION_NAMES_INFORMATION.ISURL], diff --git a/packages/engine-formula/src/functions/information/info/index.ts b/packages/engine-formula/src/functions/information/info/index.ts new file mode 100644 index 0000000000..8f53156ba9 --- /dev/null +++ b/packages/engine-formula/src/functions/information/info/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Info extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 1; + + // TODO: Implement a host-controlled allowlist of supported environment information. +} diff --git a/packages/engine-formula/src/functions/information/isomitted/index.ts b/packages/engine-formula/src/functions/information/isomitted/index.ts new file mode 100644 index 0000000000..14c9f32dae --- /dev/null +++ b/packages/engine-formula/src/functions/information/isomitted/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Isomitted extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 1; + + // TODO: Implement omitted-argument metadata propagation for LAMBDA evaluation. +} diff --git a/packages/engine-formula/src/functions/logical/ifs/index.ts b/packages/engine-formula/src/functions/logical/ifs/index.ts index ba38417f91..134908bfb8 100644 --- a/packages/engine-formula/src/functions/logical/ifs/index.ts +++ b/packages/engine-formula/src/functions/logical/ifs/index.ts @@ -25,6 +25,7 @@ import { BaseFunction } from '../../base-function'; export class Ifs extends BaseFunction { override minParams = 2; + // TODO(formula-contract): Restrict the maximum to 254 so condition/value pairs cannot be truncated at an odd count. override maxParams = 255; override calculate(...params: BaseValueObject[]) { diff --git a/packages/engine-formula/src/functions/logical/switch/index.ts b/packages/engine-formula/src/functions/logical/switch/index.ts index 1c1d71fdab..55b77ce821 100644 --- a/packages/engine-formula/src/functions/logical/switch/index.ts +++ b/packages/engine-formula/src/functions/logical/switch/index.ts @@ -25,6 +25,7 @@ import { BaseFunction } from '../../base-function'; export class Switch extends BaseFunction { override minParams = 3; + // TODO(formula-contract): Enforce the documented 255-argument maximum instead of inheriting the unlimited default. override calculate(expression: BaseValueObject, ...args: BaseValueObject[]) { if (expression.isError()) { return expression; diff --git a/packages/engine-formula/src/functions/lookup/function-map.ts b/packages/engine-formula/src/functions/lookup/function-map.ts index 883c1709e3..820741cbd4 100644 --- a/packages/engine-formula/src/functions/lookup/function-map.ts +++ b/packages/engine-formula/src/functions/lookup/function-map.ts @@ -27,6 +27,7 @@ import { Expand } from './expand'; import { Filter } from './filter'; import { Formulatext } from './formulatext'; import { FUNCTION_NAMES_LOOKUP } from './function-names'; +// import { Getpivotdata } from './getpivotdata'; import { Hlookup } from './hlookup'; import { Hstack } from './hstack'; import { Hyperlink } from './hyperlink'; @@ -38,6 +39,7 @@ import { Match } from './match'; import { Offset } from './offset'; import { Row } from './row'; import { Rows } from './rows'; +// import { Rtd } from './rtd'; import { Sort } from './sort'; import { Sortby } from './sortby'; import { Take } from './take'; @@ -65,6 +67,7 @@ export const functionLookup = [ [Expand, FUNCTION_NAMES_LOOKUP.EXPAND], [Filter, FUNCTION_NAMES_LOOKUP.FILTER], [Formulatext, FUNCTION_NAMES_LOOKUP.FORMULATEXT], + // [Getpivotdata, FUNCTION_NAMES_LOOKUP.GETPIVOTDATA], [Hlookup, FUNCTION_NAMES_LOOKUP.HLOOKUP], [Hstack, FUNCTION_NAMES_LOOKUP.HSTACK], [Hyperlink, FUNCTION_NAMES_LOOKUP.HYPERLINK], @@ -74,6 +77,7 @@ export const functionLookup = [ [Lookup, FUNCTION_NAMES_LOOKUP.LOOKUP], [Match, FUNCTION_NAMES_LOOKUP.MATCH], [Offset, FUNCTION_NAMES_LOOKUP.OFFSET], + // [Rtd, FUNCTION_NAMES_LOOKUP.RTD], [Row, FUNCTION_NAMES_LOOKUP.ROW], [Rows, FUNCTION_NAMES_LOOKUP.ROWS], [Sort, FUNCTION_NAMES_LOOKUP.SORT], diff --git a/packages/engine-formula/src/functions/lookup/getpivotdata/index.ts b/packages/engine-formula/src/functions/lookup/getpivotdata/index.ts new file mode 100644 index 0000000000..b4522c8e2d --- /dev/null +++ b/packages/engine-formula/src/functions/lookup/getpivotdata/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Getpivotdata extends NotImplementedFunction { + override minParams = 2; + + override maxParams = 254; + + // TODO: Implement pivot-table context lookup and field/item filtering. +} diff --git a/packages/engine-formula/src/functions/lookup/rtd/index.ts b/packages/engine-formula/src/functions/lookup/rtd/index.ts new file mode 100644 index 0000000000..7db7bd2817 --- /dev/null +++ b/packages/engine-formula/src/functions/lookup/rtd/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Rtd extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 255; + + // TODO: Implement a security-reviewed, host-controlled real-time data service. +} diff --git a/packages/engine-formula/src/functions/math/function-map.ts b/packages/engine-formula/src/functions/math/function-map.ts index 703146a214..5574022684 100644 --- a/packages/engine-formula/src/functions/math/function-map.ts +++ b/packages/engine-formula/src/functions/math/function-map.ts @@ -50,6 +50,7 @@ import { FloorPrecise } from './floor-precise'; import { FUNCTION_NAMES_MATH } from './function-names'; import { Gcd } from './gcd'; import { Int } from './int'; +// import { IsoCeiling } from './iso-ceiling'; import { Lcm } from './lcm'; import { Ln } from './ln'; import { Log } from './log'; @@ -133,6 +134,7 @@ export const functionMath = [ [FloorPrecise, FUNCTION_NAMES_MATH.FLOOR_PRECISE], [Gcd, FUNCTION_NAMES_MATH.GCD], [Int, FUNCTION_NAMES_MATH.INT], + // [IsoCeiling, FUNCTION_NAMES_MATH.ISO_CEILING], [Lcm, FUNCTION_NAMES_MATH.LCM], [Ln, FUNCTION_NAMES_MATH.LN], [Log, FUNCTION_NAMES_MATH.LOG], diff --git a/packages/engine-formula/src/functions/math/iso-ceiling/index.ts b/packages/engine-formula/src/functions/math/iso-ceiling/index.ts new file mode 100644 index 0000000000..e93faa7b73 --- /dev/null +++ b/packages/engine-formula/src/functions/math/iso-ceiling/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class IsoCeiling extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 2; + + // TODO: Implement ISO 8601 ceiling semantics and Excel-compatible error handling. +} diff --git a/packages/engine-formula/src/functions/not-implemented-function.ts b/packages/engine-formula/src/functions/not-implemented-function.ts new file mode 100644 index 0000000000..487e818d6a --- /dev/null +++ b/packages/engine-formula/src/functions/not-implemented-function.ts @@ -0,0 +1,29 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type { BaseValueObject } from '../engine/value-object/base-value-object'; +import { ErrorType } from '../basics/error-type'; +import { ErrorValueObject } from '../engine/value-object/base-value-object'; +import { BaseFunction } from './base-function'; + +/** + * Shared behavior for registered functions whose runtime integration is not implemented yet. + */ +export abstract class NotImplementedFunction extends BaseFunction { + override calculate(..._variants: BaseValueObject[]): BaseValueObject { + return ErrorValueObject.create(ErrorType.NA); + } +} diff --git a/packages/engine-formula/src/functions/statistical/countifs/index.ts b/packages/engine-formula/src/functions/statistical/countifs/index.ts index 329b99ab16..e94230f610 100644 --- a/packages/engine-formula/src/functions/statistical/countifs/index.ts +++ b/packages/engine-formula/src/functions/statistical/countifs/index.ts @@ -26,6 +26,7 @@ import { BaseFunction } from '../../base-function'; export class Countifs extends BaseFunction { override minParams = 2; + // TODO(formula-contract): Restrict the maximum to 254 so range/criteria pairs cannot be truncated at an odd count. override maxParams = 255; override needsReferenceObject = true; diff --git a/packages/engine-formula/src/functions/statistical/forecast-ets-confint/index.ts b/packages/engine-formula/src/functions/statistical/forecast-ets-confint/index.ts new file mode 100644 index 0000000000..feefe18fd0 --- /dev/null +++ b/packages/engine-formula/src/functions/statistical/forecast-ets-confint/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class ForecastEtsConfint extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 7; + + // TODO: Implement ETS confidence intervals with Excel-compatible defaults. +} diff --git a/packages/engine-formula/src/functions/statistical/forecast-ets-seasonality/index.ts b/packages/engine-formula/src/functions/statistical/forecast-ets-seasonality/index.ts new file mode 100644 index 0000000000..113e045a49 --- /dev/null +++ b/packages/engine-formula/src/functions/statistical/forecast-ets-seasonality/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class ForecastEtsSeasonality extends NotImplementedFunction { + override minParams = 2; + + override maxParams = 4; + + // TODO: Implement ETS seasonality detection and timeline validation. +} diff --git a/packages/engine-formula/src/functions/statistical/forecast-ets-stat/index.ts b/packages/engine-formula/src/functions/statistical/forecast-ets-stat/index.ts new file mode 100644 index 0000000000..103f6e2a21 --- /dev/null +++ b/packages/engine-formula/src/functions/statistical/forecast-ets-stat/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class ForecastEtsStat extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 6; + + // TODO: Implement ETS diagnostic statistics and Excel-compatible statistic types. +} diff --git a/packages/engine-formula/src/functions/statistical/forecast-ets/index.ts b/packages/engine-formula/src/functions/statistical/forecast-ets/index.ts new file mode 100644 index 0000000000..81f864b09d --- /dev/null +++ b/packages/engine-formula/src/functions/statistical/forecast-ets/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class ForecastEts extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 6; + + // TODO: Implement exponential-triple-smoothing forecasting and timeline validation. +} diff --git a/packages/engine-formula/src/functions/statistical/function-map.ts b/packages/engine-formula/src/functions/statistical/function-map.ts index ee23be2fb9..01779ff3d6 100644 --- a/packages/engine-formula/src/functions/statistical/function-map.ts +++ b/packages/engine-formula/src/functions/statistical/function-map.ts @@ -50,6 +50,10 @@ import { FTest } from './f-test'; import { Fisher } from './fisher'; import { Fisherinv } from './fisherinv'; import { Forecast } from './forecast'; +// import { ForecastEts } from './forecast-ets'; +// import { ForecastEtsConfint } from './forecast-ets-confint'; +// import { ForecastEtsSeasonality } from './forecast-ets-seasonality'; +// import { ForecastEtsStat } from './forecast-ets-stat'; import { Frequency } from './frequency'; import { FUNCTION_NAMES_STATISTICAL } from './function-names'; import { Gamma } from './gamma'; @@ -160,6 +164,10 @@ export const functionStatistical = [ [Fisher, FUNCTION_NAMES_STATISTICAL.FISHER], [Fisherinv, FUNCTION_NAMES_STATISTICAL.FISHERINV], [Forecast, FUNCTION_NAMES_STATISTICAL.FORECAST], + // [ForecastEts, FUNCTION_NAMES_STATISTICAL.FORECAST_ETS], + // [ForecastEtsConfint, FUNCTION_NAMES_STATISTICAL.FORECAST_ETS_CONFINT], + // [ForecastEtsSeasonality, FUNCTION_NAMES_STATISTICAL.FORECAST_ETS_SEASONALITY], + // [ForecastEtsStat, FUNCTION_NAMES_STATISTICAL.FORECAST_ETS_STAT], [Forecast, FUNCTION_NAMES_STATISTICAL.FORECAST_LINEAR], [Frequency, FUNCTION_NAMES_STATISTICAL.FREQUENCY], [Gamma, FUNCTION_NAMES_STATISTICAL.GAMMA], diff --git a/packages/engine-formula/src/functions/text/call/index.ts b/packages/engine-formula/src/functions/text/call/index.ts new file mode 100644 index 0000000000..e1b0aec7f6 --- /dev/null +++ b/packages/engine-formula/src/functions/text/call/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Call extends NotImplementedFunction { + override minParams = 3; + + override maxParams = 255; + + // TODO: Implement only through a security-reviewed host integration; formula evaluation must not invoke arbitrary native code. +} diff --git a/packages/engine-formula/src/functions/text/euroconvert/index.ts b/packages/engine-formula/src/functions/text/euroconvert/index.ts new file mode 100644 index 0000000000..202f49a442 --- /dev/null +++ b/packages/engine-formula/src/functions/text/euroconvert/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Euroconvert extends NotImplementedFunction { + override minParams = 4; + + override maxParams = 5; + + // TODO: Implement the legacy euro conversion table, triangulation, and currency-specific rounding. +} diff --git a/packages/engine-formula/src/functions/text/function-map.ts b/packages/engine-formula/src/functions/text/function-map.ts index b9b2799c40..e73c878795 100644 --- a/packages/engine-formula/src/functions/text/function-map.ts +++ b/packages/engine-formula/src/functions/text/function-map.ts @@ -17,6 +17,7 @@ import { Arraytotext } from './arraytotext'; import { Asc } from './asc'; import { Bahttext } from './bahttext'; +// import { Call } from './call'; import { Char } from './char'; import { Clean } from './clean'; import { Code } from './code'; @@ -24,6 +25,7 @@ import { Concat } from './concat'; import { Concatenate } from './concatenate'; import { Dbcs } from './dbcs'; import { Dollar } from './dollar'; +// import { Euroconvert } from './euroconvert'; import { Exact } from './exact'; import { Find } from './find'; import { Findb } from './findb'; @@ -38,10 +40,12 @@ import { Mid } from './mid'; import { Midb } from './midb'; import { Numberstring } from './numberstring'; import { Numbervalue } from './numbervalue'; +// import { Phonetic } from './phonetic'; import { Proper } from './proper'; import { Regexextract } from './regexextract'; import { Regexmatch } from './regexmatch'; import { Regexreplace } from './regexreplace'; +// import { RegisterId } from './register-id'; import { Replace } from './replace'; import { Replaceb } from './replaceb'; import { Rept } from './rept'; @@ -67,6 +71,7 @@ export const functionText = [ [Asc, FUNCTION_NAMES_TEXT.ASC], [Arraytotext, FUNCTION_NAMES_TEXT.ARRAYTOTEXT], [Bahttext, FUNCTION_NAMES_TEXT.BAHTTEXT], + // [Call, FUNCTION_NAMES_TEXT.CALL], [Char, FUNCTION_NAMES_TEXT.CHAR], [Clean, FUNCTION_NAMES_TEXT.CLEAN], [Code, FUNCTION_NAMES_TEXT.CODE], @@ -75,6 +80,7 @@ export const functionText = [ [Dbcs, FUNCTION_NAMES_TEXT.DBCS], [Dollar, FUNCTION_NAMES_TEXT.DOLLAR], [Exact, FUNCTION_NAMES_TEXT.EXACT], + // [Euroconvert, FUNCTION_NAMES_TEXT.EUROCONVERT], [Find, FUNCTION_NAMES_TEXT.FIND], [Findb, FUNCTION_NAMES_TEXT.FINDB], [Fixed, FUNCTION_NAMES_TEXT.FIXED], @@ -87,6 +93,7 @@ export const functionText = [ [Midb, FUNCTION_NAMES_TEXT.MIDB], [Numberstring, FUNCTION_NAMES_TEXT.NUMBERSTRING], [Numbervalue, FUNCTION_NAMES_TEXT.NUMBERVALUE], + // [Phonetic, FUNCTION_NAMES_TEXT.PHONETIC], [Regexextract, FUNCTION_NAMES_TEXT.REGEXEXTRACT], [Regexmatch, FUNCTION_NAMES_TEXT.REGEXMATCH], [Regexmatch, FUNCTION_NAMES_TEXT.REGEXTEST], @@ -95,6 +102,7 @@ export const functionText = [ [Replace, FUNCTION_NAMES_TEXT.REPLACE], [Replaceb, FUNCTION_NAMES_TEXT.REPLACEB], [Rept, FUNCTION_NAMES_TEXT.REPT], + // [RegisterId, FUNCTION_NAMES_TEXT.REGISTER_ID], [Right, FUNCTION_NAMES_TEXT.RIGHT], [Rightb, FUNCTION_NAMES_TEXT.RIGHTB], [Search, FUNCTION_NAMES_TEXT.SEARCH], diff --git a/packages/engine-formula/src/functions/text/phonetic/index.ts b/packages/engine-formula/src/functions/text/phonetic/index.ts new file mode 100644 index 0000000000..46bdd913d3 --- /dev/null +++ b/packages/engine-formula/src/functions/text/phonetic/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Phonetic extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 1; + + // TODO: Implement extraction of host-provided phonetic cell metadata. +} diff --git a/packages/engine-formula/src/functions/text/register-id/index.ts b/packages/engine-formula/src/functions/text/register-id/index.ts new file mode 100644 index 0000000000..dd8a1a431b --- /dev/null +++ b/packages/engine-formula/src/functions/text/register-id/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class RegisterId extends NotImplementedFunction { + override minParams = 2; + + override maxParams = 3; + + // TODO: Implement only through a security-reviewed host integration; formula evaluation must not register arbitrary native code. +} diff --git a/packages/engine-formula/src/functions/web/function-map.ts b/packages/engine-formula/src/functions/web/function-map.ts index 8c6d653d0d..ce121e850a 100644 --- a/packages/engine-formula/src/functions/web/function-map.ts +++ b/packages/engine-formula/src/functions/web/function-map.ts @@ -17,8 +17,10 @@ import { Encodeurl } from './encodeurl'; import { Filterxml } from './filterxml'; import { FUNCTION_NAMES_WEB } from './function-names'; +// import { Webservice } from './webservice'; export const functionWeb = [ [Encodeurl, FUNCTION_NAMES_WEB.ENCODEURL], [Filterxml, FUNCTION_NAMES_WEB.FILTERXML], + // [Webservice, FUNCTION_NAMES_WEB.WEBSERVICE], ]; diff --git a/packages/engine-formula/src/functions/web/webservice/__tests__/index.spec.ts b/packages/engine-formula/src/functions/web/webservice/__tests__/index.spec.ts new file mode 100644 index 0000000000..26a7ec38e7 --- /dev/null +++ b/packages/engine-formula/src/functions/web/webservice/__tests__/index.spec.ts @@ -0,0 +1,32 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { describe, expect, it } from 'vitest'; +import { ErrorType } from '../../../../basics/error-type'; +import { StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../util'; +import { FUNCTION_NAMES_WEB } from '../../function-names'; +import { Webservice } from '../index'; + +describe('Test webservice function', () => { + it('returns N/A without issuing a network request until web requests are supported', () => { + const testFunction = new Webservice(FUNCTION_NAMES_WEB.WEBSERVICE); + + const result = testFunction.calculate(StringValueObject.create('https://example.com')); + + expect(getObjectValue(result)).toBe(ErrorType.NA); + }); +}); diff --git a/packages/engine-formula/src/functions/web/webservice/index.ts b/packages/engine-formula/src/functions/web/webservice/index.ts new file mode 100644 index 0000000000..03f649c1b7 --- /dev/null +++ b/packages/engine-formula/src/functions/web/webservice/index.ts @@ -0,0 +1,25 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { NotImplementedFunction } from '../../not-implemented-function'; + +export class Webservice extends NotImplementedFunction { + override minParams = 1; + + override maxParams = 1; + + // TODO: Implement a security-reviewed, host-controlled web request service and response handling. +} diff --git a/packages/sheets-formula/src/locale/ar-SA.ts b/packages/sheets-formula/src/locale/ar-SA.ts index 6cdf1eabbf..f6f67295fa 100644 --- a/packages/sheets-formula/src/locale/ar-SA.ts +++ b/packages/sheets-formula/src/locale/ar-SA.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/ar-SA'; +import compatibility from './function-list/compatibility/ar-SA'; +import cube from './function-list/cube/ar-SA'; +import database from './function-list/database/ar-SA'; +import date from './function-list/date/ar-SA'; +import engineering from './function-list/engineering/ar-SA'; +import financial from './function-list/financial/ar-SA'; +import information from './function-list/information/ar-SA'; +import logical from './function-list/logical/ar-SA'; +import lookup from './function-list/lookup/ar-SA'; +import math from './function-list/math/ar-SA'; +import statistical from './function-list/statistical/ar-SA'; +import text from './function-list/text/ar-SA'; +import univer from './function-list/univer/ar-SA'; +import web from './function-list/web/ar-SA'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/de-DE.ts b/packages/sheets-formula/src/locale/de-DE.ts index 9b8f36c734..4c2a8bfaa8 100644 --- a/packages/sheets-formula/src/locale/de-DE.ts +++ b/packages/sheets-formula/src/locale/de-DE.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/de-DE'; +import compatibility from './function-list/compatibility/de-DE'; +import cube from './function-list/cube/de-DE'; +import database from './function-list/database/de-DE'; +import date from './function-list/date/de-DE'; +import engineering from './function-list/engineering/de-DE'; +import financial from './function-list/financial/de-DE'; +import information from './function-list/information/de-DE'; +import logical from './function-list/logical/de-DE'; +import lookup from './function-list/lookup/de-DE'; +import math from './function-list/math/de-DE'; +import statistical from './function-list/statistical/de-DE'; +import text from './function-list/text/de-DE'; +import univer from './function-list/univer/de-DE'; +import web from './function-list/web/de-DE'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/fa-IR.ts b/packages/sheets-formula/src/locale/fa-IR.ts index f3379e2b91..0c554ad820 100644 --- a/packages/sheets-formula/src/locale/fa-IR.ts +++ b/packages/sheets-formula/src/locale/fa-IR.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/fa-IR'; -import compatibility from './function-list/compatibility/fa-IR'; -import cube from './function-list/cube/fa-IR'; -import database from './function-list/database/fa-IR'; -import date from './function-list/date/fa-IR'; -import engineering from './function-list/engineering/fa-IR'; -import financial from './function-list/financial/fa-IR'; -import information from './function-list/information/fa-IR'; -import logical from './function-list/logical/fa-IR'; -import lookup from './function-list/lookup/fa-IR'; -import math from './function-list/math/fa-IR'; -import statistical from './function-list/statistical/fa-IR'; -import text from './function-list/text/fa-IR'; -import univer from './function-list/univer/fa-IR'; -import web from './function-list/web/fa-IR'; +import array from './function-list/array/en-US'; +import compatibility from './function-list/compatibility/en-US'; +import cube from './function-list/cube/en-US'; +import database from './function-list/database/en-US'; +import date from './function-list/date/en-US'; +import engineering from './function-list/engineering/en-US'; +import financial from './function-list/financial/en-US'; +import information from './function-list/information/en-US'; +import logical from './function-list/logical/en-US'; +import lookup from './function-list/lookup/en-US'; +import math from './function-list/math/en-US'; +import statistical from './function-list/statistical/en-US'; +import text from './function-list/text/en-US'; +import univer from './function-list/univer/en-US'; +import web from './function-list/web/en-US'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/function-list/array/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/array/ar-SA.ts new file mode 100644 index 0000000000..138c60c0a1 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/ar-SA.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'يقيّد ناتج صفيف إلى حجم محدد.', + abstract: 'يقيّد ناتج صفيف إلى حجم محدد.', + links: [{ title: 'التعليمات', url: 'https://support.google.com/docs/answer/3267036?hl=ar' }], + functionParameter: { + inputRange: { name: 'نطاق_الإدخال', detail: 'النطاق المراد تقييده.' }, + numRows: { name: 'عدد_الصفوف', detail: 'عدد الصفوف التي يجب أن يحتوي عليها الناتج.' }, + numCols: { name: 'عدد_الأعمدة', detail: 'عدد الأعمدة التي يجب أن يحتوي عليها الناتج.' }, + }, + }, + FLATTEN: { + description: 'يجمع كل القيم من نطاق واحد أو أكثر في عمود واحد.', + abstract: 'يجمع كل القيم من نطاق واحد أو أكثر في عمود واحد.', + links: [{ title: 'التعليمات', url: 'https://support.google.com/docs/answer/10307761?hl=ar' }], + functionParameter: { + range1: { name: 'النطاق1', detail: 'النطاق الأول المراد جمعه.' }, + range2: { name: 'النطاق2', detail: '[اختياري، قابل للتكرار] نطاقات إضافية مراد جمعها.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/array/ca-ES.ts index 54d5641993..3ebdac76d4 100644 --- a/packages/sheets-formula/src/locale/function-list/array/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/array/ca-ES.ts @@ -23,11 +23,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=ca', }, ], functionParameter: { - inputRange: { name: 'interval_entrada', detail: "L'interval a restringir." }, + inputRange: { name: 'interval_entrada', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100; 1; TRUE); 10; 6)' }, numRows: { name: 'num_files', detail: 'El nombre de files que ha de contenir el resultat.' }, numCols: { name: 'num_columnes', detail: 'El nombre de columnes que ha de contenir el resultat' }, }, @@ -38,7 +38,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=ca', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/array/de-DE.ts b/packages/sheets-formula/src/locale/function-list/array/de-DE.ts new file mode 100644 index 0000000000..8bb57c29d6 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/de-DE.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Beschränkt ein Array-Ergebnis auf eine angegebene Größe.', + abstract: 'Beschränkt ein Array-Ergebnis auf eine angegebene Größe.', + links: [{ title: 'Anleitung', url: 'https://support.google.com/docs/answer/3267036?hl=de' }], + functionParameter: { + inputRange: { name: 'Eingabebereich', detail: 'Der zu beschränkende Bereich.' }, + numRows: { name: 'Zeilenanzahl', detail: 'Die Anzahl der Zeilen, die das Ergebnis enthalten soll.' }, + numCols: { name: 'Spaltenanzahl', detail: 'Die Anzahl der Spalten, die das Ergebnis enthalten soll.' }, + }, + }, + FLATTEN: { + description: 'Fasst alle Werte aus einem oder mehreren Bereichen in einer einzigen Spalte zusammen.', + abstract: 'Fasst alle Werte aus einem oder mehreren Bereichen in einer einzigen Spalte zusammen.', + links: [{ title: 'Anleitung', url: 'https://support.google.com/docs/answer/10307761?hl=de' }], + functionParameter: { + range1: { name: 'Bereich1', detail: 'Der erste zusammenzufassende Bereich.' }, + range2: { name: 'Bereich2', detail: '[optional, wiederholbar] Weitere zusammenzufassende Bereiche.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/en-US.ts b/packages/sheets-formula/src/locale/function-list/array/en-US.ts index 32af75931b..922b10e72b 100644 --- a/packages/sheets-formula/src/locale/function-list/array/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/array/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=en', }, ], functionParameter: { @@ -36,12 +36,12 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=en', }, ], functionParameter: { range1: { name: 'range1', detail: 'The first range to flatten.' }, - range2: { name: 'range2', detail: 'Additional ranges to flatten.' }, + range2: { name: 'range2', detail: '[optional] repeatable Additional ranges to flatten.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/es-ES.ts b/packages/sheets-formula/src/locale/function-list/array/es-ES.ts index a0098b8a4c..8e47909967 100644 --- a/packages/sheets-formula/src/locale/function-list/array/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/array/es-ES.ts @@ -23,27 +23,27 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=es', }, ], functionParameter: { - inputRange: { name: 'rango_entrada', detail: 'El rango a restringir.' }, + inputRange: { name: 'rango_entrada', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100, 1, TRUE), 10, 6)' }, numRows: { name: 'num_filas', detail: 'El número de filas que debe contener el resultado.' }, numCols: { name: 'num_columnas', detail: 'El número de columnas que debe contener el resultado' }, }, }, FLATTEN: { - description: 'Aplana todos los valores de uno o más rangos en una sola columna.', - abstract: 'Aplana todos los valores de uno o más rangos en una sola columna.', + description: 'Combina todos los valores de uno o varios intervalos en una sola columna.', + abstract: 'Combina todos los valores de uno o varios intervalos en una sola columna.', links: [ { title: 'Instrucción', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=es', }, ], functionParameter: { - range1: { name: 'rango1', detail: 'El primer rango a aplanar.' }, - range2: { name: 'rango2', detail: 'Rangos adicionales a aplanar.' }, + range1: { name: 'rango1', detail: 'Es el primer intervalo que se va a combinar.' }, + range2: { name: 'rango2', detail: '[opcional] repetible Otros intervalos que se pueden combinar.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/array/fr-FR.ts index 60a22638e2..24baee922d 100644 --- a/packages/sheets-formula/src/locale/function-list/array/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/array/fr-FR.ts @@ -14,8 +14,38 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Limite le résultat d\'un tableau à une taille donnée.', + abstract: 'Limite le résultat d\'un tableau à une taille donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3267036?hl=fr', + }, + ], + functionParameter: { + inputRange: { name: 'input_range', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100, 1, TRUE), 10, 6)' }, + numRows: { name: 'num_rows', detail: 'Le nombre de lignes que le résultat doit contenir.' }, + numCols: { name: 'num_cols', detail: 'Le nombre de colonnes que le résultat doit contenir.' }, + }, + }, + FLATTEN: { + description: 'Agrège toutes les valeurs d\'une ou de plusieurs plages en une seule colonne.', + abstract: 'Agrège toutes les valeurs d\'une ou de plusieurs plages en une seule colonne.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10307761?hl=fr', + }, + ], + functionParameter: { + range1: { name: 'range1', detail: 'Première plage à agréger.' }, + range2: { name: 'range2', detail: '[facultatif] répétable Autres plages à agréger.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/id-ID.ts b/packages/sheets-formula/src/locale/function-list/array/id-ID.ts new file mode 100644 index 0000000000..225e7810b5 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/id-ID.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Membatasi hasil array ke ukuran yang ditentukan.', + abstract: 'Membatasi hasil array ke ukuran yang ditentukan.', + links: [{ title: 'Petunjuk', url: 'https://support.google.com/docs/answer/3267036?hl=id' }], + functionParameter: { + inputRange: { name: 'rentang_input', detail: 'Rentang yang akan dibatasi.' }, + numRows: { name: 'jumlah_baris', detail: 'Jumlah baris yang harus dimuat dalam hasil.' }, + numCols: { name: 'jumlah_kolom', detail: 'Jumlah kolom yang harus dimuat dalam hasil.' }, + }, + }, + FLATTEN: { + description: 'Meratakan semua nilai dari satu atau beberapa rentang menjadi satu kolom.', + abstract: 'Meratakan semua nilai dari satu atau beberapa rentang menjadi satu kolom.', + links: [{ title: 'Petunjuk', url: 'https://support.google.com/docs/answer/10307761?hl=id' }], + functionParameter: { + range1: { name: 'rentang1', detail: 'Rentang pertama yang akan diratakan.' }, + range2: { name: 'rentang2', detail: '[opsional, dapat diulang] Rentang tambahan yang akan diratakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/it-IT.ts b/packages/sheets-formula/src/locale/function-list/array/it-IT.ts new file mode 100644 index 0000000000..f985568dcd --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/it-IT.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Limita il risultato di una matrice alle dimensioni specificate.', + abstract: 'Limita il risultato di una matrice alle dimensioni specificate.', + links: [{ title: 'Istruzioni', url: 'https://support.google.com/docs/answer/3267036?hl=it' }], + functionParameter: { + inputRange: { name: 'intervallo_input', detail: 'L’intervallo da limitare.' }, + numRows: { name: 'numero_righe', detail: 'Il numero di righe che il risultato deve contenere.' }, + numCols: { name: 'numero_colonne', detail: 'Il numero di colonne che il risultato deve contenere.' }, + }, + }, + FLATTEN: { + description: 'Riunisce tutti i valori di uno o più intervalli in una singola colonna.', + abstract: 'Riunisce tutti i valori di uno o più intervalli in una singola colonna.', + links: [{ title: 'Istruzioni', url: 'https://support.google.com/docs/answer/10307761?hl=it' }], + functionParameter: { + range1: { name: 'intervallo1', detail: 'Il primo intervallo da riunire.' }, + range2: { name: 'intervallo2', detail: '[facoltativo, ripetibile] Altri intervalli da riunire.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/array/ja-JP.ts index d2eaa14bcd..42d123dd15 100644 --- a/packages/sheets-formula/src/locale/function-list/array/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/array/ja-JP.ts @@ -18,32 +18,32 @@ import type enUS from './en-US'; const locale: typeof enUS = { ARRAY_CONSTRAIN: { - description: '配列の結果を指定したサイズに抑えます', - abstract: '配列の結果を指定したサイズに抑えます', + description: '配列の結果を指定したサイズに抑えます。', + abstract: '配列の結果を指定したサイズに抑えます。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3267036?hl=ja&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=ja', }, ], functionParameter: { - inputRange: { name: '配列', detail: '制約対象の範囲です。' }, + inputRange: { name: '配列', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100, 1, TRUE), 10, 6)' }, numRows: { name: '行の数', detail: '結果に含める行の数です。' }, numCols: { name: '列の数', detail: '結果に含める列の数です。' }, }, }, FLATTEN: { - description: '1 つ以上の範囲に含まれるすべての値を、単一の列にフラット化します', - abstract: '1 つ以上の範囲に含まれるすべての値を、単一の列にフラット化します', + description: '1 つ以上の範囲に含まれるすべての値を、単一の列にフラット化します。', + abstract: '1 つ以上の範囲に含まれるすべての値を、単一の列にフラット化します。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/10307761?hl=ja&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=ja', }, ], functionParameter: { range1: { name: '範囲1', detail: 'フラット化する最初の範囲です。' }, - range2: { name: '範囲2', detail: 'フラット化する追加の範囲です。' }, + range2: { name: '範囲2', detail: '[省略可] 反復可能 フラット化する追加の範囲です。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/array/ko-KR.ts index 1456023e29..7cde035ac0 100644 --- a/packages/sheets-formula/src/locale/function-list/array/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/array/ko-KR.ts @@ -27,14 +27,14 @@ const locale: typeof enUS = { }, ], functionParameter: { - inputRange: { name: 'input_range', detail: '제한할 범위입니다.' }, + inputRange: { name: 'input_range', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100, 1, TRUE), 10, 6)' }, numRows: { name: 'num_rows', detail: '결과에 포함할 행의 수입니다.' }, numCols: { name: 'num_cols', detail: '결과에 포함할 열의 수입니다.' }, }, }, FLATTEN: { - description: '하나 이상의 범위에서 모든 값을 하나의 열로 평면화합니다.', - abstract: '하나 이상의 범위에서 모든 값을 하나의 열로 평면화합니다.', + description: '하나 이상의 범위에 있는 모든 값을 단일 열로 평면화합니다.', + abstract: '하나 이상의 범위에 있는 모든 값을 단일 열로 평면화합니다.', links: [ { title: '사용법', @@ -42,8 +42,8 @@ const locale: typeof enUS = { }, ], functionParameter: { - range1: { name: 'range1', detail: '첫 번째로 평면화할 범위입니다.' }, - range2: { name: 'range2', detail: '추가로 평면화할 범위입니다.' }, + range1: { name: 'range1', detail: '평면화할 첫 번째 범위입니다.' }, + range2: { name: 'range2', detail: '[선택사항] 반복 가능 평면화할 추가 범위입니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/array/pl-PL.ts new file mode 100644 index 0000000000..3cd4a01e2a --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/pl-PL.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Ogranicza wynik tablicowy do określonego rozmiaru.', + abstract: 'Ogranicza wynik tablicowy do określonego rozmiaru.', + links: [{ title: 'Instrukcje', url: 'https://support.google.com/docs/answer/3267036?hl=pl' }], + functionParameter: { + inputRange: { name: 'zakres_wejściowy', detail: 'Zakres, który ma zostać ograniczony.' }, + numRows: { name: 'liczba_wierszy', detail: 'Liczba wierszy, które ma zawierać wynik.' }, + numCols: { name: 'liczba_kolumn', detail: 'Liczba kolumn, które ma zawierać wynik.' }, + }, + }, + FLATTEN: { + description: 'Spłaszcza wszystkie wartości z co najmniej jednego zakresu do jednej kolumny.', + abstract: 'Spłaszcza wszystkie wartości z co najmniej jednego zakresu do jednej kolumny.', + links: [{ title: 'Instrukcje', url: 'https://support.google.com/docs/answer/10307761?hl=pl' }], + functionParameter: { + range1: { name: 'zakres1', detail: 'Pierwszy zakres do spłaszczenia.' }, + range2: { name: 'zakres2', detail: '[opcjonalny, powtarzalny] Dodatkowe zakresy do spłaszczenia.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/array/pt-BR.ts new file mode 100644 index 0000000000..2ac1600b49 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/array/pt-BR.ts @@ -0,0 +1,41 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ARRAY_CONSTRAIN: { + description: 'Restringe o resultado de uma matriz ao tamanho especificado.', + abstract: 'Restringe o resultado de uma matriz ao tamanho especificado.', + links: [{ title: 'Instruções', url: 'https://support.google.com/docs/answer/3267036?hl=pt-BR' }], + functionParameter: { + inputRange: { name: 'intervalo_de_entrada', detail: 'O intervalo a ser restringido.' }, + numRows: { name: 'número_de_linhas', detail: 'O número de linhas que o resultado deve conter.' }, + numCols: { name: 'número_de_colunas', detail: 'O número de colunas que o resultado deve conter.' }, + }, + }, + FLATTEN: { + description: 'Reúne todos os valores de um ou mais intervalos em uma única coluna.', + abstract: 'Reúne todos os valores de um ou mais intervalos em uma única coluna.', + links: [{ title: 'Instruções', url: 'https://support.google.com/docs/answer/10307761?hl=pt-BR' }], + functionParameter: { + range1: { name: 'intervalo1', detail: 'O primeiro intervalo a ser reunido.' }, + range2: { name: 'intervalo2', detail: '[opcional, repetível] Outros intervalos a serem reunidos.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/array/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/array/ru-RU.ts index fed34ebc2b..d87e9f40c4 100644 --- a/packages/sheets-formula/src/locale/function-list/array/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/array/ru-RU.ts @@ -18,32 +18,32 @@ import type enUS from './en-US'; const locale: typeof enUS = { ARRAY_CONSTRAIN: { - description: 'Задает размер массива, в который будут помещены результаты', - abstract: 'Задает размер массива, в который будут помещены результаты', + description: 'Задает размер массива, в который будут помещены результаты.', + abstract: 'Задает размер массива, в который будут помещены результаты.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3267036?hl=ru&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=ru', }, ], functionParameter: { - inputRange: { name: 'массив', detail: 'Диапазон для ограничения.' }, + inputRange: { name: 'массив', detail: 'ARRAY_CONSTRAIN(SORT(A1:F100, 1, TRUE), 10, 6)' }, numRows: { name: 'количество строк', detail: 'Количество строк, которое должен содержать результат.' }, numCols: { name: 'количество столбцов', detail: 'Количество столбцов, которое должен содержать результат.' }, }, }, FLATTEN: { - description: 'Объединяет все значения из одного или нескольких диапазонов в один столбец', - abstract: 'Объединяет все значения из одного или нескольких диапазонов в один столбец', + description: 'Объединяет все значения из одного или нескольких диапазонов в один столбец.', + abstract: 'Объединяет все значения из одного или нескольких диапазонов в один столбец.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/10307761?hl=ru&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=ru', }, ], functionParameter: { range1: { name: 'диапазон1', detail: 'Первый диапазон, который необходимо выровнять.' }, - range2: { name: 'диапазон2', detail: 'Дополнительные диапазоны, которые необходимо выровнять.' }, + range2: { name: 'диапазон2', detail: 'При необходимости можно добавлять другие диапазоны. Дополнительные диапазоны, которые необходимо выровнять.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/array/sk-SK.ts index 0860f24299..acf455c9bb 100644 --- a/packages/sheets-formula/src/locale/function-list/array/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/array/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=sk', }, ], functionParameter: { @@ -38,7 +38,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=sk', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/array/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/array/vi-VN.ts index e6c9f78bb6..7f559a2c18 100644 --- a/packages/sheets-formula/src/locale/function-list/array/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/array/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Giảng dạy', - url: 'https://support.google.com/docs/answer/3267036?hl=vi&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=vi', }, ], functionParameter: { @@ -38,12 +38,12 @@ const locale: typeof enUS = { links: [ { title: 'Giảng dạy', - url: 'https://support.google.com/docs/answer/10307761?hl=vi&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=vi', }, ], 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.' }, + range2: { name: 'dải ô 2', detail: '[không bắt buộc] có thể lặp lại Các dải ô bổ sung để làm phẳng.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/array/zh-CN.ts index a1ef1606e2..285c7ac3bc 100644 --- a/packages/sheets-formula/src/locale/function-list/array/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/array/zh-CN.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { ARRAY_CONSTRAIN: { - description: '以给定值约束数组结果的大小', - abstract: '以给定值约束数组结果的大小', + description: '以给定值约束数组结果的大小。', + abstract: '以给定值约束数组结果的大小。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3267036?hl=zh-Hans&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=zh-Hans', }, ], functionParameter: { @@ -33,17 +33,17 @@ const locale: typeof enUS = { }, }, FLATTEN: { - description: '将一个或多个范围中的所有值合并到单列', - abstract: '将一个或多个范围中的所有值合并到单列', + description: '将一个或多个范围中的所有值合并到单列。', + abstract: '将一个或多个范围中的所有值合并到单列。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hans', }, ], functionParameter: { range1: { name: '范围1', detail: '要合并的第一个范围。' }, - range2: { name: '范围2', detail: '要合并的其他范围。' }, + range2: { name: '范围2', detail: '[可选] 可重复 要合并的其他范围。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/array/zh-TW.ts index c919fabd56..2afa758b91 100644 --- a/packages/sheets-formula/src/locale/function-list/array/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/array/zh-TW.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { ARRAY_CONSTRAIN: { - description: '限制特定大小的陣列結果', - abstract: '限制特定大小的陣列結果', + description: '限制特定大小的陣列結果。', + abstract: '限制特定大小的陣列結果。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3267036?hl=zh-Hant&sjid=8484774178571403392-AP', + url: 'https://support.google.com/docs/answer/3267036?hl=zh-Hant', }, ], functionParameter: { @@ -33,17 +33,17 @@ const locale: typeof enUS = { }, }, FLATTEN: { - description: '將一或多個範圍中的所有值合併至單一欄', - abstract: '將一或多個範圍中的所有值合併至單一欄', + description: '將一或多個範圍中的所有值合併至單一欄。', + abstract: '將一或多個範圍中的所有值合併至單一欄。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hant&sjid=17375453483079636084-AP', + url: 'https://support.google.com/docs/answer/10307761?hl=zh-Hant', }, ], functionParameter: { range1: { name: '範圍1', detail: '第一個要合併的範圍。' }, - range2: { name: '範圍2', detail: '其他要合併的範圍。' }, + range2: { name: '範圍2', detail: '[選用] 可重複 其他要合併的範圍。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/compatibility/ar-SA.ts new file mode 100644 index 0000000000..94e3982f30 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/ar-SA.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'تُرجع دالة كثافة احتمال بيتا التراكمية. يتم بشكلٍ عام استخدام توزيع بيتا لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل فترات اليوم التي يقضيها الأشخاص في مشاهدة التلفزيون.', + abstract: 'تُرجع دالة كثافة احتمال بيتا التراكمية. يتم بشكلٍ عام استخدام توزيع بيتا لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل فترات اليوم التي يقضيها الأشخاص في مشاهدة التلفزيون.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة بين A وB التي يتم تقييم الدالة عندها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي معلمة التوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. وهي معلمة التوزيع.' }, + A: { name: 'A', detail: 'وهي حد أدنى للفاصل الزمني x.' }, + B: { name: 'B', detail: 'اختياري. وهي حد أعلى للفاصل الزمني x.' }, + }, + }, + BETAINV: { + description: 'تُرجع عكس دالة كثافة احتمال بيتا التراكمية لتوزيع بيتا معين. أي إذا كانت probability = BETADIST(x,...)‎، فعندئذٍ تكون BETAINV(probability,...) = x. يمكن استخدام توزيع بيتا في تخطيط المشاريع لتخطيط مواعيد الانتهاء المحتملة عند تعيين الوقت المتوقع للإنهاء وقابلية التغيير.', + abstract: 'تُرجع عكس دالة كثافة احتمال بيتا التراكمية لتوزيع بيتا معين. أي إذا كانت probability = BETADIST(x,...)‎، فعندئذٍ تكون BETAINV(probability,...) = x. يمكن استخدام توزيع بيتا في تخطيط المشاريع لتخطيط مواعيد الانتهاء المحتملة عند تعيين الوقت المتوقع للإنهاء وقابلية التغيير.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. وهي الاحتمال المقترن بتوزيع بيتا.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي معلمة التوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. وهي معلمة التوزيع.' }, + A: { name: 'A', detail: 'وهي حد أدنى للفاصل الزمني x.' }, + B: { name: 'B', detail: 'اختياري. وهي حد أعلى للفاصل الزمني x.' }, + }, + }, + BINOMDIST: { + description: 'تُرجع المصطلح الفردي لاحتمال التوزيع ذي الحدين. استخدم BINOMDIST في المشاكل ذات العدد الثابت من الاختبارات أو التجارب، عندما تكون نتائج أي تجربة هي نجاح أو فشل فقط، وعندما تكون التجارب مستقلة، وعندما يكون احتمال النجاح ثابتاً في كافة مراحل التجربة. على سبيل المثال، بإمكان BINOMDIST حساب احتمال أن يكون اثنان من المواليد الثلاثة القادمين من الذكور.', + abstract: 'تُرجع المصطلح الفردي لاحتمال التوزيع ذي الحدين. استخدم BINOMDIST في المشاكل ذات العدد الثابت من الاختبارات أو التجارب، عندما تكون نتائج أي تجربة هي نجاح أو فشل فقط، وعندما تكون التجارب مستقلة، وعندما يكون احتمال النجاح ثابتاً في كافة مراحل التجربة. على سبيل المثال، بإمكان BINOMDIST حساب احتمال أن يكون اثنان من المواليد الثلاثة القادمين من الذكور.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'مطلوب. وهي عدد مرات النجاح في التجارب.' }, + trials: { name: 'trials', detail: 'مطلوب. وهي عدد التجارب المستقلة.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. وهي احتمال النجاح في كل تجربة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. وهي القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة cumulative تساوي TRUE، فإن BINOMDIST تُرجع دالة التوزيع التراكمي، وهي الاحتمال بوجود number_s لعدد مرات النجاح على الأكثر، وإذا كانت تساوي FALSE، فإنها تُرجع دالة الاحتمالات غير التراكمية، وهي الاحتمال بوجود number_s لعدد مرات النجاح بالضبط.' }, + }, + }, + CHIDIST: { + description: 'تُرجع الاحتمال ذا الطرف الأيمن لتوزيع كاي التربيعي. يقترن توزيع χ2 باختبار χ2. استخدم اختبار χ2 لمقارنة القيم التي تمت ملاحظتها بالقيم المتوقعة. على سبيل المثال، قد تفترض إحدى التجارب الجينية أن الجيل التالي من النباتات سيحمل مجموعة معينة من الألوان. يمكنك تحديد ما إذا كانت فرضيتك الأصلية صحيحة من خلال مقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة.', + abstract: 'تُرجع الاحتمال ذا الطرف الأيمن لتوزيع كاي التربيعي. يقترن توزيع χ2 باختبار χ2. استخدم اختبار χ2 لمقارنة القيم التي تمت ملاحظتها بالقيم المتوقعة. على سبيل المثال، قد تفترض إحدى التجارب الجينية أن الجيل التالي من النباتات سيحمل مجموعة معينة من الألوان. يمكنك تحديد ما إذا كانت فرضيتك الأصلية صحيحة من خلال مقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تقييم التوزيع عندها.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + }, + }, + CHIINV: { + description: 'تُرجع عكس الاحتمال ذي الطرف الأيمن لتوزيع كاي التربيعي. إذا كانت probability = CHIDIST(x,...)‎، فعندئذٍ تكون CHIINV(probability,...) = x. استخدم هذه الدالة لمقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة لتحديد ما إذا كانت فرضيتك الأصلية صحيحة.', + abstract: 'تُرجع عكس الاحتمال ذي الطرف الأيمن لتوزيع كاي التربيعي. إذا كانت probability = CHIDIST(x,...)‎، فعندئذٍ تكون CHIINV(probability,...) = x. استخدم هذه الدالة لمقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة لتحديد ما إذا كانت فرضيتك الأصلية صحيحة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. وهي احتمال مقترن بتوزيع كاي تربيع.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + }, + }, + CHITEST: { + description: 'تُرجع اختبار الاستقلال. تُرجع CHITEST القيمة من توزيع كاي تربيع (χ2) للإحصاء ودرجات الحرية المناسبة. ويمكنك استخدام اختبارات χ2 لتحديد ما إذا تم التحقق من صحة النتائج المفترضة بواسطة تجربة.', + abstract: 'تُرجع اختبار الاستقلال. تُرجع CHITEST القيمة من توزيع كاي تربيع (χ2) للإحصاء ودرجات الحرية المناسبة. ويمكنك استخدام اختبارات χ2 لتحديد ما إذا تم التحقق من صحة النتائج المفترضة بواسطة تجربة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'مطلوب. وهي نطاق البيانات الذي يحتوي على الملاحظات التي تريد اختبارها مقابل القيم المتوقعة.' }, + expectedRange: { name: 'expected_range', detail: 'مطلوب. وهي نطاق البيانات الذي يحتوي على نسبة حاصل ضرب إجماليات الصفوف وإجماليات الأعمدة إلى الإجمالي الكلي.' }, + }, + }, + CONFIDENCE: { + description: 'تُرجع فاصل الثقة لوسط محتوى باستخدام توزيع عادي.', + abstract: 'تُرجع فاصل الثقة لوسط محتوى باستخدام توزيع عادي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'مطلوب. مستوى الدلالة المُستخدم لحساب مستوى الثقة. يساوي مستوى الثقة ‎100*(1 - alpha)%‎، أو بعبارة أخرى، تشير alpha ذات القيمة 0,05 إلى مستوى ثقة بنسبة 95 في المئة.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري للمحتوى الخاص بنطاق البيانات والذي من المفترض أن يكون معروفاً.' }, + size: { name: 'size', detail: 'مطلوب. حجم العينة.' }, + }, + }, + COVAR: { + description: 'إرجاع التباين المشترك، متوسط منتجات الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات.', + abstract: 'إرجاع التباين المشترك، متوسط منتجات الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الأول من الأعداد الصحيحة.' }, + array2: { name: 'array2', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الثاني من الأعداد الصحيحة.' }, + }, + }, + CRITBINOM: { + description: 'تُرجع أصغر قيمة يكون التوزيع التراكمي ذو الحدين الخاص بها أكبر من قيمة المعيار أو مساوياً لها. استخدم هذه الدالة مع تطبيقات تأكيد الجودة. على سبيل المثال، استخدم CRITBINOM لتحديد أكبر عدد من الأجزاء التالفة المسموح بفصلها عن خط تجميع من دون رفض الكمية بأكملها.', + abstract: 'تُرجع أصغر قيمة يكون التوزيع التراكمي ذو الحدين الخاص بها أكبر من قيمة المعيار أو مساوياً لها. استخدم هذه الدالة مع تطبيقات تأكيد الجودة. على سبيل المثال، استخدم CRITBINOM لتحديد أكبر عدد من الأجزاء التالفة المسموح بفصلها عن خط تجميع من دون رفض الكمية بأكملها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'مطلوب. وهي عدد تجارب Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. وهي احتمال النجاح في كل تجربة.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي قيمة المعيار.' }, + }, + }, + EXPONDIST: { + description: 'تُرجع التوزيع الأسي. استخدم الدالة EXPONDIST لتنظيم الوقت بين الأحداث، مثل الوقت الذي يحتاجه صرّاف المصرف الآلي لتسليم النقود. على سبيل المثال، يمكنك استخدام EXPONDIST لتحديد احتمال أن تستغرق العملية دقيقة واحدة كحد أقصى.', + abstract: 'تُرجع التوزيع الأسي. استخدم الدالة EXPONDIST لتنظيم الوقت بين الأحداث، مثل الوقت الذي يحتاجه صرّاف المصرف الآلي لتسليم النقود. على سبيل المثال، يمكنك استخدام EXPONDIST لتحديد احتمال أن تستغرق العملية دقيقة واحدة كحد أقصى.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. قيمة الدالة.' }, + lambda: { name: 'lambda', detail: 'مطلوب. قيمة المعلمة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. قيمة منطقية تشير إلى تركيبة الدالة الأسية التي سيتم توفيرها. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع EXPONDIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + FDIST: { + description: 'تُرجع توزيع الاحتمال F (ذي الطرف الأيمن) (درجة الاختلاف) لمجموعتين من البيانات. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك معاينة نقاط الاختبار التي حصل عليها شبّان وشابات في امتحان دخول مدرسة ثانوية وتحديد ما إذا كان الفرق بين نقاط الإناث مختلفاً عن الفرق بين نقاط الذكور.', + abstract: 'تُرجع توزيع الاحتمال F (ذي الطرف الأيمن) (درجة الاختلاف) لمجموعتين من البيانات. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك معاينة نقاط الاختبار التي حصل عليها شبّان وشابات في امتحان دخول مدرسة ثانوية وتحديد ما إذا كان الفرق بين نقاط الإناث مختلفاً عن الفرق بين نقاط الذكور.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + }, + }, + FINV: { + description: 'تُرجع هذه الدالة عكس توزيع الاحتمال F (ذي الطرف الأيمن). إذا كانت p = FDIST(x,...)‎، فتكون عندئذِ FINV(p,...) = x.', + abstract: 'تُرجع هذه الدالة عكس توزيع الاحتمال F (ذي الطرف الأيمن). إذا كانت p = FDIST(x,...)‎، فتكون عندئذِ FINV(p,...) = x.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. احتمال مقترن بتوزيع F التراكمي.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + }, + }, + FTEST: { + description: 'إرجاع نتيجة اختبار F. يقوم اختبار F بإرجاع الاحتمال ثنائي الطرف أن التباينات في array1 و array2 ليست مختلفة بشكل كبير. استخدم هذه الدالة لتحديد وجود تباينات مختلفة بين نموذجين. على سبيل المثال، بالاستناد إلى نقاط اختبار من مدرستين رسمية وخاصة، يمكنك اختبار ما إذا كانت مستويات التباين في نقاط الاختبار مختلفة بين هاتين المدرستين.', + abstract: 'إرجاع نتيجة اختبار F. يقوم اختبار F بإرجاع الاحتمال ثنائي الطرف أن التباينات في array1 و array2 ليست مختلفة بشكل كبير. استخدم هذه الدالة لتحديد وجود تباينات مختلفة بين نموذجين. على سبيل المثال، بالاستناد إلى نقاط اختبار من مدرستين رسمية وخاصة، يمكنك اختبار ما إذا كانت مستويات التباين في نقاط الاختبار مختلفة بين هاتين المدرستين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. الصفيف أو نطاق البيانات الأول.' }, + array2: { name: 'array2', detail: 'مطلوب. الصفيف أو نطاق البيانات الثاني.' }, + }, + }, + GAMMADIST: { + description: 'تُرجع توزيع غاما. يمكنك استخدام هذه الدالة لدراسة المتغيرات التي قد تكون ذات توزيع منحرف. يُستخدم توزيع غاما بشكل شائع في تحليل الصفوف.', + abstract: 'تُرجع توزيع غاما. يمكنك استخدام هذه الدالة لدراسة المتغيرات التي قد تكون ذات توزيع منحرف. يُستخدم توزيع غاما بشكل شائع في تحليل الصفوف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تقييم التوزيع عندها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع. إذا كانت beta = 1، فتُرجع الدالة GAMMADIST توزيع غاما القياسي.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد تركيبة الدالة. إذا تم تقييم Cumulative على أنها TRUE، فتُرجع الدالة GAMMADIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + GAMMAINV: { + description: 'تُرجع عكس توزيع غاما التراكمي. إذا كانت قيمة p = GAMMADIST(x,...)‎، فتكون عندئذٍ GAMMAINV(p,...) = x. يمكنك استخدام هذه الدالة لدراسة متغير قد يكون توزيعه منحرفاً.', + abstract: 'تُرجع عكس توزيع غاما التراكمي. إذا كانت قيمة p = GAMMADIST(x,...)‎، فتكون عندئذٍ GAMMAINV(p,...) = x. يمكنك استخدام هذه الدالة لدراسة متغير قد يكون توزيعه منحرفاً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بتوزيع غاما.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع. إذا كانت beta = 1، فتُرجع GAMMAINV توزيع غاما القياسي.' }, + }, + }, + HYPGEOMDIST: { + description: 'تُرجع هذه الدالة توزيع الهندسة الفوقية. تُرجع الدالة HYPGEOMDIST احتمال عدد معين لمرات النجاح في العينة، بالنسبة إلى حجم العينة ومرات النجاح في المحتوى وحجم المحتوى. استخدم HYPGEOMDIST لحل المشاكل التي تتعلق بمحتوى محدود، حيث تكون كل عملية مراقبة عبارة عن نجاح أو فشل، وحيث يتم اختيار كل مجموعة فرعية ذات حجم معيّن باحتمالية متساوية.', + abstract: 'تُرجع هذه الدالة توزيع الهندسة الفوقية. تُرجع الدالة HYPGEOMDIST احتمال عدد معين لمرات النجاح في العينة، بالنسبة إلى حجم العينة ومرات النجاح في المحتوى وحجم المحتوى. استخدم HYPGEOMDIST لحل المشاكل التي تتعلق بمحتوى محدود، حيث تكون كل عملية مراقبة عبارة عن نجاح أو فشل، وحيث يتم اختيار كل مجموعة فرعية ذات حجم معيّن باحتمالية متساوية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'مطلوب. عدد مرات النجاح في العينة.' }, + numberSample: { name: 'number_sample', detail: 'مطلوب. حجم العينة.' }, + populationS: { name: 'population_s', detail: 'مطلوب. عدد مرات النجاح في المحتوى.' }, + numberPop: { name: 'number_pop', detail: 'مطلوب. حجم المحتوى.' }, + }, + }, + LOGINV: { + description: 'تُرجع هذه الدالة عكس دالة التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع ln(x)‎ بشكل طبيعي باستخدام المعلمتين mean وstandard_dev. إذا كانت قيمة p = LOGNORMDIST(x,...)‎، فتكون عندئذٍ قيمة LOGINV(p) = x.', + abstract: 'تُرجع هذه الدالة عكس دالة التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع ln(x)‎ بشكل طبيعي باستخدام المعلمتين mean وstandard_dev. إذا كانت قيمة p = LOGNORMDIST(x,...)‎، فتكون عندئذٍ قيمة LOGINV(p) = x.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بالتوزيع اللوغاريتمي الطبيعي.' }, + mean: { name: 'mean', detail: 'مطلوب. وسط (ln(x.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري لـ (ln(x.' }, + }, + }, + LOGNORMDIST: { + description: 'تُرجع هذه الدالة التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع (ln(x بشكل طبيعي باستخدام المعلمتين mean وstandard_dev. استخدم هذه الدالة لتحليل البيانات التي تم تحويلها لوغاريتمياً.', + abstract: 'تُرجع هذه الدالة التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع (ln(x بشكل طبيعي باستخدام المعلمتين mean وstandard_dev. استخدم هذه الدالة لتحليل البيانات التي تم تحويلها لوغاريتمياً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + mean: { name: 'mean', detail: 'مطلوب. وسط (ln(x.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري لـ (ln(x.' }, + }, + }, + MODE: { + description: 'لنفترض أنك تريد معرفة عدد أنواع الطيور الأكثر شيوعًا الذي تم رصده في عينة لعدد الطيور في أرض رطبة متدهورة على مدى فترة زمنية قدرها 30 عامًا، أو تريد معرفة عدد المكالمات الهاتفية الأكثر شيوعًا في مركز دعم عبر الهاتف خارج ساعات الذروة. لحساب وضع مجموعة من الأرقام، استخدم الدالة MODE .', + abstract: 'لنفترض أنك تريد معرفة عدد أنواع الطيور الأكثر شيوعًا الذي تم رصده في عينة لعدد الطيور في أرض رطبة متدهورة على مدى فترة زمنية قدرها 30 عامًا، أو تريد معرفة عدد المكالمات الهاتفية الأكثر شيوعًا في مركز دعم عبر الهاتف خارج ساعات الذروة. لحساب وضع مجموعة من الأرقام، استخدم الدالة MODE .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول الذي تريد حساب الوضع الخاص به.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 255 التي تريد حساب الوضع الخاص بها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + NEGBINOMDIST: { + description: 'تُرجع هذه الدالة التوزيع السالب ذا الحدين. تُرجع الدالة NEGBINOMDIST احتمال وجود مرات فشل عددها number_f قبل النجاح رقم number_s، عندما يكون الاحتمال الثابت للنجاح probability_s. تشبه هذه الدالة التوزيع ذا الحدين، باستثناء أن عدد النجاحات ثابت وعدد التجارب متغير. من المفترض أن تكون التجارب مستقلة، مثل التوزيع ذي الحدين.', + abstract: 'تُرجع هذه الدالة التوزيع السالب ذا الحدين. تُرجع الدالة NEGBINOMDIST احتمال وجود مرات فشل عددها number_f قبل النجاح رقم number_s، عندما يكون الاحتمال الثابت للنجاح probability_s. تشبه هذه الدالة التوزيع ذا الحدين، باستثناء أن عدد النجاحات ثابت وعدد التجارب متغير. من المفترض أن تكون التجارب مستقلة، مثل التوزيع ذي الحدين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'مطلوب. عدد مرات الفشل.' }, + numberS: { name: 'number_s', detail: 'مطلوب. عتبة محاولات النجاح.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. احتمال النجاح.' }, + }, + }, + NORMDIST: { + description: 'ترجع الدالة NORMDIST التوزيع العادي للمتوسط المحدد والانحراف المعياري. تحتوي هذه الدالة على مجموعة واسعة من التطبيقات في الإحصائيات، بما في ذلك اختبار الفرضية.', + abstract: 'ترجع الدالة NORMDIST التوزيع العادي للمتوسط المحدد والانحراف المعياري. تحتوي هذه الدالة على مجموعة واسعة من التطبيقات في الإحصائيات، بما في ذلك اختبار الفرضية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد التوزيع لها' }, + mean: { name: 'mean', detail: 'مطلوب. الوسط الحسابي للتوزيع' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري للتوزيع' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت القيمة التراكمية TRUE، فترجع الدالة NORMDIST دالة التوزيع التراكمي؛ إذا كانت القيمة التراكمية FALSE، فإنها ترجع دالة الاحتمالات الجماعية.' }, + }, + }, + NORMINV: { + description: 'تُرجع هذه الدالة عكس التوزيع التراكمي العادي للوسط والانحراف المعياري المحددين.', + abstract: 'تُرجع هذه الدالة عكس التوزيع التراكمي العادي للوسط والانحراف المعياري المحددين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المطابق للتوزيع العادي.' }, + mean: { name: 'mean', detail: 'مطلوب. الوسط الحسابي للتوزيع.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. وهي الانحراف المعياري للتوزيع.' }, + }, + }, + NORMSDIST: { + description: 'تُرجع هذه الدالة دالة التوزيع التراكمي العادي القياسي. يحتوي التوزيع على وسط من 0 (صفر) وانحراف معياري من واحد. استخدم هذه الدالة بدلاً من جدول مناطق المنحنيات العادية القياسية.', + abstract: 'تُرجع هذه الدالة دالة التوزيع التراكمي العادي القياسي. يحتوي التوزيع على وسط من 0 (صفر) وانحراف معياري من واحد. استخدم هذه الدالة بدلاً من جدول مناطق المنحنيات العادية القياسية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'مطلوبة. القيمة التي تريد حساب التوزيع لها.' }, + }, + }, + NORMSINV: { + description: 'تُرجع هذه الدالة عكس التوزيع التراكمي القياسي العادي. يحتوي التوزيع على وسط من صفر وانحراف معياري من واحد.', + abstract: 'تُرجع هذه الدالة عكس التوزيع التراكمي القياسي العادي. يحتوي التوزيع على وسط من صفر وانحراف معياري من واحد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المطابق للتوزيع العادي.' }, + }, + }, + PERCENTILE: { + description: 'تُرجع هذه الدالة النسب المئوية للقيم في نطاق. ويمكنك استخدام هذه الدالة لتأسيس عتبة القبول. على سبيل المثال، يمكنك أن تتخذ قراراً باختبار المرشحين الذين سجلوا مجموع نقاط أعلى من القيمة المئوية 90.', + abstract: 'تُرجع هذه الدالة النسب المئوية للقيم في نطاق. ويمكنك استخدام هذه الدالة لتأسيس عتبة القبول. على سبيل المثال، يمكنك أن تتخذ قراراً باختبار المرشحين الذين سجلوا مجموع نقاط أعلى من القيمة المئوية 90.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات الذي يعرِّف حالات النسبية.' }, + k: { name: 'k', detail: 'مطلوبة. القيمة المئوية في النطاق من 0 إلى 1، ضمناً.' }, + }, + }, + PERCENTRANK: { + description: 'ترجع الدالة PERCENTRANK مرتبة قيمة في مجموعة بيانات كنسبة مئوية من مجموعة البيانات - بشكل أساسي، المركز النسبي للقيمة داخل مجموعة البيانات بأكملها. على سبيل المثال، يمكنك استخدام PERCENTRANK لتحديد مكانة درجة اختبار الفرد بين حقل جميع الدرجات لنفس الاختبار.', + abstract: 'ترجع الدالة PERCENTRANK مرتبة قيمة في مجموعة بيانات كنسبة مئوية من مجموعة البيانات - بشكل أساسي، المركز النسبي للقيمة داخل مجموعة البيانات بأكملها. على سبيل المثال، يمكنك استخدام PERCENTRANK لتحديد مكانة درجة اختبار الفرد بين حقل جميع الدرجات لنفس الاختبار.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. نطاق البيانات (أو الصفيف المحدد مسبقا) للقيم الرقمية التي يتم فيها تحديد ترتيب النسبة المئوية.' }, + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد معرفة الرتبة ضمن الصفيف لها.' }, + significance: { name: 'significance', detail: 'الاختياري. قيمة تعرّف عدد الأرقام ذات الأهمية لقيمة النسبة المئوية التي تم إرجاعها. في حالة حذف هذه الوسيطة، تستخدم الدالة PERCENTRANK ثلاثة أرقام (0‎.xxx).' }, + }, + }, + POISSON: { + description: 'تُرجع هذه الدالة توزيع Poisson. يُعتبر التنبؤ بعدد الأحداث خلال فترة زمنية محددة أحد التطبيقات الشائعة لتوزيع Poisson، كالتنبؤ بعدد السيارات التي تصل إلى ساحة تفرض رسم مرور خلال دقيقة واحدة مثلاً.', + abstract: 'تُرجع هذه الدالة توزيع Poisson. يُعتبر التنبؤ بعدد الأحداث خلال فترة زمنية محددة أحد التطبيقات الشائعة لتوزيع Poisson، كالتنبؤ بعدد السيارات التي تصل إلى ساحة تفرض رسم مرور خلال دقيقة واحدة مثلاً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. عدد الأحداث.' }, + mean: { name: 'mean', detail: 'مطلوب. القيمة الرقمية المتوقعة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد نموذج توزيع الاحتمال الذي يتم إرجاعه. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع الدالة POISSON احتمال Poisson التراكمي بأن يكون عدد الأحداث العشوائية التي تحصل ما بين الصفر وx ضمناً؛ وإذا كانت قيمتها FALSE، فتُرجع دالة Poisson للاحتمالات غير التراكمية بأن يكون عدد الأحداث التي تحصل مساوياً لـ x تماماً.' }, + }, + }, + QUARTILE: { + description: 'تُرجع هذه الدالة ربع مجموعة بيانات. غالباً ما يتم استخدام الأرباع في المبيعات وبيانات الاستطلاعات لتقسيم السكان إلى مجموعات. على سبيل المثال، يمكنك استخدام QUARTILE للبحث عن 25 في المئة من السكان من ذوي نسبة الدخل الأعلى.', + abstract: 'تُرجع هذه الدالة ربع مجموعة بيانات. غالباً ما يتم استخدام الأرباع في المبيعات وبيانات الاستطلاعات لتقسيم السكان إلى مجموعات. على سبيل المثال، يمكنك استخدام QUARTILE للبحث عن 25 في المئة من السكان من ذوي نسبة الدخل الأعلى.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق خلايا القيم الرقمية الذي تريد حساب قيمته الربعية.' }, + quart: { name: 'quart', detail: 'مطلوب. تشير إلى القيمة التي يجب إرجاعها.' }, + }, + }, + RANK: { + description: 'تُرجع هذه الدالة مرتبة رقم في قائمة من الأرقام. تمثّل مرتبة الرقم حجمه بالنسبة إلى أحجام القيم الأخرى في القائمة. (إذا كنت تريد فرز القائمة، ستكون مرتبة الرقم موضعه في القائمة.)', + abstract: 'تُرجع هذه الدالة مرتبة رقم في قائمة من الأرقام. تمثّل مرتبة الرقم حجمه بالنسبة إلى أحجام القيم الأخرى في القائمة. (إذا كنت تريد فرز القائمة، ستكون مرتبة الرقم موضعه في القائمة.)', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوب. الرقم الذي تريد العثور على مرتبته.' }, + ref: { name: 'ref', detail: 'مطلوب. مرجع إلى قائمة الأرقام. يتم تجاهل القيم غير الرقمية في المرجع.' }, + order: { name: 'order', detail: 'الاختياري. رقم يحدد كيفية ترتيب الرقم. إذا كان الترتيب يساوي 0 (صفر) أو إذا كان محذوفاً، يحدد Microsoft Excel مرتبة الرقم كما لو كان المرجع عبارة عن قائمة تم فرزها بترتيب تنازلي. إذا كان الترتيب عبارة عن قيمة غير صفرية، يحدد Microsoft Excel مرتبة الرقم كما لو كان المرجع عبارة عن قائمة تم فرزها بترتيب تصاعدي.' }, + }, + }, + STDEV: { + description: 'تقدّر هذه الدالة الانحراف المعياري استناداً إلى عينة. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'تقدّر هذه الدالة الانحراف المعياري استناداً إلى عينة. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق عينة من المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 255 التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + STDEVP: { + description: 'تحسب هذه الدالة الانحراف المعياري استناداً إلى المحتوى بأكمله المحدد كوسيطات. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'تحسب هذه الدالة الانحراف المعياري استناداً إلى المحتوى بأكمله المحدد كوسيطات. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 255 التي تطابق المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + TDIST: { + description: 'تُرجع هذه الدالة نقاط النسبة المئوية (الاحتمال) لتوزيع t للطلاب حيث تكون القيمة الرقمية (x) القيمة المحسوبة لـ t التي يجب حساب نقاط النسبة المئوية لها. يتم استخدام توزيع t في الاختبار الفرضي لنماذج صغيرة من مجموعات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + abstract: 'تُرجع هذه الدالة نقاط النسبة المئوية (الاحتمال) لتوزيع t للطلاب حيث تكون القيمة الرقمية (x) القيمة المحسوبة لـ t التي يجب حساب نقاط النسبة المئوية لها. يتم استخدام توزيع t في الاختبار الفرضي لنماذج صغيرة من مجموعات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة الرقمية التي يتم تقييم التوزيع عندها.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد صحيح يشير إلى عدد درجات الحرية.' }, + tails: { name: 'tails', detail: 'مطلوب. تحدد هذه الوسيطة عدد أطراف التوزيع التي يتم إرجاعها. إذا كانت قيمة الأطراف = 1، تُرجع الدالة TDIST التوزيع أحادي الطرف. إذا كانت قيمة الأطراف = 2، تُرجع الدالة TDIST التوزيع ثنائي الطرف.' }, + }, + }, + TINV: { + description: 'إرجاع عكس توزيع t للطالب ثنائي الطرف.', + abstract: 'إرجاع عكس توزيع t للطالب ثنائي الطرف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بتوزيع t للطالب ثنائي الطرف.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد درجات الحرية التي تميز التوزيع.' }, + }, + }, + TTEST: { + description: 'تُرجع هذه الدالة الاحتمال المقترن باختبار t للطالب. استخدم TTEST لتحديد ما إذا كان من المحتمل وجود عينتين من محتويين مماثلين أساسيين لهما الوسط نفسه.', + abstract: 'تُرجع هذه الدالة الاحتمال المقترن باختبار t للطالب. استخدم TTEST لتحديد ما إذا كان من المحتمل وجود عينتين من محتويين مماثلين أساسيين لهما الوسط نفسه.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. مجموعة البيانات الأولى.' }, + array2: { name: 'array2', detail: 'مطلوب. مجموعة البيانات الثانية.' }, + tails: { name: 'tails', detail: 'مطلوب. تحدد هذه الوسيطة عدد أطراف التوزيع. إذا كانت قيمة الأطراف = 1، تستخدم الدالة TTEST التوزيع وحيد الطرف. إذا كانت قيمة الأطراف = 2، تستخدم الدالة TTEST التوزيع وحيد الطرف.' }, + type: { name: 'type', detail: 'مطلوب. نوع اختبار t الذي يجب تأديته.' }, + }, + }, + VAR: { + description: 'تقوم هذه الدالة بتقدير التباين استناداً إلى عينة.', + abstract: 'تقوم هذه الدالة بتقدير التباين استناداً إلى عينة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق عينة من المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 255 التي تطابق عينة من المحتوى.' }, + }, + }, + VARP: { + description: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله.', + abstract: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 255 التي تطابق المحتوى.' }, + }, + }, + WEIBULL: { + description: 'تُرجع هذه الدالة توزيع Weibull. استخدم هذا التوزيع في تحليل ثبات النظام، كحساب متوسط وقت حدوث فشل في أحد الأجهزة.', + abstract: 'تُرجع هذه الدالة توزيع Weibull. استخدم هذا التوزيع في تحليل ثبات النظام، كحساب متوسط وقت حدوث فشل في أحد الأجهزة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. تحدد هذه الوسيطة شكل الدالة.' }, + }, + }, + ZTEST: { + description: 'تُرجع هذه الدالة قيمة الاحتمال وحيدة الطرف لاختبار z. من خلال تعيين الوسط المفترض للمحتوى ?0، تقوم ZTEST بإرجاع احتمال أن يكون الوسط النموذجي أكبر من متوسط الملاحظات في مجموعة البيانات (الصفيف)، أي الوسط النموذجي الذي تمت ملاحظته.', + abstract: 'تُرجع هذه الدالة قيمة الاحتمال وحيدة الطرف لاختبار z. من خلال تعيين الوسط المفترض للمحتوى ?0، تقوم ZTEST بإرجاع احتمال أن يكون الوسط النموذجي أكبر من متوسط الملاحظات في مجموعة البيانات (الصفيف)، أي الوسط النموذجي الذي تمت ملاحظته.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات لاختبار x بالمقابلة معه.' }, + x: { name: 'x', detail: 'مطلوبة. القيمة التي يجب اختبارها.' }, + sigma: { name: 'sigma', detail: 'الاختياري. الانحراف المعياري للمحتوى (معروف). في حالة حذفها، يتم استخدام الانحراف المعياري للعينة.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/compatibility/ca-ES.ts index 36efde3e5a..59fb5c7970 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-beta-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/ca-es/excel/functions/betadist-function', }, ], functionParameter: { @@ -40,7 +40,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-beta-inv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/ca-es/excel/functions/betainv-function', }, ], functionParameter: { @@ -57,7 +57,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-binom-function-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/ca-es/excel/functions/binomdist-function', }, ], functionParameter: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-chi-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/ca-es/excel/functions/chidist-function', }, ], functionParameter: { @@ -87,7 +87,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/inv-chi-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/ca-es/excel/functions/chiinv-function', }, ], functionParameter: { @@ -101,7 +101,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/prova-chi-function-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/ca-es/excel/functions/chitest-function', }, ], functionParameter: { @@ -115,7 +115,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/interval-confianza-function-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/ca-es/excel/functions/confidence-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/ca-es/excel/functions/covar-function', }, ], functionParameter: { @@ -144,7 +144,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/ca-es/excel/functions/critbinom-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-exp-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/ca-es/excel/functions/expondist-function', }, ], functionParameter: { @@ -174,7 +174,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-f-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/ca-es/excel/functions/fdist-function', }, ], functionParameter: { @@ -189,7 +189,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-f-inv-function-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/ca-es/excel/functions/finv-function', }, ], functionParameter: { @@ -204,7 +204,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/prova-f-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/ca-es/excel/functions/ftest-function', }, ], functionParameter: { @@ -218,7 +218,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-gamma-function-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/ca-es/excel/functions/gammadist-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gamma-inv-function-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/ca-es/excel/functions/gammainv-function', }, ], functionParameter: { @@ -249,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-hipergeom-function-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/ca-es/excel/functions/hypgeomdist-function', }, ], functionParameter: { @@ -257,7 +257,6 @@ const locale: typeof enUS = { numberSample: { name: 'nombre_mostra', detail: 'La mida de la mostra.' }, populationS: { name: 'població_èxit', detail: 'El nombre d\'èxits a la població.' }, numberPop: { name: 'nombre_població', detail: 'La mida de la població.' }, - cumulative: { name: 'acumulat', detail: 'Un valor lògic que determina la forma de la funció. Si és CERT, DISTR.HIPERGEOM retorna la funció de distribució acumulada; si és FALS, retorna la funció de densitat de probabilitat.' }, }, }, LOGINV: { @@ -266,7 +265,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-log-inv-function-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/ca-es/excel/functions/loginv-function', }, ], functionParameter: { @@ -281,14 +280,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-log-norm-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/ca-es/excel/functions/lognormdist-function', }, ], functionParameter: { x: { name: 'x', detail: 'El valor per al qual voleu la distribució.' }, mean: { name: 'mitjana', detail: 'La mitjana aritmètica de la distribució.' }, standardDev: { name: 'desv_estàndard', detail: 'La desviació estàndard de la distribució.' }, - cumulative: { name: 'acumulat', detail: 'Un valor lògic que determina la forma de la funció. Si és CERT, DIST.LOGNORM retorna la funció de distribució acumulada; si és FALS, retorna la funció de densitat de probabilitat.' }, }, }, MODE: { @@ -297,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/moda-function-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/ca-es/excel/functions/mode-function', }, ], functionParameter: { @@ -311,14 +309,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-neg-bin-function-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/ca-es/excel/functions/negbinomdist-function', }, ], functionParameter: { numberF: { name: 'nombre_fracassos', detail: 'El nombre de fracassos.' }, numberS: { name: 'nombre_èxits', detail: 'El nombre llindar d\'èxits.' }, probabilityS: { name: 'prob_èxit', detail: 'La probabilitat d\'un èxit.' }, - cumulative: { name: 'acumulat', detail: 'Un valor lògic que determina la forma de la funció. Si és CERT, DISTR.NEGBINOM retorna la funció de distribució acumulada; si és FALS, retorna la funció de densitat de probabilitat.' }, }, }, NORMDIST: { @@ -327,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-norm-function-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/ca-es/excel/functions/normdist-function', }, ], functionParameter: { @@ -343,7 +340,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-norm-inv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/ca-es/excel/functions/norminv-function', }, ], functionParameter: { @@ -358,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-norm-estand-function-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/ca-es/excel/functions/normsdist-function', }, ], functionParameter: { @@ -371,7 +368,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-norm-estand-inv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/ca-es/excel/functions/normsinv-function', }, ], functionParameter: { @@ -384,7 +381,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/percentil-function-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentile-function', }, ], functionParameter: { @@ -398,7 +395,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/rang-percentil-function-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentrank-function', }, ], functionParameter: { @@ -413,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/ca-es/excel/functions/poisson-function', }, ], functionParameter: { @@ -428,7 +425,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/quartil-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/ca-es/excel/functions/quartile-function', }, ], functionParameter: { @@ -442,7 +439,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/jerarquia-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/ca-es/excel/functions/rank-function', }, ], functionParameter: { @@ -457,7 +454,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/desvest-function-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdev-function', }, ], functionParameter: { @@ -471,7 +468,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/desvestp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdevp-function', }, ], functionParameter: { @@ -485,7 +482,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/distr-t-function-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/ca-es/excel/functions/tdist-function', }, ], functionParameter: { @@ -500,7 +497,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/inv-t-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/ca-es/excel/functions/tinv-function', }, ], functionParameter: { @@ -514,7 +511,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/prova-t-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/ca-es/excel/functions/ttest-function', }, ], functionParameter: { @@ -530,7 +527,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/ca-es/excel/functions/var-function', }, ], functionParameter: { @@ -544,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/ca-es/excel/functions/varp-function', }, ], functionParameter: { @@ -558,7 +555,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/ca-es/excel/functions/weibull-function', }, ], functionParameter: { @@ -574,7 +571,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/prova-z-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/ca-es/excel/functions/ztest-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/de-DE.ts b/packages/sheets-formula/src/locale/function-list/compatibility/de-DE.ts new file mode 100644 index 0000000000..3a54f3b2f3 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/de-DE.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'Gibt die kumulierte Beta-Wahrscheinlichkeitsdichtefunktion zurück. Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + abstract: 'Gibt die kumulierte Beta-Wahrscheinlichkeitsdichtefunktion zurück. Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, an dem die Funktion im Intervall zwischen A und B ausgewertet werden soll.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + A: { name: 'A', detail: 'Eine untere Grenze des Intervalls für X.' }, + B: { name: 'B', detail: 'Optional. Eine obere Grenze des Intervalls für X.' }, + }, + }, + BETAINV: { + description: 'Gibt die Quantile der Verteilungsfunktion einer betaverteilten Zufallsvariablen zurück. Das bedeutet, wenn Wahrscheinlichkeit = BETAVERT(x;...) ist, dann ist BETAINV(Wahrsch;...) = x. Die Betaverteilung kann für eine Projektplanung verwendet werden, um ausgehend von einem erwarteten Endtermin und der Streuung den wahrscheinlichen Endtermin zu modellieren.', + abstract: 'Gibt die Quantile der Verteilungsfunktion einer betaverteilten Zufallsvariablen zurück. Das bedeutet, wenn Wahrscheinlichkeit = BETAVERT(x;...) ist, dann ist BETAINV(Wahrsch;...) = x. Die Betaverteilung kann für eine Projektplanung verwendet werden, um ausgehend von einem erwarteten Endtermin und der Streuung den wahrscheinlichen Endtermin zu modellieren.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Betaverteilung gehörende Wahrscheinlichkeit.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + A: { name: 'A', detail: 'Eine untere Grenze des Intervalls für X.' }, + B: { name: 'B', detail: 'Optional. Eine obere Grenze des Intervalls für X.' }, + }, + }, + BINOMDIST: { + description: 'Gibt Wahrscheinlichkeiten einer binomialverteilten Zufallsvariablen zurück. Verwenden Sie BINOMVERT bei Problemen mit einer festgelegten Anzahl von Tests oder Versuchen, wenn das Ergebnis jedes einzelnen Versuchs entweder Erfolg oder Misserfolg ist, die einzelnen Versuche voneinander unabhängig sind und die Wahrscheinlichkeit des Erfolgs für alle Versuche konstant ist. Mit BINOMVERT lässt sich beispielsweise die Wahrscheinlichkeit ermitteln, mit der zwei von drei Neugeborenen männlich sind.', + abstract: 'Gibt Wahrscheinlichkeiten einer binomialverteilten Zufallsvariablen zurück. Verwenden Sie BINOMVERT bei Problemen mit einer festgelegten Anzahl von Tests oder Versuchen, wenn das Ergebnis jedes einzelnen Versuchs entweder Erfolg oder Misserfolg ist, die einzelnen Versuche voneinander unabhängig sind und die Wahrscheinlichkeit des Erfolgs für alle Versuche konstant ist. Mit BINOMVERT lässt sich beispielsweise die Wahrscheinlichkeit ermitteln, mit der zwei von drei Neugeborenen männlich sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Erforderlich. Die Anzahl der Erfolge in einer Versuchsreihe.' }, + trials: { name: 'trials', detail: 'Erforderlich. Die Anzahl der voneinander unabhängigen Versuche.' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit eines Erfolgs für jeden Versuch.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, gibt BINOMDIST die kumulierte Verteilungsfunktion zurück. Dies ist die Wahrscheinlichkeit, dass es höchstens number_s Erfolge gibt; False gibt die Wahrscheinlichkeits-Massenfunktion zurück, d. h. die Wahrscheinlichkeit, dass es number_s Erfolge gibt.' }, + }, + }, + CHIDIST: { + description: 'Gibt Werte der rechtsseitigen Verteilungsfunktion (1-Alpha) einer Chi-Quadrat-verteilten Zufallsgröße zurück. Die χ2-Verteilung wird bei einem χ2-Test benötigt. Mit dem χ2-Test lassen sich beobachtete und erwartete Werte miteinander vergleichen. So wird beispielsweise in einem genetischen Experiment die Hypothese aufgestellt, dass die nächste Pflanzengeneration eine bestimmte Farbzusammensetzung aufweist. Durch Vergleich der beobachteten mit den erwarteten Ergebnissen lässt sich die Hypothese validieren.', + abstract: 'Gibt Werte der rechtsseitigen Verteilungsfunktion (1-Alpha) einer Chi-Quadrat-verteilten Zufallsgröße zurück. Die χ2-Verteilung wird bei einem χ2-Test benötigt. Mit dem χ2-Test lassen sich beobachtete und erwartete Werte miteinander vergleichen. So wird beispielsweise in einem genetischen Experiment die Hypothese aufgestellt, dass die nächste Pflanzengeneration eine bestimmte Farbzusammensetzung aufweist. Durch Vergleich der beobachteten mit den erwarteten Ergebnissen lässt sich die Hypothese validieren.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit berechnet werden soll.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + }, + }, + CHIINV: { + description: 'Gibt Perzentile der rechtsseitigen Chi-Quadrat-Verteilung zurück. Ist Wahrsch = CHIVERT(x;...) gegeben, dann gilt CHIINV(Wahrsch;...) = x. Mithilfe dieser Funktion lassen sich zum Zweck der Validierung von Hypothesen beobachtete und erwartete Ergebnisse miteinander vergleichen.', + abstract: 'Gibt Perzentile der rechtsseitigen Chi-Quadrat-Verteilung zurück. Ist Wahrsch = CHIVERT(x;...) gegeben, dann gilt CHIINV(Wahrsch;...) = x. Mithilfe dieser Funktion lassen sich zum Zweck der Validierung von Hypothesen beobachtete und erwartete Ergebnisse miteinander vergleichen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Chi-Quadrat-Verteilung gehörende Wahrscheinlichkeit.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + }, + }, + CHITEST: { + description: 'Liefert die Teststatistik eines Unabhängigkeitstests. CHITEST gibt den Wert der chi-quadrierten (χ2)-Verteilung für die Teststatistik mit den entsprechenden Freiheitsgraden zurück. Mithilfe von χ2-Tests können Sie feststellen, ob in Experimenten die Ergebnisse bestätigt werden, die aufgrund von Hypothesen erwartet wurden.', + abstract: 'Liefert die Teststatistik eines Unabhängigkeitstests. CHITEST gibt den Wert der chi-quadrierten (χ2)-Verteilung für die Teststatistik mit den entsprechenden Freiheitsgraden zurück. Mithilfe von χ2-Tests können Sie feststellen, ob in Experimenten die Ergebnisse bestätigt werden, die aufgrund von Hypothesen erwartet wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Erforderlich. Der Bereich beobachteter Daten, mit dem Sie die erwarteten Werte testen möchten.' }, + expectedRange: { name: 'expected_range', detail: 'Erforderlich. Der Bereich erwarteter Beobachtungen, die sich aus der Division der miteinander multiplizierten Rangsummen und der Gesamtsumme berechnen lassen.' }, + }, + }, + CONFIDENCE: { + description: 'Ermöglicht die Berechnung des 1-Alpha Konfidenzintervalls für den Erwartungswert einer Zufallsvariablen und verwendet dazu die Normalverteilung.', + abstract: 'Ermöglicht die Berechnung des 1-Alpha Konfidenzintervalls für den Erwartungswert einer Zufallsvariablen und verwendet dazu die Normalverteilung.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Erforderlich. Die Irrtumswahrscheinlichkeit bei der Berechnung des Konfidenzintervalls. Das Konfidenzintervall ist gleich 100*(1 - Alpha)%, was bedeutet, dass ein Wert für Alpha von 0,05 einem Konfidenzniveau von 95% entspricht.' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die als bekannt angenommene Standardabweichung der Grundgesamtheit.' }, + size: { name: 'size', detail: 'Erforderlich. Der Umfang der Stichprobe.' }, + }, + }, + COVAR: { + description: 'Gibt kovarianz zurück, den Durchschnitt der Produkte von Abweichungen für jedes Datenpunktpaar in zwei Datasets.', + abstract: 'Gibt kovarianz zurück, den Durchschnitt der Produkte von Abweichungen für jedes Datenpunktpaar in zwei Datasets.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Der erste Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + array2: { name: 'array2', detail: 'Erforderlich. Der zweite Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + }, + }, + CRITBINOM: { + description: 'Gibt den kleinsten Wert zurück, für den die kumulierten Wahrscheinlichkeiten der Binomialverteilung größer oder gleich einer Grenzwahrscheinlichkeit sind. Mit dieser Funktion können Sie Aufgaben erledigen, die im Bereich Qualitätssicherung anfallen. Mithilfe der KRITBINOM-Funktion lässt sich beispielsweise ermitteln, wie viele defekte Teile höchstens an einem Fließband Ausschuss sein dürfen, ohne dass das gesamte Fertigungslos zurückgewiesen werden muss.', + abstract: 'Gibt den kleinsten Wert zurück, für den die kumulierten Wahrscheinlichkeiten der Binomialverteilung größer oder gleich einer Grenzwahrscheinlichkeit sind. Mit dieser Funktion können Sie Aufgaben erledigen, die im Bereich Qualitätssicherung anfallen. Mithilfe der KRITBINOM-Funktion lässt sich beispielsweise ermitteln, wie viele defekte Teile höchstens an einem Fließband Ausschuss sein dürfen, ohne dass das gesamte Fertigungslos zurückgewiesen werden muss.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Erforderlich. Die Anzahl der Bernoulliexperimente.' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit eines Erfolgs für jeden Versuch.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Die Grenzwahrscheinlichkeit.' }, + }, + }, + EXPONDIST: { + description: 'Gibt Wahrscheinlichkeiten einer exponential verteilten Zufallsvariablen zurück. Mithilfe der EXPONVERT-Funktion lassen sich Zeiträume zwischen Ereignissen modellieren, z. B. wie lange ein Geldautomat für die Ausgabe von Geld benötigt. Beispielsweise können Sie mit EXPONVERT berechnen, wie wahrscheinlich es ist, dass dieser Vorgang eine Minute dauert.', + abstract: 'Gibt Wahrscheinlichkeiten einer exponential verteilten Zufallsvariablen zurück. Mithilfe der EXPONVERT-Funktion lassen sich Zeiträume zwischen Ereignissen modellieren, z. B. wie lange ein Geldautomat für die Ausgabe von Geld benötigt. Beispielsweise können Sie mit EXPONVERT berechnen, wie wahrscheinlich es ist, dass dieser Vorgang eine Minute dauert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert für die Funktion' }, + lambda: { name: 'lambda', detail: 'Erforderlich. Der übergebene Wert' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der angibt, welche Form der exponentiellen Funktion bereitgestellt werden soll. Wenn kumulativ TRUE ist, gibt EXPONDIST die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + FDIST: { + description: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (rechtsseitigen) F-verteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Beispielsweise können Sie die Punktzahlen untersuchen, die Männer und Frauen bei einem Einstellungstest erzielt haben, und ermitteln, ob sich die für die Frauen gefundene Streuung von derjenigen der Männer unterscheidet.', + abstract: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (rechtsseitigen) F-verteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Beispielsweise können Sie die Punktzahlen untersuchen, die Männer und Frauen bei einem Einstellungstest erzielt haben, und ermitteln, ob sich die für die Frauen gefundene Streuung von derjenigen der Männer unterscheidet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + }, + }, + FINV: { + description: 'Gibt Quantile der (rechtsseitigen) F-Verteilung zurück. Ist p = FVERT(x;...), dann ist FINV(p;...) = x.', + abstract: 'Gibt Quantile der (rechtsseitigen) F-Verteilung zurück. Ist p = FVERT(x;...), dann ist FINV(p;...) = x.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur F-Verteilung gehörige Wahrscheinlichkeit' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + }, + }, + FTEST: { + description: 'Gibt das Ergebnis eines F-Tests zurück. Ein F-Test gibt die zweiseitige Wahrscheinlichkeit zurück, dass sich die Varianzen in Array1 und Array2 nicht signifikant unterscheiden. Verwenden Sie diese Funktion, um zu bestimmen, ob zwei Stichproben unterschiedliche Varianzen aufweisen. Mit Testergebnissen von öffentlichen und privaten Schulen können Sie beispielsweise testen, ob diese Schulen unterschiedliche Stufen der Testbewertungsvielfalt aufweisen.', + abstract: 'Gibt das Ergebnis eines F-Tests zurück. Ein F-Test gibt die zweiseitige Wahrscheinlichkeit zurück, dass sich die Varianzen in Array1 und Array2 nicht signifikant unterscheiden. Verwenden Sie diese Funktion, um zu bestimmen, ob zwei Stichproben unterschiedliche Varianzen aufweisen. Mit Testergebnissen von öffentlichen und privaten Schulen können Sie beispielsweise testen, ob diese Schulen unterschiedliche Stufen der Testbewertungsvielfalt aufweisen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Die erste Matrix oder der erste Wertebereich.' }, + array2: { name: 'array2', detail: 'Erforderlich. Die zweite Matrix oder der zweite Wertebereich.' }, + }, + }, + GAMMADIST: { + description: 'Gibt Wahrscheinlichkeiten einer gammaverteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie Variablen untersuchen, die eine schiefe Verteilung besitzen. Die Gammaverteilung wird häufig bei Warteschlangenanalysen verwendet.', + abstract: 'Gibt Wahrscheinlichkeiten einer gammaverteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie Variablen untersuchen, die eine schiefe Verteilung besitzen. Die Gammaverteilung wird häufig bei Warteschlangenanalysen verwendet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit berechnet werden soll.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung. Wenn Beta = 1, gibt GAMMAVERT die Standard-Gammaverteilung zurück.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumuliert TRUE ist, gibt GAMMADIST die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + GAMMAINV: { + description: 'Gibt Quantile der Gammaverteilung zurück. Gilt p = GAMMAVERT(x;...), dann gilt GAMMAINV(p;...) = x. Mit dieser Funktion können Sie eine Variable untersuchen, deren Verteilung eventuell schief ist.', + abstract: 'Gibt Quantile der Gammaverteilung zurück. Gilt p = GAMMAVERT(x;...), dann gilt GAMMAINV(p;...) = x. Mit dieser Funktion können Sie eine Variable untersuchen, deren Verteilung eventuell schief ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Gammaverteilung gehörige Wahrscheinlichkeit' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung. Wenn Beta = 1, gibt GAMMAINV die Standard-Gammaverteilung zurück.' }, + }, + }, + HYPGEOMDIST: { + description: 'Gibt die hypergeometrische Verteilung zurück. HYPGEOMDIST gibt die Wahrscheinlichkeit einer bestimmten Anzahl von Stichprobenerfolgen in Anbetracht der Stichprobengröße, der Populationserfolge und der Populationsgröße zurück. Verwenden Sie HYPGEOMDIST für Probleme mit einer endlichen Grundgesamtheit, bei der jede Beobachtung entweder ein Erfolg oder ein Fehler ist und bei denen jede Teilmenge einer bestimmten Größe mit gleicher Wahrscheinlichkeit ausgewählt wird.', + abstract: 'Gibt die hypergeometrische Verteilung zurück. HYPGEOMDIST gibt die Wahrscheinlichkeit einer bestimmten Anzahl von Stichprobenerfolgen in Anbetracht der Stichprobengröße, der Populationserfolge und der Populationsgröße zurück. Verwenden Sie HYPGEOMDIST für Probleme mit einer endlichen Grundgesamtheit, bei der jede Beobachtung entweder ein Erfolg oder ein Fehler ist und bei denen jede Teilmenge einer bestimmten Größe mit gleicher Wahrscheinlichkeit ausgewählt wird.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Erforderlich. Die Anzahl der in der Stichprobe erzielten Erfolge' }, + numberSample: { name: 'number_sample', detail: 'Erforderlich. Der Umfang (Größe) der Stichprobe' }, + populationS: { name: 'population_s', detail: 'Erforderlich. Die Anzahl der in der Grundgesamtheit möglichen Erfolge' }, + numberPop: { name: 'number_pop', detail: 'Erforderlich. Der Umfang (Größe) der Grundgesamtheit' }, + }, + }, + LOGINV: { + description: 'Gibt die Umkehrung der lognormalen kumulativen Verteilungsfunktion von x zurück, wobei ln(x) normalerweise mit den Parametern Mean und standard_dev verteilt wird. Wenn p = LOGNORMDIST(x,...) dann LOGINV(p,...) = x.', + abstract: 'Gibt die Umkehrung der lognormalen kumulativen Verteilungsfunktion von x zurück, wobei ln(x) normalerweise mit den Parametern Mean und standard_dev verteilt wird. Wenn p = LOGNORMDIST(x,...) dann LOGINV(p,...) = x.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Lognormalverteilung gehörige Wahrscheinlichkeit' }, + mean: { name: 'mean', detail: 'Erforderlich. Der Mittelwert der Lognormalverteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Lognormalverteilung' }, + }, + }, + LOGNORMDIST: { + description: 'Gibt Werte der Verteilungsfunktion einer lognormalverteilten Zufallsvariablen zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normalverteilt ist. Mit dieser Funktion können Sie Daten untersuchen, die logarithmisch transformiert wurden.', + abstract: 'Gibt Werte der Verteilungsfunktion einer lognormalverteilten Zufallsvariablen zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normalverteilt ist. Mit dieser Funktion können Sie Daten untersuchen, die logarithmisch transformiert wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + mean: { name: 'mean', detail: 'Erforderlich. Der Mittelwert der Lognormalverteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Lognormalverteilung' }, + }, + }, + MODE: { + description: 'Angenommen, Sie möchten die häufigste Anzahl von Vogelarten herausfinden, die in einer Stichprobe von Vogelzählungen in einem kritischen Feuchtgebiet über einen Zeitraum von 30 Jahren gesichtet wurden, oder Sie möchten die am häufigsten auftretende Anzahl von Telefonanrufen in einem Telefonsupportcenter außerhalb der Spitzenzeiten herausfinden. Verwenden Sie die MODE-Funktion , um den Modus einer Zahlengruppe zu berechnen.', + abstract: 'Angenommen, Sie möchten die häufigste Anzahl von Vogelarten herausfinden, die in einer Stichprobe von Vogelzählungen in einem kritischen Feuchtgebiet über einen Zeitraum von 30 Jahren gesichtet wurden, oder Sie möchten die am häufigsten auftretende Anzahl von Telefonanrufen in einem Telefonsupportcenter außerhalb der Spitzenzeiten herausfinden. Verwenden Sie die MODE-Funktion , um den Modus einer Zahlengruppe zu berechnen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, für das der Modalwert (Modus) berechnet werden soll' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 255 numerische Argumente, für die Sie den Modalwert (Modus) berechnen möchten. An Stelle der durch Semikolons getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix verwenden.' }, + }, + }, + NEGBINOMDIST: { + description: 'Gibt Wahrscheinlichkeiten einer negativbinomialverteilten Zufallsvariablen zurück. NEGBINOMVERT berechnet, wie wahrscheinlich es ist, dass es genau Zahl_Mißerfolge gibt bevor der letzte positive Ausgang (Zahl_Erfolge) gezogen wird, wenn Erfolgswahrsch die gleichbleibende Wahrscheinlichkeit eines Erfolges angibt. Die Vorgehensweise dieser Funktion unterscheidet sich von der Binomialverteilung nur dadurch, dass die Anzahl der Erfolge feststeht und die Anzahl der Versuche variabel ist. Analog zu einer Binomialverteilung wird vorausgesetzt, dass die jeweiligen Versuche voneinander unabhängig sind.', + abstract: 'Gibt Wahrscheinlichkeiten einer negativbinomialverteilten Zufallsvariablen zurück. NEGBINOMVERT berechnet, wie wahrscheinlich es ist, dass es genau Zahl_Mißerfolge gibt bevor der letzte positive Ausgang (Zahl_Erfolge) gezogen wird, wenn Erfolgswahrsch die gleichbleibende Wahrscheinlichkeit eines Erfolges angibt. Die Vorgehensweise dieser Funktion unterscheidet sich von der Binomialverteilung nur dadurch, dass die Anzahl der Erfolge feststeht und die Anzahl der Versuche variabel ist. Analog zu einer Binomialverteilung wird vorausgesetzt, dass die jeweiligen Versuche voneinander unabhängig sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Erforderlich. Die Zahl der ungünstigen Ereignisse' }, + numberS: { name: 'number_s', detail: 'Erforderlich. Die Zahl der günstigen Ereignisse' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit für den günstigen Ausgang des Experiments' }, + }, + }, + NORMDIST: { + description: 'Die NORMDIST-Funktion gibt die Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück. Diese Funktion verfügt über eine Vielzahl von Anwendungen in der Statistik, einschließlich Hypothesentests.', + abstract: 'Die NORMDIST-Funktion gibt die Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück. Diese Funktion verfügt über eine Vielzahl von Anwendungen in der Statistik, einschließlich Hypothesentests.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Verteilung Sie verwenden möchten.' }, + mean: { name: 'mean', detail: 'Erforderlich. Das arithmetische Mittel der Verteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Verteilung' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, gibt NORMDIST die kumulierte Verteilungsfunktion zurück. Wenn kumulativ FALSE ist, wird die Wahrscheinlichkeits-Massenfunktion zurückgegeben.' }, + }, + }, + NORMINV: { + description: 'Gibt Perzentile der Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück.', + abstract: 'Gibt Perzentile der Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Standardnormalverteilung gehörige Wahrscheinlichkeit' }, + mean: { name: 'mean', detail: 'Erforderlich. Das arithmetische Mittel der Verteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Verteilung' }, + }, + }, + NORMSDIST: { + description: 'Gibt Werte der Verteilungsfunktion einer standardnormalverteilten Zufallsvariablen zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1. Sie können diese Funktion an Stelle einer Tabelle verwenden, in der Werte der Verteilungsfunktion der Standardnormalverteilung zusammengestellt sind.', + abstract: 'Gibt Werte der Verteilungsfunktion einer standardnormalverteilten Zufallsvariablen zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1. Sie können diese Funktion an Stelle einer Tabelle verwenden, in der Werte der Verteilungsfunktion der Standardnormalverteilung zusammengestellt sind.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit Sie berechnen möchten' }, + }, + }, + NORMSINV: { + description: 'Gibt Quantile der Standardnormalverteilung zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1.', + abstract: 'Gibt Quantile der Standardnormalverteilung zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Standardnormalverteilung gehörige Wahrscheinlichkeit' }, + }, + }, + PERCENTILE: { + description: 'Gibt das Alpha-Quantil einer Gruppe von Daten zurück. Mithilfe dieser Funktion können Sie einen Akzeptanzschwellenwert festlegen. So könnten Sie beispielsweise entscheiden, dass nur Kandidaten untersucht werden, deren Prüfungsergebnisse oberhalb des 90 %-Quantils liegen.', + abstract: 'Gibt das Alpha-Quantil einer Gruppe von Daten zurück. Mithilfe dieser Funktion können Sie einen Akzeptanzschwellenwert festlegen. So könnten Sie beispielsweise entscheiden, dass nur Kandidaten untersucht werden, deren Prüfungsergebnisse oberhalb des 90 %-Quantils liegen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array oder ein Datenbereich, das/der die relative Lage der Daten beschreibt' }, + k: { name: 'k', detail: 'Erforderlich. Der Quantilwert aus dem geschlossenen Intervall von 0 bis 1.' }, + }, + }, + PERCENTRANK: { + description: 'Die PERCENTRANK-Funktion gibt den Rang eines Werts in einem Dataset als Prozentsatz des Datasets zurück– im Wesentlichen die relative Position eines Werts innerhalb des gesamten Datasets. Sie können beispielsweise PERCENTRANK verwenden, um den Stand der Testbewertung einer Person im Feld aller Bewertungen für denselben Test zu bestimmen.', + abstract: 'Die PERCENTRANK-Funktion gibt den Rang eines Werts in einem Dataset als Prozentsatz des Datasets zurück– im Wesentlichen die relative Position eines Werts innerhalb des gesamten Datasets. Sie können beispielsweise PERCENTRANK verwenden, um den Stand der Testbewertung einer Person im Feld aller Bewertungen für denselben Test zu bestimmen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Der Datenbereich (oder ein vordefiniertes Array) numerischer Werte, in dem der Prozentwert bestimmt wird.' }, + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den Sie den Rang innerhalb des Arrays kennen möchten.' }, + significance: { name: 'significance', detail: 'Optional. Ein Wert, der die Anzahl der Nachkommastellen des zurückgegebenen Quantilsrangs festlegt. Fehlt dieses Argument, verwendet QUANTILSRANG drei Dezimalstellen (0,xxx).' }, + }, + }, + POISSON: { + description: 'Gibt Wahrscheinlichkeiten einer poissonverteilten Zufallsvariablen zurück. Eine übliche Anwendung der Poissonverteilung ist die Modellierung der Anzahl der Ereignisse innerhalb eines bestimmten Zeitraumes, beispielsweise die Anzahl der Bankkunden, die innerhalb einer Stunde an einem Geldautomaten eintreffen.', + abstract: 'Gibt Wahrscheinlichkeiten einer poissonverteilten Zufallsvariablen zurück. Eine übliche Anwendung der Poissonverteilung ist die Modellierung der Anzahl der Ereignisse innerhalb eines bestimmten Zeitraumes, beispielsweise die Anzahl der Bankkunden, die innerhalb einer Stunde an einem Geldautomaten eintreffen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Die Zahl der Fälle' }, + mean: { name: 'mean', detail: 'Erforderlich. Der erwartete Zahlenwert' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der zurückgegebenen Wahrscheinlichkeitsverteilung bestimmt. Wenn kumulativ TRUE ist, gibt POISSON die kumulative Poisson-Wahrscheinlichkeit zurück, dass die Anzahl der zufälligen Ereignisse zwischen null und x einschließlich liegt; False gibt die Poisson-Wahrscheinlichkeits-Massenfunktion zurück, dass die Anzahl der ereignisse genau x ist.' }, + }, + }, + QUARTILE: { + description: 'Gibt die Quartile der Datengruppe zurück. Quartile werden häufig bei Verkaufs- oder Umfragedaten verwendet, um die Grundgesamtheiten in Gruppen einzuteilen. Beispielsweise können Sie mit QUARTILE für eine Stichprobe erhobener Einkommen den Wert ermitteln, ab dessen Höhe ein Einkommen zu den oberen 25 Prozent der Einkommen gehört.', + abstract: 'Gibt die Quartile der Datengruppe zurück. Quartile werden häufig bei Verkaufs- oder Umfragedaten verwendet, um die Grundgesamtheiten in Gruppen einzuteilen. Beispielsweise können Sie mit QUARTILE für eine Stichprobe erhobener Einkommen den Wert ermitteln, ab dessen Höhe ein Einkommen zu den oberen 25 Prozent der Einkommen gehört.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array oder ein Zellbereich numerischer Werte, deren Quartile Sie bestimmen möchten' }, + quart: { name: 'quart', detail: 'Erforderlich. Gibt an, welcher Wert ausgegeben werden soll' }, + }, + }, + RANK: { + description: 'Gibt den Rang zurück, den eine Zahl innerhalb einer Liste von Zahlen einnimmt. Als Rang einer Zahl wird deren Größe, bezogen auf die anderen Werte der jeweiligen Liste, bezeichnet. (Wenn Sie die Liste sortieren würden, würde die Rangzahl der Zahl deren Position angeben.)', + abstract: 'Gibt den Rang zurück, den eine Zahl innerhalb einer Liste von Zahlen einnimmt. Als Rang einer Zahl wird deren Größe, bezogen auf die anderen Werte der jeweiligen Liste, bezeichnet. (Wenn Sie die Liste sortieren würden, würde die Rangzahl der Zahl deren Position angeben.)', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, für die der Rang ermittelt werden soll' }, + ref: { name: 'ref', detail: 'Erforderlich. Ein Verweis auf eine Liste von Zahlen. Nicht numerische Werte im Bezug werden ignoriert.' }, + order: { name: 'order', detail: 'Optional. Eine Zahl, die angibt, wie der Rang von "Zahl" bestimmt werden soll Ist Reihenfolge mit 0 (Null) belegt oder nicht angegeben, bestimmt Microsoft Excel den Rang von Zahl so, als wäre Bezug eine in absteigender Reihenfolge sortierte Liste. Ist Reihenfolge mit einem Wert ungleich 0 belegt, bestimmt Microsoft Excel den Rang von Zahl so, als wäre Bezug eine in aufsteigender Reihenfolge sortierte Liste.' }, + }, + }, + STDEV: { + description: 'Schätzt die Standardabweichung ausgehend von einer Stichprobe. Die Standardabweichung ist ein Maß dafür, wie weit die jeweiligen Werte um den Mittelwert (Durchschnitt) streuen.', + abstract: 'Schätzt die Standardabweichung ausgehend von einer Stichprobe. Die Standardabweichung ist ein Maß dafür, wie weit die jeweiligen Werte um den Mittelwert (Durchschnitt) streuen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Stichprobe einer Grundgesamtheit entspricht.' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 255 numerische Argumente, die einer Stichprobe einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + STDEVP: { + description: 'Berechnet die Standardabweichung basierend auf der gesamten Grundgesamtheit, die als Argumente angegeben wird. Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + abstract: 'Berechnet die Standardabweichung basierend auf der gesamten Grundgesamtheit, die als Argumente angegeben wird. Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Grundgesamtheit entspricht' }, + number2: { name: 'number2', detail: 'Optional. 1 bis 255 numerische Argumente, die einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + TDIST: { + description: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (Student) t-verteilten Zufallsvariable zurück. Die t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Sie können diese Funktion an Stelle einer Wertetabelle mit den kritischen Werten der t-Verteilung heranziehen.', + abstract: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (Student) t-verteilten Zufallsvariable zurück. Die t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Sie können diese Funktion an Stelle einer Wertetabelle mit den kritischen Werten der t-Verteilung heranziehen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der numerische Wert, für den die Verteilung ausgewertet werden soll' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Eine ganze Zahl, mit der die Anzahl der Freiheitsgrade angegeben wird' }, + tails: { name: 'tails', detail: 'Erforderlich. Gibt die Anzahl der zurückzugebenden Verteilungsfragmente an. Wenn Tails = 1 ist, gibt TDIST die einseitige Verteilung zurück. Wenn Tails = 2 ist, gibt TDIST die zweiseitige Verteilung zurück.' }, + }, + }, + TINV: { + description: 'Gibt zweiseitige Quantile der (Student) t-Verteilung zurück.', + abstract: 'Gibt zweiseitige Quantile der (Student) t-Verteilung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur t-Verteilung gehörige Wahrscheinlichkeit (zweiseitig)' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade, durch die die Verteilung bestimmt ist' }, + }, + }, + TTEST: { + description: 'Gibt die Teststatistik eines Student\'schen t-Tests zurück. Mithilfe von TTEST können Sie testen, ob zwei Stichproben aus zwei Grundgesamtheiten mit demselben Mittelwert stammen.', + abstract: 'Gibt die Teststatistik eines Student\'schen t-Tests zurück. Mithilfe von TTEST können Sie testen, ob zwei Stichproben aus zwei Grundgesamtheiten mit demselben Mittelwert stammen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Das erste Dataset' }, + array2: { name: 'array2', detail: 'Erforderlich. Das zweite Dataset' }, + tails: { name: 'tails', detail: 'Erforderlich. Gibt die Anzahl der Verteilungsfragmente an. Wenn Tails = 1 ist, verwendet TTEST die einseitige Verteilung. Wenn Tails = 2 ist, verwendet TTEST die zweiseitige Verteilung.' }, + type: { name: 'type', detail: 'Erforderlich. Der Typ des durchzuführenden t-Tests' }, + }, + }, + VAR: { + description: 'Schätzt die Varianz auf der Basis einer Stichprobe.', + abstract: 'Schätzt die Varianz auf der Basis einer Stichprobe.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Stichprobe einer Grundgesamtheit entspricht.' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 255 numerische Argumente, die einer Stichprobe einer Grundgesamtheit entsprechen' }, + }, + }, + VARP: { + description: 'Berechnet die Varianz ausgehend von der Grundgesamtheit.', + abstract: 'Berechnet die Varianz ausgehend von der Grundgesamtheit.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Grundgesamtheit entspricht' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 255 numerische Argumente, die einer Grundgesamtheit entsprechen' }, + }, + }, + WEIBULL: { + description: 'Gibt Wahrscheinlichkeiten einer weibullverteilten Zufallsvariablen zurück. Diese Verteilung können Sie bei Zuverlässigkeitsanalysen verwenden, also beispielsweise dazu, die mittlere Lebensdauer eines Gerätes zu berechnen.', + abstract: 'Gibt Wahrscheinlichkeiten einer weibullverteilten Zufallsvariablen zurück. Diese Verteilung können Sie bei Zuverlässigkeitsanalysen verwenden, also beispielsweise dazu, die mittlere Lebensdauer eines Gerätes zu berechnen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Bestimmt den Typ der Funktion' }, + }, + }, + ZTEST: { + description: 'Gibt den einseitigen Wahrscheinlichkeitswert für einen Gaußtest (Normalverteilung) zurück. Für einen Erwartungswert einer Zufallsvariablen, µ0, gibt GTEST die Wahrscheinlichkeit zurück, mit der der Stichprobenmittelwert größer als der Durchschnitt der für diesen Datensatz (Array) durchgeführten Beobachtungen (also dem beobachteten Stichprobenmittel) ist.', + abstract: 'Gibt den einseitigen Wahrscheinlichkeitswert für einen Gaußtest (Normalverteilung) zurück. Für einen Erwartungswert einer Zufallsvariablen, µ0, gibt GTEST die Wahrscheinlichkeit zurück, mit der der Stichprobenmittelwert größer als der Durchschnitt der für diesen Datensatz (Array) durchgeführten Beobachtungen (also dem beobachteten Stichprobenmittel) ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Die Matrix (Array) oder der Datenbereich, gegen die/den Sie x testen möchten.' }, + x: { name: 'x', detail: 'Erforderlich. Der zu testende Wert' }, + sigma: { name: 'sigma', detail: 'Optional. Die bekannte Standardabweichung der Grundgesamtheit. Ohne Angabe wird die Beispielstandardabweichung verwendet.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/en-US.ts b/packages/sheets-formula/src/locale/function-list/compatibility/en-US.ts index 14bd74d1bc..f8f8e53cd7 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/en-US.ts @@ -16,95 +16,95 @@ const locale = { BETADIST: { - description: 'Returns the beta cumulative distribution function', - abstract: 'Returns the beta cumulative distribution function', + description: 'Returns the cumulative beta probability density function. The beta distribution is commonly used to study variation in the percentage of something across samples, such as the fraction of the day people spend watching television.', + abstract: 'Returns the cumulative beta probability density function. The beta distribution is commonly used to study variation in the percentage of something across samples, such as the fraction of the day people spend watching television.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/en-us/excel/functions/betadist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value between A and B at which to evaluate the function.' }, + alpha: { name: 'alpha', detail: 'Required. A parameter of the distribution.' }, + beta: { name: 'beta', detail: 'Required. A parameter of the distribution.' }, + A: { name: 'A', detail: 'Optional. A lower bound to the interval of x.' }, + B: { name: 'B', detail: 'Optional. 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', + description: 'Returns the inverse of the cumulative beta probability density function for a specified beta distribution. That is, if probability = BETADIST(x,...), then BETAINV(probability,...) = x. The beta distribution can be used in project planning to model probable completion times given an expected completion time and variability.', + abstract: 'Returns the inverse of the cumulative beta probability density function for a specified beta distribution. That is, if probability = BETADIST(x,...), then BETAINV(probability,...) = x. The beta distribution can be used in project planning to model probable completion times given an expected completion time and variability.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/en-us/excel/functions/betainv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. A probability associated with the beta distribution.' }, + alpha: { name: 'alpha', detail: 'Required. A parameter of the distribution.' }, + beta: { name: 'beta', detail: 'Required. A parameter the distribution.' }, + A: { name: 'A', detail: 'Optional. A lower bound to the interval of x.' }, + B: { name: 'B', detail: 'Optional. 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', + description: 'Returns the individual term binomial distribution probability. Use BINOMDIST in problems with a fixed number of tests or trials, when the outcomes of any trial are only success or failure, when trials are independent, and when the probability of success is constant throughout the experiment. For example, BINOMDIST can calculate the probability that two of the next three babies born are male.', + abstract: 'Returns the individual term binomial distribution probability. Use BINOMDIST in problems with a fixed number of tests or trials, when the outcomes of any trial are only success or failure, when trials are independent, and when the probability of success is constant throughout the experiment. For example, BINOMDIST can calculate the probability that two of the next three babies born are male.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/en-us/excel/functions/binomdist-function', }, ], 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.' }, + numberS: { name: 'number_s', detail: 'Required. The number of successes in trials.' }, + trials: { name: 'trials', detail: 'Required. The number of independent trials.' }, + probabilityS: { name: 'probability_s', detail: 'Required. The probability of success on each trial.' }, + cumulative: { name: 'cumulative', detail: 'Required. A logical value that determines the form of the function. If cumulative is TRUE, then BINOMDIST returns the cumulative distribution function, which is the probability that there are at most number_s successes; if FALSE, it returns the probability mass function, which is the probability that there are number_s successes.' }, }, }, CHIDIST: { - description: 'Returns the right-tailed probability of the chi-squared distribution.', - abstract: 'Returns the right-tailed probability of the chi-squared distribution.', + description: 'Returns the right-tailed probability of the chi-squared distribution. The χ2 distribution is associated with a χ2 test. Use the χ2 test to compare observed and expected values. For example, a genetic experiment might hypothesize that the next generation of plants will exhibit a certain set of colors. By comparing the observed results with the expected ones, you can decide whether your original hypothesis is valid.', + abstract: 'Returns the right-tailed probability of the chi-squared distribution. The χ2 distribution is associated with a χ2 test. Use the χ2 test to compare observed and expected values. For example, a genetic experiment might hypothesize that the next generation of plants will exhibit a certain set of colors. By comparing the observed results with the expected ones, you can decide whether your original hypothesis is valid.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/en-us/excel/functions/chidist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value at which you want to evaluate the distribution.' }, + degFreedom: { name: 'deg_freedom', detail: 'Required. 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.', + description: 'Returns the inverse of the right-tailed probability of the chi-squared distribution. If probability = CHIDIST(x,...), then CHIINV(probability,...) = x. Use this function to compare observed results with expected ones in order to decide whether your original hypothesis is valid.', + abstract: 'Returns the inverse of the right-tailed probability of the chi-squared distribution. If probability = CHIDIST(x,...), then CHIINV(probability,...) = x. Use this function to compare observed results with expected ones in order to decide whether your original hypothesis is valid.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/en-us/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: 'A probability associated with the chi-squared distribution.' }, - degFreedom: { name: 'deg_freedom', detail: 'The number of degrees of freedom.' }, + probability: { name: 'probability', detail: 'Required. A probability associated with the chi-squared distribution.' }, + degFreedom: { name: 'deg_freedom', detail: 'Required. The number of degrees of freedom.' }, }, }, CHITEST: { - description: 'Returns the test for independence', - abstract: 'Returns the test for independence', + description: 'Returns the test for independence. CHITEST returns the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. You can use χ2 tests to determine whether hypothesized results are verified by an experiment.', + abstract: 'Returns the test for independence. CHITEST returns the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. You can use χ2 tests to determine whether hypothesized results are verified by an experiment.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/en-us/excel/functions/chitest-function', }, ], 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.' }, + actualRange: { name: 'actual_range', detail: 'Required. The range of data that contains observations to test against expected values.' }, + expectedRange: { name: 'expected_range', detail: 'Required. The range of data that contains the ratio of the product of row totals and column totals to the grand total.' }, }, }, CONFIDENCE: { @@ -113,472 +113,469 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/en-us/excel/functions/confidence-function', }, ], 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.' }, + alpha: { name: 'alpha', detail: 'Required. 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: 'Required. The population standard deviation for the data range and is assumed to be known.' }, + size: { name: 'size', detail: 'Required. 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', + description: 'Returns covariance, the average of the products of deviations for each data point pair in two data sets.', + abstract: 'Returns covariance, the average of the products of deviations for each data point pair in two data sets.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/en-us/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: 'array1', detail: 'A first range of cell values.' }, - array2: { name: 'array2', detail: 'A second range of cell values.' }, + array1: { name: 'array1', detail: 'Required. The first cell range of integers.' }, + array2: { name: 'array2', detail: 'Required. The second cell range of integers.' }, }, }, 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', + description: 'Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. Use this function for quality assurance applications. For example, use CRITBINOM to determine the greatest number of defective parts that are allowed to come off an assembly line run without rejecting the entire lot.', + abstract: 'Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. Use this function for quality assurance applications. For example, use CRITBINOM to determine the greatest number of defective parts that are allowed to come off an assembly line run without rejecting the entire lot.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/en-us/excel/functions/critbinom-function', }, ], 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.' }, + trials: { name: 'trials', detail: 'Required. The number of Bernoulli trials.' }, + probabilityS: { name: 'probability_s', detail: 'Required. The probability of a success on each trial.' }, + alpha: { name: 'alpha', detail: 'Required. The criterion value.' }, }, }, EXPONDIST: { - description: 'Returns the exponential distribution', - abstract: 'Returns the exponential distribution', + description: 'Returns the exponential distribution. Use EXPONDIST to model the time between events, such as how long an automated bank teller takes to deliver cash. For example, you can use EXPONDIST to determine the probability that the process takes at most 1 minute.', + abstract: 'Returns the exponential distribution. Use EXPONDIST to model the time between events, such as how long an automated bank teller takes to deliver cash. For example, you can use EXPONDIST to determine the probability that the process takes at most 1 minute.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/en-us/excel/functions/expondist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value of the function.' }, + lambda: { name: 'lambda', detail: 'Required. The parameter value.' }, + cumulative: { name: 'cumulative', detail: 'Required. A logical value that indicates which form of the exponential function to provide. 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', + description: 'Returns the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. For example, you can examine the test scores of men and women entering high school and determine if the variability in the females is different from that found in the males.', + abstract: 'Returns the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. For example, you can examine the test scores of men and women entering high school and determine if the variability in the females is different from that found in the males.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/en-us/excel/functions/fdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value at which to evaluate the function.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Required. The numerator degrees of freedom.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Required. 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', + description: 'Returns the inverse of the (right-tailed) F probability distribution. If p = FDIST(x,...), then FINV(p,...) = x.', + abstract: 'Returns the inverse of the (right-tailed) F probability distribution. If p = FDIST(x,...), then FINV(p,...) = x.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/en-us/excel/functions/finv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. A probability associated with the F cumulative distribution.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Required. The numerator degrees of freedom.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Required. The denominator degrees of freedom.' }, }, }, FTEST: { - description: 'Returns the result of an F-test', - abstract: 'Returns the result of an F-test', + description: 'Returns the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. For example, given test scores from public and private schools, you can test whether these schools have different levels of test score diversity.', + abstract: 'Returns the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. For example, given test scores from public and private schools, you can test whether these schools have different levels of test score diversity.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/en-us/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: 'array1', detail: 'The first array or range of data.' }, - array2: { name: 'array2', detail: 'The second array or range of data.' }, + array1: { name: 'array1', detail: 'Required. The first array or range of data.' }, + array2: { name: 'array2', detail: 'Required. The second array or range of data.' }, }, }, GAMMADIST: { - description: 'Returns the gamma distribution', - abstract: 'Returns the gamma distribution', + description: 'Returns the gamma distribution. You can use this function to study variables that may have a skewed distribution. The gamma distribution is commonly used in queuing analysis.', + abstract: 'Returns the gamma distribution. You can use this function to study variables that may have a skewed distribution. The gamma distribution is commonly used in queuing analysis.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/en-us/excel/functions/gammadist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value at which you want to evaluate the distribution.' }, + alpha: { name: 'alpha', detail: 'Required. A parameter to the distribution.' }, + beta: { name: 'beta', detail: 'Required. A parameter to the distribution. If beta = 1, GAMMADIST returns the standard gamma distribution.' }, + cumulative: { name: 'cumulative', detail: 'Required. 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', + description: 'Returns the inverse of the gamma cumulative distribution. If p = GAMMADIST(x,...), then GAMMAINV(p,...) = x. You can use this function to study a variable whose distribution may be skewed.', + abstract: 'Returns the inverse of the gamma cumulative distribution. If p = GAMMADIST(x,...), then GAMMAINV(p,...) = x. You can use this function to study a variable whose distribution may be skewed.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/en-us/excel/functions/gammainv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. The probability associated with the gamma distribution.' }, + alpha: { name: 'alpha', detail: 'Required. A parameter to the distribution.' }, + beta: { name: 'beta', detail: 'Required. A parameter to the distribution. If beta = 1, GAMMAINV returns the standard gamma distribution.' }, }, }, HYPGEOMDIST: { - description: 'Returns the hypergeometric distribution', - abstract: 'Returns the hypergeometric distribution', + description: 'Returns the hypergeometric distribution. HYPGEOMDIST returns the probability of a given number of sample successes, given the sample size, population successes, and population size. Use HYPGEOMDIST for problems with a finite population, where each observation is either a success or a failure, and where each subset of a given size is chosen with equal likelihood.', + abstract: 'Returns the hypergeometric distribution. HYPGEOMDIST returns the probability of a given number of sample successes, given the sample size, population successes, and population size. Use HYPGEOMDIST for problems with a finite population, where each observation is either a success or a failure, and where each subset of a given size is chosen with equal likelihood.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/en-us/excel/functions/hypgeomdist-function', }, ], 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.' }, + sampleS: { name: 'sample_s', detail: 'Required. The number of successes in the sample.' }, + numberSample: { name: 'number_sample', detail: 'Required. The size of the sample.' }, + populationS: { name: 'population_s', detail: 'Required. The number of successes in the population.' }, + numberPop: { name: 'number_pop', detail: 'Required. The population size.' }, }, }, LOGINV: { - description: 'Returns the inverse of the lognormal cumulative distribution function', - abstract: 'Returns the inverse of the lognormal cumulative distribution function', + description: 'Returns the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard_dev. If p = LOGNORMDIST(x,...) then LOGINV(p,...) = x.', + abstract: 'Returns the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard_dev. If p = LOGNORMDIST(x,...) then LOGINV(p,...) = x.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/en-us/excel/functions/loginv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. A probability associated with the lognormal distribution.' }, + mean: { name: 'mean', detail: 'Required. The mean of ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Required. The standard deviation of ln(x).' }, }, }, LOGNORMDIST: { - description: 'Returns the cumulative lognormal distribution', - abstract: 'Returns the cumulative lognormal distribution', + description: 'Returns the cumulative lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard_dev. Use this function to analyze data that has been logarithmically transformed.', + abstract: 'Returns the cumulative lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard_dev. Use this function to analyze data that has been logarithmically transformed.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/en-us/excel/functions/lognormdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value at which to evaluate the function.' }, + mean: { name: 'mean', detail: 'Required. The mean of ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Required. The standard deviation of ln(x).' }, }, }, MODE: { - description: 'Returns the most common value in a data set', - abstract: 'Returns the most common value in a data set', + description: 'Let\'s say you want to find out the most common number of bird species sighted in a sample of bird counts at a critical wetland over a 30-year time period, or you want to find out the most frequently occurring number of phone calls at a telephone support center during off-peak hours. To calculate the mode of a group of numbers, use the MODE function.', + abstract: 'Let\'s say you want to find out the most common number of bird species sighted in a sample of bird counts at a critical wetland over a 30-year time period, or you want to find out the most frequently occurring number of phone calls at a telephone support center during off-peak hours. To calculate the mode of a group of numbers, use the MODE function.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/en-us/excel/functions/mode-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. The first number argument for which you want to calculate the mode.' }, + number2: { name: 'number2', detail: 'Optional. Number arguments 2 to 255 for which you want to calculate the mode. You can also use a single array or a reference to an array instead of arguments separated by commas.' }, }, }, NEGBINOMDIST: { - description: 'Returns the negative binomial distribution', - abstract: 'Returns the negative binomial distribution', + description: 'Returns the negative binomial distribution. NEGBINOMDIST returns the probability that there will be number_f failures before the number_s-th success, when the constant probability of a success is probability_s. This function is similar to the binomial distribution, except that the number of successes is fixed, and the number of trials is variable. Like the binomial, trials are assumed to be independent.', + abstract: 'Returns the negative binomial distribution. NEGBINOMDIST returns the probability that there will be number_f failures before the number_s-th success, when the constant probability of a success is probability_s. This function is similar to the binomial distribution, except that the number of successes is fixed, and the number of trials is variable. Like the binomial, trials are assumed to be independent.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/en-us/excel/functions/negbinomdist-function', }, ], 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.' }, + numberF: { name: 'number_f', detail: 'Required. The number of failures.' }, + numberS: { name: 'number_s', detail: 'Required. The threshold number of successes.' }, + probabilityS: { name: 'probability_s', detail: 'Required. The probability of a success.' }, }, }, NORMDIST: { - description: 'Returns the normal cumulative distribution', - abstract: 'Returns the normal cumulative distribution', + description: 'The NORMDIST function returns the normal distribution for the specified mean and standard deviation. This function has a wide range of applications in statistics, including hypothesis testing.', + abstract: 'The NORMDIST function returns the normal distribution for the specified mean and standard deviation. This function has a wide range of applications in statistics, including hypothesis testing.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/en-us/excel/functions/normdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value for which you want the distribution' }, + mean: { name: 'mean', detail: 'Required. The arithmetic mean of the distribution' }, + standardDev: { name: 'standard_dev', detail: 'Required. The standard deviation of the distribution' }, + cumulative: { name: 'cumulative', detail: 'Required. A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if cumulative is FALSE, it returns the probability mass function.' }, }, }, NORMINV: { - description: 'Returns the inverse of the normal cumulative distribution', - abstract: 'Returns the inverse of the normal cumulative distribution', + description: 'Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.', + abstract: 'Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/en-us/excel/functions/norminv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. A probability corresponding to the normal distribution.' }, + mean: { name: 'mean', detail: 'Required. The arithmetic mean of the distribution.' }, + standardDev: { name: 'standard_dev', detail: 'Required. The standard deviation of the distribution.' }, }, }, NORMSDIST: { - description: 'Returns the standard normal cumulative distribution', - abstract: 'Returns the standard normal cumulative distribution', + description: 'Returns the standard normal cumulative distribution function. The distribution has a mean of 0 (zero) and a standard deviation of one. Use this function in place of a table of standard normal curve areas.', + abstract: 'Returns the standard normal cumulative distribution function. The distribution has a mean of 0 (zero) and a standard deviation of one. Use this function in place of a table of standard normal curve areas.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/en-us/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: 'The value for which you want the distribution.' }, + z: { name: 'z', detail: 'Required. 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', + description: 'Returns the inverse of the standard normal cumulative distribution. The distribution has a mean of zero and a standard deviation of one.', + abstract: 'Returns the inverse of the standard normal cumulative distribution. The distribution has a mean of zero and a standard deviation of one.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/en-us/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: 'A probability corresponding to the normal distribution.' }, + probability: { name: 'probability', detail: 'Required. 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)', + description: 'Returns the k-th percentile of values in a range. You can use this function to establish a threshold of acceptance. For example, you can decide to examine candidates who score above the 90th percentile.', + abstract: 'Returns the k-th percentile of values in a range. You can use this function to establish a threshold of acceptance. For example, you can decide to examine candidates who score above the 90th percentile.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/en-us/excel/functions/percentile-function', }, ], 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).' }, + array: { name: 'array', detail: 'Required. The array or range of data that defines relative standing.' }, + k: { name: 'k', detail: 'Required. The percentile value in the range 0..1, inclusive.' }, }, }, 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)', + description: 'The PERCENTRANK function returns the rank of a value in a dataset as a percentage of the dataset -- essentially, the relative standing of a value within the whole dataset. For example, you could use PERCENTRANK to determine the standing of an individual\'s test score among the field of all scores for the same test.', + abstract: 'The PERCENTRANK function returns the rank of a value in a dataset as a percentage of the dataset -- essentially, the relative standing of a value within the whole dataset. For example, you could use PERCENTRANK to determine the standing of an individual\'s test score among the field of all scores for the same test.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/en-us/excel/functions/percentrank-function', }, ], 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).' }, + array: { name: 'array', detail: 'Required. The range of data (or pre-defined array) of numeric values within which percent rank is determined.' }, + x: { name: 'x', detail: 'Required. The value for which you want to know the rank within the array.' }, + significance: { name: 'significance', detail: 'Optional. A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK uses three digits (0.xxx).' }, }, }, POISSON: { - description: 'Returns the Poisson distribution', - abstract: 'Returns the Poisson distribution', + description: 'Returns the Poisson distribution. A common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute.', + abstract: 'Returns the Poisson distribution. A common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/en-us/excel/functions/poisson-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The number of events.' }, + mean: { name: 'mean', detail: 'Required. The expected numeric value.' }, + cumulative: { name: 'cumulative', detail: 'Required. A logical value that determines the form of the probability distribution returned. If cumulative is TRUE, POISSON returns the cumulative Poisson probability that the number of random events occurring will be between zero and x inclusive; if FALSE, it returns the Poisson probability mass function that the number of events occurring will be exactly x.' }, }, }, 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)', + description: 'Returns the quartile of a data set. Quartiles often are used in sales and survey data to divide populations into groups. For example, you can use QUARTILE to find the top 25 percent of incomes in a population.', + abstract: 'Returns the quartile of a data set. Quartiles often are used in sales and survey data to divide populations into groups. For example, you can use QUARTILE to find the top 25 percent of incomes in a population.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/en-us/excel/functions/quartile-function', }, ], 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.' }, + array: { name: 'array', detail: 'Required. The array or cell range of numeric values for which you want the quartile value.' }, + quart: { name: 'quart', detail: 'Required. Indicates which 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', + description: 'Returns the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list. (If you were to sort the list, the rank of the number would be its position.)', + abstract: 'Returns the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list. (If you were to sort the list, the rank of the number would be its position.)', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/en-us/excel/functions/rank-function', }, ], 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.' }, + number: { name: 'number', detail: 'Required. The number whose rank you want to find.' }, + ref: { name: 'ref', detail: 'Required. A reference to a list of numbers. Nonnumeric values in ref are ignored.' }, + order: { name: 'order', detail: 'Optional. 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', + abstract: '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).', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/en-us/excel/functions/stdev-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. The first number argument corresponding to a sample of a population.' }, + number2: { name: 'number2', detail: 'Optional. 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', + description: 'Calculates standard deviation based on the entire population given as arguments. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).', + abstract: 'Calculates standard deviation based on the entire population given as arguments. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/en-us/excel/functions/stdevp-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. The first number argument corresponding to a population.' }, + number2: { name: 'number2', detail: 'Optional. 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', + description: 'Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.', + abstract: 'Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/en-us/excel/functions/tdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The numeric value at which to evaluate the distribution.' }, + degFreedom: { name: 'degFreedom', detail: 'Required. An integer indicating the number of degrees of freedom.' }, + tails: { name: 'tails', detail: 'Required. 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)', + description: 'Returns the two-tailed inverse of the Student\'s t-distribution.', + abstract: 'Returns the two-tailed inverse of the Student\'s t-distribution.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/en-us/excel/functions/tinv-function', }, ], 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.' }, + probability: { name: 'probability', detail: 'Required. The probability associated with the two-tailed Student\'s t-distribution.' }, + degFreedom: { name: 'degFreedom', detail: 'Required. The number of degrees of freedom with which to characterize the distribution.' }, }, }, TTEST: { - description: 'Returns the probability associated with a Student\'s t-test', - abstract: 'Returns the probability associated with a Student\'s t-test', + description: 'Returns the probability associated with a Student\'s t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.', + abstract: 'Returns the probability associated with a Student\'s t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/en-us/excel/functions/ttest-function', }, ], 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.' }, + array1: { name: 'array1', detail: 'Required. The first data set.' }, + array2: { name: 'array2', detail: 'Required. The second data set.' }, + tails: { name: 'tails', detail: 'Required. 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: 'Required. The kind of t-Test to perform.' }, }, }, VAR: { description: 'Estimates variance based on a sample.', - abstract: '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', + url: 'https://support.microsoft.com/en-us/excel/functions/var-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. The first number argument corresponding to a sample of a population.' }, + number2: { name: 'number2', detail: 'Optional. 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', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/varp-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. The first number argument corresponding to a population.' }, + number2: { name: 'number2', detail: 'Optional. Number arguments 2 to 255 corresponding to a population.' }, }, }, WEIBULL: { - description: 'Returns the Weibull distribution', - abstract: 'Returns the Weibull distribution', + description: 'Returns the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device\'s mean time to failure.', + abstract: 'Returns the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device\'s mean time to failure.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/en-us/excel/functions/weibull-function', }, ], 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.' }, + x: { name: 'x', detail: 'Required. The value at which to evaluate the function.' }, + alpha: { name: 'alpha', detail: 'Required. A parameter to the distribution.' }, + beta: { name: 'beta', detail: 'Required. A parameter to the distribution.' }, + cumulative: { name: 'cumulative', detail: 'Required. Determines the form of the function.' }, }, }, ZTEST: { - description: 'Returns the one-tailed probability-value of a z-test', - abstract: 'Returns the one-tailed probability-value of a z-test', + description: 'Returns the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.', + abstract: 'Returns the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/en-us/excel/functions/ztest-function', }, ], 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.' }, + array: { name: 'array', detail: 'Required. The array or range of data against which to test x.' }, + x: { name: 'x', detail: 'Required. The value to test.' }, + sigma: { name: 'sigma', detail: 'Optional. The population (known) standard deviation. If omitted, the sample standard deviation is used.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/es-ES.ts b/packages/sheets-formula/src/locale/function-list/compatibility/es-ES.ts index 099941dde1..192b53e3bf 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/es-ES.ts @@ -18,569 +18,566 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: 'Devuelve la función de distribución acumulativa beta.', - abstract: 'Devuelve la función de distribución acumulativa beta.', + description: 'Devuelve la probabilidad para una variable aleatoria continua siguiendo una función de densidad de probabilidad beta acumulativa. La distribución beta se usa generalmente para estudiar las variaciones, a través de varias muestras, de un porcentaje que representa algún fenómeno, por ejemplo, el tiempo diario que la gente dedica a mirar televisión.', + abstract: 'Devuelve la probabilidad para una variable aleatoria continua siguiendo una función de densidad de probabilidad beta acumulativa. La distribución beta se usa generalmente para estudiar las variaciones, a través de varias muestras, de un porcentaje que representa algún fenómeno, por ejemplo, el tiempo diario que la gente dedica a mirar televisión.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-beta-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/es-es/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor entre A y B en el que se evalúa la función.' }, - alpha: { name: 'alfa', detail: 'Un parámetro de la distribución.' }, - beta: { name: 'beta', detail: 'Un parámetro de la distribución.' }, - A: { name: 'A', detail: 'Un límite inferior para el intervalo de x.' }, - B: { name: 'B', detail: 'Un límite superior para el intervalo de x.' }, + x: { name: 'x', detail: 'Obligatorio. Valor, comprendido entre A y B, con el que se debe evaluar la función.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. Un parámetro de la distribución.' }, + beta: { name: 'beta', detail: 'Obligatorio. Un parámetro de la distribución.' }, + A: { name: 'A', detail: 'Opcional. Un límite inferior del intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Un límite superior del intervalo de x.' }, }, }, BETAINV: { - description: 'Devuelve la función inversa de la función de distribución acumulativa para una distribución beta especificada.', - abstract: 'Devuelve la función inversa de la función de distribución acumulativa para una distribución beta especificada.', + description: 'Devuelve la función inversa de la función de densidad de probabilidad beta acumulativa de una distribución beta especificada. Es decir, si el argumento probabilidad = DISTR.BETA(x;...), entonces DISTR.BETA.INV(probabilidad;...) = x. La distribución beta puede emplearse en la organización de proyectos para crear modelos con fechas de finalización probables, de acuerdo con un plazo de finalización y variabilidad esperados.', + abstract: 'Devuelve la función inversa de la función de densidad de probabilidad beta acumulativa de una distribución beta especificada. Es decir, si el argumento probabilidad = DISTR.BETA(x;...), entonces DISTR.BETA.INV(probabilidad;...) = x. La distribución beta puede emplearse en la organización de proyectos para crear modelos con fechas de finalización probables, de acuerdo con un plazo de finalización y variabilidad esperados.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-beta-inv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/es-es/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad asociada con la distribución beta.' }, - alpha: { name: 'alfa', detail: 'Un parámetro de la distribución.' }, - beta: { name: 'beta', detail: 'Un parámetro de la distribución.' }, - A: { name: 'A', detail: 'Un límite inferior para el intervalo de x.' }, - B: { name: 'B', detail: 'Un límite superior para el intervalo de x.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Una probabilidad asociada con la distribución beta.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. Un parámetro de la distribución.' }, + beta: { name: 'beta', detail: 'Obligatorio. Un parámetro de la distribución.' }, + A: { name: 'A', detail: 'Opcional. Un límite inferior del intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Un límite superior del intervalo de x.' }, }, }, BINOMDIST: { - description: 'Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial.', - abstract: 'Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial.', + description: 'Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial. Use DISTR.BINOM en problemas con un número fijo de pruebas o ensayos, cuando los resultados de un ensayo son solo éxito o fracaso, cuando los ensayos son independientes y cuando la probabilidad de éxito es constante durante todo el experimento. Por ejemplo, DISTR.BINOM puede calcular la probabilidad de que dos de los próximos tres bebés que nazcan sean hombres.', + abstract: 'Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial. Use DISTR.BINOM en problemas con un número fijo de pruebas o ensayos, cuando los resultados de un ensayo son solo éxito o fracaso, cuando los ensayos son independientes y cuando la probabilidad de éxito es constante durante todo el experimento. Por ejemplo, DISTR.BINOM puede calcular la probabilidad de que dos de los próximos tres bebés que nazcan sean hombres.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-binom-function-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/es-es/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: 'núm_éxito', detail: 'El número de éxitos en los ensayos.' }, - trials: { name: 'ensayos', detail: 'El número de ensayos independientes.' }, - probabilityS: { name: 'prob_éxito', detail: 'La probabilidad de éxito en cada ensayo.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.BINOM devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de masa de probabilidad.' }, + numberS: { name: 'núm_éxito', detail: 'Obligatorio. El número de éxitos en los ensayos.' }, + trials: { name: 'ensayos', detail: 'Obligatorio. El número de ensayos independientes.' }, + probabilityS: { name: 'prob_éxito', detail: 'Obligatorio. La probabilidad de éxito en cada ensayo.' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Un valor lógico que determina la forma de la función. Si el argumento acumulado es VERDADERO, DISTR.BINOM devuelve la función de distribución acumulativa, que es la probabilidad de que exista el máximo número de éxitos; si es FALSO, devuelve la función de masa de probabilidad, que es la probabilidad de que un evento se reproduzca un número de veces igual al argumento núm_éxito.' }, }, }, CHIDIST: { - description: 'Devuelve la probabilidad de cola derecha de la distribución chi-cuadrado.', - abstract: 'Devuelve la probabilidad de cola derecha de la distribución chi-cuadrado.', + description: 'Devuelve la probabilidad de cola derecha de la distribución chi cuadrado. La distribución χ2 está asociada a una prueba χ2. Use la prueba χ2 para comparar los valores observados con los esperados. Por ejemplo, un experimento genético podría formular la hipótesis de que la próxima generación de plantas presentará un conjunto determinado de colores. Al comparar los resultados observados con los resultados esperados, puede decidir si su hipótesis original es válida.', + abstract: 'Devuelve la probabilidad de cola derecha de la distribución chi cuadrado. La distribución χ2 está asociada a una prueba χ2. Use la prueba χ2 para comparar los valores observados con los esperados. Por ejemplo, un experimento genético podría formular la hipótesis de que la próxima generación de plantas presentará un conjunto determinado de colores. Al comparar los resultados observados con los resultados esperados, puede decidir si su hipótesis original es válida.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-chi-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/es-es/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor en el que se desea evaluar la distribución.' }, - degFreedom: { name: 'grados_libertad', detail: 'El número de grados de libertad.' }, + x: { name: 'x', detail: 'Obligatorio. El valor en el que se desea evaluar la distribución.' }, + degFreedom: { name: 'grados_libertad', detail: 'Obligatorio. El número de grados de libertad.' }, }, }, CHIINV: { - description: 'Devuelve la inversa de la probabilidad de cola derecha de la distribución chi-cuadrado.', - abstract: 'Devuelve la inversa de la probabilidad de cola derecha de la distribución chi-cuadrado.', + description: 'Devuelve el inverso de una probabilidad dada, de una cola derecha, en una distribución chi cuadrado. Si la probabilidad = DISTR.CHI(x;...), PRUEBA.CHI.INV(probabilidad;...) = x. Use esta función para comparar los resultados observados con los esperados y determinar si la hipótesis original es válida.', + abstract: 'Devuelve el inverso de una probabilidad dada, de una cola derecha, en una distribución chi cuadrado. Si la probabilidad = DISTR.CHI(x;...), PRUEBA.CHI.INV(probabilidad;...) = x. Use esta función para comparar los resultados observados con los esperados y determinar si la hipótesis original es válida.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/inv-chi-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/es-es/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad asociada con la distribución chi-cuadrado.' }, - degFreedom: { name: 'grados_libertad', detail: 'El número de grados de libertad.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Una probabilidad asociada con la distribución chi cuadrado.' }, + degFreedom: { name: 'grados_libertad', detail: 'Obligatorio. El número de grados de libertad.' }, }, }, CHITEST: { - description: 'Devuelve la prueba de independencia.', - abstract: 'Devuelve la prueba de independencia.', + description: 'Devuelve la prueba de independencia. PRUEBA.CHI devuelve el valor de la distribución chi cuadrado (χ2) para la estadística y los grados de libertad apropiados. Las pruebas χ2 pueden usarse para determinar si un experimento se ajusta a los resultados teóricos.', + abstract: 'Devuelve la prueba de independencia. PRUEBA.CHI devuelve el valor de la distribución chi cuadrado (χ2) para la estadística y los grados de libertad apropiados. Las pruebas χ2 pueden usarse para determinar si un experimento se ajusta a los resultados teóricos.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/prueba-chi-function-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/es-es/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: 'rango_real', detail: 'El rango de datos que contiene las observaciones para contrastar con los valores esperados.' }, - expectedRange: { name: 'rango_esperado', detail: 'El rango de datos que contiene la proporción del producto de los totales de fila y los totales de columna con respecto al total general.' }, + actualRange: { name: 'rango_real', detail: 'Obligatorio. El rango de datos que contiene las observaciones que se contrastarán con los valores esperados.' }, + expectedRange: { name: 'rango_esperado', detail: 'Obligatorio. El rango de datos que contiene la relación del producto de los totales de filas y columnas con el total global.' }, }, }, CONFIDENCE: { - description: 'Devuelve el intervalo de confianza para la media de una población, usando una distribución normal.', - abstract: 'Devuelve el intervalo de confianza para la media de una población, usando una distribución normal.', + description: 'Devuelve el intervalo de confianza para la media de una población con distribución normal.', + abstract: 'Devuelve el intervalo de confianza para la media de una población con distribución normal.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/intervalo-confianza-function-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/es-es/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alfa', detail: 'El nivel de significación usado para calcular el nivel de confianza. El nivel de confianza es igual a 100*(1 - alfa)%, o en otras palabras, un alfa de 0,05 indica un nivel de confianza del 95 por ciento.' }, - standardDev: { name: 'desv_estándar', detail: 'La desviación estándar de la población para el rango de datos y se asume que es conocida.' }, - size: { name: 'tamaño', detail: 'El tamaño de la muestra.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. El nivel de significación usado para calcular el nivel de confianza. El nivel de confianza es igual a 100*(1 - alfa)%, es decir, un alfa de 0,05 indica un nivel de confianza del 95%.' }, + standardDev: { name: 'desv_estándar', detail: 'Obligatorio. La desviación estándar de la población para el rango de datos; se presupone que es conocida.' }, + size: { name: 'tamaño', detail: 'Obligatorio. El tamaño de la muestra.' }, }, }, COVAR: { - description: 'Devuelve la covarianza de la población, el promedio de los productos de las desviaciones para cada pareja de puntos de datos en dos conjuntos de datos.', - abstract: 'Devuelve la covarianza de la población.', + description: 'Devuelve la covarianza, el promedio de los productos de las desviaciones para cada pareja de puntos de datos en dos conjuntos de datos.', + abstract: 'Devuelve la covarianza, el promedio de los productos de las desviaciones para cada pareja de puntos de datos en dos conjuntos de datos.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/es-es/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: 'matriz1', detail: 'Un primer rango de valores de celda.' }, - array2: { name: 'matriz2', detail: 'Un segundo rango de valores de celda.' }, + array1: { name: 'matriz1', detail: 'Obligatorio. El primer rango de celdas de números enteros.' }, + array2: { name: 'matriz2', detail: 'Obligatorio. El segundo rango de celdas de números enteros.' }, }, }, CRITBINOM: { - description: 'Devuelve el menor valor para el cual la distribución binomial acumulativa es menor o igual a un valor de criterio.', - abstract: 'Devuelve el menor valor para el cual la distribución binomial acumulativa es menor o igual a un valor de criterio.', + description: 'Devuelve el menor valor cuya distribución binomial acumulativa es menor o igual que un valor de criterio. Use esta función en aplicaciones de control de calidad. Por ejemplo, use BINOM.CRIT para determinar el mayor número de piezas defectuosas que una cadena de montaje pueda producir sin tener por ello que rechazar todo el lote.', + abstract: 'Devuelve el menor valor cuya distribución binomial acumulativa es menor o igual que un valor de criterio. Use esta función en aplicaciones de control de calidad. Por ejemplo, use BINOM.CRIT para determinar el mayor número de piezas defectuosas que una cadena de montaje pueda producir sin tener por ello que rechazar todo el lote.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/es-es/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: 'ensayos', detail: 'El número de ensayos de Bernoulli.' }, - probabilityS: { name: 'prob_éxito', detail: 'La probabilidad de éxito en cada ensayo.' }, - alpha: { name: 'alfa', detail: 'El valor de criterio.' }, + trials: { name: 'ensayos', detail: 'Obligatorio. El número de ensayos de Bernoulli.' }, + probabilityS: { name: 'prob_éxito', detail: 'Obligatorio. La probabilidad de éxito en cada ensayo.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. El valor del criterio.' }, }, }, EXPONDIST: { - description: 'Devuelve la distribución exponencial.', - abstract: 'Devuelve la distribución exponencial.', + description: 'Devuelve la distribución exponencial. Use DISTR.EXP para establecer el tiempo entre eventos, como el tiempo que tarda un cajero automático en entregar el efectivo. Por ejemplo, la función DISTR.EXP puede usarse para determinar la probabilidad de que el proceso tarde un minuto como máximo.', + abstract: 'Devuelve la distribución exponencial. Use DISTR.EXP para establecer el tiempo entre eventos, como el tiempo que tarda un cajero automático en entregar el efectivo. Por ejemplo, la función DISTR.EXP puede usarse para determinar la probabilidad de que el proceso tarde un minuto como máximo.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-exp-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/es-es/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor en el que se desea evaluar la distribución.' }, - lambda: { name: 'lambda', detail: 'El valor del parámetro.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.EXP devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor de la función.' }, + lambda: { name: 'lambda', detail: 'Obligatorio. Es el valor del parámetro.' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Es un valor lógico que indica la forma de la función exponencial que va a aplicar. Si el valor de acum es VERDADERO, DISTR.EXP devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, }, }, FDIST: { - description: 'Devuelve la distribución de probabilidad F (de cola derecha).', - abstract: 'Devuelve la distribución de probabilidad F (de cola derecha).', + description: 'Devuelve la distribución de probabilidad F (grado de diversidad) (de cola derecha) de dos conjuntos de datos. Use esta función para determinar si dos conjuntos de datos tienen diferentes grados de diversidad. Por ejemplo, para examinar los resultados de los exámenes de acceso a la enseñanza secundaria de mujeres y hombres, y determinar si la variabilidad entre las mujeres es diferente de la de los hombres.', + abstract: 'Devuelve la distribución de probabilidad F (grado de diversidad) (de cola derecha) de dos conjuntos de datos. Use esta función para determinar si dos conjuntos de datos tienen diferentes grados de diversidad. Por ejemplo, para examinar los resultados de los exámenes de acceso a la enseñanza secundaria de mujeres y hombres, y determinar si la variabilidad entre las mujeres es diferente de la de los hombres.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-f-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/es-es/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor en el que se evalúa la función.' }, - degFreedom1: { name: 'grados_libertad1', detail: 'Los grados de libertad del numerador.' }, - degFreedom2: { name: 'grados_libertad2', detail: 'Los grados de libertad del denominador.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor en el que desea evaluar la función.' }, + degFreedom1: { name: 'grados_libertad1', detail: 'Obligatorio. Es el número de grados de libertad del numerador.' }, + degFreedom2: { name: 'grados_libertad2', detail: 'Obligatorio. Es el número de grados de libertad del denominador.' }, }, }, FINV: { - description: 'Devuelve la inversa de la distribución de probabilidad F (de cola derecha).', - abstract: 'Devuelve la inversa de la distribución de probabilidad F (de cola derecha).', + description: 'Devuelve el inverso de la distribución de probabilidad F (de cola derecha). Si p = DISTR.F(x,...), entonces DISTR.F.INV(p,...) = x.', + abstract: 'Devuelve el inverso de la distribución de probabilidad F (de cola derecha). Si p = DISTR.F(x,...), entonces DISTR.F.INV(p,...) = x.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-f-inv-function-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/es-es/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad asociada con la distribución F acumulativa.' }, - degFreedom1: { name: 'grados_libertad1', detail: 'Los grados de libertad del numerador.' }, - degFreedom2: { name: 'grados_libertad2', detail: 'Los grados de libertad del denominador.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es una probabilidad asociada a la distribución acumulativa F.' }, + degFreedom1: { name: 'grados_libertad1', detail: 'Obligatorio. Es el número de grados de libertad del numerador.' }, + degFreedom2: { name: 'grados_libertad2', detail: 'Obligatorio. Es el número de grados de libertad del denominador.' }, }, }, FTEST: { - description: 'Devuelve el resultado de una prueba F.', - abstract: 'Devuelve el resultado de una prueba F.', + description: 'Devuelve el resultado de una prueba F. Una prueba F devuelve la probabilidad de dos colas de que las varianzas de matriz1 y matriz2 no sean significativamente diferentes. Use esta función para determinar si las varianzas de dos muestras son diferentes. Por ejemplo, dados los resultados de los exámenes de escuelas públicas y privadas, puede comprobar si estas escuelas tienen distintos niveles de diversidad en los resultados.', + abstract: 'Devuelve el resultado de una prueba F. Una prueba F devuelve la probabilidad de dos colas de que las varianzas de matriz1 y matriz2 no sean significativamente diferentes. Use esta función para determinar si las varianzas de dos muestras son diferentes. Por ejemplo, dados los resultados de los exámenes de escuelas públicas y privadas, puede comprobar si estas escuelas tienen distintos niveles de diversidad en los resultados.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/prueba-f-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/es-es/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: 'matriz1', detail: 'La primera matriz o rango de datos.' }, - array2: { name: 'matriz2', detail: 'La segunda matriz o rango de datos.' }, + array1: { name: 'matriz1', detail: 'Obligatorio. Es la primera matriz o rango de datos.' }, + array2: { name: 'matriz2', detail: 'Obligatorio. Es la segunda matriz o rango de datos.' }, }, }, GAMMADIST: { - description: 'Devuelve la distribución gamma.', - abstract: 'Devuelve la distribución gamma.', + description: 'Devuelve la distribución gamma. Use esta función para estudiar variables cuya distribución podría ser sesgada. La distribución gamma es de uso corriente en análisis de las colas de espera.', + abstract: 'Devuelve la distribución gamma. Use esta función para estudiar variables cuya distribución podría ser sesgada. La distribución gamma es de uso corriente en análisis de las colas de espera.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-gamma-function-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/es-es/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor para el que desea la distribución.' }, - alpha: { name: 'alfa', detail: 'Un parámetro de la distribución.' }, - beta: { name: 'beta', detail: 'Un parámetro de la distribución.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.GAMMA devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. El valor en el que se desea evaluar la distribución.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. Es un parámetro de la distribución.' }, + beta: { name: 'beta', detail: 'Obligatorio. Es un parámetro de la distribución. Si beta = 1, DISTR.GAMMA devuelve la distribución gamma estándar.' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Es un valor lógico que determina la forma de la función. Si el argumento acumulado es VERDADERO, DISTR.GAMMA devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, }, }, GAMMAINV: { - description: 'Devuelve la inversa de la distribución gamma acumulativa.', - abstract: 'Devuelve la inversa de la distribución gamma acumulativa.', + description: 'Devuelve el inverso de la distribución gamma acumulativa. Si p = DISTR.GAMMA(x,...), entonces DISTR.GAMMA.INV(p,...) = x. Use esta función para estudiar variables cuya distribución puede ser sesgada.', + abstract: 'Devuelve el inverso de la distribución gamma acumulativa. Si p = DISTR.GAMMA(x,...), entonces DISTR.GAMMA.INV(p,...) = x. Use esta función para estudiar variables cuya distribución puede ser sesgada.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gamma-inv-function-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/es-es/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad asociada con la distribución gamma.' }, - alpha: { name: 'alfa', detail: 'Un parámetro de la distribución.' }, - beta: { name: 'beta', detail: 'Un parámetro de la distribución.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es la probabilidad asociada con la distribución gamma.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. Es un parámetro de la distribución.' }, + beta: { name: 'beta', detail: 'Obligatorio. Un parámetro de la distribución. Si beta = 1, DISTR.GAMMA.INV devuelve la distribución gamma estándar.' }, }, }, HYPGEOMDIST: { - description: 'Devuelve la distribución hipergeométrica.', - abstract: 'Devuelve la distribución hipergeométrica.', + description: 'Devuelve la distribución hipergeométrica. La función DISTR.HIPERGEOM devuelve la probabilidad de obtener un número determinado de "éxitos" en una muestra, conocidos el tamaño de la muestra, el número de éxitos de la población y el tamaño de la población. Use DISTR.HIPERGEOM en problemas con una población finita, donde cada observación sea un éxito o un fracaso, y pueda elegir cada subconjunto de un tamaño determinado con la misma probabilidad.', + abstract: 'Devuelve la distribución hipergeométrica. La función DISTR.HIPERGEOM devuelve la probabilidad de obtener un número determinado de "éxitos" en una muestra, conocidos el tamaño de la muestra, el número de éxitos de la población y el tamaño de la población. Use DISTR.HIPERGEOM en problemas con una población finita, donde cada observación sea un éxito o un fracaso, y pueda elegir cada subconjunto de un tamaño determinado con la misma probabilidad.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-hipergeom-function-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/es-es/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: 'muestra_éxito', detail: 'El número de éxitos en la muestra.' }, - numberSample: { name: 'núm_muestra', detail: 'El tamaño de la muestra.' }, - populationS: { name: 'población_éxito', detail: 'El número de éxitos en la población.' }, - numberPop: { name: 'núm_población', detail: 'El tamaño de la población.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.HIPERGEOM devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + sampleS: { name: 'muestra_éxito', detail: 'Obligatorio. Es el número de éxitos en la muestra.' }, + numberSample: { name: 'núm_muestra', detail: 'Obligatorio. Es el tamaño de la muestra.' }, + populationS: { name: 'población_éxito', detail: 'Obligatorio. Es el número de éxitos en la población.' }, + numberPop: { name: 'núm_población', detail: 'Obligatorio. Es el tamaño de la población.' }, }, }, LOGINV: { - description: 'Devuelve la inversa de la función de distribución logarítmico-normal acumulativa.', - abstract: 'Devuelve la inversa de la función de distribución logarítmico-normal acumulativa.', + description: 'Devuelve el inverso de la función de distribución logarítmico-normal acumulativa de x, donde ln(x) se distribuye normalmente con los parámetros media y desv_estándar. Si p = DISTR.LOG.NORM(x,...) entonces DISTR.LOG.INV(p,...) = x.', + abstract: 'Devuelve el inverso de la función de distribución logarítmico-normal acumulativa de x, donde ln(x) se distribuye normalmente con los parámetros media y desv_estándar. Si p = DISTR.LOG.NORM(x,...) entonces DISTR.LOG.INV(p,...) = x.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-log-inv-function-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/es-es/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad correspondiente a la distribución logarítmico-normal.' }, - mean: { name: 'media', detail: 'La media aritmética de la distribución.' }, - standardDev: { name: 'desv_estándar', detail: 'La desviación estándar de la distribución.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es la probabilidad asociada con la distribución logarítmica normal.' }, + mean: { name: 'media', detail: 'Obligatorio. Es la media de In(x).' }, + standardDev: { name: 'desv_estándar', detail: 'Obligatorio. Es la desviación estándar de In(x).' }, }, }, LOGNORMDIST: { - description: 'Devuelve la distribución logarítmico-normal acumulativa.', - abstract: 'Devuelve la distribución logarítmico-normal acumulativa.', + description: 'Devuelve la distribución logarítmico-normal acumulativa de x, donde ln(x) se distribuye normalmente con los parámetros media y desv_estándar. Use esta función para analizar datos que se han transformado logarítmicamente.', + abstract: 'Devuelve la distribución logarítmico-normal acumulativa de x, donde ln(x) se distribuye normalmente con los parámetros media y desv_estándar. Use esta función para analizar datos que se han transformado logarítmicamente.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-log-norm-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/es-es/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor para el que desea la distribución.' }, - mean: { name: 'media', detail: 'La media aritmética de la distribución.' }, - standardDev: { name: 'desv_estándar', detail: 'La desviación estándar de la distribución.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DIST.LOGNORM devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor en el que desea evaluar la función.' }, + mean: { name: 'media', detail: 'Obligatorio. Es la media de In(x).' }, + standardDev: { name: 'desv_estándar', detail: 'Obligatorio. Es la desviación estándar de In(x).' }, }, }, MODE: { - description: 'Devuelve el valor más común en un conjunto de datos.', - abstract: 'Devuelve el valor más común en un conjunto de datos.', + description: 'Supongamos que desea conocer el número más común de especies de aves observadas en una muestra de recuentos de aves en un humedal crítico durante un período de tiempo de 30 años, o desea conocer el número de llamadas telefónicas que se producen con más frecuencia en un centro de soporte telefónico durante las horas de poca actividad. Para calcular el modo de un grupo de números, use la función MODA .', + abstract: 'Supongamos que desea conocer el número más común de especies de aves observadas en una muestra de recuentos de aves en un humedal crítico durante un período de tiempo de 30 años, o desea conocer el número de llamadas telefónicas que se producen con más frecuencia en un centro de soporte telefónico durante las horas de poca actividad. Para calcular el modo de un grupo de números, use la función MODA .', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/moda-function-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/es-es/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'El primer número, referencia de celda o rango para el que desea calcular la moda.' }, - number2: { name: 'número2', detail: 'Números, referencias de celda o rangos adicionales para los que desea calcular la moda, hasta un máximo de 255.' }, + number1: { name: 'número1', detail: 'Obligatorio. Es el primer argumento numérico para el que desea calcular la moda.' }, + number2: { name: 'número2', detail: 'Opcional. De 2 a 255 argumentos numéricos cuya moda desea calcular. También puede usar una matriz única o una referencia de matriz en lugar de argumentos separados por comas.' }, }, }, NEGBINOMDIST: { - description: 'Devuelve la distribución binomial negativa.', - abstract: 'Devuelve la distribución binomial negativa.', + description: 'Devuelve la distribución binomial negativa. NEGBINOMDIST devuelve la probabilidad de obtener un valor de núm_fracasos antes que de núm_éxitos, con una probabilidad constante de éxitos de prob_éxito. Esta función es similar a la distribución binomial, con la excepción de que el número de éxitos es fijo y el número de ensayos es variable. Al igual que la distribución binomial, se supone que los ensayos son independientes.', + abstract: 'Devuelve la distribución binomial negativa. NEGBINOMDIST devuelve la probabilidad de obtener un valor de núm_fracasos antes que de núm_éxitos, con una probabilidad constante de éxitos de prob_éxito. Esta función es similar a la distribución binomial, con la excepción de que el número de éxitos es fijo y el número de ensayos es variable. Al igual que la distribución binomial, se supone que los ensayos son independientes.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-neg-bin-function-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/es-es/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: 'núm_fracasos', detail: 'El número de fracasos.' }, - numberS: { name: 'núm_éxitos', detail: 'El número umbral de éxitos.' }, - probabilityS: { name: 'prob_éxito', detail: 'La probabilidad de un éxito.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.NEGBINOM devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + numberF: { name: 'núm_fracasos', detail: 'Obligatorio. Es el número de fracasos.' }, + numberS: { name: 'núm_éxitos', detail: 'Obligatorio. Es el número límite de éxitos.' }, + probabilityS: { name: 'prob_éxito', detail: 'Obligatorio. Es la probabilidad de obtener un éxito.' }, }, }, NORMDIST: { - description: 'Devuelve la distribución normal acumulativa.', - abstract: 'Devuelve la distribución normal acumulativa.', + description: 'La función DISTR.NORM devuelve la distribución normal para la media y desviación estándar especificadas. Esta función tiene una amplia gama de aplicaciones en estadísticas, incluidas las pruebas de hipótesis.', + abstract: 'La función DISTR.NORM devuelve la distribución normal para la media y desviación estándar especificadas. Esta función tiene una amplia gama de aplicaciones en estadísticas, incluidas las pruebas de hipótesis.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-norm-function-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/es-es/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor para el que desea la distribución.' }, - mean: { name: 'media', detail: 'La media aritmética de la distribución.' }, - standardDev: { name: 'desv_estándar', detail: 'La desviación estándar de la distribución.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, DISTR.NORM devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. El valor para el que desea la distribución' }, + mean: { name: 'media', detail: 'Obligatorio. La media aritmética de la distribución' }, + standardDev: { name: 'desv_estándar', detail: 'Obligatorio. La desviación estándar de la distribución' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Es un valor lógico que determina la forma de la función. Si el argumento acumulado es VERDADERO, DISTR.NORM devuelve la función de distribución acumulativa; si el argumento acumulado es FALSO, devuelve la función de masa de probabilidad.' }, }, }, NORMINV: { - description: 'Devuelve la inversa de la distribución normal acumulativa.', - abstract: 'Devuelve la inversa de la distribución normal acumulativa.', + description: 'Devuelve el inverso de la distribución normal acumulativa para la media y desviación estándar especificadas.', + abstract: 'Devuelve el inverso de la distribución normal acumulativa para la media y desviación estándar especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-norm-inv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/es-es/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad correspondiente a la distribución normal.' }, - mean: { name: 'media', detail: 'La media aritmética de la distribución.' }, - standardDev: { name: 'desv_estándar', detail: 'La desviación estándar de la distribución.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es una probabilidad correspondiente a la distribución normal.' }, + mean: { name: 'media', detail: 'Obligatorio. Es la media aritmética de la distribución.' }, + standardDev: { name: 'desv_estándar', detail: 'Obligatorio. Es la desviación estándar de la distribución.' }, }, }, NORMSDIST: { - description: 'Devuelve la distribución normal estándar acumulativa.', - abstract: 'Devuelve la distribución normal estándar acumulativa.', + description: 'Devuelve la función de distribución normal estándar acumulativa. La distribución tiene una media de 0 (cero) y una desviación estándar de uno. Use esta función en lugar de una tabla estándar de áreas de curvas normales.', + abstract: 'Devuelve la función de distribución normal estándar acumulativa. La distribución tiene una media de 0 (cero) y una desviación estándar de uno. Use esta función en lugar de una tabla estándar de áreas de curvas normales.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-norm-estand-function-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/es-es/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: 'El valor para el que desea la distribución.' }, + z: { name: 'z', detail: 'Obligatorio. Es el valor cuya distribución desea obtener.' }, }, }, NORMSINV: { - description: 'Devuelve la inversa de la distribución normal estándar acumulativa.', - abstract: 'Devuelve la inversa de la distribución normal estándar acumulativa.', + description: 'Devuelve el inverso de la distribución normal estándar acumulativa. La distribución tiene una media de cero y una desviación estándar de uno.', + abstract: 'Devuelve el inverso de la distribución normal estándar acumulativa. La distribución tiene una media de cero y una desviación estándar de uno.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-norm-estand-inv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/es-es/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'Una probabilidad correspondiente a la distribución normal.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es una probabilidad correspondiente a la distribución normal.' }, }, }, PERCENTILE: { - description: 'Devuelve el k-ésimo percentil de los valores de un conjunto de datos (incluye 0 y 1).', - abstract: 'Devuelve el k-ésimo percentil de los valores de un conjunto de datos (incluye 0 y 1).', + description: 'Devuelve el k-ésimo percentil de los valores de un rango. Esta función permite establecer un umbral de aceptación. Por ejemplo, podrá examinar a los candidatos cuya calificación sea superior al nonagésimo percentil.', + abstract: 'Devuelve el k-ésimo percentil de los valores de un rango. Esta función permite establecer un umbral de aceptación. Por ejemplo, podrá examinar a los candidatos cuya calificación sea superior al nonagésimo percentil.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/percentil-function-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/es-es/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: 'matriz', detail: 'La matriz o rango de datos que define la posición relativa.' }, - k: { name: 'k', detail: 'El valor del percentil en el rango de 0 a 1 (incluidos).' }, + array: { name: 'matriz', detail: 'Obligatorio. Es la matriz o el rango de datos que define la posición relativa.' }, + k: { name: 'k', detail: 'Obligatorio. Es el valor de percentil en el rango de 0 a 1, ambos incluidos.' }, }, }, PERCENTRANK: { - description: 'Devuelve el rango porcentual de un valor en un conjunto de datos (incluye 0 y 1).', - abstract: 'Devuelve el rango porcentual de un valor en un conjunto de datos (incluye 0 y 1).', + description: 'La función RANGO.PERCENTIL devuelve la jerarquía de un valor en un conjunto de datos como un porcentaje del conjunto de datos( básicamente, la posición relativa de un valor dentro de todo el conjunto de datos). Por ejemplo, puede usar RANGO.PERCENTIL para determinar la posición del resultado de una prueba individual entre el campo de todos los resultados de la misma prueba.', + abstract: 'La función RANGO.PERCENTIL devuelve la jerarquía de un valor en un conjunto de datos como un porcentaje del conjunto de datos( básicamente, la posición relativa de un valor dentro de todo el conjunto de datos). Por ejemplo, puede usar RANGO.PERCENTIL para determinar la posición del resultado de una prueba individual entre el campo de todos los resultados de la misma prueba.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/rango-percentil-function-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/es-es/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: 'matriz', detail: 'La matriz o rango de datos que define la posición relativa.' }, - x: { name: 'x', detail: 'El valor cuyo rango desea conocer.' }, - significance: { name: 'cifras_significativas', detail: 'Un valor que identifica el número de dígitos significativos para el valor de porcentaje devuelto. Si se omite, RANGO.PERCENTIL.INC usa tres dígitos (0,xxx).' }, + array: { name: 'matriz', detail: 'Obligatorio. El rango de datos (o matriz predefinida) de valores numéricos dentro del cual se determina el rango de porcentaje.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor cuyo rango dentro de la matriz desea conocer.' }, + significance: { name: 'cifras_significativas', detail: 'Opcional. Es un valor opcional que identifica el número de cifras significativas para el valor de porcentaje devuelto. Si omite este argumento, RANGO.PERCENTIL usa tres dígitos (0,xxx).' }, }, }, POISSON: { - description: 'Devuelve la distribución de Poisson.', - abstract: 'Devuelve la distribución de Poisson.', + description: 'Devuelve la distribución de Poisson. Una de las aplicaciones comunes de la distribución de Poisson es la predicción del número de eventos en un determinado período de tiempo, como por ejemplo, el número de automóviles que se presenta a una zona de peaje en el intervalo de un minuto.', + abstract: 'Devuelve la distribución de Poisson. Una de las aplicaciones comunes de la distribución de Poisson es la predicción del número de eventos en un determinado período de tiempo, como por ejemplo, el número de automóviles que se presenta a una zona de peaje en el intervalo de un minuto.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/es-es/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor para el que desea la distribución.' }, - mean: { name: 'media', detail: 'La media aritmética de la distribución.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, POISSON devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de masa de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. Es el número de eventos.' }, + mean: { name: 'media', detail: 'Obligatorio. Es el valor numérico esperado.' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Es un valor lógico que determina la forma de la distribución de probabilidad devuelta. Si el argumento acumulado es VERDADERO, POISSON devuelve la probabilidad de Poisson de que un evento aleatorio ocurra un número de veces comprendido entre 0 y x, ambos incluidos; si el argumento acumulado es FALSO, la función devuelve la probabilidad de Poisson de que un evento ocurra exactamente x veces.' }, }, }, QUARTILE: { - description: 'Devuelve el cuartil de un conjunto de datos (incluye 0 y 1).', - abstract: 'Devuelve el cuartil de un conjunto de datos (incluye 0 y 1).', + description: 'Devuelve el cuartil de un conjunto de datos. Los cuartiles se usan con frecuencia en los datos de ventas y encuestas para dividir las poblaciones en grupos. Por ejemplo, use la función CUARTIL para determinar el 25 por ciento de ingresos más altos en una población.', + abstract: 'Devuelve el cuartil de un conjunto de datos. Los cuartiles se usan con frecuencia en los datos de ventas y encuestas para dividir las poblaciones en grupos. Por ejemplo, use la función CUARTIL para determinar el 25 por ciento de ingresos más altos en una población.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/cuartil-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/es-es/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: 'matriz', detail: 'La matriz o rango de datos para el que desea los valores de cuartil.' }, - quart: { name: 'cuartil', detail: 'El valor de cuartil a devolver.' }, + array: { name: 'matriz', detail: 'Obligatorio. Es la matriz o el rango de celdas de valores numéricos cuyo cuartil desea obtener.' }, + quart: { name: 'cuartil', detail: 'Obligatorio. Indica el valor que se devolverá.' }, }, }, RANK: { - description: 'Devuelve el rango de un número en una lista de números.', - abstract: 'Devuelve el rango de un número en una lista de números.', + description: 'Devuelve la jerarquía de un número en una lista de números. La jerarquía de un número es su tamaño en comparación con otros valores de la lista. (Si ordenara la lista, la jerarquía del número sería su posición.)', + abstract: 'Devuelve la jerarquía de un número en una lista de números. La jerarquía de un número es su tamaño en comparación con otros valores de la lista. (Si ordenara la lista, la jerarquía del número sería su posición.)', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/jerarquia-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/es-es/excel/functions/rank-function', }, ], functionParameter: { - number: { name: 'número', detail: 'El número cuyo rango desea encontrar.' }, - ref: { name: 'ref', detail: 'Una referencia a una lista de números. Los valores no numéricos en ref se ignoran.' }, - order: { name: 'orden', detail: 'Un número que especifica cómo clasificar el número. Si el orden es 0 (cero) u se omite, Microsoft Excel clasifica el número como si ref fuera una lista ordenada en orden descendente. Si el orden es cualquier valor distinto de cero, Microsoft Excel clasifica el número como si ref fuera una lista ordenada en orden ascendente.' }, + number: { name: 'número', detail: 'Obligatorio. Es el número cuya jerarquía (clasificación) desea conocer.' }, + ref: { name: 'ref', detail: 'Obligatorio. Es una referencia a una lista de números. Los valores no numéricos se pasan por alto.' }, + order: { name: 'orden', detail: 'Opcional. Es un número que especifica cómo clasificar el argumento número. Si omite el argumento orden o es 0 (cero), Microsoft Excel determina la jerarquía de un número como si la lista definida por el argumento referencia se ordenara en forma descendente. Si el argumento orden es diferente de cero, Microsoft Excel determina la jerarquía de un número como si la lista definida por el argumento referencia se ordenara en forma ascendente.' }, }, }, STDEV: { - description: 'Estima la desviación estándar basándose en una muestra. La desviación estándar es una medida de la dispersión de los valores con respecto al valor promedio (la media).', - abstract: 'Estima la desviación estándar basándose en una muestra.', + description: 'Calcula la desviación estándar de una muestra. La desviación estándar es la medida de la dispersión de los valores respecto a la media (valor promedio).', + abstract: 'Calcula la desviación estándar de una muestra. La desviación estándar es la medida de la dispersión de los valores respecto a la media (valor promedio).', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/desvest-function-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/es-es/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'El primer argumento numérico correspondiente a una muestra de una población.' }, - number2: { name: 'número2', detail: 'Argumentos numéricos de 2 a 255 correspondientes a una muestra de una población. También puede usar una sola matriz o una referencia a una matriz en lugar de argumentos separados por comas.' }, + number1: { name: 'número1', detail: 'Obligatorio. Es el primer argumento numérico correspondiente a una muestra de una población.' }, + number2: { name: 'número2', detail: 'Opcional. De 2 a 255 argumentos numéricos correspondientes a una muestra de una población. También puede usar una matriz única o una referencia de matriz en lugar de argumentos separados por comas.' }, }, }, STDEVP: { - description: 'Calcula la desviación estándar basándose en la población total dada como argumentos.', - abstract: 'Calcula la desviación estándar basándose en la población total.', + description: 'Calcula la desviación estándar de la población total determinada por los argumentos. La desviación estándar es la medida de la dispersión de los valores respecto a la media (valor promedio).', + abstract: 'Calcula la desviación estándar de la población total determinada por los argumentos. La desviación estándar es la medida de la dispersión de los valores respecto a la media (valor promedio).', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/desvestp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/es-es/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'El primer argumento numérico correspondiente a una población.' }, - number2: { name: 'número2', detail: 'Argumentos numéricos de 2 a 255 correspondientes a una población. También puede usar una sola matriz o una referencia a una matriz en lugar de argumentos separados por comas.' }, + number1: { name: 'número1', detail: 'Obligatorio. Es el primer argumento numérico correspondiente a una población.' }, + number2: { name: 'número2', detail: 'Opcional. De 2 a 255 argumentos numéricos correspondientes a una población. También puede usar una matriz única o una referencia de matriz en lugar de argumentos separados por comas.' }, }, }, TDIST: { - description: 'Devuelve la probabilidad de la distribución t de Student.', - abstract: 'Devuelve la probabilidad de la distribución t de Student.', + description: 'Devuelve los puntos porcentuales (probabilidad) de la distribución t de Student, donde un valor numérico (x) es un valor calculado de t para el que debe calcular los puntos porcentuales. Puede usar la distribución t de Student para comprobar pruebas de hipótesis cuando el tamaño de la muestra es pequeño. Use esta función en lugar de una tabla de valores críticos para la distribución t.', + abstract: 'Devuelve los puntos porcentuales (probabilidad) de la distribución t de Student, donde un valor numérico (x) es un valor calculado de t para el que debe calcular los puntos porcentuales. Puede usar la distribución t de Student para comprobar pruebas de hipótesis cuando el tamaño de la muestra es pequeño. Use esta función en lugar de una tabla de valores críticos para la distribución t.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/distr-t-function-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/es-es/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor numérico en el que evaluar la distribución.' }, - degFreedom: { name: 'grados_libertad', detail: 'Un entero que indica el número de grados de libertad.' }, - tails: { name: 'colas', detail: 'Especifica el número de colas de distribución a devolver. Si Colas = 1, DISTR.T devuelve la distribución de una cola. Si Colas = 2, DISTR.T devuelve la distribución de dos colas.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor numérico al que debe evaluar la distribución.' }, + degFreedom: { name: 'grados_libertad', detail: 'Obligatorio. Es un número entero que indica el número de grados de libertad.' }, + tails: { name: 'colas', detail: 'Obligatorio. Especifica el número de colas de la distribución que deben devolverse. Si colas = 1, DISTR.T devuelve la distribución de una cola. Si colas = 2, DISTR.T devuelve la distribución de dos colas.' }, }, }, TINV: { - description: 'Devuelve la inversa de la probabilidad de la distribución t de Student (dos colas).', - abstract: 'Devuelve la inversa de la probabilidad de la distribución t de Student (dos colas).', + description: 'Devuelve el inverso de la distribución t de Student de dos colas.', + abstract: 'Devuelve el inverso de la distribución t de Student de dos colas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/inv-t-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/es-es/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: 'probabilidad', detail: 'La probabilidad asociada con la distribución t de Student.' }, - degFreedom: { name: 'grados_libertad', detail: 'Un entero que indica el número de grados de libertad.' }, + probability: { name: 'probabilidad', detail: 'Obligatorio. Es la probabilidad asociada con la distribución t de Student de dos colas.' }, + degFreedom: { name: 'grados_libertad', detail: 'Obligatorio. Es el número de grados de libertad que caracteriza la distribución.' }, }, }, TTEST: { - description: 'Devuelve la probabilidad asociada con una prueba t de Student.', - abstract: 'Devuelve la probabilidad asociada con una prueba t de Student.', + description: 'Devuelve la probabilidad asociada con la prueba t de Student. Use PRUEBA.T para determinar la probabilidad de que dos muestras puedan proceder de dos poblaciones subyacentes con igual media.', + abstract: 'Devuelve la probabilidad asociada con la prueba t de Student. Use PRUEBA.T para determinar la probabilidad de que dos muestras puedan proceder de dos poblaciones subyacentes con igual media.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/prueba-t-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/es-es/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: 'matriz1', detail: 'La primera matriz o rango de datos.' }, - array2: { name: 'matriz2', detail: 'La segunda matriz o rango de datos.' }, - tails: { name: 'colas', detail: 'Especifica el número de colas de distribución. Si colas = 1, PRUEBA.T usa la distribución de una cola. Si colas = 2, PRUEBA.T usa la distribución de dos colas.' }, - type: { name: 'tipo', detail: 'El tipo de prueba t a realizar.' }, + array1: { name: 'matriz1', detail: 'Obligatorio. Es el primer conjunto de datos.' }, + array2: { name: 'matriz2', detail: 'Obligatorio. Es el segundo conjunto de datos.' }, + tails: { name: 'colas', detail: 'Obligatorio. Especifica el número de colas de la distribución. Si el argumento colas = 1, PRUEBA.T usa la distribución de una cola. Si colas = 2, PRUEBA.T usa la distribución de dos colas.' }, + type: { name: 'tipo', detail: 'Obligatorio. Es el tipo de prueba t realizada.' }, }, }, VAR: { - description: 'Estima la varianza basándose en una muestra.', - abstract: 'Estima la varianza basándose en una muestra.', + description: 'Calcula la varianza de una muestra.', + abstract: 'Calcula la varianza de una muestra.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/es-es/excel/functions/var-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'El primer argumento numérico correspondiente a una muestra de una población.' }, - number2: { name: 'número2', detail: 'Argumentos numéricos de 2 a 255 correspondientes a una muestra de una población.' }, + number1: { name: 'número1', detail: 'Obligatorio. Es el primer argumento numérico correspondiente a una muestra de una población.' }, + number2: { name: 'número2', detail: 'Opcional. De 2 a 255 argumentos numéricos correspondientes a una muestra de una población.' }, }, }, VARP: { - description: 'Calcula la varianza basándose en la población total.', - abstract: 'Calcula la varianza basándose en la población total.', + description: 'Calcula la varianza en función de toda la población.', + abstract: 'Calcula la varianza en función de toda la población.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/es-es/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'El primer argumento numérico correspondiente a una población.' }, - number2: { name: 'número2', detail: 'Argumentos numéricos de 2 a 255 correspondientes a una población.' }, + number1: { name: 'número1', detail: 'Obligatorio. Es el primer argumento numérico correspondiente a una población.' }, + number2: { name: 'número2', detail: 'Opcional. De 2 a 255 argumentos numéricos correspondientes a una población.' }, }, }, WEIBULL: { - description: 'Devuelve la distribución de Weibull.', - abstract: 'Devuelve la distribución de Weibull.', + description: 'Devuelve la distribución de Weibull. Use esta distribución en los análisis de confiabilidad para calcular, por ejemplo, el período medio de vida de un componente hasta que se produce un error.', + abstract: 'Devuelve la distribución de Weibull. Use esta distribución en los análisis de confiabilidad para calcular, por ejemplo, el período medio de vida de un componente hasta que se produce un error.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/es-es/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: 'El valor para el que desea la distribución.' }, - alpha: { name: 'alfa', detail: 'Un parámetro de la distribución.' }, - beta: { name: 'beta', detail: 'Un parámetro de la distribución.' }, - cumulative: { name: 'acumulado', detail: 'Un valor lógico que determina la forma de la función. Si es VERDADERO, WEIBULL devuelve la función de distribución acumulativa; si es FALSO, devuelve la función de densidad de probabilidad.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor en el que desea evaluar la función.' }, + alpha: { name: 'alfa', detail: 'Obligatorio. Es un parámetro de la distribución.' }, + beta: { name: 'beta', detail: 'Obligatorio. Es un parámetro de la distribución.' }, + cumulative: { name: 'acumulado', detail: 'Obligatorio. Determina la forma de la función.' }, }, }, ZTEST: { - description: 'Devuelve el valor de probabilidad de una cola de una prueba z.', - abstract: 'Devuelve el valor de probabilidad de una cola de una prueba z.', + description: 'Devuelve el valor de probabilidad de una cola de una prueba z. En una hipótesis para una media de población, µ0, PRUEBA.Z devuelve la probabilidad de que la media de la muestra sea mayor que el promedio de las observaciones del conjunto (matriz) de datos (es decir, la medida observada de la muestra).', + abstract: 'Devuelve el valor de probabilidad de una cola de una prueba z. En una hipótesis para una media de población, µ0, PRUEBA.Z devuelve la probabilidad de que la media de la muestra sea mayor que el promedio de las observaciones del conjunto (matriz) de datos (es decir, la medida observada de la muestra).', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/prueba-z-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/es-es/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: 'matriz', detail: 'La matriz o rango de datos contra el que probar x.' }, - x: { name: 'x', detail: 'El valor a probar.' }, - sigma: { name: 'sigma', detail: 'La desviación estándar de la población (conocida). Si se omite, se usa la desviación estándar de la muestra.' }, + array: { name: 'matriz', detail: 'Obligatorio. Es la matriz o el rango de datos con que ha de comprobar x.' }, + x: { name: 'x', detail: 'Obligatorio. Es el valor que va a comprobar.' }, + sigma: { name: 'sigma', detail: 'Opcional. Es la desviación estándar (conocida) de la población. Si la omite, se usa la desviación estándar de la muestra.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/compatibility/fr-FR.ts index 60a22638e2..69a1a96516 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/fr-FR.ts @@ -14,8 +14,572 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + BETADIST: { + description: 'Renvoie la fonction de densité de distribution de la probabilité suivant une loi bêta cumulée. Cette fonction de distribution bêta est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + abstract: 'Renvoie la fonction de densité de distribution de la probabilité suivant une loi bêta cumulée. Cette fonction de distribution bêta est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur comprise entre A et B à laquelle la fonction doit être calculée.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + A: { name: 'A', detail: 'Représente une limite inférieure de l’intervalle des x.' }, + B: { name: 'B', detail: 'Facultatif. Représente une limite supérieure de l’intervalle des x.' }, + }, + }, + BETAINV: { + description: 'Renvoie l’inverse de la fonction de densité de distribution de la probabilité suivant une loi bêta cumulée. Si probabilité = LOI.BETA(x,...), alors BETA.INVERSE(probabilité,...) = x. La distribution bêta peut être utilisée en planification de projets afin de prévoir les dates d’achèvement probables en fonction d’une durée et d’une dispersion prévues.', + abstract: 'Renvoie l’inverse de la fonction de densité de distribution de la probabilité suivant une loi bêta cumulée. Si probabilité = LOI.BETA(x,...), alors BETA.INVERSE(probabilité,...) = x. La distribution bêta peut être utilisée en planification de projets afin de prévoir les dates d’achèvement probables en fonction d’une durée et d’une dispersion prévues.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la distribution bêta.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + A: { name: 'A', detail: 'Représente une limite inférieure de l’intervalle des x.' }, + B: { name: 'B', detail: 'Facultatif. Représente une limite supérieure de l’intervalle des x.' }, + }, + }, + BINOMDIST: { + description: 'Renvoie la probabilité d’une variable aléatoire discrète suivant la loi binomiale. Utilisez la fonction LOI.BINOMIALE pour résoudre des problèmes comportant un nombre de tests ou d’essais déterminé, lorsque le résultat des essais ne peut être qu’un succès ou un échec, lorsque les essais sont indépendants ou lorsque la probabilité de succès est constante au cours des expérimentations. La fonction LOI.BINOMIALE peut, par exemple, calculer la probabilité pour que deux des trois enfants à naître soient des garçons.', + abstract: 'Renvoie la probabilité d’une variable aléatoire discrète suivant la loi binomiale. Utilisez la fonction LOI.BINOMIALE pour résoudre des problèmes comportant un nombre de tests ou d’essais déterminé, lorsque le résultat des essais ne peut être qu’un succès ou un échec, lorsque les essais sont indépendants ou lorsque la probabilité de succès est constante au cours des expérimentations. La fonction LOI.BINOMIALE peut, par exemple, calculer la probabilité pour que deux des trois enfants à naître soient des garçons.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Obligatoire. Représente le nombre d’essais réussis.' }, + trials: { name: 'trials', detail: 'Obligatoire. Représente le nombre d’essais indépendants.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité de succès de chaque essai.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique qui détermine le mode de calcul de la fonction. Si l’argument cumulative a la valeur VRAI, alors LOI.BINOMIALE renvoie la fonction de distribution cumulée qui représente la probabilité qu’il y ait au plus nombre_s succès ; si l’argument cumulative a la valeur FAUX, LOI.BINOMIALE renvoie la fonction de probabilité de masse qui représente la probabilité qu’il y ait nombre_s succès.' }, + }, + }, + CHIDIST: { + description: 'Renvoie la probabilité unilatérale à droite de la distribution khi-deux. La distribution χ2 est associée à un test χ2. Utilisez un test χ2 pour comparer les valeurs obtenues aux valeurs prévues. Par exemple, une expérience génétique fait l’hypothèse que la prochaine génération de plantes présentera un ensemble de couleurs donné. En comparant les résultats obtenus aux résultats prévus, vous pouvez déterminer si votre hypothèse de départ était correcte.', + abstract: 'Renvoie la probabilité unilatérale à droite de la distribution khi-deux. La distribution χ2 est associée à un test χ2. Utilisez un test χ2 pour comparer les valeurs obtenues aux valeurs prévues. Par exemple, une expérience génétique fait l’hypothèse que la prochaine génération de plantes présentera un ensemble de couleurs donné. En comparant les résultats obtenus aux résultats prévus, vous pouvez déterminer si votre hypothèse de départ était correcte.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à laquelle vous voulez évaluer la distribution.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + }, + }, + CHIINV: { + description: 'Renvoie l’inverse de la probabilité unilatérale à droite de la distribution khi-deux. Si probabilité = LOI.KHIDEUX(x,...), alors KHIDEUX.INVERSE(probabilité,...) = x. Utilisez cette fonction pour comparer les résultats obtenus aux résultats prévus, afin de déterminer si votre hypothèse de départ était juste.', + abstract: 'Renvoie l’inverse de la probabilité unilatérale à droite de la distribution khi-deux. Si probabilité = LOI.KHIDEUX(x,...), alors KHIDEUX.INVERSE(probabilité,...) = x. Utilisez cette fonction pour comparer les résultats obtenus aux résultats prévus, afin de déterminer si votre hypothèse de départ était juste.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution khi-deux.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + }, + }, + CHITEST: { + description: 'Renvoie le test d’indépendance. TEST.KHIDEUX renvoie la valeur de la distribution khi-deux (χ2) pour la statistique et les degrés de liberté appropriés. Utilisez les tests χ2 pour déterminer si les résultats prévus sont vérifiés par une expérimentation.', + abstract: 'Renvoie le test d’indépendance. TEST.KHIDEUX renvoie la valeur de la distribution khi-deux (χ2) pour la statistique et les degrés de liberté appropriés. Utilisez les tests χ2 pour déterminer si les résultats prévus sont vérifiés par une expérimentation.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Obligatoire. Représente la plage de données contenant les observations à comparer aux valeurs prévues.' }, + expectedRange: { name: 'expected_range', detail: 'Obligatoire. Représente la plage de données contenant le rapport du produit des totaux de ligne et de colonne avec le total général.' }, + }, + }, + CONFIDENCE: { + description: 'Renvoie l’intervalle de confiance pour la moyenne d’une population, à l’aide d’une distribution normale.', + abstract: 'Renvoie l’intervalle de confiance pour la moyenne d’une population, à l’aide d’une distribution normale.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obligatoire. Niveau de précision utilisé pour calculer le niveau de confiance. Le niveau de confiance est égal à 100*(1 - alpha) %, ou en d’autres termes, un alpha de 0,05 indique un niveau de confiance de 95 %.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart-type de population pour la plage de données ; cet argument est supposé être connu.' }, + size: { name: 'size', detail: 'Obligatoire. Représente la taille de l’échantillon.' }, + }, + }, + COVAR: { + description: 'Retourne la covariance, la moyenne des produits des écarts pour chaque paire de points de données dans deux jeux de données.', + abstract: 'Retourne la covariance, la moyenne des produits des écarts pour chaque paire de points de données dans deux jeux de données.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première plage de cellules de nombres entiers.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde plage de cellules de nombres entiers.' }, + }, + }, + CRITBINOM: { + description: 'Renvoie la plus petite valeur pour laquelle la distribution binomiale cumulée est supérieure ou égale à une valeur de critère. Utilisez cette fonction pour des applications d’assurance qualité. Par exemple, la fonction CRITERE.LOI.BINOMIALE vous permet de déterminer le nombre maximal de pièces défectueuses autorisées à la sortie d’une chaîne d’assemblage sans que le lot entier soit rejeté.', + abstract: 'Renvoie la plus petite valeur pour laquelle la distribution binomiale cumulée est supérieure ou égale à une valeur de critère. Utilisez cette fonction pour des applications d’assurance qualité. Par exemple, la fonction CRITERE.LOI.BINOMIALE vous permet de déterminer le nombre maximal de pièces défectueuses autorisées à la sortie d’une chaîne d’assemblage sans que le lot entier soit rejeté.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obligatoire. Représente le nombre d’essais de Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité de succès de chaque essai.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente la valeur de critère.' }, + }, + }, + EXPONDIST: { + description: 'Renvoie la distribution exponentielle. Utilisez la fonction LOI.EXPONENTIELLE pour prévoir la durée séparant des événements, tel le temps mis par un distributeur automatique bancaire pour délivrer de l’argent. Par exemple, vous pouvez utiliser LOI.EXPONENTIELLE pour calculer la probabilité que l’opération dure moins d’une minute.', + abstract: 'Renvoie la distribution exponentielle. Utilisez la fonction LOI.EXPONENTIELLE pour prévoir la durée séparant des événements, tel le temps mis par un distributeur automatique bancaire pour délivrer de l’argent. Par exemple, vous pouvez utiliser LOI.EXPONENTIELLE pour calculer la probabilité que l’opération dure moins d’une minute.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur de la fonction.' }, + lambda: { name: 'lambda', detail: 'Obligatoire. Représente la valeur du paramètre.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Valeur logique qui indique la forme de la fonction exponentielle à fournir. Si cumulative a la valeur TRUE, EXPONDIST retourne la fonction de distribution cumulative ; si la valeur est FALSE, elle retourne la fonction de densité de probabilité.' }, + }, + }, + FDIST: { + description: 'Renvoie la probabilité (unilatérale à droite) d’une variable aléatoire suivant une loi F pour deux jeux de données. Vous pouvez utiliser cette fonction pour déterminer si deux jeux de données ont des degrés de diversité différents. Par exemple, vous pouvez comparer les résultats de tests soumis aux garçons et aux filles à l’entrée à l’université et déterminer si la dispersion parmi les filles est la même que parmi les garçons.', + abstract: 'Renvoie la probabilité (unilatérale à droite) d’une variable aléatoire suivant une loi F pour deux jeux de données. Vous pouvez utiliser cette fonction pour déterminer si deux jeux de données ont des degrés de diversité différents. Par exemple, vous pouvez comparer les résultats de tests soumis aux garçons et aux filles à l’entrée à l’université et déterminer si la dispersion parmi les filles est la même que parmi les garçons.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obligatoire. Représente le numérateur des degrés de liberté.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obligatoire. Représente le dénominateur des degrés de liberté.' }, + }, + }, + FINV: { + description: 'Renvoie l’inverse de la distribution de probabilité F (unilatérale à droite). Si p = LOI.F(x,...), alors INVERSE.LOI.F(p,...) = x.', + abstract: 'Renvoie l’inverse de la distribution de probabilité F (unilatérale à droite). Si p = LOI.F(x,...), alors INVERSE.LOI.F(p,...) = x.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution cumulée F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obligatoire. Représente le numérateur des degrés de liberté.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obligatoire. Représente le dénominateur des degrés de liberté.' }, + }, + }, + FTEST: { + description: 'Retourne le résultat d’un test F. Un test F renvoie la probabilité bi-tailed que les variances dans array1 et array2 ne soient pas significativement différentes. Utilisez cette fonction pour comparer les variances de deux échantillons. Par exemple, à partir des résultats d’examens dans des écoles publiques et privées, vous pouvez déterminer si ces écoles présentent des degrés de diversité différents en termes de résultats.', + abstract: 'Retourne le résultat d’un test F. Un test F renvoie la probabilité bi-tailed que les variances dans array1 et array2 ne soient pas significativement différentes. Utilisez cette fonction pour comparer les variances de deux échantillons. Par exemple, à partir des résultats d’examens dans des écoles publiques et privées, vous pouvez déterminer si ces écoles présentent des degrés de diversité différents en termes de résultats.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première matrice ou plage de données.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde matrice ou plage de données.' }, + }, + }, + GAMMADIST: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Gamma. Vous pouvez utiliser cette fonction pour étudier des variables dont la distribution est susceptible d’être asymétrique. La loi gamma est couramment utilisée dans l’étude de files d’attente.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Gamma. Vous pouvez utiliser cette fonction pour étudier des variables dont la distribution est susceptible d’être asymétrique. La loi gamma est couramment utilisée dans l’étude de files d’attente.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à laquelle vous voulez évaluer la distribution.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution. Si bêta = 1, LOI.GAMMA renvoie la loi Gamma standard.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.GAMMA renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + }, + }, + GAMMAINV: { + description: 'Renvoie l’inverse de la distribution cumulée suivant une loi Gamma. Si l’argument p = LOI.GAMMA(x;...), la fonction LOI.GAMMA.INVERSE(p;...) = x. Vous pouvez utiliser cette fonction pour étudier une variable dont la distribution est susceptible d’être asymétrique.', + abstract: 'Renvoie l’inverse de la distribution cumulée suivant une loi Gamma. Si l’argument p = LOI.GAMMA(x;...), la fonction LOI.GAMMA.INVERSE(p;...) = x. Vous pouvez utiliser cette fonction pour étudier une variable dont la distribution est susceptible d’être asymétrique.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la loi Gamma.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution. Si bêta = 1, LOI.GAMMA.INVERSE renvoie la loi Gamma standard.' }, + }, + }, + HYPGEOMDIST: { + description: 'Renvoie la loi hypergéométrique. La fonction LOI.HYPERGEOMETRIQUE renvoie la probabilité d’obtenir un nombre donné de tirages « succès » sur un échantillon, connaissant la taille de l’échantillon, le nombre de succès de la population et sa taille. Utilisez la fonction LOI.HYPERGEOMETRIQUE dans des problèmes supposant une population déterminée, dans lesquels chaque observation est soit un succès, soit un échec et où chaque sous-ensemble d’une taille donnée est constitué avec la même vraisemblance.', + abstract: 'Renvoie la loi hypergéométrique. La fonction LOI.HYPERGEOMETRIQUE renvoie la probabilité d’obtenir un nombre donné de tirages « succès » sur un échantillon, connaissant la taille de l’échantillon, le nombre de succès de la population et sa taille. Utilisez la fonction LOI.HYPERGEOMETRIQUE dans des problèmes supposant une population déterminée, dans lesquels chaque observation est soit un succès, soit un échec et où chaque sous-ensemble d’une taille donnée est constitué avec la même vraisemblance.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Obligatoire. Représente le nombre de succès de l’échantillon.' }, + numberSample: { name: 'number_sample', detail: 'Obligatoire. Représente la taille de l’échantillon.' }, + populationS: { name: 'population_s', detail: 'Obligatoire. Représente le nombre de succès de la population.' }, + numberPop: { name: 'number_pop', detail: 'Obligatoire. Représente la taille de la population.' }, + }, + }, + LOGINV: { + description: 'Renvoie l’inverse de la fonction de distribution de x suivant la loi lognormale cumulée, où ln(x) est normalement distribué avec les paramètres espérance et écart_type. Si p = LOI.LOGNORMALE(x;...), alors LOI.LOGNORMALE.INVERSE(p;...) = x.', + abstract: 'Renvoie l’inverse de la fonction de distribution de x suivant la loi lognormale cumulée, où ln(x) est normalement distribué avec les paramètres espérance et écart_type. Si p = LOI.LOGNORMALE(x;...), alors LOI.LOGNORMALE.INVERSE(p;...) = x.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution lognormale.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente l’espérance mathématique de ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de ln(x).' }, + }, + }, + LOGNORMDIST: { + description: 'Renvoie la distribution de x suivant une loi lognormale cumulée, où ln(x) est normalement distribué à l’aide des paramètres moyenne et écart_type. Cette fonction vous permet d’analyser des données après leur transformation logarithmique.', + abstract: 'Renvoie la distribution de x suivant une loi lognormale cumulée, où ln(x) est normalement distribué à l’aide des paramètres moyenne et écart_type. Cette fonction vous permet d’analyser des données après leur transformation logarithmique.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente l’espérance mathématique de ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de ln(x).' }, + }, + }, + MODE: { + description: 'Supposons que vous souhaitez connaître le nombre d’espèces d’oiseaux les plus courantes observées dans un échantillon de nombre d’oiseaux dans une zone humide critique sur une période de 30 ans, ou que vous souhaitez connaître le nombre d’appels téléphoniques les plus fréquents dans un centre de support téléphonique pendant les heures creuses. Pour calculer le mode d’un groupe de nombres, utilisez la fonction MODE .', + abstract: 'Supposons que vous souhaitez connaître le nombre d’espèces d’oiseaux les plus courantes observées dans un échantillon de nombre d’oiseaux dans une zone humide critique sur une période de 30 ans, ou que vous souhaitez connaître le nombre d’appels téléphoniques les plus fréquents dans un centre de support téléphonique pendant les heures creuses. Pour calculer le mode d’un groupe de nombres, utilisez la fonction MODE .', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Représente le premier argument numérique pour lequel vous souhaitez calculer le mode.' }, + number2: { name: 'number2', detail: 'Optionnel. Représente les arguments numériques 2 à 255 dont vous souhaitez déterminer le mode. Vous pouvez également utiliser une matrice unique ou une référence à une matrice, au lieu d’arguments séparés par des points-virgules.' }, + }, + }, + NEGBINOMDIST: { + description: 'Renvoie la probabilité d’une variable aléatoire discrète suivant une loi binomiale négative. La fonction LOI.BINOMIALE.NEG renvoie la probabilité d’obtenir un nombre d’échecs égal à l’argument nombre_échecs avant de parvenir au succès dont le rang est donné par l’argument nombre_succès, lorsque la probabilité de succès, définie par l’argument probabilité_succès, est constante. Cette fonction est similaire à la loi binomiale, à la différence que le nombre de succès est fixe et le nombre d’essais variable. Comme pour la loi binomiale, les essais sont supposés indépendants.', + abstract: 'Renvoie la probabilité d’une variable aléatoire discrète suivant une loi binomiale négative. La fonction LOI.BINOMIALE.NEG renvoie la probabilité d’obtenir un nombre d’échecs égal à l’argument nombre_échecs avant de parvenir au succès dont le rang est donné par l’argument nombre_succès, lorsque la probabilité de succès, définie par l’argument probabilité_succès, est constante. Cette fonction est similaire à la loi binomiale, à la différence que le nombre de succès est fixe et le nombre d’essais variable. Comme pour la loi binomiale, les essais sont supposés indépendants.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Obligatoire. Représente le nombre d’échecs.' }, + numberS: { name: 'number_s', detail: 'Obligatoire. Représente le nombre de succès à obtenir.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité d’obtenir un succès.' }, + }, + }, + NORMDIST: { + description: 'La fonction NORMDIST retourne la distribution normale pour la moyenne et l’écart type spécifiés. Cette fonction a un large éventail d’applications en statistiques, y compris les tests d’hypothèses.', + abstract: 'La fonction NORMDIST retourne la distribution normale pour la moyenne et l’écart type spécifiés. Cette fonction a un large éventail d’applications en statistiques, y compris les tests d’hypothèses.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Valeur pour laquelle vous souhaitez la distribution' }, + mean: { name: 'mean', detail: 'Obligatoire. Moyenne arithmétique de la distribution' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Écart type de la distribution' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si cumulative a la valeur TRUE, NORMDIST retourne la fonction de distribution cumulative ; si cumulative a la valeur FALSE, elle retourne la fonction de probabilité de masse.' }, + }, + }, + NORMINV: { + description: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale pour la moyenne et l’écart type spécifiés.', + abstract: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale pour la moyenne et l’écart type spécifiés.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité correspondant à la distribution normale.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la moyenne arithmétique de la distribution.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de la distribution.' }, + }, + }, + NORMSDIST: { + description: 'Renvoie la probabilité d’une variable aléatoire continue suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à 0 (zéro) et un écart type égal à 1. La présente fonction remplace l’usage de la table donnant la valeur des aires comprises sous une courbe normale centrée réduite.', + abstract: 'Renvoie la probabilité d’une variable aléatoire continue suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à 0 (zéro) et un écart type égal à 1. La présente fonction remplace l’usage de la table donnant la valeur des aires comprises sous une courbe normale centrée réduite.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obligatoire. Représente la valeur dont vous recherchez la distribution.' }, + }, + }, + NORMSINV: { + description: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à zéro et un écart type égal à 1.', + abstract: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à zéro et un écart type égal à 1.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité correspondant à la distribution normale.' }, + }, + }, + PERCENTILE: { + description: 'Renvoie le k-ième centile des valeurs d’une plage. Cette fonction vous permet de définir un seuil d’acceptation. Par exemple, vous pouvez décider de n’étudier que les candidats ayant obtenu un résultat supérieur au 90e centile.', + abstract: 'Renvoie le k-ième centile des valeurs d’une plage. Cette fonction vous permet de définir un seuil d’acceptation. Par exemple, vous pouvez décider de n’étudier que les candidats ayant obtenu un résultat supérieur au 90e centile.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données définissant l’étendue relative.' }, + k: { name: 'k', detail: 'Obligatoire. Représente le centile ; celui-ci doit être compris entre 0 et 1 inclus.' }, + }, + }, + PERCENTRANK: { + description: 'La fonction PERCENTRANK retourne le rang d’une valeur dans un jeu de données sous la forme d’un pourcentage du jeu de données, essentiellement le statut relatif d’une valeur dans l’ensemble du jeu de données. Par exemple, vous pouvez utiliser PERCENTRANK pour déterminer la position d’une personne au test dans le champ de toutes les notes du même test.', + abstract: 'La fonction PERCENTRANK retourne le rang d’une valeur dans un jeu de données sous la forme d’un pourcentage du jeu de données, essentiellement le statut relatif d’une valeur dans l’ensemble du jeu de données. Par exemple, vous pouvez utiliser PERCENTRANK pour déterminer la position d’une personne au test dans le champ de toutes les notes du même test.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Plage de données (ou tableau prédéfini) de valeurs numériques dans laquelle le rang en pourcentage est déterminé.' }, + x: { name: 'x', detail: 'Obligatoire. Valeur pour laquelle vous souhaitez connaître le rang dans le tableau.' }, + significance: { name: 'significance', detail: 'Optionnel. Représente une valeur indiquant le nombre de décimales du pourcentage renvoyé. Si cet argument est omis, la fonction RANG.POURCENTAGE conserve trois décimales (0,xxx).' }, + }, + }, + POISSON: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi de Poisson. Une application courante de la loi de Poisson est la prédiction du nombre d’événements susceptibles de se produire sur une période de temps déterminée, par exemple, le nombre de voitures qui se présentent à un poste de péage en l’espace d’une minute.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi de Poisson. Une application courante de la loi de Poisson est la prédiction du nombre d’événements susceptibles de se produire sur une période de temps déterminée, par exemple, le nombre de voitures qui se présentent à un poste de péage en l’espace d’une minute.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente le nombre d’événements.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la valeur numérique attendue.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Valeur logique qui détermine la forme de la distribution de probabilité retournée. Si cumulative a la valeur TRUE, POISSON renvoie la probabilité poisson cumulée que le nombre d’événements aléatoires se produisant soit compris entre zéro et x inclus ; si la valeur est FALSE, elle renvoie la fonction de masse de probabilité de Poisson qui indique que le nombre d’événements qui se produisent sera exactement x.' }, + }, + }, + QUARTILE: { + description: 'Renvoie le quartile d’une série de données. Les quartiles sont souvent utilisés pour les données relatives aux ventes et aux enquêtes afin de séparer les populations en groupes. Ainsi, vous pouvez utiliser la fonction QUARTILE pour déterminer les vingt-cinq pour cent de revenus les plus élevés d’une population.', + abstract: 'Renvoie le quartile d’une série de données. Les quartiles sont souvent utilisés pour les données relatives aux ventes et aux enquêtes afin de séparer les populations en groupes. Ainsi, vous pouvez utiliser la fonction QUARTILE pour déterminer les vingt-cinq pour cent de revenus les plus élevés d’une population.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de cellules de valeurs numériques pour laquelle vous recherchez la valeur du quartile.' }, + quart: { name: 'quart', detail: 'Obligatoire. Indique quelle valeur renvoyer.' }, + }, + }, + RANK: { + description: 'Renvoie le rang d’un nombre dans une liste d’arguments. Le rang d’un nombre est donné par sa taille comparée aux autres valeurs de la liste. (Si vous deviez trier la liste, le rang d’un nombre serait sa position).', + abstract: 'Renvoie le rang d’un nombre dans une liste d’arguments. Le rang d’un nombre est donné par sa taille comparée aux autres valeurs de la liste. (Si vous deviez trier la liste, le rang d’un nombre serait sa position).', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre dont vous voulez connaître le rang.' }, + ref: { name: 'ref', detail: 'Obligatoire. Référence à une liste de nombres. Les valeurs non numériques dans référence sont ignorées.' }, + order: { name: 'order', detail: 'Optionnel. Représente un numéro qui spécifie comment déterminer le rang de l’argument nombre. Si l’argument ordre a la valeur 0 (zéro) ou si cet argument est omis, Microsoft Excel calcule le rang d’un nombre comme si la liste définie par l’argument référence était triée par ordre décroissant. Si la valeur de l’argument ordre est différente de zéro, Microsoft Excel calcule le rang d’un nombre comme si la liste définie par l’argument référence était triée par ordre croissant.' }, + }, + }, + STDEV: { + description: 'Calcule l’écart type sur la base d’un échantillon. L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + abstract: 'Calcule l’écart type sur la base d’un échantillon. L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à un échantillon de population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 255 correspondant à un échantillon de population. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + STDEVP: { + description: 'Calcule l’écart type d’une population à partir de la population entière telle que la déterminent les arguments. L’écart type est une mesure de la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + abstract: 'Calcule l’écart type d’une population à partir de la population entière telle que la déterminent les arguments. L’écart type est une mesure de la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à une population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 255 correspondant à une population entière. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + TDIST: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant la loi de t de Student, dans laquelle une valeur numérique (x) est une valeur calculée de t dont il faut calculer la probabilité. La loi de t est utilisée pour les tests d’hypothèse sur des échantillons de petite taille. Utilisez cette fonction au lieu d’une table des valeurs critiques de la loi de t.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant la loi de t de Student, dans laquelle une valeur numérique (x) est une valeur calculée de t dont il faut calculer la probabilité. La loi de t est utilisée pour les tests d’hypothèse sur des échantillons de petite taille. Utilisez cette fonction au lieu d’une table des valeurs critiques de la loi de t.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur numérique à laquelle la distribution doit être évaluée.' }, + degFreedom: { name: 'degFreedom', detail: 'Obligatoire. Représente un nombre entier indiquant le nombre de degrés de liberté.' }, + tails: { name: 'tails', detail: 'Obligatoire. Indique le type de distribution à renvoyer : unilatérale ou bilatérale. Si l’argument uni/bilatéral = 1, la fonction LOI.STUDENT renvoie la distribution unilatérale. Si l’argument uni/bilatéral = 2, la fonction LOI.STUDENT renvoie la distribution bilatérale.' }, + }, + }, + TINV: { + description: 'Renvoie, pour une probabilité donnée, la valeur inverse bilatérale d’une variable aléatoire suivant une loi T de Student.', + abstract: 'Renvoie, pour une probabilité donnée, la valeur inverse bilatérale d’une variable aléatoire suivant une loi T de Student.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la loi bilatérale T de Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté utilisés pour caractériser la distribution.' }, + }, + }, + TTEST: { + description: 'Renvoie la probabilité associée à un test T de Student. Utilisez la fonction TEST.STUDENT pour déterminer dans quelle mesure deux échantillons sont susceptibles de provenir de deux populations sous-jacentes ayant la même moyenne.', + abstract: 'Renvoie la probabilité associée à un test T de Student. Utilisez la fonction TEST.STUDENT pour déterminer dans quelle mesure deux échantillons sont susceptibles de provenir de deux populations sous-jacentes ayant la même moyenne.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première série de données.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde série de données.' }, + tails: { name: 'tails', detail: 'Obligatoire. Indique le type de distribution à renvoyer : unilatérale ou bilatérale. Si l’argument uni/bilatéral = 1, la fonction TEST.STUDENT utilise la distribution unilatérale. Si l’argument uni/bilatéral = 2, la fonction TEST.STUDENT utilise la distribution bilatérale.' }, + type: { name: 'type', detail: 'Obligatoire. Représente le type de test T à effectuer.' }, + }, + }, + VAR: { + description: 'Calcule la variance sur la base d’un échantillon.', + abstract: 'Calcule la variance sur la base d’un échantillon.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à un échantillon de population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 255 correspondant à un échantillon de population.' }, + }, + }, + VARP: { + description: 'Calcule la variance sur la base de l’ensemble de la population.', + abstract: 'Calcule la variance sur la base de l’ensemble de la population.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à une population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 255 correspondant à une population entière.' }, + }, + }, + WEIBULL: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Weibull. Utilisez cette distribution dans une analyse de fiabilité telle que le calcul du temps moyen de fonctionnement sans panne d’un appareil.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Weibull. Utilisez cette distribution dans une analyse de fiabilité telle que le calcul du temps moyen de fonctionnement sans panne d’un appareil.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Détermine la forme de la fonction.' }, + }, + }, + ZTEST: { + description: 'Renvoie la valeur-probabilité unilatérale d’un test z. Pour une moyenne de population supposée donnée, μ0, TEST.Z renvoie la probabilité que la moyenne d’échantillonnage soit supérieure à la moyenne des observations dans l’ensemble de données (matrice), à savoir la moyenne d’échantillonnage observée.', + abstract: 'Renvoie la valeur-probabilité unilatérale d’un test z. Pour une moyenne de population supposée donnée, μ0, TEST.Z renvoie la probabilité que la moyenne d’échantillonnage soit supérieure à la moyenne des observations dans l’ensemble de données (matrice), à savoir la moyenne d’échantillonnage observée.', + links: [ + { + title: 'Instructions', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données par rapport à laquelle tester x.' }, + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à tester.' }, + sigma: { name: 'sigma', detail: 'Optionnel. Représente l’écart type (connu) de la population. Si l’argument est omis, la valeur de l’argument par défaut est l’écart type de l’échantillon.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/id-ID.ts b/packages/sheets-formula/src/locale/function-list/compatibility/id-ID.ts new file mode 100644 index 0000000000..5deb226c92 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/id-ID.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'Mengembalikan fungsi kerapatan probabilitas beta kumulatif. Distribusi beta umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + abstract: 'Mengembalikan fungsi kerapatan probabilitas beta kumulatif. Distribusi beta umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai antara A dan B untuk mengevaluasi fungsi.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter distribusi.' }, + A: { name: 'A', detail: 'Batas bawah pada interval x.' }, + B: { name: 'B', detail: 'Opsional. Batas atas pada interval x.' }, + }, + }, + BETAINV: { + description: 'Mengembalikan inversi fungsi kerapatan probabilitas beta kumulatif untuk distribusi beta yang ditentukan. Yakni, jika probabilitas = BETADIST(x,...), maka BETAINV(probabilitas,...) = x. Distribusi beta dapat digunakan dalam perencanaan proyek untuk membuat model waktu penyelesaian yang mungkin dengan waktu penyelesaian yang diharapkan dan variabilitas.', + abstract: 'Mengembalikan inversi fungsi kerapatan probabilitas beta kumulatif untuk distribusi beta yang ditentukan. Yakni, jika probabilitas = BETADIST(x,...), maka BETAINV(probabilitas,...) = x. Distribusi beta dapat digunakan dalam perencanaan proyek untuk membuat model waktu penyelesaian yang mungkin dengan waktu penyelesaian yang diharapkan dan variabilitas.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi beta.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi.' }, + A: { name: 'A', detail: 'Batas bawah pada interval x.' }, + B: { name: 'B', detail: 'Opsional. Batas atas pada interval x.' }, + }, + }, + BINOMDIST: { + description: 'Mengembalikan probabilitas distribusi binomial individual. Gunakan BINOMDIST dalam soal dengan angka uji atau percobaan tetap, ketika hasil percobaan hanya berhasil atau gagal, ketika percobaan bersifat independen, dan ketika probabilitas keberhasilan adalah konstan selama eksperimen tersebut. Misalnya, BINOMDIST dapat menghitung probabilitas bahwa dua dari tiga bayi yang lahir berikutnya adalah laki-laki.', + abstract: 'Mengembalikan probabilitas distribusi binomial individual. Gunakan BINOMDIST dalam soal dengan angka uji atau percobaan tetap, ketika hasil percobaan hanya berhasil atau gagal, ketika percobaan bersifat independen, dan ketika probabilitas keberhasilan adalah konstan selama eksperimen tersebut. Misalnya, BINOMDIST dapat menghitung probabilitas bahwa dua dari tiga bayi yang lahir berikutnya adalah laki-laki.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Diperlukan. Jumlah keberhasilan dalam percobaan.' }, + trials: { name: 'trials', detail: 'Diperlukan. Jumlah percobaan independen.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan pada setiap percobaan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika cumulative adalah TRUE, maka BINOMDIST mengembalikan fungsi distribusi kumulatif, yakni probabilitas bahwa paling banyak terdapat number_s keberhasilan; jika FALSE, mengembalikan fungsi massa probabilitas, yakni probabilitas bahwa terdapat number_s keberhasilan.' }, + }, + }, + CHIDIST: { + description: 'Mengembalikan probabilitas arah kanan distribusi khi-kuadrat. Distribusi χ2 dikaitkan dengan uji χ2. Gunakan uji χ2 untuk membandingkan nilai yang diamati dan yang diharapkan. Misalnya, eksperimen genetik mungkin membuat hipotesis bahwa generasi tumbuhan berikutnya akan menunjukkan kumpulan warna tertentu. Dengan membandingkan hasil yang diamati dengan hasil yang diharapkan, Anda dapat memutuskan apakah hipotesis awal Anda valid.', + abstract: 'Mengembalikan probabilitas arah kanan distribusi khi-kuadrat. Distribusi χ2 dikaitkan dengan uji χ2. Gunakan uji χ2 untuk membandingkan nilai yang diamati dan yang diharapkan. Misalnya, eksperimen genetik mungkin membuat hipotesis bahwa generasi tumbuhan berikutnya akan menunjukkan kumpulan warna tertentu. Dengan membandingkan hasil yang diamati dengan hasil yang diharapkan, Anda dapat memutuskan apakah hipotesis awal Anda valid.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + }, + }, + CHIINV: { + description: 'Mengembalikan inversi probabilitas arah kanan distribusi khi-kuadrat. Jika probabilitas = CHIDIST(x,...), maka CHIINV(probabilitas,...) = x. Gunakan fungsi ini untuk membandingkan hasil yang diamati dengan hasil yang diharapkan untuk memutuskan apakah hipotesis awal Anda valid.', + abstract: 'Mengembalikan inversi probabilitas arah kanan distribusi khi-kuadrat. Jika probabilitas = CHIDIST(x,...), maka CHIINV(probabilitas,...) = x. Gunakan fungsi ini untuk membandingkan hasil yang diamati dengan hasil yang diharapkan untuk memutuskan apakah hipotesis awal Anda valid.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi khi-kuadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + }, + }, + CHITEST: { + description: 'Mengembalikan uji untuk independensi. CHITEST mengembalikan nilai dari distribusi khi kuadrat (χ2) untuk statistik dan derajat kebebasan yang tepat. Anda dapat menggunakan uji χ2 untuk menentukan apakah hasil yang dihipotesis diverifikasi oleh eksperimen.', + abstract: 'Mengembalikan uji untuk independensi. CHITEST mengembalikan nilai dari distribusi khi kuadrat (χ2) untuk statistik dan derajat kebebasan yang tepat. Anda dapat menggunakan uji χ2 untuk menentukan apakah hasil yang dihipotesis diverifikasi oleh eksperimen.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Diperlukan. Rentang data yang berisi observasi untuk menguji nilai-nilai yang diharapkan.' }, + expectedRange: { name: 'expected_range', detail: 'Diperlukan. Rentang data yang berisi rasio produk dari total baris dan total kolom dengan total keseluruhan.' }, + }, + }, + CONFIDENCE: { + description: 'Mengembalikan interval kepercayaan untuk rata-rata populasi, menggunakan distribusi normal.', + abstract: 'Mengembalikan interval kepercayaan untuk rata-rata populasi, menggunakan distribusi normal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Diperlukan. Tingkat signifikansi yang digunakan untuk menghitung tingkat kepercayaan. Tingkat kepercayaan sama dengan 100*(1 - alpha)%, atau dengan kata lain, alpha dari 0,05 menunjukkan tingkat kepercayaan 95 persen.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku populasi untuk rentang data tersebut dan diasumsikan telah diketahui.' }, + size: { name: 'size', detail: 'Diperlukan. Ukuran sampel.' }, + }, + }, + COVAR: { + description: 'Mengembalikan kovarians, rata-rata produk simpangan untuk setiap pasangan titik data dalam dua rangkaian data.', + abstract: 'Mengembalikan kovarians, rata-rata produk simpangan untuk setiap pasangan titik data dalam dua rangkaian data.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Rentang sel pertama bilangan bulat.' }, + array2: { name: 'array2', detail: 'Diperlukan. Rentang sel kedua bilangan bulat.' }, + }, + }, + CRITBINOM: { + description: 'Mengembalikan nilai terkecil di mana distribusi binomial kumulatifnya lebih besar dari atau sama dengan nilai kriteria. Gunakan fungsi ini untuk aplikasi jaminan kualitas. Misalnya, gunakan CRITBINOM untuk menentukan angka terbesar dari komponen-komponen rusak yang diperbolehkan untuk dilepas dari jalur perakitan yang dijalankan tanpa menolak keseluruhan rangkaian.', + abstract: 'Mengembalikan nilai terkecil di mana distribusi binomial kumulatifnya lebih besar dari atau sama dengan nilai kriteria. Gunakan fungsi ini untuk aplikasi jaminan kualitas. Misalnya, gunakan CRITBINOM untuk menentukan angka terbesar dari komponen-komponen rusak yang diperbolehkan untuk dilepas dari jalur perakitan yang dijalankan tanpa menolak keseluruhan rangkaian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Diperlukan. Jumlah percobaan Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan pada setiap percobaan.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Nilai kriteria.' }, + }, + }, + EXPONDIST: { + description: 'Mengembalikan distribusi eksponensial. Gunakan EXPONDIST untuk membuat model waktu antara peristiwa, seperti berapa lama waktu yang diperlukan anjungan tunai mandiri (ATM) untuk mengeluarkan uang tunai. Misalnya, Anda dapat menggunakan EXPONDIST untuk menetapkan probabilitas bahwa proses itu memerlukan paling lama 1 menit.', + abstract: 'Mengembalikan distribusi eksponensial. Gunakan EXPONDIST untuk membuat model waktu antara peristiwa, seperti berapa lama waktu yang diperlukan anjungan tunai mandiri (ATM) untuk mengeluarkan uang tunai. Misalnya, Anda dapat menggunakan EXPONDIST untuk menetapkan probabilitas bahwa proses itu memerlukan paling lama 1 menit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai fungsi.' }, + lambda: { name: 'lambda', detail: 'Diperlukan. Nilai parameter.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menunjukkan formulir fungsi eksponensial mana yang akan diberikan. Jika cumulative adalah TRUE, EXPONDIST akan mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + FDIST: { + description: 'Mengembalikan distribusi probabilitas F (arah kanan) (derajat keragaman) untuk dua unit data. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda bisa memeriksa nilai ujian laki-laki dan perempuan yang masuk sekolah menengah dan menentukan apakah keragaman pada nilai perempuan berbeda dari yang ditemukan pada laki-laki.', + abstract: 'Mengembalikan distribusi probabilitas F (arah kanan) (derajat keragaman) untuk dua unit data. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda bisa memeriksa nilai ujian laki-laki dan perempuan yang masuk sekolah menengah dan menentukan apakah keragaman pada nilai perempuan berbeda dari yang ditemukan pada laki-laki.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + }, + }, + FINV: { + description: 'Mengembalikan inversi distribusi probabilitas F (arah kanan). Jika p = F.FDIST(x,...), maka F.FINV(p,...) = x.', + abstract: 'Mengembalikan inversi distribusi probabilitas F (arah kanan). Jika p = F.FDIST(x,...), maka F.FINV(p,...) = x.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi kumulatif F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + }, + }, + FTEST: { + description: 'Mengembalikan hasil uji-F. Uji-F mengembalikan probabilitas dua sisi bahwa varians di array1 dan array2 tidak berbeda secara signifikan. Gunakan fungsi ini untuk menentukan apakah kedua sampel memiliki varians yang berbeda. Misalnya, dengan adanya nilai ujian dari sekolah negeri dan swasta, Anda dapat menguji apakah sekolah-sekolah tersebut memiliki tingkat nilai ujian yang berbeda.', + abstract: 'Mengembalikan hasil uji-F. Uji-F mengembalikan probabilitas dua sisi bahwa varians di array1 dan array2 tidak berbeda secara signifikan. Gunakan fungsi ini untuk menentukan apakah kedua sampel memiliki varians yang berbeda. Misalnya, dengan adanya nilai ujian dari sekolah negeri dan swasta, Anda dapat menguji apakah sekolah-sekolah tersebut memiliki tingkat nilai ujian yang berbeda.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Array atau rentang data pertama.' }, + array2: { name: 'array2', detail: 'Diperlukan. Array atau rentang data kedua.' }, + }, + }, + GAMMADIST: { + description: 'Mengembalikan distribusi gamma. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang mungkin memiliki distribusi condong. Distribusi gamma biasa digunakan dalam analisis antrian.', + abstract: 'Mengembalikan distribusi gamma. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang mungkin memiliki distribusi condong. Distribusi gamma biasa digunakan dalam analisis antrian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk mengevaluasi distribusi.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi. Jika beta = 1, GAMMADIST mengembalikan distribusi gamma standar.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, GAMMADIST mengembalikan fungsi distribusi kumulatif; jika FALSE, fungsi mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + GAMMAINV: { + description: 'Mengembalikan inversi dari distribusi kumulatif gamma. Jika p = GAMMADIST(x,...), maka GAMMAINV(p,...) = x. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang distribusinya mungkin condong.', + abstract: 'Mengembalikan inversi dari distribusi kumulatif gamma. Jika p = GAMMADIST(x,...), maka GAMMAINV(p,...) = x. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang distribusinya mungkin condong.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas terkait dengan distribusi gamma.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi. Jika beta = 1, GAMMAINV mengembalikan distribusi gamma standar.' }, + }, + }, + HYPGEOMDIST: { + description: 'Mengembalikan distribusi hipergeometrik. HYPGEOMDIST mengembalikan probabilitas sejumlah sampel keberhasilan tertentu, ukuran sampel tertentu, keberhasilan populasi, dan ukuran populasi. Gunakan HYPGEOMDIST untuk masalah-masalah dengan populasi terbatas, di mana setiap observasi bisa berhasil atau gagal, dan di mana setiap subkumpulan dari ukuran tertentu dipilih dengan kemungkinan yang sama.', + abstract: 'Mengembalikan distribusi hipergeometrik. HYPGEOMDIST mengembalikan probabilitas sejumlah sampel keberhasilan tertentu, ukuran sampel tertentu, keberhasilan populasi, dan ukuran populasi. Gunakan HYPGEOMDIST untuk masalah-masalah dengan populasi terbatas, di mana setiap observasi bisa berhasil atau gagal, dan di mana setiap subkumpulan dari ukuran tertentu dipilih dengan kemungkinan yang sama.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Diperlukan. Jumlah keberhasilan di dalam sampel.' }, + numberSample: { name: 'number_sample', detail: 'Diperlukan. Ukuran sampel.' }, + populationS: { name: 'population_s', detail: 'Diperlukan. Jumlah keberhasilan di dalam populasi.' }, + numberPop: { name: 'number_pop', detail: 'Diperlukan. Ukuran populasi.' }, + }, + }, + LOGINV: { + description: 'Mengembalikan inversi dari fungsi distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter mean dan standard_dev. Jika p = LOGNORMDIST(x,...) maka LOGINV(p,...) = x.', + abstract: 'Mengembalikan inversi dari fungsi distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter mean dan standard_dev. Jika p = LOGNORMDIST(x,...) maka LOGINV(p,...) = x.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi lognormal.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata dari ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku dari ln(x).' }, + }, + }, + LOGNORMDIST: { + description: 'Mengembalikan distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter mean dan standard_dev. Gunakan fungsi ini untuk menganalisis data yang telah ditransformasi secara logaritmik.', + abstract: 'Mengembalikan distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter mean dan standard_dev. Gunakan fungsi ini untuk menganalisis data yang telah ditransformasi secara logaritmik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata dari ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku dari ln(x).' }, + }, + }, + MODE: { + description: 'Katakanlah Anda ingin mengetahui jumlah spesies burung yang paling umum terlihat dalam sampel jumlah burung di lahan basah kritis selama periode waktu 30 tahun, atau Anda ingin mencari tahu jumlah panggilan telepon yang paling sering terjadi di pusat dukungan telepon selama jam sibuk. Untuk menghitung mode sekelompok angka, gunakan fungsi MODE .', + abstract: 'Katakanlah Anda ingin mengetahui jumlah spesies burung yang paling umum terlihat dalam sampel jumlah burung di lahan basah kritis selama periode waktu 30 tahun, atau Anda ingin mencari tahu jumlah panggilan telepon yang paling sering terjadi di pusat dukungan telepon selama jam sibuk. Untuk menghitung mode sekelompok angka, gunakan fungsi MODE .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang ingin Anda hitung modusnya.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 255 yang ingin Anda hitung modusnya. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + NEGBINOMDIST: { + description: 'Mengembalikan distribusi binomial negatif. NEGBINOMDIST mengembalikan probabilitas bahwa akan ada kegagalan number_f sebelum keberhasilan number_s-th, ketika konstanta probabilitas keberhasilan adalah probability_s. Fungsi ini mirip dengan distribusi binomial, hanya saja jumlah keberhasilannya tetap, dan jumlah percobaannya bervariasi. Seperti binomial, percobaan diasumsikan bebas.', + abstract: 'Mengembalikan distribusi binomial negatif. NEGBINOMDIST mengembalikan probabilitas bahwa akan ada kegagalan number_f sebelum keberhasilan number_s-th, ketika konstanta probabilitas keberhasilan adalah probability_s. Fungsi ini mirip dengan distribusi binomial, hanya saja jumlah keberhasilannya tetap, dan jumlah percobaannya bervariasi. Seperti binomial, percobaan diasumsikan bebas.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Diperlukan. Jumlah kegagalan.' }, + numberS: { name: 'number_s', detail: 'Diperlukan. Jumlah ambang batas keberhasilan.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan.' }, + }, + }, + NORMDIST: { + description: 'Fungsi NORMDIST mengembalikan distribusi normal untuk rata-rata dan simpangan baku yang ditentukan. Fungsi ini memiliki berbagai aplikasi dalam statistik, termasuk pengujian hipotesis.', + abstract: 'Fungsi NORMDIST mengembalikan distribusi normal untuk rata-rata dan simpangan baku yang ditentukan. Fungsi ini memiliki berbagai aplikasi dalam statistik, termasuk pengujian hipotesis.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang Anda inginkan distribusinya' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata aritmetika distribusi' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku distribusi' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, maka NORMDIST mengembalikan fungsi distribusi kumulatif; jika kumulatif FALSE, maka mengembalikan fungsi massa probabilitas.' }, + }, + }, + NORMINV: { + description: 'Mengembalikan inversi distribusi kumulatif normal untuk rata-rata dan simpangan baku tertentu.', + abstract: 'Mengembalikan inversi distribusi kumulatif normal untuk rata-rata dan simpangan baku tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi normal.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata aritmetika distribusi.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku distribusi.' }, + }, + }, + NORMSDIST: { + description: 'Mengembalikan fungsi distribusi kumulatif normal standar. Distribusi memiliki rata-rata 0 (nol) dan simpangan baku satu. Gunakan fungsi ini di tempat tabel area kurva normal standar.', + abstract: 'Mengembalikan fungsi distribusi kumulatif normal standar. Distribusi memiliki rata-rata 0 (nol) dan simpangan baku satu. Gunakan fungsi ini di tempat tabel area kurva normal standar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Diperlukan. Nilai yang Anda inginkan distribusinya.' }, + }, + }, + NORMSINV: { + description: 'Mengembalikan inversi dari distribusi kumulatif normal standar. Distribusi memiliki rata-rata nol dan simpangan baku dari satu.', + abstract: 'Mengembalikan inversi dari distribusi kumulatif normal standar. Distribusi memiliki rata-rata nol dan simpangan baku dari satu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi normal.' }, + }, + }, + PERCENTILE: { + description: 'Mengembalikan persentil nilai ke-k dalam satu rentang. Anda bisa menggunakan fungsi ini untuk menghitung ambang penerimaan. Misalnya, Anda dapat memutuskan untuk memeriksa para kandidat yang mencapai skor di atas persentil ke-90.', + abstract: 'Mengembalikan persentil nilai ke-k dalam satu rentang. Anda bisa menggunakan fungsi ini untuk menghitung ambang penerimaan. Misalnya, Anda dapat memutuskan untuk memeriksa para kandidat yang mencapai skor di atas persentil ke-90.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang menentukan posisi relatif.' }, + k: { name: 'k', detail: 'Diperlukan. Nilai persentil dalam rentang 0..1, inklusif.' }, + }, + }, + PERCENTRANK: { + description: 'Fungsi PERCENTRANK mengembalikan peringkat nilai dalam kumpulan data sebagai persentase dari kumpulan data -- pada dasarnya, posisi relatif dari sebuah nilai di dalam seluruh kumpulan data. Misalnya, Anda dapat menggunakan PERCENTRANK untuk menentukan posisi skor uji individu di antara bidang semua skor untuk ujian yang sama.', + abstract: 'Fungsi PERCENTRANK mengembalikan peringkat nilai dalam kumpulan data sebagai persentase dari kumpulan data -- pada dasarnya, posisi relatif dari sebuah nilai di dalam seluruh kumpulan data. Misalnya, Anda dapat menggunakan PERCENTRANK untuk menentukan posisi skor uji individu di antara bidang semua skor untuk ujian yang sama.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Rentang data (atau array yang ditentukan sebelumnya) dari nilai numerik di mana peringkat persen ditentukan.' }, + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin Anda ketahui peringkatnya dalam array.' }, + significance: { name: 'significance', detail: 'Opsional. Nilai yang menentukan jumlah digit signifikan untuk nilai persentase yang dikembalikan. Jika tidak disertakan, PERCENTRANK menggunakan tiga angka (0.xxx).' }, + }, + }, + POISSON: { + description: 'Mengembalikan distribusi Poisson. Aplikasi umum distribusi Poisson adalah meramalkan sejumlah peristiwa selama waktu tertentu, seperti jumlah mobil yang datang di sebuah gerbang tol dalam 1 menit.', + abstract: 'Mengembalikan distribusi Poisson. Aplikasi umum distribusi Poisson adalah meramalkan sejumlah peristiwa selama waktu tertentu, seperti jumlah mobil yang datang di sebuah gerbang tol dalam 1 menit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Jumlah peristiwa.' }, + mean: { name: 'mean', detail: 'Diperlukan. Nilai numerik yang diinginkan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan bentuk distribusi probabilitas yang dikembalikan. Jika kumulatif TRUE, maka POISSON mengembalikan probabilitas kumulatif Poisson bahwa sejumlah kejadian acak akan terjadi antara nol dan x inklusif; jika FALSE, maka mengembalikan fungsi massa probabilitas Poisson bahwa peristiwa yang terjadi akan tepat sejumlah x.' }, + }, + }, + QUARTILE: { + description: 'Mengembalikan kuartil dari sekelompok data. Kuartil sering digunakan dalam data penjualan dan survei untuk membagi populasi ke dalam berbagai kelompok. Misalnya, Anda dapat menggunakan QUARTILE untuk menemukan 25 persen pendapatan teratas dalam sebuah populasi.', + abstract: 'Mengembalikan kuartil dari sekelompok data. Kuartil sering digunakan dalam data penjualan dan survei untuk membagi populasi ke dalam berbagai kelompok. Misalnya, Anda dapat menggunakan QUARTILE untuk menemukan 25 persen pendapatan teratas dalam sebuah populasi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang sel nilai numerik yang ingin Anda cari nilai kuartilnya.' }, + quart: { name: 'quart', detail: 'Diperlukan. Menunjukkan nilai mana yang harus dikembalikan.' }, + }, + }, + RANK: { + description: 'Mengembalikan peringkat sebuah angka dalam satu daftar angka. Peringkat sebuah angka adalah besarnya angka tersebut yang relatif terhadap nilai lain di daftar. (Jika Anda mengurutkan daftar, peringkat sebuah angka adalah posisinya.)', + abstract: 'Mengembalikan peringkat sebuah angka dalam satu daftar angka. Peringkat sebuah angka adalah besarnya angka tersebut yang relatif terhadap nilai lain di daftar. (Jika Anda mengurutkan daftar, peringkat sebuah angka adalah posisinya.)', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang peringkatnya ingin Anda temukan.' }, + ref: { name: 'ref', detail: 'Diperlukan. Referensi ke daftar angka. Nilai nonnumerik di ref diabaikan.' }, + order: { name: 'order', detail: 'Opsional. Angka yang menentukan cara menetapkan peringkat. Jika urutan adalah 0 (nol) atau dihilangkan, Microsoft Excel menetapkan peringkat angka seolah-olah ref adalah daftar yang diurutkan dalam urutan turun. Jika urutan adalah nilai bukan nol, Microsoft Excel menetapkan peringkat seolah-olah ref adalah daftar yang diurutkan dalam urutan naik.' }, + }, + }, + STDEV: { + description: 'Memperkirakan simpangan baku berdasarkan satu sampel. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + abstract: 'Memperkirakan simpangan baku berdasarkan satu sampel. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang berkaitan dengan sampel populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 255 berkaitan dengan satu sampel populasi. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + STDEVP: { + description: 'Menghitung simpangan baku berdasarkan seluruh populasi yang diberikan sebagai argumen. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + abstract: 'Menghitung simpangan baku berdasarkan seluruh populasi yang diberikan sebagai argumen. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang bersesuaian dengan populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 255 terkait dengan satu populasi. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + TDIST: { + description: 'Mengembalikan Titik Persentase (probabilitas) untuk distribusi-t Student di mana nilai numerik (x) adalah nilai terhitung dari t, yang digunakan untuk menghitung Titik Persentase. Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + abstract: 'Mengembalikan Titik Persentase (probabilitas) untuk distribusi-t Student di mana nilai numerik (x) adalah nilai terhitung dari t, yang digunakan untuk menghitung Titik Persentase. Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai numerik yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Bilangan bulat yang menunjukkan angka derajat kebebasan.' }, + tails: { name: 'tails', detail: 'Diperlukan. Menentukan angka arah distribusi yang dikembalikan. Jika Tails = 1, TDIST mengembalikan distribusi satu arah. Jika Tails = 2, TDIST mengembalikan distribusi dua arah.' }, + }, + }, + TINV: { + description: 'Mengembalikan inversi dua arah dari distribusi-t Student.', + abstract: 'Mengembalikan inversi dua arah dari distribusi-t Student.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas terkait dengan distribusi-t Student dua arah.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Jumlah derajat kebebasan yang digunakan untuk mencirikan distribusi.' }, + }, + }, + TTEST: { + description: 'Mengembalikan probabilitas terkait Uji-t Student. Gunakan TTEST untuk menentukan apakah dua sampel berasal dari dua populasi sama yang mendasari yang nilai rata-ratanya sama.', + abstract: 'Mengembalikan probabilitas terkait Uji-t Student. Gunakan TTEST untuk menentukan apakah dua sampel berasal dari dua populasi sama yang mendasari yang nilai rata-ratanya sama.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Kumpulan data pertama.' }, + array2: { name: 'array2', detail: 'Diperlukan. Kumpulan data kedua.' }, + tails: { name: 'tails', detail: 'Diperlukan. Menentukan jumlah arah distribusi. Jika arah = 1, TTEST menggunakan distribusi satu arah. Jika arah = 2, TTEST menggunakan distribusi dua arah.' }, + type: { name: 'type', detail: 'Diperlukan. Tipe Uji-t yang dilakukan.' }, + }, + }, + VAR: { + description: 'Memperkirakan varians berdasarkan sampel.', + abstract: 'Memperkirakan varians berdasarkan sampel.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang mewakili sampel populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka ke-2 hingga ke-255 yang mewakili sampel populasi.' }, + }, + }, + VARP: { + description: 'Menghitung varians berdasarkan populasi keseluruhan.', + abstract: 'Menghitung varians berdasarkan populasi keseluruhan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang bersesuaian dengan populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 255 terkait dengan satu populasi.' }, + }, + }, + WEIBULL: { + description: 'Mengembalikan distribusi Weilbull. Gunakan distribusi ini dalam analisis keandalan, misalnya menghitung waktu rata-rata perangkat hingga gagal.', + abstract: 'Mengembalikan distribusi Weilbull. Gunakan distribusi ini dalam analisis keandalan, misalnya menghitung waktu rata-rata perangkat hingga gagal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter untuk distribusi.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Menentukan format fungsi.' }, + }, + }, + ZTEST: { + description: 'Mengembalikan nilai probabilitas satu-arah uji-z. Untuk hipotesis rata-rata populasi yang diberikan, μ0, ZTEST mengembalikan probabilitas bahwa rata-rata sampel akan lebih besar dari rata-rata pengamatan dalam kumpulan data (array) tersebut— yaitu, rata-rata sampel yang diamati.', + abstract: 'Mengembalikan nilai probabilitas satu-arah uji-z. Untuk hipotesis rata-rata populasi yang diberikan, μ0, ZTEST mengembalikan probabilitas bahwa rata-rata sampel akan lebih besar dari rata-rata pengamatan dalam kumpulan data (array) tersebut— yaitu, rata-rata sampel yang diamati.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang akan digunakan untuk menguji x.' }, + x: { name: 'x', detail: 'Diperlukan. Nilai untuk menguji.' }, + sigma: { name: 'sigma', detail: 'Opsional. Simpangan baku populasi (yang diketahui). Jika dihilangkan, maka simpangan baku sampel yang digunakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/it-IT.ts b/packages/sheets-formula/src/locale/function-list/compatibility/it-IT.ts new file mode 100644 index 0000000000..deeb7d80b3 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/it-IT.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'Restituisce la funzione densità di probabilità cumulativa beta. La distribuzione beta viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + abstract: 'Restituisce la funzione densità di probabilità cumulativa beta. La distribuzione beta viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore compreso tra A e B in cui calcolare la funzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro della distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro della distribuzione.' }, + A: { name: 'A', detail: 'Optional. Valore per l\'estremo inferiore dell\'intervallo di x.' }, + B: { name: 'B', detail: 'Facoltativo. Valore per l\'estremo superiore dell\'intervallo di x.' }, + }, + }, + BETAINV: { + description: 'Restituisce l\'inversa della funzione densità di probabilità cumulativa beta per una distribuzione beta specificata. Questo significa che, se probabilità = DISTRIB.BETA(x;...), si avrà INV.BETA(probabilità;...) = x. Dati un tempo di durata e una variabilità previsti, la distribuzione beta può essere utilizzata nella pianificazione di progetti per calcolare i tempi di durata probabili.', + abstract: 'Restituisce l\'inversa della funzione densità di probabilità cumulativa beta per una distribuzione beta specificata. Questo significa che, se probabilità = DISTRIB.BETA(x;...), si avrà INV.BETA(probabilità;...) = x. Dati un tempo di durata e una variabilità previsti, la distribuzione beta può essere utilizzata nella pianificazione di progetti per calcolare i tempi di durata probabili.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione beta.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro della distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro della distribuzione.' }, + A: { name: 'A', detail: 'Optional. Valore per l\'estremo inferiore dell\'intervallo di x.' }, + B: { name: 'B', detail: 'Facoltativo. Valore per l\'estremo superiore dell\'intervallo di x.' }, + }, + }, + BINOMDIST: { + description: 'Restituisce la distribuzione binomiale per il termine individuale. Utilizzare la funzione DISTRIB.BINOM per risolvere problemi con un numero fisso di verifiche o di prove, quando i risultati di una prova qualsiasi sono solo positivi o negativi, quando le prove sono indipendenti e quando la probabilità di successo è costante nel corso di tutto l\'esperimento. La funzione DISTRIB.BINOM può calcolare ad esempio la probabilità che due neonati su tre siano maschi.', + abstract: 'Restituisce la distribuzione binomiale per il termine individuale. Utilizzare la funzione DISTRIB.BINOM per risolvere problemi con un numero fisso di verifiche o di prove, quando i risultati di una prova qualsiasi sono solo positivi o negativi, quando le prove sono indipendenti e quando la probabilità di successo è costante nel corso di tutto l\'esperimento. La funzione DISTRIB.BINOM può calcolare ad esempio la probabilità che due neonati su tre siano maschi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Obbligatorio. Numero di successi in prove.' }, + trials: { name: 'trials', detail: 'Obbligatorio. Numero di prove indipendenti.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di successo per ogni prova.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.BINOM restituirà la funzione distribuzione cumulativa, ovvero la probabilità che ci siano al massimo number_s successi; se è FALSO, restituirà la funzione massa di probabilità, ovvero la probabilità che siano presenti number_s successi.' }, + }, + }, + CHIDIST: { + description: 'Restituisce la probabilità a una coda destra per la distribuzione del chi quadrato. La distribuzione χ2 è associata al test χ2. Utilizzare il test χ2 per confrontare i valori osservati con i valori previsti. Ad esempio, sulla base di un esperimento genetico si potrebbe ipotizzare che la gamma di colori della prossima generazione di piante sarà diversa da quella attuale. Confrontando i risultati osservati con quelli previsti, sarà possibile stabilire la validità dell\'ipotesi formulata in origine.', + abstract: 'Restituisce la probabilità a una coda destra per la distribuzione del chi quadrato. La distribuzione χ2 è associata al test χ2. Utilizzare il test χ2 per confrontare i valori osservati con i valori previsti. Ad esempio, sulla base di un esperimento genetico si potrebbe ipotizzare che la gamma di colori della prossima generazione di piante sarà diversa da quella attuale. Confrontando i risultati osservati con quelli previsti, sarà possibile stabilire la validità dell\'ipotesi formulata in origine.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui si desidera calcolare la distribuzione.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + }, + }, + CHIINV: { + description: 'Restituisce l\'inversa della distribuzione a una coda destra del chi quadrato. Se probabilità = DISTRIB.CHI(x;...), verrà restituito INV.CHI(probabilità;...) = x. Utilizzare questa funzione per confrontare i risultati osservati con quelli previsti per stabilire se l\'ipotesi formulata in origine è valida.', + abstract: 'Restituisce l\'inversa della distribuzione a una coda destra del chi quadrato. Se probabilità = DISTRIB.CHI(x;...), verrà restituito INV.CHI(probabilità;...) = x. Utilizzare questa funzione per confrontare i risultati osservati con quelli previsti per stabilire se l\'ipotesi formulata in origine è valida.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione del chi quadrato.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + }, + }, + CHITEST: { + description: 'Restituisce il test per l\'indipendenza. La funzione TEST.CHI restituisce il valore dalla distribuzione del chi quadrato (χ2) per un dato statistico e i gradi di libertà appropriati. È possibile utilizzare i test χ2 per stabilire se i risultati previsti vengono confermati mediante un esperimento.', + abstract: 'Restituisce il test per l\'indipendenza. La funzione TEST.CHI restituisce il valore dalla distribuzione del chi quadrato (χ2) per un dato statistico e i gradi di libertà appropriati. È possibile utilizzare i test χ2 per stabilire se i risultati previsti vengono confermati mediante un esperimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Obbligatorio. Intervallo di dati che contiene le osservazioni da confrontare con i valori previsti.' }, + expectedRange: { name: 'expected_range', detail: 'Obbligatorio. Intervallo di dati che contiene la proporzione del prodotto dei totali di riga e di colonna per il totale complessivo.' }, + }, + }, + CONFIDENCE: { + description: 'Restituisce l\'intervallo di confidenza per una media di popolazione utilizzando una distribuzione normale.', + abstract: 'Restituisce l\'intervallo di confidenza per una media di popolazione utilizzando una distribuzione normale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obbligatorio. Livello di significatività utilizzato per calcolare il livello di confidenza. Il livello di probabilità è uguale a 100*(1 - alfa)% o, in altre parole, un valore alfa di 0,05 indica un livello di probabilità del 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della popolazione per l\'intervallo di dati e si presuppone che sia nota.' }, + size: { name: 'size', detail: 'Obbligatorio. Dimensione del campione.' }, + }, + }, + COVAR: { + description: 'Restituisce la covarianza, ovvero la media dei prodotti delle deviazioni di ogni coppia di dati in due set di dati.', + abstract: 'Restituisce la covarianza, ovvero la media dei prodotti delle deviazioni di ogni coppia di dati in due set di dati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Primo intervallo di celle costituito da interi.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Secondo intervallo di celle costituito da interi.' }, + }, + }, + CRITBINOM: { + description: 'Restituisce il più piccolo valore per il quale la distribuzione cumulativa binomiale risulta maggiore o uguale a un valore di criterio. Usare questa funzione per le applicazioni di garanzia della qualità. Ad esempio, utilizzare CRIT.BINOM per determinare il maggior numero di parti difettose che possono uscire da una linea di assemblaggio senza scartando l\'intero lotto.', + abstract: 'Restituisce il più piccolo valore per il quale la distribuzione cumulativa binomiale risulta maggiore o uguale a un valore di criterio. Usare questa funzione per le applicazioni di garanzia della qualità. Ad esempio, utilizzare CRIT.BINOM per determinare il maggior numero di parti difettose che possono uscire da una linea di assemblaggio senza scartando l\'intero lotto.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obbligatorio. Numero delle prove di Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di successo per ogni prova.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Valore di criterio.' }, + }, + }, + EXPONDIST: { + description: 'Restituisce la distribuzione esponenziale. Utilizzare la funzione DISTRIB.EXP per calcolare il tempo che intercorre tra due eventi, quale il tempo impiegato da uno sportello automatico per consegnare la somma in contanti richiesta. È possibile ad esempio utilizzare DISTRIB.EXP per determinare la probabilità che questa operazione richieda al massimo un minuto.', + abstract: 'Restituisce la distribuzione esponenziale. Utilizzare la funzione DISTRIB.EXP per calcolare il tempo che intercorre tra due eventi, quale il tempo impiegato da uno sportello automatico per consegnare la somma in contanti richiesta. È possibile ad esempio utilizzare DISTRIB.EXP per determinare la probabilità che questa operazione richieda al massimo un minuto.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore della funzione.' }, + lambda: { name: 'lambda', detail: 'Obbligatorio. Valore del parametro.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che indica la forma della funzione esponenziale. Se cumulativo è VERO, DISTRIB.EXP restituirà la funzione distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + FDIST: { + description: 'Restituisce la distribuzione di probabilità F (coda destra) (grado di diversità) per due set di dati. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. È possibile ad esempio esaminare i punteggi dei test per l\'ammissione all\'università assegnati a studentesse e a studenti e stabilire se esistono differenze di variabilità tra il gruppo femminile e quello maschile.', + abstract: 'Restituisce la distribuzione di probabilità F (coda destra) (grado di diversità) per due set di dati. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. È possibile ad esempio esaminare i punteggi dei test per l\'ammissione all\'università assegnati a studentesse e a studenti e stabilire se esistono differenze di variabilità tra il gruppo femminile e quello maschile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + }, + }, + FINV: { + description: 'Restituisce l\'inversa della distribuzione di probabilità F (coda destra). Se p = DISTRIB.F(x;...), si avrà INV.F(p;...) = x.', + abstract: 'Restituisce l\'inversa della distribuzione di probabilità F (coda destra). Se p = DISTRIB.F(x;...), si avrà INV.F(p;...) = x.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + }, + }, + FTEST: { + description: 'Restituisce il risultato di un test F. Un test F restituisce la probabilità a due code che le varianze in matrice1 e matrice2 non siano significativamente diverse. Utilizzare questa funzione per determinare se due campioni hanno varianze diverse. Ad esempio, sulla base dei punteggi di un test effettuato in scuole pubbliche e private, è possibile verificare se la diversità dei punteggi del test di queste scuole si estende su più livelli.', + abstract: 'Restituisce il risultato di un test F. Un test F restituisce la probabilità a due code che le varianze in matrice1 e matrice2 non siano significativamente diverse. Utilizzare questa funzione per determinare se due campioni hanno varianze diverse. Ad esempio, sulla base dei punteggi di un test effettuato in scuole pubbliche e private, è possibile verificare se la diversità dei punteggi del test di queste scuole si estende su più livelli.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Prima matrice o primo intervallo di dati.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Seconda matrice o secondo intervallo di dati.' }, + }, + }, + GAMMADIST: { + description: 'Restituisce la distribuzione gamma. È possibile utilizzare questa funzione per studiare le variabili che potrebbero avere una distribuzione asimmetrica. La distribuzione gamma viene in genere utilizzata nell\'analisi delle code.', + abstract: 'Restituisce la distribuzione gamma. È possibile utilizzare questa funzione per studiare le variabili che potrebbero avere una distribuzione asimmetrica. La distribuzione gamma viene in genere utilizzata nell\'analisi delle code.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui si desidera calcolare la distribuzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione. Se beta = 1, DISTRIB.GAMMA restituirà la distribuzione gamma standard.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.GAMMA restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + GAMMAINV: { + description: 'Restituisce l\'inversa della distribuzione cumulativa gamma. Se p = DISTRIB.GAMMA(x;...), si avrà INV.GAMMA(p;...) = x. È possibile usare questa funzione per studiare una variabile la cui distribuzione potrebbe essere asimmetrica.', + abstract: 'Restituisce l\'inversa della distribuzione cumulativa gamma. Se p = DISTRIB.GAMMA(x;...), si avrà INV.GAMMA(p;...) = x. È possibile usare questa funzione per studiare una variabile la cui distribuzione potrebbe essere asimmetrica.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione gamma.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione. Se beta = 1, INV.GAMMA restituirà la distribuzione gamma standard.' }, + }, + }, + HYPGEOMDIST: { + description: 'Restituisce la distribuzione ipergeometrica. DISTRIB.IPERGEOM restituisce la probabilità di un dato numero di successi campione in base alla dimensione del campione, ai successi e alla dimensione della popolazione. Utilizzare la funzione DISTRIB.IPERGEOM per risolvere i problemi con una popolazione limitata, dove ciascuna osservazione può essere tanto un successo quanto un insuccesso e dove ciascun sottoinsieme di una data dimensione viene scelto con uguale probabilità.', + abstract: 'Restituisce la distribuzione ipergeometrica. DISTRIB.IPERGEOM restituisce la probabilità di un dato numero di successi campione in base alla dimensione del campione, ai successi e alla dimensione della popolazione. Utilizzare la funzione DISTRIB.IPERGEOM per risolvere i problemi con una popolazione limitata, dove ciascuna osservazione può essere tanto un successo quanto un insuccesso e dove ciascun sottoinsieme di una data dimensione viene scelto con uguale probabilità.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Obbligatorio. Numero di successi nel campione.' }, + numberSample: { name: 'number_sample', detail: 'Obbligatorio. Dimensione del campione.' }, + populationS: { name: 'population_s', detail: 'Obbligatorio. Numero di successi nella popolazione.' }, + numberPop: { name: 'number_pop', detail: 'Obbligatorio. Dimensione della popolazione.' }, + }, + }, + LOGINV: { + description: 'Restituisce l\'inversa della funzione di distribuzione cumulativa lognormale di x, dove ln(x) viene in genere distribuito con i parametri media e dev_standard. Se p = DISTRIB.LOGNORM(x;...), si avrà INV.LOGNORM(p;...) = x.', + abstract: 'Restituisce l\'inversa della funzione di distribuzione cumulativa lognormale di x, dove ln(x) viene in genere distribuito con i parametri media e dev_standard. Se p = DISTRIB.LOGNORM(x;...), si avrà INV.LOGNORM(p;...) = x.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione lognormale.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media di ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard di ln(x).' }, + }, + }, + LOGNORMDIST: { + description: 'Restituisce la distribuzione lognormale di x, dove ln(x) viene normalmente distribuito con la media dei parametri e con standard_dev. Utilizzare questa funzione per analizzare i dati che sono stati trasformati in logaritmi.', + abstract: 'Restituisce la distribuzione lognormale di x, dove ln(x) viene normalmente distribuito con la media dei parametri e con standard_dev. Utilizzare questa funzione per analizzare i dati che sono stati trasformati in logaritmi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media di ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard di ln(x).' }, + }, + }, + MODE: { + description: 'Si supponga di voler scoprire il numero più comune di specie di uccelli avvistate in un campione di conteggi di uccelli in una zona umida critica in un periodo di tempo di 30 anni o di voler individuare il numero di telefonate più frequenti presso un centro di supporto telefonico durante le ore non di punta. Per calcolare la modalità di un gruppo di numeri, usare la funzione MODA .', + abstract: 'Si supponga di voler scoprire il numero più comune di specie di uccelli avvistate in un campione di conteggi di uccelli in una zona umida critica in un periodo di tempo di 30 anni o di voler individuare il numero di telefonate più frequenti presso un centro di supporto telefonico durante le ore non di punta. Per calcolare la modalità di un gruppo di numeri, usare la funzione MODA .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico di cui si desidera calcolare la moda.' }, + number2: { name: 'number2', detail: 'Opzionale. Argomenti numerici da 1 a 255 di cui si desidera calcolare la moda. È inoltre possibile utilizzare un\'unica matrice o un riferimento a una matrice anziché argomenti separati da punti e virgola.' }, + }, + }, + NEGBINOMDIST: { + description: 'Restituisce la distribuzione binomiale negativa. DISTRIB.BINOM.NEG restituisce la probabilità che si verifichi il numero di insuccessi indicato in num_insuccessi prima del successo numero num_successi, quando la probabilità costante di un successo è probabilità_s. Questa funzione è simile alla distribuzione binomiale, tranne per il fatto che il numero di successi è fisso e che il numero delle prove è variabile. Analogamente alla distribuzione binomiale, le prove vengono considerate indipendenti.', + abstract: 'Restituisce la distribuzione binomiale negativa. DISTRIB.BINOM.NEG restituisce la probabilità che si verifichi il numero di insuccessi indicato in num_insuccessi prima del successo numero num_successi, quando la probabilità costante di un successo è probabilità_s. Questa funzione è simile alla distribuzione binomiale, tranne per il fatto che il numero di successi è fisso e che il numero delle prove è variabile. Analogamente alla distribuzione binomiale, le prove vengono considerate indipendenti.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Obbligatorio. Numero degli insuccessi.' }, + numberS: { name: 'number_s', detail: 'Obbligatorio. Numero di soglia per i successi.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di ottenere un successo.' }, + }, + }, + NORMDIST: { + description: 'La funzione DISTRIB.NORM restituisce la distribuzione normale per la media e la deviazione standard specificate. Questa funzione ha un\'ampia gamma di applicazioni in statistica, incluse le verifiche di ipotesi.', + abstract: 'La funzione DISTRIB.NORM restituisce la distribuzione normale per la media e la deviazione standard specificate. Questa funzione ha un\'ampia gamma di applicazioni in statistica, incluse le verifiche di ipotesi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore per il quale si desidera la distribuzione' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media aritmetica della distribuzione' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della distribuzione' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.NORM restituirà la funzione di distribuzione cumulativa; se cumulativo è FALSO, restituirà la funzione massa di probabilità.' }, + }, + }, + NORMINV: { + description: 'Restituisce l\'inversa della distribuzione normale cumulativa per la media e la deviazione standard specificate.', + abstract: 'Restituisce l\'inversa della distribuzione normale cumulativa per la media e la deviazione standard specificate.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità corrispondente alla distribuzione normale.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media aritmetica della distribuzione.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della distribuzione.' }, + }, + }, + NORMSDIST: { + description: 'Restituisce la funzione di distribuzione normale standard cumulativa. La distribuzione ha una media uguale a 0 (zero) e una deviazione standard uguale a uno. Utilizzare questa funzione al posto di una tabella delle aree di una curva normale standard.', + abstract: 'Restituisce la funzione di distribuzione normale standard cumulativa. La distribuzione ha una media uguale a 0 (zero) e una deviazione standard uguale a uno. Utilizzare questa funzione al posto di una tabella delle aree di una curva normale standard.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obbligatorio. Valore per il quale si desidera la distribuzione.' }, + }, + }, + NORMSINV: { + description: 'Restituisce l\'inversa della distribuzione normale standard cumulativa. La distribuzione ha una media uguale a zero e una deviazione standard uguale a uno.', + abstract: 'Restituisce l\'inversa della distribuzione normale standard cumulativa. La distribuzione ha una media uguale a zero e una deviazione standard uguale a uno.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità corrispondente alla distribuzione normale.' }, + }, + }, + PERCENTILE: { + description: 'Restituisce il k-esimo dato percentile di valori in un intervallo. È possibile utilizzare questa funzione per stabilire una soglia di accettazione. È ad esempio possibile decidere di esaminare i candidati con un punteggio superiore al 90° percentile.', + abstract: 'Restituisce il k-esimo dato percentile di valori in un intervallo. È possibile utilizzare questa funzione per stabilire una soglia di accettazione. È ad esempio possibile decidere di esaminare i candidati con un punteggio superiore al 90° percentile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati che definisce la condizione relativa.' }, + k: { name: 'k', detail: 'Obbligatorio. Valore percentile nell\'intervallo da 0 a 1 compresi.' }, + }, + }, + PERCENTRANK: { + description: 'La funzione PERCENT.RANGO restituisce il rango di un valore in un set di dati come percentuale del set di dati, ovvero la condizione relativa di un valore all\'interno dell\'intero set di dati. Ad esempio, è possibile usare PERCENT.RANGO per determinare la condizione del punteggio di un singolo test nel campo di tutti i punteggi per lo stesso test.', + abstract: 'La funzione PERCENT.RANGO restituisce il rango di un valore in un set di dati come percentuale del set di dati, ovvero la condizione relativa di un valore all\'interno dell\'intero set di dati. Ad esempio, è possibile usare PERCENT.RANGO per determinare la condizione del punteggio di un singolo test nel campo di tutti i punteggi per lo stesso test.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Intervallo di dati (o matrice predefinita) di valori numerici entro i quali viene determinato il rango percentuale.' }, + x: { name: 'x', detail: 'Obbligatorio. Valore di cui si desidera conoscere il rango all\'interno della matrice.' }, + significance: { name: 'significance', detail: 'Opzionale. Valore che identifica il numero di cifre significative per la percentuale restituita. Se questo argomento viene omesso, PERCENT.RANGO utilizzerà tre cifre (0,xxx).' }, + }, + }, + POISSON: { + description: 'Restituisce la distribuzione di probabilità di Poisson. La distribuzione di Poisson viene in genere applicata per la previsione del numero di eventi in un arco di tempo specifico, come il numero di automobili che transitano per un casello autostradale in 1 minuto.', + abstract: 'Restituisce la distribuzione di probabilità di Poisson. La distribuzione di Poisson viene in genere applicata per la previsione del numero di eventi in un arco di tempo specifico, come il numero di automobili che transitano per un casello autostradale in 1 minuto.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Numero degli eventi.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Valore numerico previsto.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma della distribuzione di probabilità restituita. Se cumulativo è VERO, POISSON restituisce la probabilità cumulativa di Poisson che il numero di eventi casuali sia compreso tra zero e x inclusi; se è FALSO, restituirà la funzione massa di probabilità di Poisson che il numero di eventi che si verificano sarà esattamente x.' }, + }, + }, + QUARTILE: { + description: 'Restituisce il quartile di un set di dati. I quartili vengono spesso utilizzati nelle indagini di mercato e nei dati statistici per suddividere le popolazioni in gruppi. È ad esempio possibile utilizzare QUARTILE per trovare il 25% dei redditi più elevati in una popolazione.', + abstract: 'Restituisce il quartile di un set di dati. I quartili vengono spesso utilizzati nelle indagini di mercato e nei dati statistici per suddividere le popolazioni in gruppi. È ad esempio possibile utilizzare QUARTILE per trovare il 25% dei redditi più elevati in una popolazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di celle di valori numerici per cui si desidera calcolare il valore quartile.' }, + quart: { name: 'quart', detail: 'Obbligatorio. Valore da restituire.' }, + }, + }, + RANK: { + description: 'Restituisce il rango di un numero in un elenco di numeri. Il rango di un numero è la sua dimensione in rapporto agli altri valori presenti nell\'elenco. Nel caso in cui fosse necessario ordinare l\'elenco, il rango del numero corrisponderebbe alla rispettiva posizione.', + abstract: 'Restituisce il rango di un numero in un elenco di numeri. Il rango di un numero è la sua dimensione in rapporto agli altri valori presenti nell\'elenco. Nel caso in cui fosse necessario ordinare l\'elenco, il rango del numero corrisponderebbe alla rispettiva posizione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero di cui si desidera trovare il rango.' }, + ref: { name: 'ref', detail: 'Obbligatorio. Riferimento a un elenco di numeri. I valori in rif che non sono di tipo numerico vengono ignorati.' }, + order: { name: 'order', detail: 'Opzionale. Numero che specifica come classificare num. Se ordine è 0 o è omesso, num verrà ordinato come se rif fosse un elenco in ordine decrescente. Se ordine è un valore diverso da zero, num verrà ordinato come se rif fosse un elenco in ordine crescente.' }, + }, + }, + STDEV: { + description: 'Stima la deviazione standard sulla base di un campione. La deviazione standard è una misura che indica quanto si discostano i valori dal valore medio, ovvero la media.', + abstract: 'Stima la deviazione standard sulla base di un campione. La deviazione standard è una misura che indica quanto si discostano i valori dal valore medio, ovvero la media.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a un campione di popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 1 a 255 argomenti numerici corrispondenti a un campione di popolazione. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + }, + }, + STDEVP: { + description: 'Calcola la deviazione standard sulla base dell\'intera popolazione specificata in forma di argomenti. La deviazione standard è una misura che indica quanto i valori si discostino dal valore medio (la media).', + abstract: 'Calcola la deviazione standard sulla base dell\'intera popolazione specificata in forma di argomenti. La deviazione standard è una misura che indica quanto i valori si discostino dal valore medio (la media).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a una popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 1 a 255 argomenti numerici corrispondenti a una popolazione. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + }, + }, + TDIST: { + description: 'Restituisce i Punti percentuali (probabilità) della distribuzione t di Student dove il valore numerico (x) è un valore calcolato di t per cui verranno calcolati i Punti percentuali. La distribuzione t viene utilizzata nelle verifiche di ipotesi su piccoli set di dati presi come campione. Utilizzare questa funzione al posto di una tabella di valori critici per il calcolo della distribuzione t.', + abstract: 'Restituisce i Punti percentuali (probabilità) della distribuzione t di Student dove il valore numerico (x) è un valore calcolato di t per cui verranno calcolati i Punti percentuali. La distribuzione t viene utilizzata nelle verifiche di ipotesi su piccoli set di dati presi come campione. Utilizzare questa funzione al posto di una tabella di valori critici per il calcolo della distribuzione t.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore numerico in cui calcolare la distribuzione.' }, + degFreedom: { name: 'degFreedom', detail: 'Obbligatorio. Intero che indica il numero di gradi di libertà.' }, + tails: { name: 'tails', detail: 'Obbligatorio. Specifica il numero di code di distribuzione da restituire. Se Coda = 1, DISTRIB.T restituirà la distribuzione a una coda. Se Coda = 2, DISTRIB.T restituirà la distribuzione a due code.' }, + }, + }, + TINV: { + description: 'Restituisce l\'inversa della distribuzione t di Student a due code.', + abstract: 'Restituisce l\'inversa della distribuzione t di Student a due code.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione t di Student a due code.' }, + degFreedom: { name: 'degFreedom', detail: 'Obbligatorio. Numero di gradi di libertà con cui caratterizzare la distribuzione.' }, + }, + }, + TTEST: { + description: 'Restituisce la probabilità associata a un test t di Student. Utilizzare la funzione TEST.T per determinare se due campioni possono essere derivati dalle stesse due popolazioni aventi la stessa media.', + abstract: 'Restituisce la probabilità associata a un test t di Student. Utilizzare la funzione TEST.T per determinare se due campioni possono essere derivati dalle stesse due popolazioni aventi la stessa media.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Primo set di dati.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Secondo set di dati.' }, + tails: { name: 'tails', detail: 'Obbligatorio. Specifica il numero di code di distribuzione. Se coda = 1, TEST.T utilizzerà la distribuzione a una coda. Se coda = 2, TEST.T utilizzerà la distribuzione a due code.' }, + type: { name: 'type', detail: 'Obbligatorio. Tipo di test t da eseguire.' }, + }, + }, + VAR: { + description: 'Stima la varianza sulla base di un campione.', + abstract: 'Stima la varianza sulla base di un campione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a un campione di popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 2 a 255 argomenti numerici corrispondenti a un campione di popolazione.' }, + }, + }, + VARP: { + description: 'Restituisce la varianza sulla base dell\'intera popolazione.', + abstract: 'Restituisce la varianza sulla base dell\'intera popolazione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a una popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 1 a 255 argomenti numerici corrispondenti a una popolazione.' }, + }, + }, + WEIBULL: { + description: 'Restituisce la distribuzione di Weibull. Utilizzare questa distribuzione nelle analisi di affidabilità, come il calcolo della durata media di un dispositivo.', + abstract: 'Restituisce la distribuzione di Weibull. Utilizzare questa distribuzione nelle analisi di affidabilità, come il calcolo della durata media di un dispositivo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Determina la forma assunta dalla funzione.' }, + }, + }, + ZTEST: { + description: 'Restituisce il valore di probabilità a una coda di un test z. Ipotizzando una determinata media della popolazione µ0, TEST.Z restituisce la probabilità che la media campione sia maggiore della media di osservazioni nel set di dati (matrice), ovvero della media campione osservata.', + abstract: 'Restituisce il valore di probabilità a una coda di un test z. Ipotizzando una determinata media della popolazione µ0, TEST.Z restituisce la probabilità che la media campione sia maggiore della media di osservazioni nel set di dati (matrice), ovvero della media campione osservata.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati in base al quale verificare x' }, + x: { name: 'x', detail: 'Obbligatorio. Valore da verificare.' }, + sigma: { name: 'sigma', detail: 'Opzionale. Deviazione standard della popolazione (nota). Se questo argomento viene omesso, verrà utilizzata la deviazione standard campione.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/compatibility/ja-JP.ts index 6253910fca..a8650952c7 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/ja-JP.ts @@ -18,95 +18,95 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: 'β分布の累積分布関数の値を返します。', - abstract: 'β分布の累積分布関数の値を返します。', + description: '累積β確率密度関数の値を返します。 β分布は、複数の標本を対象に割合の変化を分析する場合などに使用します (たとえば、複数の人が 1 日のうちにテレビを見ている時間の割合を算出するときは、この関数を使用します)。', + abstract: '累積β確率密度関数の値を返します。 β分布は、複数の標本を対象に割合の変化を分析する場合などに使用します (たとえば、複数の人が 1 日のうちにテレビを見ている時間の割合を算出するときは、この関数を使用します)。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/betadist-%E9%96%A2%E6%95%B0-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/ja-jp/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: '値', detail: 'その関数を計算するために使用される、下限値と上限値の間の値。' }, - alpha: { name: 'alpha', detail: '分布の最初のパラメータ。' }, - beta: { name: 'beta', detail: '分布の 2 番目のパラメーター。' }, - A: { name: '下限', detail: '関数の下限。デフォルト値は 0 です。' }, - B: { name: '上限', detail: '関数の上限。デフォルト値は 1 です。' }, + x: { name: '値', detail: '必須。 区間 A ~ B の範囲内で、関数を評価する時点を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 確率分布のパラメーターを指定します。' }, + beta: { name: 'beta', detail: '必須。 確率分布のパラメーターを指定します。' }, + A: { name: '下限', detail: '。 x の区間の下限を指定します。' }, + B: { name: '上限', detail: '省略可能。 x の区間の上限を指定します。' }, }, }, BETAINV: { - description: '指定されたβ分布の累積分布関数の逆関数の値を返します。', - abstract: '指定されたβ分布の累積分布関数の逆関数の値を返します。', + description: '指定されたβ分布の累積β確率密度関数の逆関数の値を返します。 つまり、確率 = BETADIST(x,...) の場合は、BETAINV(確率,...) = x となります。 β分布は、プロジェクト計画などで、期待される完了時間と公差を指定して予想完了時間をモデル化する場合に使用できます。', + abstract: '指定されたβ分布の累積β確率密度関数の逆関数の値を返します。 つまり、確率 = BETADIST(x,...) の場合は、BETAINV(確率,...) = x となります。 β分布は、プロジェクト計画などで、期待される完了時間と公差を指定して予想完了時間をモデル化する場合に使用できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/betainv-%E9%96%A2%E6%95%B0-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: '確率', detail: 'β分布における確率を指定します。' }, - alpha: { name: 'alpha', detail: '分布の最初のパラメータ。' }, - beta: { name: 'beta', detail: '分布の 2 番目のパラメーター。' }, - A: { name: '下限', detail: '関数の下限。デフォルト値は 0 です。' }, - B: { name: '上限', detail: '関数の上限。デフォルト値は 1 です。' }, + probability: { name: '確率', detail: '必須。 β分布における確率を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 確率分布のパラメーターを指定します。' }, + beta: { name: 'beta', detail: '必須。 確率分布のパラメーターを指定します。' }, + A: { name: '下限', detail: '。 x の区間の下限を指定します。' }, + B: { name: '上限', detail: '省略可能。 x の区間の上限を指定します。' }, }, }, BINOMDIST: { - description: '二項分布の確率関数の値を返します。', - abstract: '二項分布の確率関数の値を返します。', + description: '単一項の二項分布確率を返します。 BINOMDIST 関数は、テストや試行の回数が固定されている問題で、どの試行の結果も成功または失敗のみで表される場合、各試行が独立している場合、および試行全体をとおして成功の確率が一定である場合に使用します。 たとえば、二男一女が生まれてくる確率などを BINOMDIST で計算できます。', + abstract: '単一項の二項分布確率を返します。 BINOMDIST 関数は、テストや試行の回数が固定されている問題で、どの試行の結果も成功または失敗のみで表される場合、各試行が独立している場合、および試行全体をとおして成功の確率が一定である場合に使用します。 たとえば、二男一女が生まれてくる確率などを BINOMDIST で計算できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/binomdist-%E9%96%A2%E6%95%B0-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: '成功数', detail: '試行における成功数を指定します。' }, - trials: { name: '試行回数', detail: '独立試行の回数を指定します。' }, - probabilityS: { name: '成功率', detail: '各試行が成功する確率を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + numberS: { name: '成功数', detail: '必須。 試行における成功数を指定します。' }, + trials: { name: '試行回数', detail: '必須。 独立試行の回数を指定します。' }, + probabilityS: { name: '成功率', detail: '必須。 各試行が成功する確率を指定します。' }, + cumulative: { name: '累積', detail: '必須。 計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定した場合、BINOM.DIST 関数の戻り値は累積分布関数となり、0 ~成功数回の範囲で成功が得られる確率が計算されます。FALSE の場合は、確率質量関数となり、成功数回の成功が得られる確率が計算されます。' }, }, }, CHIDIST: { - description: 'カイ 2 乗分布の右側確率の値を返します。', - abstract: 'カイ 2 乗分布の右側確率の値を返します。', + description: 'カイ 2 乗分布の右側確率の値を返します。 χ2 分布は χ2 検定と関連しています。 χ2 検定は、実測値と期待値を比較するときに使用します。 たとえば、ある植物の遺伝子実験で、次の世代の花には一定の色の組み合わせが発生するという仮説を立てたとします。 ここで、予測された色と観察の結果を比較することにより、仮説の妥当性を検定することができます。', + abstract: 'カイ 2 乗分布の右側確率の値を返します。 χ2 分布は χ2 検定と関連しています。 χ2 検定は、実測値と期待値を比較するときに使用します。 たとえば、ある植物の遺伝子実験で、次の世代の花には一定の色の組み合わせが発生するという仮説を立てたとします。 ここで、予測された色と観察の結果を比較することにより、仮説の妥当性を検定することができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chidist-%E9%96%A2%E6%95%B0-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: '値', detail: '分布の評価に使用する値を指定します。' }, - degFreedom: { name: '自由度', detail: '自由度を表す数値を指定します。' }, + x: { name: '値', detail: '必須。 分布の評価に使用する値を指定します。' }, + degFreedom: { name: '自由度', detail: '必須。 自由度を表す数値を指定します。' }, }, }, CHIINV: { - description: 'カイ 2 乗分布の右側確率の逆関数の値を返します。', - abstract: 'カイ 2 乗分布の右側確率の逆関数の値を返します。', + description: 'カイ 2 乗分布の右側確率の逆関数の値を返します。 つまり、確率 = CHIDIST(x,...) の場合は、CHIINV(確率,...) = x となります。 この関数は、実測値と期待値を比較して、仮説の妥当性を検定するために使います。', + abstract: 'カイ 2 乗分布の右側確率の逆関数の値を返します。 つまり、確率 = CHIDIST(x,...) の場合は、CHIINV(確率,...) = x となります。 この関数は、実測値と期待値を比較して、仮説の妥当性を検定するために使います。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chiinv-%E9%96%A2%E6%95%B0-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: '確率', detail: 'カイ 2 乗分布における確率を指定します。' }, - degFreedom: { name: '自由度', detail: '自由度を表す数値を指定します。' }, + probability: { name: '確率', detail: '必須。 カイ 2 乗分布における確率を指定します。' }, + degFreedom: { name: '自由度', detail: '必須。 自由度を表す数値を指定します。' }, }, }, CHITEST: { - description: 'カイ 2 乗 (χ2) 検定を行います。', - abstract: 'カイ 2 乗 (χ2) 検定を行います。', + description: 'カイ 2 乗 (χ2) 検定を行います。 CHITEST は、統計と適切な自由度に対するカイ 2 乗 (χ2) 分布の値を返します。 χ2 検定を使用して、仮説による結果が実験によって検証されるかどうかを判断できます。', + abstract: 'カイ 2 乗 (χ2) 検定を行います。 CHITEST は、統計と適切な自由度に対するカイ 2 乗 (χ2) 分布の値を返します。 χ2 検定を使用して、仮説による結果が実験によって検証されるかどうかを判断できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chitest-%E9%96%A2%E6%95%B0-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: '実測値範囲', detail: '期待値に対する検定の実測値が入力されているデータ範囲を指定します。' }, - expectedRange: { name: '期待値範囲', detail: '期待値が入力されているデータ範囲を指定します。実測値と期待値では、行方向の値の合計と列方向の値の合計がそれぞれ等しくなっている必要があります。' }, + actualRange: { name: '実測値範囲', detail: '必須。 期待値に対する検定の実測値が入力されているデータ範囲を指定します。' }, + expectedRange: { name: '期待値範囲', detail: '必須。 期待値が入力されているデータ範囲を指定します。実測値と期待値では、行方向の値の合計と列方向の値の合計がそれぞれ等しくなっている必要があります。' }, }, }, CONFIDENCE: { @@ -115,413 +115,410 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/confidence-%E9%96%A2%E6%95%B0-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alpha', detail: '信頼度を計算するために使用する有意水準を指定します。 信頼度は 100*(1- α)% で計算されます。つまり、α が 0.05 であるとき、信頼度は 95% になります。' }, - standardDev: { name: '標準偏差', detail: 'データ範囲の母標準偏差を指定します。これは既知の値であると仮定されます。' }, - size: { name: '標本数', detail: '標本数を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 信頼度を計算するために使用する有意水準を指定します。 信頼度は 100*(1- α)% で計算されます。つまり、α が 0.05 であるとき、信頼度は 95% になります。' }, + standardDev: { name: '標準偏差', detail: '必須。 データ範囲の母標準偏差を指定します。これは既知の値であると仮定されます。' }, + size: { name: '標本数', detail: '必須。 標本数を指定します。' }, }, }, COVAR: { - description: '母共分散 (2 組の対応するデータ間での標準偏差の積の平均値) を返します。', - abstract: '母共分散を返します。', + description: '共分散 (2 つのデータ セット内の各データ ポイント ペアの偏差積の平均) を返します。', + abstract: '共分散 (2 つのデータ セット内の各データ ポイント ペアの偏差積の平均) を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/covar-%E9%96%A2%E6%95%B0-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/ja-jp/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: '配列1', detail: 'セル値の最初の範囲。' }, - array2: { name: '配列2', detail: 'セル値の 2 番目の範囲。' }, + array1: { name: '配列1', detail: '必須。 整数のデータが入力されている一方のセル範囲を指定します。' }, + array2: { name: '配列2', detail: '必須。 整数のデータが入力されているもう一方のセル範囲を指定します。' }, }, }, CRITBINOM: { - description: '累積二項分布の値が基準値以上になるような最小の値を返します。', - abstract: '累積二項分布の値が基準値以上になるような最小の値を返します。', + description: '累積二項分布が基準値以上になる最小値を返します。 この関数は、品質保証アプリケーションに使用します。 たとえば、CRITBINOM 関数を使用して、ロット全体は不合格にせずに作業工程から除外できる欠陥部品の最大数を決定できます。', + abstract: '累積二項分布が基準値以上になる最小値を返します。 この関数は、品質保証アプリケーションに使用します。 たとえば、CRITBINOM 関数を使用して、ロット全体は不合格にせずに作業工程から除外できる欠陥部品の最大数を決定できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/critbinom-%E9%96%A2%E6%95%B0-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: '試行回数', detail: 'ベルヌーイ試行の回数を指定します。' }, - probabilityS: { name: '成功率', detail: '各試行が成功する確率を指定します。' }, - alpha: { name: '目標確率', detail: '基準値を指定します。' }, + trials: { name: '試行回数', detail: '必須。 ベルヌーイ試行の回数を指定します。' }, + probabilityS: { name: '成功率', detail: '必須。 各試行が成功する確率を指定します。' }, + alpha: { name: '目標確率', detail: '必須。 基準値を指定します。' }, }, }, EXPONDIST: { - description: '指数分布関数を返します。', - abstract: '指数分布関数を返します。', + description: '指数分布を返します。 EXPONDIST 関数を使用すると、銀行の ATM 機から現金が出てくるまでの時間など、イベント間隔をモデル化できます。 たとえば、EXPONDIST 関数を使用して、この処理が 1 分以内に終了する確率を算出できます。', + abstract: '指数分布を返します。 EXPONDIST 関数を使用すると、銀行の ATM 機から現金が出てくるまでの時間など、イベント間隔をモデル化できます。 たとえば、EXPONDIST 関数を使用して、この処理が 1 分以内に終了する確率を算出できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/expondist-%E9%96%A2%E6%95%B0-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: '値', detail: '分布の評価に使用する値を指定します。' }, - lambda: { name: 'lambda', detail: 'パラメーターの値を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: '値', detail: '必須。 関数に代入する値を指定します。' }, + lambda: { name: 'lambda', detail: '必須。 パラメーターの値を指定します。' }, + cumulative: { name: '累積', detail: '必須。 使用する指数関数の形式を示す論理値を指定します。 累積が TRUE の場合は、EXPONDIST によって累積分布関数が返されます。FALSE の場合は、確率密度関数が返されます。' }, }, }, FDIST: { - description: 'F 分布の右側確率関数の値を返します。', - abstract: 'F 分布の右側確率関数の値を返します。', + description: '2 組のデータの (右側) F 分布の確率関数の値 (ばらつき) を返します。 この関数を使用すると、2 組のデータを比較してばらつきに差異があるかどうかを判断できます。 たとえば、高校入試で男子と女子の点数を調べ、男子と女子で点数のばらつきが異なるかどうかを判断できます。', + abstract: '2 組のデータの (右側) F 分布の確率関数の値 (ばらつき) を返します。 この関数を使用すると、2 組のデータを比較してばらつきに差異があるかどうかを判断できます。 たとえば、高校入試で男子と女子の点数を調べ、男子と女子で点数のばらつきが異なるかどうかを判断できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fdist-%E9%96%A2%E6%95%B0-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: '値', detail: '関数に代入する値を指定します。' }, - degFreedom1: { name: '自由度の分子', detail: '自由度の分子を指定します。' }, - degFreedom2: { name: '自由度の分母', detail: '自由度の分母を指定します。' }, + x: { name: '値', detail: '必須。 関数に代入する値を指定します。' }, + degFreedom1: { name: '自由度の分子', detail: '必須。 自由度の分子を指定します。' }, + degFreedom2: { name: '自由度の分母', detail: '必須。 自由度の分母を指定します。' }, }, }, FINV: { - description: 'F 分布の右側確率関数の逆関数値を返します。', - abstract: 'F 分布の右側確率関数の逆関数値を返します。', + description: '(右側) F 分布の確率関数の逆関数値を返します。 確率 = FDIST(x,...) であるとき、FINV(確率,...) = x という関係が成り立ちます。', + abstract: '(右側) F 分布の確率関数の逆関数値を返します。 確率 = FDIST(x,...) であるとき、FINV(確率,...) = x という関係が成り立ちます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/finv-%E9%96%A2%E6%95%B0-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: '確率', detail: 'F 累積分布における確率を指定します。' }, - degFreedom1: { name: '自由度の分子', detail: '自由度の分子を指定します。' }, - degFreedom2: { name: '自由度の分母', detail: '自由度の分母を指定します。' }, + probability: { name: '確率', detail: '必須。 F 累積分布における確率を指定します。' }, + degFreedom1: { name: '自由度の分子', detail: '必須。 自由度の分子を指定します。' }, + degFreedom2: { name: '自由度の分母', detail: '必須。 自由度の分母を指定します。' }, }, }, FTEST: { - description: 'F 検定の結果を返します。', - abstract: 'F 検定の結果を返します。', + description: 'F 検定の結果を返します。 F 検定は、配列 1 と配列 2 とのデータのばらつきに有意な差が認められない両側確率を返します。 この関数を使用すると、2 組のサンプルを比較してばらつきに差異があるかどうかを判断できます。 たとえば、公立高校と私立高校の生徒のテストの点数を調べ、これらの高校の間でテストの点数のばらつきに差異があるかどうかを判断できます。', + abstract: 'F 検定の結果を返します。 F 検定は、配列 1 と配列 2 とのデータのばらつきに有意な差が認められない両側確率を返します。 この関数を使用すると、2 組のサンプルを比較してばらつきに差異があるかどうかを判断できます。 たとえば、公立高校と私立高校の生徒のテストの点数を調べ、これらの高校の間でテストの点数のばらつきに差異があるかどうかを判断できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ftest-%E9%96%A2%E6%95%B0-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: '配列1', detail: '比較対象となる一方のデータを含む配列またはセル範囲を指定します。' }, - array2: { name: '配列2', detail: '比較対象となるもう一方のデータを含む配列またはセル範囲を指定します。' }, + array1: { name: '配列1', detail: '必須。 比較対象となる一方のデータを含む配列またはセル範囲を指定します。' }, + array2: { name: '配列2', detail: '必須。 比較対象となるもう一方のデータを含む配列またはセル範囲を指定します。' }, }, }, GAMMADIST: { - description: 'ガンマ分布関数の値を返します。', - abstract: 'ガンマ分布関数の値を返します。', + description: 'ガンマ分布関数の値を返します。 この関数を使うと、正規分布に従わないと見られる変数の分析を行うことができます。 ガンマ分布は待ち行列分析などでよく使用されます。', + abstract: 'ガンマ分布関数の値を返します。 この関数を使うと、正規分布に従わないと見られる変数の分析を行うことができます。 ガンマ分布は待ち行列分析などでよく使用されます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gammadist-%E9%96%A2%E6%95%B0-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: '関数に代入する値を指定します。' }, - alpha: { name: 'alpha', detail: '分布の最初のパラメータ。' }, - beta: { name: 'beta', detail: '分布の 2 番目のパラメーター。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: 'x', detail: '必須。 分布の評価に使用する値を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 分布に対するパラメーターを指定します。' }, + beta: { name: 'beta', detail: '必須。 分布に対するパラメーターを指定します。 β = 1 の場合、標準ガンマ分布の値が返されます。' }, + cumulative: { name: '累積', detail: '必須。 計算に使用する関数の形式を論理値で指定します。 累積が TRUE の場合は、GAMMADIST によって累積分布関数が返されます。FALSE の場合は、確率密度関数が返されます。' }, }, }, GAMMAINV: { - description: 'ガンマ分布の累積分布関数の逆関数値を返します。', - abstract: 'ガンマ分布の累積分布関数の逆関数値を返します。', + description: 'ガンマ分布の累積分布関数の逆関数の値を返します。 p = GAMMADIST(x,...) の場合、GAMMAINV(p,...) = x になります。 この関数は、正規分布に従わないと見られる変数を分析する場合に使います。', + abstract: 'ガンマ分布の累積分布関数の逆関数の値を返します。 p = GAMMADIST(x,...) の場合、GAMMAINV(p,...) = x になります。 この関数は、正規分布に従わないと見られる変数を分析する場合に使います。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gammainv-%E9%96%A2%E6%95%B0-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: '確率', detail: 'ガンマ分布における確率を指定します。' }, - alpha: { name: 'alpha', detail: '分布の最初のパラメータ。' }, - beta: { name: 'beta', detail: '分布の 2 番目のパラメーター。' }, + probability: { name: '確率', detail: '必須。 ガンマ分布における確率を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 分布に対するパラメーターを指定します。' }, + beta: { name: 'beta', detail: '必須。 分布に対するパラメーターを指定します。 β =1 の場合、標準ガンマ分布の値が返されます。' }, }, }, HYPGEOMDIST: { - description: '超幾何分布関数の値を返します。', - abstract: '超幾何分布関数の値を返します。', + description: '超幾何分布を返します。 HYPGEOMDIST は、指定された標本の成功数、指定された標本数、母集団の成功数、母集団の大きさの確率を返します。 有限母集団に関する問題に対しては HYPGEOMDIST を使用します。ここでは、各観測は成功または失敗のいずれかです。また、指定された大きさの各サブセットは等尤度で選択されます。', + abstract: '超幾何分布を返します。 HYPGEOMDIST は、指定された標本の成功数、指定された標本数、母集団の成功数、母集団の大きさの確率を返します。 有限母集団に関する問題に対しては HYPGEOMDIST を使用します。ここでは、各観測は成功または失敗のいずれかです。また、指定された大きさの各サブセットは等尤度で選択されます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hypgeomdist-%E9%96%A2%E6%95%B0-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: '標本の成功数', detail: '標本内で成功する数を指定します。' }, - numberSample: { name: '標本数', detail: '標本数を指定します。' }, - populationS: { name: '母集団の成功数', detail: '母集団内で成功する数を指定します。' }, - numberPop: { name: '母集団の大きさ', detail: '母集団全体の数を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + sampleS: { name: '標本の成功数', detail: '必須。 標本内で成功する数を指定します。' }, + numberSample: { name: '標本数', detail: '必須。 標本数を指定します。' }, + populationS: { name: '母集団の成功数', detail: '必須。 母集団内で成功する数を指定します。' }, + numberPop: { name: '母集団の大きさ', detail: '必須。 母集団全体の数を指定します。' }, }, }, LOGINV: { - description: '対数正規分布の累積分布関数の逆関数の値を返します。', - abstract: '対数正規分布の累積分布関数の逆関数の値を返します。', + description: 'x の対数正規型の累積分布関数の逆関数を返します。ln(x) は、引数平均と標準偏差による正規型分布です。 p = LOGNORMDIST(x,...) の場合は、LOGINV(p,...) = x です。', + abstract: 'x の対数正規型の累積分布関数の逆関数を返します。ln(x) は、引数平均と標準偏差による正規型分布です。 p = LOGNORMDIST(x,...) の場合は、LOGINV(p,...) = x です。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/loginv-%E9%96%A2%E6%95%B0-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: '確率', detail: '対数正規分布における確率を指定します。' }, - mean: { name: '平均', detail: '対象となる分布の算術平均 (相加平均) を指定します。' }, - standardDev: { name: '標準偏差', detail: '対象となる分布の標準偏差を指定します。' }, + probability: { name: '確率', detail: '必須。 対数正規型分布に伴う確率を指定します。' }, + mean: { name: '平均', detail: '必須。 ln(x) の平均値を指定します。' }, + standardDev: { name: '標準偏差', detail: '必須。 ln(x) の標準偏差を指定します。' }, }, }, LOGNORMDIST: { - description: '対数正規分布の累積分布関数の値を返します。', - abstract: '対数正規分布の累積分布関数の値を返します。', + description: 'x の対数正規分布の分布関数の値を返します。ln(x) は、引数平均と標準偏差による正規型分布です。 この関数は、対数的に変換されたデータを分析する場合に使用します。', + abstract: 'x の対数正規分布の分布関数の値を返します。ln(x) は、引数平均と標準偏差による正規型分布です。 この関数は、対数的に変換されたデータを分析する場合に使用します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lognormdist-%E9%96%A2%E6%95%B0-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '関数に代入する値を指定します。' }, - mean: { name: '平均', detail: '対象となる分布の算術平均 (相加平均) を指定します。' }, - standardDev: { name: '標準偏差', detail: '対象となる分布の標準偏差を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: 'x', detail: '必須。 関数に代入する値を指定します。' }, + mean: { name: '平均', detail: '必須。 ln(x) の平均値を指定します。' }, + standardDev: { name: '標準偏差', detail: '必須。 ln(x) の標準偏差を指定します。' }, }, }, MODE: { - description: '最も頻繁に出現する値 (最頻値) を返します。', - abstract: '最も頻繁に出現する値 (最頻値) を返します。', + description: 'たとえば、30 年間に重要な湿原で鳥の数のサンプルで観察された最も一般的な鳥種の数を調べるか、ピーク時以外に電話サポート センターで最も頻繁に発生する電話の数を調べる必要があるとします。 数値のグループのモードを計算するには、 MODE 関数を使用します。', + abstract: 'たとえば、30 年間に重要な湿原で鳥の数のサンプルで観察された最も一般的な鳥種の数を調べるか、ピーク時以外に電話サポート センターで最も頻繁に発生する電話の数を調べる必要があるとします。 数値のグループのモードを計算するには、 MODE 関数を使用します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mode-%E9%96%A2%E6%95%B0-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: '数値 1', detail: '最頻値を求める 1 つ目の数値、セル参照、またはセル範囲を指定します。' }, - number2: { name: '数値 2', detail: '最頻値を求める追加の数値、セル参照、または範囲 (最大 255)。' }, + number1: { name: '数値 1', detail: '必須。 モードの計算の対象となる最初の数値引数を指定します。' }, + number2: { name: '数値 2', detail: 'オプション。 モードの計算の対象となる 2 ~ 255 個の数値引数を指定できます。 また、半角のカンマ (,) で区切られた引数の代わりに、単一配列や、配列への参照を指定することもできます。' }, }, }, NEGBINOMDIST: { - description: '負の二項分布の確率関数値を返します。', - abstract: '負の二項分布の確率関数値を返します。', + description: '負の二項分布の確率関数値を返します。 NEGBINOMDIST 関数を利用すると、試行の成功率が一定のとき、成功数で指定した回数の試行が成功する前に、失敗数で指定した回数の試行が失敗する確率を計算できます。 この関数は二項分布を計算する関数に似ていますが、試行の成功数が定数で試行回数が変数である点が異なります。 さらに、二項分布の場合と同様に、対象となる試行は独立試行であると見なされます。', + abstract: '負の二項分布の確率関数値を返します。 NEGBINOMDIST 関数を利用すると、試行の成功率が一定のとき、成功数で指定した回数の試行が成功する前に、失敗数で指定した回数の試行が失敗する確率を計算できます。 この関数は二項分布を計算する関数に似ていますが、試行の成功数が定数で試行回数が変数である点が異なります。 さらに、二項分布の場合と同様に、対象となる試行は独立試行であると見なされます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/negbinomdist-%E9%96%A2%E6%95%B0-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/ja-jp/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: '失敗数', detail: '試行が失敗する回数を指定します。' }, - numberS: { name: '成功数', detail: '分析のしきい値となる、試行が成功する回数を指定します。' }, - probabilityS: { name: '成功率', detail: '試行が成功する確率を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + numberF: { name: '失敗数', detail: '必須。 試行が失敗する回数を指定します。' }, + numberS: { name: '成功数', detail: '必須。 分析のしきい値となる、試行が成功する回数を指定します。' }, + probabilityS: { name: '成功率', detail: '必須。 試行が成功する確率を指定します。' }, }, }, NORMDIST: { - description: '正規分布の累積分布関数の値を返します。', - abstract: '正規分布の累積分布関数の値を返します。', + description: 'NORMDIST 関数は、指定された平均と標準偏差の正規分布を返します。 この関数には、仮説検定を含む、統計の幅広いアプリケーションがあります。', + abstract: 'NORMDIST 関数は、指定された平均と標準偏差の正規分布を返します。 この関数には、仮説検定を含む、統計の幅広いアプリケーションがあります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/normdist-%E9%96%A2%E6%95%B0-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/ja-jp/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '関数に代入する値を指定します。' }, - mean: { name: '平均', detail: '対象となる分布の算術平均 (相加平均) を指定します。' }, - standardDev: { name: '標準偏差', detail: '対象となる分布の標準偏差を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: 'x', detail: '必須。 分布が必要な値' }, + mean: { name: '平均', detail: '必須。 分布の算術平均' }, + standardDev: { name: '標準偏差', detail: '必須。 分布の標準偏差' }, + cumulative: { name: '累積', detail: '必須。 計算に使用する関数の形式を論理値で指定します。 累積が TRUE の場合、NORMDIST は累積分布関数を返します。累積が FALSE の場合、確率質量関数が返されます。' }, }, }, NORMINV: { - description: '正規分布の累積分布関数の逆関数値を返します。', - abstract: '正規分布の累積分布関数の逆関数値を返します。', + description: '指定した平均と標準偏差に対する正規分布の累積分布関数の逆関数の値を返します。', + abstract: '指定した平均と標準偏差に対する正規分布の累積分布関数の逆関数の値を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/norminv-%E9%96%A2%E6%95%B0-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: '確率', detail: '正規分布における確率を指定します。' }, - mean: { name: '平均', detail: '対象となる分布の算術平均 (相加平均) を指定します。' }, - standardDev: { name: '標準偏差', detail: '対象となる分布の標準偏差を指定します。' }, + probability: { name: '確率', detail: '必須。 正規分布における確率を指定します。' }, + mean: { name: '平均', detail: '必須。 対象となる分布の算術平均 (相加平均) を指定します。' }, + standardDev: { name: '標準偏差', detail: '必須。 対象となる分布の標準偏差を指定します。' }, }, }, NORMSDIST: { - description: '標準正規分布の累積分布関数の値を返します。', - abstract: '標準正規分布の累積分布関数の値を返します。', + description: '標準正規分布の累積分布関数の値を返します。 この分布は、平均が 0 (ゼロ) で標準偏差が 1 である正規分布に対応します。 標準正規分布表の代わりにこの関数を使用することができます。', + abstract: '標準正規分布の累積分布関数の値を返します。 この分布は、平均が 0 (ゼロ) で標準偏差が 1 である正規分布に対応します。 標準正規分布表の代わりにこの関数を使用することができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/normsdist-%E9%96%A2%E6%95%B0-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/ja-jp/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: '関数に代入する値を指定します。' }, + z: { name: 'z', detail: '必須。 関数に代入する値を指定します。' }, }, }, NORMSINV: { - description: '標準正規分布の累積分布関数の逆関数値を返します。', - abstract: '標準正規分布の累積分布関数の逆関数値を返します。', + description: '標準正規分布の累積分布関数の逆関数の値を返します。 この分布は、平均が 0 で標準偏差が 1 である正規分布に対応します。', + abstract: '標準正規分布の累積分布関数の逆関数の値を返します。 この分布は、平均が 0 で標準偏差が 1 である正規分布に対応します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/normsinv-%E9%96%A2%E6%95%B0-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: '確率', detail: '正規分布における確率を指定します。' }, + probability: { name: '確率', detail: '必須。 正規分布における確率を指定します。' }, }, }, PERCENTILE: { - description: '配列内での第 k 百分位数に当たる値を返します (0と1が含まれています)。', - abstract: '配列内での第 k 百分位数に当たる値を返します (0と1が含まれています)。', + description: '配列のデータの中で、百分率で率に位置する値を返します。 この関数を使用して、合否のしきい値を指定することができます。 たとえば、成績が上位 10% の志願者を合格にすることなどを決定できます。', + abstract: '配列のデータの中で、百分率で率に位置する値を返します。 この関数を使用して、合否のしきい値を指定することができます。 たとえば、成績が上位 10% の志願者を合格にすることなどを決定できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentile-%E9%96%A2%E6%95%B0-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: '配列', detail: '相対的な位置を決定するデータの配列またはセル範囲を指定します。' }, - k: { name: 'k', detail: '0 から 1 (0と1が含まれています)までのパーセント値。' }, + array: { name: '配列', detail: '必須。 相対的な位置を決定するデータの配列またはセル範囲を指定します。' }, + k: { name: 'k', detail: '必須。 0 ~ 1 の範囲で、目的の百分位の値を指定します。' }, }, }, PERCENTRANK: { - description: '配列内での値の順位を百分率で表した値を返します (0と1が含まれています)。', - abstract: '配列内での値の順位を百分率で表した値を返します (0と1が含まれています)。', + description: 'PERCENTRANK 関数は、データセット内の値のランクをデータセットのパーセンテージとして返します。基本的には、データセット全体内の値の相対的な順位です。 たとえば、PERCENTRANK を使用して、同じテストのすべてのスコアのフィールド間で個人のテスト スコアの順位を判断できます。', + abstract: 'PERCENTRANK 関数は、データセット内の値のランクをデータセットのパーセンテージとして返します。基本的には、データセット全体内の値の相対的な順位です。 たとえば、PERCENTRANK を使用して、同じテストのすべてのスコアのフィールド間で個人のテスト スコアの順位を判断できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentrank-%E9%96%A2%E6%95%B0-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: '配列', detail: '相対的な位置を決定するデータの配列またはセル範囲を指定します。' }, - x: { name: 'x', detail: 'ランクを調べる値を指定します。' }, - significance: { name: '有効桁数', detail: '計算結果として返される百分率の有効桁数を指定します。 有効桁数を省略すると、小数点以下第 3 位 (0.xxx) まで計算されます。' }, + array: { name: '配列', detail: '必須。 パーセントランクが決定される数値のデータ (または事前に定義された配列) の範囲。' }, + x: { name: 'x', detail: '必須。 配列内のランクを知りたい値。' }, + significance: { name: '有効桁数', detail: 'オプション。 計算結果として返される百分率の有効桁数を指定します。 有効桁数を省略すると、小数点以下第 3 位 (0.xxx) まで計算されます。' }, }, }, POISSON: { - description: 'ポアソン確率の値を返します。', - abstract: 'ポアソン確率の値を返します。', + description: 'ポアソン確率の値を返します。 通常、ポアソン分布は一定の時間内に起きる事象の数を予測するために利用されます。たとえば、ポアソン分布を使って、高速道路の料金所を 1 分間に通過する自動車の台数を予測することができます。', + abstract: 'ポアソン確率の値を返します。 通常、ポアソン分布は一定の時間内に起きる事象の数を予測するために利用されます。たとえば、ポアソン分布を使って、高速道路の料金所を 1 分間に通過する自動車の台数を予測することができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/poisson-%E9%96%A2%E6%95%B0-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: '関数に代入する値を指定します。' }, - mean: { name: '平均', detail: '対象となる分布の算術平均 (相加平均) を指定します。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: 'x', detail: '必須。 生じる事象の数を指定します。' }, + mean: { name: '平均', detail: '必須。 一定の時間内に起きる事象の平均値を指定します。' }, + cumulative: { name: '累積', detail: '必須。 計算結果として返される確率関数値の形式を、論理値で指定します。 関数形式に TRUE を指定した場合、ランダムに発生するイベントの数が 0 以上 x 以下である累積ポアソン確率を返します。FALSE の場合は、発生するイベントの数が確実に x となる、ポワソン確率質量関数を返します。' }, }, }, QUARTILE: { - description: 'データセットの四分位数を返します (0と1が含まれています)。', - abstract: 'データセットの四分位数を返します (0と1が含まれています)。', + description: '配列に含まれるデータから四分位数を抽出します。 四分位数は、市場調査などのデータで、母集団を複数のグループに分割するために利用されます。 たとえば、母集団の中から所得金額が全体の上位 25% を占めるグループを選び出すことができます。', + abstract: '配列に含まれるデータから四分位数を抽出します。 四分位数は、市場調査などのデータで、母集団を複数のグループに分割するために利用されます。 たとえば、母集団の中から所得金額が全体の上位 25% を占めるグループを選び出すことができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/quartile-%E9%96%A2%E6%95%B0-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: '配列', detail: '四分位値を必要とする配列またはデータ範囲。' }, - quart: { name: '四分位値', detail: '返す四分位値。' }, + array: { name: '配列', detail: '必須。 対象となる数値データを含む配列またはセル範囲を指定します。' }, + quart: { name: '四分位値', detail: '必須。 戻り値として返される四分位数の内容を、0 ~ 4 までの数値で指定します。' }, }, }, RANK: { - description: '数値のリストの中で、指定した数値の序列を返します。', - abstract: '数値のリストの中で、指定した数値の序列を返します。', + description: '数値のリスト内の数値のランクを返します。 数値のランクは、リスト内の他の値に対する相対的なサイズです。 (リストを並べ替える場合、数値のランクはその位置になります)。', + abstract: '数値のリスト内の数値のランクを返します。 数値のランクは、リスト内の他の値に対する相対的なサイズです。 (リストを並べ替える場合、数値のランクはその位置になります)。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rank-%E9%96%A2%E6%95%B0-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rank-function', }, ], functionParameter: { - number: { name: '数値', detail: '範囲内での順位 (位置) を調べる数値を指定します。' }, - ref: { name: '数値範囲', detail: '数値の一覧への参照。 参照に含まれる数値以外の値は無視されます。' }, - order: { name: '順序', detail: '範囲内の数値を並べる方法を指定します。降順の場合は 0 または省略され、昇順の場合は 0 以外です。' }, + number: { name: '数値', detail: '必須。 範囲内での順位 (位置) を調べる数値を指定します。' }, + ref: { name: '数値範囲', detail: '必須。 数値の一覧への参照。 参照に含まれる数値以外の値は無視されます。' }, + order: { name: '順序', detail: 'オプション。 範囲内の数値を並べる方法を指定します。 順序に 0 を指定するか、順序を省略すると、範囲内の数値が ...3、2、1 のように降順に並べ替えられます。 順序に 0 以外の数値を指定すると、範囲内の数値が 1、2、3、... のように昇順で並べ替えられます。' }, }, }, STDEV: { description: '標本に基づいて標準偏差の推定値を計算します。 標準偏差とは、統計的な対象となる値がその平均からどれだけ広い範囲に分布しているかを計測したものです。', - abstract: '引数を正規母集団の標本と見なし、標本に基づいて母集団の標準偏差の推定値を返します。', + abstract: '標本に基づいて標準偏差の推定値を計算します。 標準偏差とは、統計的な対象となる値がその平均からどれだけ広い範囲に分布しているかを計測したものです。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdev-%E9%96%A2%E6%95%B0-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '母集団の標本に対応する最初の数値引数を指定します。' }, - number2: { name: 'number2', detail: '母集団のサンプルに対応する引数 2 から 255 の数値。 また、半角のカンマ (,) で区切られた引数の代わりに、単一配列や、配列への参照を指定することもできます。' }, + number1: { name: 'number1', detail: '必須。 母集団の標本に対応する最初の数値引数を指定します。' }, + number2: { name: 'number2', detail: 'オプション。 母集団のサンプルに対応する引数 2 から 255 の数値。 また、半角のカンマ (,) で区切られた引数の代わりに、単一配列や、配列への参照を指定することもできます。' }, }, }, STDEVP: { - description: '引数を母集団全体であると見なして、母集団の標準偏差を計算します。', - abstract: '引数を母集団全体と見なし、母集団の標準偏差を返します。', + description: '引数を母集団全体であると見なして、母集団の標準偏差を計算します。 標準偏差とは、統計的な対象となる値がその平均からどれだけ広い範囲に分布しているかを計測したものです。', + abstract: '引数を母集団全体であると見なして、母集団の標準偏差を計算します。 標準偏差とは、統計的な対象となる値がその平均からどれだけ広い範囲に分布しているかを計測したものです。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdevp-%E9%96%A2%E6%95%B0-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: '数値 1', detail: '母集団に対応する最初の数値引数を指定します。' }, - number2: { name: '数値 2', detail: '母集団に対応する引数 2 ~ 255 を数える。 また、半角のカンマ (,) で区切られた引数の代わりに、単一配列や、配列への参照を指定することもできます。' }, + number1: { name: '数値 1', detail: '必須。 母集団に対応する最初の数値引数を指定します。' }, + number2: { name: '数値 2', detail: 'オプション。 母集団に対応する引数 2 ~ 255 を数える。 また、半角のカンマ (,) で区切られた引数の代わりに、単一配列や、配列への参照を指定することもできます。' }, }, }, TDIST: { - description: 'スチューデントの t 確率分布を返します。', - abstract: 'スチューデントの t 確率分布を返します。', + description: 'スチューデントの t 分布のパーセンテージ (確率) を返します。数値 (x) は t の計算値で、この t に対してパーセンテージが計算されます。 t 分布は、比較的少数の標本から成るデータを対象に仮説検定を行うときに使われます。 この関数は、t 分布表の代わりに使用することができます。', + abstract: 'スチューデントの t 分布のパーセンテージ (確率) を返します。数値 (x) は t の計算値で、この t に対してパーセンテージが計算されます。 t 分布は、比較的少数の標本から成るデータを対象に仮説検定を行うときに使われます。 この関数は、t 分布表の代わりに使用することができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tdist-%E9%96%A2%E6%95%B0-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '分布の数値を計算する必要があります。' }, - degFreedom: { name: '自由度', detail: '自由度の数を表す整数。' }, - tails: { name: '尾部の特性', detail: '片側分布を計算するか、両側分布を計算するかを、数値で指定します。 尾部に 1 を指定すると片側分布の値が計算されます。 尾部に 2 を指定すると両側分布の値が計算されます。' }, + x: { name: 'x', detail: '必須。 t 分布を計算する数値を指定します。' }, + degFreedom: { name: '自由度', detail: '必須。 分布の自由度を整数で指定します。' }, + tails: { name: '尾部の特性', detail: '必須。 片側分布を計算するか、両側分布を計算するかを、数値で指定します。 尾部に 1 を指定すると片側分布の値が計算されます。 尾部に 2 を指定すると両側分布の値が計算されます。' }, }, }, TINV: { - description: 'スチューデントの t 確率分布 (両側) の逆関数値を返します。', - abstract: 'スチューデントの t 確率分布 (両側) の逆関数値を返します。', + description: 'スチューデントの t 分布の両側逆関数の値を返します。', + abstract: 'スチューデントの t 分布の両側逆関数の値を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tinv-%E9%96%A2%E6%95%B0-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: '確率', detail: 'スチューデントの t 分布に従う確率を指定します。' }, - degFreedom: { name: '自由度', detail: '自由度の数を表す整数。' }, + probability: { name: '確率', detail: '必須。 スチューデントの両側 t 分布に従う確率を指定します。' }, + degFreedom: { name: '自由度', detail: '必須。 分布の自由度を指定します。' }, }, }, TTEST: { - description: 'スチューデントの t 分布に従う確率を返します。', - abstract: 'スチューデントの t 分布に従う確率を返します。', + description: 'スチューデントの t 検定における確率を返します。 TTEST 関数を利用して、2 つの標本が平均値の等しい 2 つの母集団から抽出されたと見なせるかどうかを調べます。', + abstract: 'スチューデントの t 検定における確率を返します。 TTEST 関数を利用して、2 つの標本が平均値の等しい 2 つの母集団から抽出されたと見なせるかどうかを調べます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ttest-%E9%96%A2%E6%95%B0-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: '配列1', detail: '比較対象となる一方のデータを含む配列またはセル範囲を指定します。' }, - array2: { name: '配列2', detail: '比較対象となるもう一方のデータを含む配列またはセル範囲を指定します。' }, - tails: { name: '尾部の特性', detail: '片側分布を計算するか、両側分布を計算するかを、数値で指定します。 尾部に 1 を指定すると片側分布の値が計算されます。 尾部に 2 を指定すると両側分布の値が計算されます。' }, - type: { name: '検定の種類', detail: '実行する t 検定の種類を数値で指定します。' }, + array1: { name: '配列1', detail: '必須。 対象となる一方のデータ。' }, + array2: { name: '配列2', detail: '必須。 対象となるもう一方のデータ。' }, + tails: { name: '尾部の特性', detail: '必須。 片側分布を計算するか、両側分布を計算するかを、数値で指定します。 尾部に 1 を指定すると、片側分布の値が使用されます。 尾部に 2 を指定すると、両側分布の値が使用されます。' }, + type: { name: '検定の種類', detail: '必須。 実行する t 検定の種類を数値で指定します。' }, }, }, VAR: { @@ -530,57 +527,57 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/var-%E9%96%A2%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/var-function', }, ], functionParameter: { - number1: { name: '数値 1', detail: '母集団の標本に対応する最初の数値引数を指定します。' }, - number2: { name: '数値 2', detail: '母集団のサンプルに対応する引数 2 から 255 の数値。' }, + number1: { name: '数値 1', detail: '必須。 母集団の標本に対応する最初の数値引数を指定します。' }, + number2: { name: '数値 2', detail: 'オプション。 母集団のサンプルに対応する引数 2 から 255 の数値。' }, }, }, VARP: { - description: '引数を母集団全体と見なし、母集団の分散 (標本分散) を返します。', - abstract: '引数を母集団全体と見なし、母集団の分散 (標本分散) を返します。', + description: '母集団全体に基づいて分散を計算します。', + abstract: '母集団全体に基づいて分散を計算します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/varp-%E9%96%A2%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: '数値 1', detail: '母集団に対応する最初の数値引数を指定します。' }, - number2: { name: '数値 2', detail: '母集団に対応する引数 2 ~ 255 を数える。' }, + number1: { name: '数値 1', detail: '必須。 母集団に対応する最初の数値引数を指定します。' }, + number2: { name: '数値 2', detail: 'オプション。 母集団に対応する引数 2 ~ 255 を数える。' }, }, }, WEIBULL: { - description: 'ワイブル分布の値を返します。', - abstract: 'ワイブル分布の値を返します。', + description: 'ワイブル分布の値を返します。 この分布は、機械が故障するまでの平均時間のような信頼性の分析に使用されます。', + abstract: 'ワイブル分布の値を返します。 この分布は、機械が故障するまでの平均時間のような信頼性の分析に使用されます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/weibull-%E9%96%A2%E6%95%B0-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: '関数に代入する値を指定します。' }, - alpha: { name: 'alpha', detail: '分布の最初のパラメータ。' }, - beta: { name: 'beta', detail: '分布の 2 番目のパラメーター。' }, - cumulative: { name: '累積', detail: '計算に使用する関数の形式を論理値で指定します。 関数形式に TRUE を指定すると累積分布関数の値が計算され、FALSE を指定すると確率密度関数の値が計算されます。' }, + x: { name: 'x', detail: '必須。 関数に代入する値を指定します。' }, + alpha: { name: 'alpha', detail: '必須。 分布に対するパラメーターを指定します。' }, + beta: { name: 'beta', detail: '必須。 分布に対するパラメーターを指定します。' }, + cumulative: { name: '累積', detail: '必須。 関数の形式を指定します。' }, }, }, ZTEST: { - description: 'z 検定の片側 P 値を返します。', - abstract: 'z 検定の片側 P 値を返します。', + description: 'z 検定の片側 P 値を返します。 ZTEST 関数は、指定した仮説の母集団平均 μ0 について、配列で指定されたデータの観測値平均 (観測された標本平均) よりも標本平均が大きくなる確率を返します。', + abstract: 'z 検定の片側 P 値を返します。 ZTEST 関数は、指定した仮説の母集団平均 μ0 について、配列で指定されたデータの観測値平均 (観測された標本平均) よりも標本平均が大きくなる確率を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ztest-%E9%96%A2%E6%95%B0-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: '配列', detail: 'x の検定対象となるデータを含む数値配列またはセル範囲を指定します。' }, - x: { name: 'x', detail: '検定する値を指定します。' }, - sigma: { name: '標準偏差', detail: '母集団全体に基づく標準偏差を指定します。 省略すると、標本に基づく標準偏差が使用されます。' }, + array: { name: '配列', detail: '必須。 x の検定対象となるデータを含む数値配列またはセル範囲を指定します。' }, + x: { name: 'x', detail: '必須。 検定する値を指定します。' }, + sigma: { name: '標準偏差', detail: 'オプション。 母集団全体に基づく標準偏差を指定します。 省略すると、標本に基づく標準偏差が使用されます。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/compatibility/ko-KR.ts index 6df660a7ec..7017d5e742 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/ko-KR.ts @@ -18,569 +18,566 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: '베타 누적 분포 함수를 반환합니다', - abstract: '베타 누적 분포 함수를 반환합니다', + description: '누적 베타 확률 밀도 함수 값을 반환합니다. 베타 분포는 하루 중 텔레비전을 보는 시간을 백분율로 나타내는 것처럼 표본에서 백분율의 분포를 알아볼 때 일반적으로 사용합니다.', + abstract: '누적 베타 확률 밀도 함수 값을 반환합니다. 베타 분포는 하루 중 텔레비전을 보는 시간을 백분율로 나타내는 것처럼 표본에서 백분율의 분포를 알아볼 때 일반적으로 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/betadist-함수-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/ko-kr/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: 'x', detail: '함수를 평가할 A와 B 사이의 값입니다.' }, - alpha: { name: 'alpha', detail: '분포의 매개 변수입니다.' }, - beta: { name: 'beta', detail: '분포의 매개 변수입니다.' }, - A: { name: 'A', detail: 'x 구간의 하한입니다.' }, - B: { name: 'B', detail: 'x 구간의 상한입니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 함수를 계산할 값으로서 A와 B 사이의 값입니다.' }, + alpha: { name: 'alpha', detail: '필수. 분포의 매개 변수입니다.' }, + beta: { name: 'beta', detail: '필수. 분포의 매개 변수입니다.' }, + A: { name: 'A', detail: '선택 사항 입니다 . x가 취할 수 있는 하한값입니다.' }, + B: { name: 'B', detail: '선택 사항입니다. x가 취할 수 있는 상한값입니다.' }, }, }, BETAINV: { - description: '지정된 베타 분포에 대한 누적 분포 함수의 역함수를 반환합니다', - abstract: '지정된 베타 분포에 대한 누적 분포 함수의 역함수를 반환합니다', + description: '지정된 베타 분포에 대한 누적 베타 확률 밀도 함수의 역함수 값을 반환합니다. 즉, probability = BETADIST(x,...)이면 BETAINV(probability,...) = x입니다. 베타 분포는 프로젝트 계획에서 예상 완료 시간과 가변성이 주어질 때 가능한 완료 시간을 모델링하는 데 사용할 수 있습니다.', + abstract: '지정된 베타 분포에 대한 누적 베타 확률 밀도 함수의 역함수 값을 반환합니다. 즉, probability = BETADIST(x,...)이면 BETAINV(probability,...) = x입니다. 베타 분포는 프로젝트 계획에서 예상 완료 시간과 가변성이 주어질 때 가능한 완료 시간을 모델링하는 데 사용할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/betainv-함수-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '베타 분포와 관련된 확률입니다.' }, - alpha: { name: 'alpha', detail: '분포의 매개 변수입니다.' }, - beta: { name: 'beta', detail: '분포의 매개 변수입니다.' }, - A: { name: 'A', detail: 'x 구간의 하한입니다.' }, - B: { name: 'B', detail: 'x 구간의 상한입니다.' }, + probability: { name: 'probability', detail: '필수. 베타 분포와 관련된 확률입니다.' }, + alpha: { name: 'alpha', detail: '필수. 분포의 매개 변수입니다.' }, + beta: { name: 'beta', detail: '필수. 분포의 매개 변수입니다.' }, + A: { name: 'A', detail: '선택 사항 입니다 . x가 취할 수 있는 하한값입니다.' }, + B: { name: 'B', detail: '선택 사항입니다. x가 취할 수 있는 상한값입니다.' }, }, }, BINOMDIST: { - description: '개별 항 이항 분포 확률을 반환합니다', - abstract: '개별 항 이항 분포 확률을 반환합니다', + description: '개별항 이항 분포 확률을 반환합니다. 고정된 횟수의 검정이나 시행을 거치는 문제에서 시행의 결과값이 성공 또는 실패 중 하나이고, 시행이 서로 독립적이며, 성공 확률이 전체 실험에서 일정하게 나타나는 경우 BINOMDIST 함수를 사용합니다. 예를 들어 앞으로 태어날 세 명의 아기 중 두 명이 남자 아기일 확률을 계산할 때 이 함수를 사용할 수 있습니다.', + abstract: '개별항 이항 분포 확률을 반환합니다. 고정된 횟수의 검정이나 시행을 거치는 문제에서 시행의 결과값이 성공 또는 실패 중 하나이고, 시행이 서로 독립적이며, 성공 확률이 전체 실험에서 일정하게 나타나는 경우 BINOMDIST 함수를 사용합니다. 예를 들어 앞으로 태어날 세 명의 아기 중 두 명이 남자 아기일 확률을 계산할 때 이 함수를 사용할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/binomdist-함수-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: 'number_s', detail: '시행에서 성공한 횟수입니다.' }, - trials: { name: 'trials', detail: '독립 시행 횟수입니다.' }, - probabilityS: { name: 'probability_s', detail: '각 시행에서 성공할 확률입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 BINOMDIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + numberS: { name: 'number_s', detail: '필수. 시행에서의 성공 횟수입니다.' }, + trials: { name: 'trials', detail: '필수. 독립 시행 횟수입니다.' }, + probabilityS: { name: 'probability_s', detail: '필수. 각 시행에서 성공할 확률입니다.' }, + cumulative: { name: 'cumulative', detail: '필수. 함수의 형식을 결정하는 논리 값입니다. 누적이 TRUE이면 BINOMDIST는 최대 number_s 성공이 있을 확률인 누적 분포 함수를 반환합니다. FALSE이면 성공 가능성이 number_s 확률 질량 함수를 반환합니다.' }, }, }, CHIDIST: { - description: '카이 제곱 분포의 우측 꼬리 확률을 반환합니다.', - abstract: '카이 제곱 분포의 우측 꼬리 확률을 반환합니다.', + description: '카이 제곱 분포의 단측(오른쪽) 검정 확률을 반환합니다. 2 분포는 2 테스트와 연결됩니다. 2 테스트를 사용하여 관찰된 값과 예상 값을 비교합니다. 예를 들어, 유전자 실험은 다음 세대의 식물이 특정 색 집합을 나타낼 것이라고 가설을 세일 수 있습니다. 관찰된 결과를 예상 결과와 비교하여 원래 가설이 유효한지 여부를 결정할 수 있습니다.', + abstract: '카이 제곱 분포의 단측(오른쪽) 검정 확률을 반환합니다. 2 분포는 2 테스트와 연결됩니다. 2 테스트를 사용하여 관찰된 값과 예상 값을 비교합니다. 예를 들어, 유전자 실험은 다음 세대의 식물이 특정 색 집합을 나타낼 것이라고 가설을 세일 수 있습니다. 관찰된 결과를 예상 결과와 비교하여 원래 가설이 유효한지 여부를 결정할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chidist-함수-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 평가할 값입니다.' }, - degFreedom: { name: 'deg_freedom', detail: '자유도 수입니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 분포를 계산하려는 값입니다.' }, + degFreedom: { name: 'deg_freedom', detail: '필수. 자유도를 나타내는 숫자입니다.' }, }, }, CHIINV: { - description: '카이 제곱 분포의 우측 꼬리 확률의 역함수를 반환합니다.', - abstract: '카이 제곱 분포의 우측 꼬리 확률의 역함수를 반환합니다.', + description: '카이 제곱 분포의 단측(오른쪽) 검정 확률의 역함수 값을 반환합니다. probability = CHIDIST(x,...)이면 CHIINV(probability,...) = x입니다. 이 함수를 사용하면 관측값과 기대값을 비교하여 가설이 맞는지 확인할 수 있습니다.', + abstract: '카이 제곱 분포의 단측(오른쪽) 검정 확률의 역함수 값을 반환합니다. probability = CHIDIST(x,...)이면 CHIINV(probability,...) = x입니다. 이 함수를 사용하면 관측값과 기대값을 비교하여 가설이 맞는지 확인할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chiinv-함수-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '카이 제곱 분포와 관련된 확률입니다.' }, - degFreedom: { name: 'deg_freedom', detail: '자유도 수입니다.' }, + probability: { name: 'probability', detail: '필수. 카이 제곱 분포와 관련된 확률입니다.' }, + degFreedom: { name: 'deg_freedom', detail: '필수. 자유도를 나타내는 숫자입니다.' }, }, }, CHITEST: { - description: '독립성 검정을 반환합니다', - abstract: '독립성 검정을 반환합니다', + description: '독립 검증 결과를 반환합니다. 즉, CHITEST에서는 해당 통계 및 적정 자유도에 대한 카이 제곱(χ2) 분포값이 반환됩니다. χ2 검정을 사용하면 실험에 의해 가설이 검증되었는지 확인할 수 있습니다.', + abstract: '독립 검증 결과를 반환합니다. 즉, CHITEST에서는 해당 통계 및 적정 자유도에 대한 카이 제곱(χ2) 분포값이 반환됩니다. χ2 검정을 사용하면 실험에 의해 가설이 검증되었는지 확인할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chitest-함수-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: 'actual_range', detail: '예상 값에 대해 테스트할 관측값이 포함된 데이터 범위입니다.' }, - expectedRange: { name: 'expected_range', detail: '행 합계와 열 합계의 곱을 총 합계로 나눈 비율이 포함된 데이터 범위입니다.' }, + actualRange: { name: 'actual_range', detail: '필수. 기대값과 비교하여 검정할 관측값이 포함된 데이터 범위입니다.' }, + expectedRange: { name: 'expected_range', detail: '필수. 행 합계와 열 합계를 곱한 값의 총합계에 대한 비율이 들어 있는 데이터 범위입니다.' }, }, }, CONFIDENCE: { - description: '정규 분포를 사용하여 모집단 평균에 대한 신뢰 구간을 반환합니다.', - abstract: '정규 분포를 사용하여 모집단 평균에 대한 신뢰 구간을 반환합니다.', + description: '정규 분포를 사용하여 모집단 평균의 신뢰 구간을 반환합니다.', + abstract: '정규 분포를 사용하여 모집단 평균의 신뢰 구간을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/confidence-함수-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alpha', detail: '신뢰 수준을 계산하는 데 사용되는 유의 수준입니다. 신뢰 수준은 100*(1 - alpha)% 또는 즉, 0.05의 alpha는 95% 신뢰 수준을 나타냅니다.' }, - standardDev: { name: 'standard_dev', detail: '데이터 범위에 대한 모집단 표준 편차이며 알려진 것으로 가정됩니다.' }, - size: { name: 'size', detail: '표본 크기입니다.' }, + alpha: { name: 'alpha', detail: '필수. 신뢰도 수준을 계산하는 데 사용되는 중요도 수준입니다. 신뢰 수준이 100*(1 - alpha)%와 같거나, 즉 알파가 0.05이면 신뢰 수준이 95%를 나타냅니다.' }, + standardDev: { name: 'standard_dev', detail: '필수. 데이터 범위에 대한 모집단의 표준 편차로서 그 값을 알고 있다고 가정합니다.' }, + size: { name: 'size', detail: '필수. 표본 크기입니다.' }, }, }, COVAR: { - description: '두 데이터 집합의 각 데이터 포인트 쌍에 대한 편차의 곱의 평균인 모집단 공분산을 반환합니다.', - abstract: '모집단 공분산을 반환합니다', + description: '두 데이터 집합의 각 데이터 요소 쌍에 대한 편차 제품의 평균인 공변을 반환합니다.', + abstract: '두 데이터 집합의 각 데이터 요소 쌍에 대한 편차 제품의 평균인 공변을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/covar-함수-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/ko-kr/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: 'array1', detail: '첫 번째 셀 값 범위입니다.' }, - array2: { name: 'array2', detail: '두 번째 셀 값 범위입니다.' }, + array1: { name: 'array1', detail: '필수. 첫 번째 정수 셀 범위입니다.' }, + array2: { name: 'array2', detail: '필수. 두 번째 정수 셀 범위입니다.' }, }, }, CRITBINOM: { - description: '누적 이항 분포가 기준 값보다 작거나 같은 최소값을 반환합니다', - abstract: '누적 이항 분포가 기준 값보다 작거나 같은 최소값을 반환합니다', + description: '누적 이항 분포가 기준치 이상이 되는 값 중 최소값을 반환합니다. 이 함수는 품질 보증 응용 프로그램에 사용합니다. 예를 들어 CRITBINOM 함수를 사용하여 전체 로트를 불합격시키지 않고 조립 라인을 계속 가동할 수 있는 결함 부품의 최대 허용 개수를 확인할 수 있습니다.', + abstract: '누적 이항 분포가 기준치 이상이 되는 값 중 최소값을 반환합니다. 이 함수는 품질 보증 응용 프로그램에 사용합니다. 예를 들어 CRITBINOM 함수를 사용하여 전체 로트를 불합격시키지 않고 조립 라인을 계속 가동할 수 있는 결함 부품의 최대 허용 개수를 확인할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/critbinom-함수-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: 'trials', detail: '베르누이 시행 횟수입니다.' }, - probabilityS: { name: 'probability_s', detail: '각 시행에서 성공할 확률입니다.' }, - alpha: { name: 'alpha', detail: '기준 값입니다.' }, + trials: { name: 'trials', detail: '필수. 베르누이 시행 횟수입니다.' }, + probabilityS: { name: 'probability_s', detail: '필수. 각 시행의 성공 확률입니다.' }, + alpha: { name: 'alpha', detail: '필수. 기준치입니다.' }, }, }, EXPONDIST: { - description: '지수 분포를 반환합니다', - abstract: '지수 분포를 반환합니다', + description: '지수 분포값을 반환합니다. EXPONDIST 함수를 사용하여 현금 출납기가 현금을 지급하는 데 걸리는 시간 등 사건들 사이의 시간을 모델링할 수 있습니다. 예를 들어 EXPONDIST 함수를 사용하여 이 과정에 걸리는 시간이 1분 이내일 확률을 구할 수 있습니다.', + abstract: '지수 분포값을 반환합니다. EXPONDIST 함수를 사용하여 현금 출납기가 현금을 지급하는 데 걸리는 시간 등 사건들 사이의 시간을 모델링할 수 있습니다. 예를 들어 EXPONDIST 함수를 사용하여 이 과정에 걸리는 시간이 1분 이내일 확률을 구할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/expondist-함수-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 평가할 값입니다.' }, - lambda: { name: 'lambda', detail: '매개 변수 값입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 EXPONDIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 함수 값입니다.' }, + lambda: { name: 'lambda', detail: '필수. 매개 변수 값입니다.' }, + cumulative: { name: 'cumulative', detail: '필수. 제공할 지수 함수의 형식을 나타내는 논리 값입니다. 누적이 TRUE이면 EXPONDIST는 누적 분포 함수를 반환합니다. FALSE이면 확률 밀도 함수를 반환합니다.' }, }, }, FDIST: { - description: '(우측 꼬리) F 확률 분포를 반환합니다', - abstract: '(우측 꼬리) F 확률 분포를 반환합니다', + description: '두 데이터 집합에 대한 단측(오른쪽) 검정 F 확률 분포값(분포도)을 반환합니다. 이 함수를 사용하면 두 데이터 집합의 분포도가 서로 다른지 확인할 수 있습니다. 예를 들어 고등학교에 입학하는 남녀 학생의 성적을 조사하여 남녀 학생의 분포도가 서로 다른지를 알아볼 수 있습니다.', + abstract: '두 데이터 집합에 대한 단측(오른쪽) 검정 F 확률 분포값(분포도)을 반환합니다. 이 함수를 사용하면 두 데이터 집합의 분포도가 서로 다른지 확인할 수 있습니다. 예를 들어 고등학교에 입학하는 남녀 학생의 성적을 조사하여 남녀 학생의 분포도가 서로 다른지를 알아볼 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fdist-함수-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '함수를 평가할 값입니다.' }, - degFreedom1: { name: 'deg_freedom1', detail: '분자 자유도입니다.' }, - degFreedom2: { name: 'deg_freedom2', detail: '분모 자유도입니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + degFreedom1: { name: 'deg_freedom1', detail: '필수. 분자의 자유도입니다.' }, + degFreedom2: { name: 'deg_freedom2', detail: '필수. 분모의 자유도입니다.' }, }, }, FINV: { - description: '(우측 꼬리) F 확률 분포의 역함수를 반환합니다', - abstract: '(우측 꼬리) F 확률 분포의 역함수를 반환합니다', + description: '단측(오른쪽) 검정 F 확률 분포의 역함수 값을 반환합니다. p = FDIST(x,...)이면 FINV(p,...) = x입니다.', + abstract: '단측(오른쪽) 검정 F 확률 분포의 역함수 값을 반환합니다. p = FDIST(x,...)이면 FINV(p,...) = x입니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/finv-함수-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: 'F 누적 분포와 관련된 확률입니다.' }, - degFreedom1: { name: 'deg_freedom1', detail: '분자 자유도입니다.' }, - degFreedom2: { name: 'deg_freedom2', detail: '분모 자유도입니다.' }, + probability: { name: 'probability', detail: '필수. F 누적 분포의 확률값입니다.' }, + degFreedom1: { name: 'deg_freedom1', detail: '필수. 분자의 자유도입니다.' }, + degFreedom2: { name: 'deg_freedom2', detail: '필수. 분모의 자유도입니다.' }, }, }, FTEST: { - description: 'F-검정의 결과를 반환합니다', - abstract: 'F-검정의 결과를 반환합니다', + description: 'F-검정 결과를 반환합니다. F-검정은 array1과 array2의 분산이 크게 다르지 않은 양측 검증 확률을 반환합니다. 이 함수를 사용하여 두 표본이 다른 분산을 갖는지 확인할 수 있습니다. 예를 들어 공립 학교와 사립 학교의 시험 성적 분포도가 서로 다른지 확인할 수 있습니다.', + abstract: 'F-검정 결과를 반환합니다. F-검정은 array1과 array2의 분산이 크게 다르지 않은 양측 검증 확률을 반환합니다. 이 함수를 사용하여 두 표본이 다른 분산을 갖는지 확인할 수 있습니다. 예를 들어 공립 학교와 사립 학교의 시험 성적 분포도가 서로 다른지 확인할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ftest-함수-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: 'array1', detail: '첫 번째 배열 또는 데이터 범위입니다.' }, - array2: { name: 'array2', detail: '두 번째 배열 또는 데이터 범위입니다.' }, + array1: { name: 'array1', detail: '필수. 첫 번째 배열 또는 데이터 영역입니다.' }, + array2: { name: 'array2', detail: '필수. 두 번째 배열 또는 데이터 영역입니다.' }, }, }, GAMMADIST: { - description: '감마 분포를 반환합니다', - abstract: '감마 분포를 반환합니다', + description: '감마 분포값을 반환합니다. 이 함수를 사용하면 한쪽으로 치우친 분포의 변수를 연구할 수 있습니다. 감마 분포는 일반적으로 대기 행렬 분석에 사용됩니다.', + abstract: '감마 분포값을 반환합니다. 이 함수를 사용하면 한쪽으로 치우친 분포의 변수를 연구할 수 있습니다. 감마 분포는 일반적으로 대기 행렬 분석에 사용됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gammadist-함수-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 구할 값입니다.' }, - alpha: { name: 'alpha', detail: '분포의 매개 변수입니다.' }, - beta: { name: 'beta', detail: '분포의 매개 변수입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 GAMMADIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 분포를 계산하려는 값입니다.' }, + alpha: { name: 'alpha', detail: '필수. 분포의 매개 변수입니다.' }, + beta: { name: 'beta', detail: '필수. 분포의 매개 변수입니다. beta = 1이면 GAMMADIST에서는 표준 감마 분포를 반환합니다.' }, + cumulative: { name: 'cumulative', detail: '필수. 함수의 형식을 결정하는 논리 값입니다. 누적이 TRUE이면 GAMMADIST는 누적 분포 함수를 반환합니다. FALSE이면 확률 밀도 함수를 반환합니다.' }, }, }, GAMMAINV: { - description: '감마 누적 분포의 역함수를 반환합니다', - abstract: '감마 누적 분포의 역함수를 반환합니다', + description: '감마 누적 분포의 역함수 값을 반환합니다. p = GAMMADIST(x,...)이면 GAMMAINV(p,...) = x입니다. 이 함수를 사용하면 한쪽으로 치우친 분포의 변수를 연구할 수 있습니다.', + abstract: '감마 누적 분포의 역함수 값을 반환합니다. p = GAMMADIST(x,...)이면 GAMMAINV(p,...) = x입니다. 이 함수를 사용하면 한쪽으로 치우친 분포의 변수를 연구할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gammainv-함수-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '감마 분포와 관련된 확률입니다.' }, - alpha: { name: 'alpha', detail: '분포의 매개 변수입니다.' }, - beta: { name: 'beta', detail: '분포의 매개 변수입니다.' }, + probability: { name: 'probability', detail: '필수. 감마 분포와 관련된 확률입니다.' }, + alpha: { name: 'alpha', detail: '필수. 분포의 매개 변수입니다.' }, + beta: { name: 'beta', detail: '필수. 분포의 매개 변수입니다. beta = 1이면 GAMMAINV에서는 표준 감마 분포를 반환합니다.' }, }, }, HYPGEOMDIST: { - description: '초기하 분포를 반환합니다', - abstract: '초기하 분포를 반환합니다', + description: '초기하 분포값을 반환합니다. HYPGEOMDIST 함수는 주어진 표본의 크기, 모집단의 성공 도수와 크기에 대하여 주어진 표본의 성공 도수가 출현할 확률을 반환합니다. 각 사건의 결과가 성공 또는 실패이고, 주어진 크기의 모집단에서 각 부분 집합 표본을 동등하게 추출하는 유한 모집단의 문제에 이 함수를 사용합니다.', + abstract: '초기하 분포값을 반환합니다. HYPGEOMDIST 함수는 주어진 표본의 크기, 모집단의 성공 도수와 크기에 대하여 주어진 표본의 성공 도수가 출현할 확률을 반환합니다. 각 사건의 결과가 성공 또는 실패이고, 주어진 크기의 모집단에서 각 부분 집합 표본을 동등하게 추출하는 유한 모집단의 문제에 이 함수를 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/hypgeomdist-함수-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: 'sample_s', detail: '표본에서 성공한 횟수입니다.' }, - numberSample: { name: 'number_sample', detail: '표본 크기입니다.' }, - populationS: { name: 'population_s', detail: '모집단에서 성공한 횟수입니다.' }, - numberPop: { name: 'number_pop', detail: '모집단 크기입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 HYPGEOMDIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + sampleS: { name: 'sample_s', detail: '필수. 표본의 성공 도수입니다.' }, + numberSample: { name: 'number_sample', detail: '필수. 표본 크기입니다.' }, + populationS: { name: 'population_s', detail: '필수. 모집단의 성공 도수입니다.' }, + numberPop: { name: 'number_pop', detail: '필수. 모집단 크기입니다.' }, }, }, LOGINV: { - description: '로그 정규 누적 분포 함수의 역함수를 반환합니다', - abstract: '로그 정규 누적 분포 함수의 역함수를 반환합니다', + description: 'ln(x)가 mean과 standard_dev를 매개 변수로 갖는 정규 분포인 경우 x에 대한 로그 정규 누적 분포 함수의 역함수 값을 반환합니다. p = LOGNORMDIST(x,...)이면 LOGINV(p,...) = x입니다.', + abstract: 'ln(x)가 mean과 standard_dev를 매개 변수로 갖는 정규 분포인 경우 x에 대한 로그 정규 누적 분포 함수의 역함수 값을 반환합니다. p = LOGNORMDIST(x,...)이면 LOGINV(p,...) = x입니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/loginv-함수-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '로그 정규 분포에 해당하는 확률입니다.' }, - mean: { name: 'mean', detail: '분포의 산술 평균입니다.' }, - standardDev: { name: 'standard_dev', detail: '분포의 표준 편차입니다.' }, + probability: { name: 'probability', detail: '필수. 로그 정규 분포와 관련된 확률입니다.' }, + mean: { name: 'mean', detail: '필수. ln(x)의 평균입니다.' }, + standardDev: { name: 'standard_dev', detail: '필수. ln(x)의 표준 편차입니다.' }, }, }, LOGNORMDIST: { - description: '누적 로그 정규 분포를 반환합니다', - abstract: '누적 로그 정규 분포를 반환합니다', + description: 'ln(x)가 mean과 standard_dev를 매개 변수로 갖는 정규 분포인 경우 x에 대한 로그 정규 누적 분포값을 반환합니다. 이 함수를 사용하여 로그값으로 변환된 데이터를 분석합니다.', + abstract: 'ln(x)가 mean과 standard_dev를 매개 변수로 갖는 정규 분포인 경우 x에 대한 로그 정규 누적 분포값을 반환합니다. 이 함수를 사용하여 로그값으로 변환된 데이터를 분석합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lognormdist-함수-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 구할 값입니다.' }, - mean: { name: 'mean', detail: '분포의 산술 평균입니다.' }, - standardDev: { name: 'standard_dev', detail: '분포의 표준 편차입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 LOGNORM.DIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + mean: { name: 'mean', detail: '필수. ln(x)의 평균입니다.' }, + standardDev: { name: 'standard_dev', detail: '필수. ln(x)의 표준 편차입니다.' }, }, }, MODE: { - description: '데이터 집합에서 가장 일반적인 값을 반환합니다', - abstract: '데이터 집합에서 가장 일반적인 값을 반환합니다', + description: '30년 동안 중요한 습지에서 조류 수의 표본에서 목격된 조류 종의 가장 일반적인 수를 알아보거나, 사용량이 적은 시간에 전화 지원 센터에서 가장 자주 발생하는 전화 통화 수를 알아보고 싶다고 가정해 보겠습니다. 숫자 그룹의 모드를 계산하려면 MODE 함수를 사용합니다.', + abstract: '30년 동안 중요한 습지에서 조류 수의 표본에서 목격된 조류 종의 가장 일반적인 수를 알아보거나, 사용량이 적은 시간에 전화 지원 센터에서 가장 자주 발생하는 전화 통화 수를 알아보고 싶다고 가정해 보겠습니다. 숫자 그룹의 모드를 계산하려면 MODE 함수를 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mode-함수-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '최빈값을 계산할 첫 번째 숫자, 셀 참조 또는 범위입니다.' }, - number2: { name: 'number2', detail: '최빈값을 계산할 추가 숫자, 셀 참조 또는 범위로 최대 255개까지 지정할 수 있습니다.' }, + number1: { name: 'number1', detail: '필수. 최빈값을 계산할 첫 번째 숫자 인수입니다.' }, + number2: { name: 'number2', detail: '선택적. 최빈값을 계산할 숫자 인수로, 2개에서 255개까지 지정할 수 있습니다. 쉼표로 구분된 인수 대신 단일 배열이나 배열에 대한 참조를 사용할 수도 있습니다.' }, }, }, NEGBINOMDIST: { - description: '음이항 분포를 반환합니다', - abstract: '음이항 분포를 반환합니다', + description: '음수 이항 분포를 반환합니다. NEGBINOMDIST는 성공의 일정한 확률이 probability_s 경우 number_s 성공 전에 number_f 오류가 발생할 확률을 반환합니다. 이 함수는 성공 횟수가 고정되고 평가판 수가 가변적이라는 점을 제외하고 이항 분포와 유사합니다. 이항과 마찬가지로 평가판은 독립적인 것으로 간주됩니다.', + abstract: '음수 이항 분포를 반환합니다. NEGBINOMDIST는 성공의 일정한 확률이 probability_s 경우 number_s 성공 전에 number_f 오류가 발생할 확률을 반환합니다. 이 함수는 성공 횟수가 고정되고 평가판 수가 가변적이라는 점을 제외하고 이항 분포와 유사합니다. 이항과 마찬가지로 평가판은 독립적인 것으로 간주됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/negbinomdist-함수-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/ko-kr/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: 'number_f', detail: '실패 횟수입니다.' }, - numberS: { name: 'number_s', detail: '성공의 임계값 수입니다.' }, - probabilityS: { name: 'probability_s', detail: '성공 확률입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 NEGBINOMDIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + numberF: { name: 'number_f', detail: '필수. 실패 횟수입니다.' }, + numberS: { name: 'number_s', detail: '필수. 성공 횟수의 임계값입니다.' }, + probabilityS: { name: 'probability_s', detail: '필수. 성공 확률입니다.' }, }, }, NORMDIST: { - description: '정규 누적 분포를 반환합니다', - abstract: '정규 누적 분포를 반환합니다', + description: 'NORMDIST 함수는 지정된 평균 및 표준 편차에 대한 정규 분포를 반환합니다. 이 함수에는 가설 테스트를 포함하여 다양한 통계 애플리케이션이 있습니다.', + abstract: 'NORMDIST 함수는 지정된 평균 및 표준 편차에 대한 정규 분포를 반환합니다. 이 함수에는 가설 테스트를 포함하여 다양한 통계 애플리케이션이 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/normdist-함수-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/ko-kr/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 구할 값입니다.' }, - mean: { name: 'mean', detail: '분포의 산술 평균입니다.' }, - standardDev: { name: 'standard_dev', detail: '분포의 표준 편차입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 NORMDIST는 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 배포하려는 값입니다.' }, + mean: { name: 'mean', detail: '필수. 분포의 산술 평균' }, + standardDev: { name: 'standard_dev', detail: '필수. 배포의 표준 편차' }, + cumulative: { name: 'cumulative', detail: '필수. 함수의 형식을 결정하는 논리 값입니다. 누적이 TRUE이면 NORMDIST는 누적 분포 함수를 반환합니다. 누적이 FALSE이면 확률 질량 함수를 반환합니다.' }, }, }, NORMINV: { - description: '정규 누적 분포의 역함수를 반환합니다', - abstract: '정규 누적 분포의 역함수를 반환합니다', + description: '지정된 평균과 표준 편차에 대한 정규 누적 분포의 역함수 값을 반환합니다.', + abstract: '지정된 평균과 표준 편차에 대한 정규 누적 분포의 역함수 값을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/norminv-함수-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '정규 분포에 해당하는 확률입니다.' }, - mean: { name: 'mean', detail: '분포의 산술 평균입니다.' }, - standardDev: { name: 'standard_dev', detail: '분포의 표준 편차입니다.' }, + probability: { name: 'probability', detail: '필수. 정규 분포를 따르는 확률입니다.' }, + mean: { name: 'mean', detail: '필수. 분포의 산술 평균입니다.' }, + standardDev: { name: 'standard_dev', detail: '필수. 분포의 표준 편차입니다.' }, }, }, NORMSDIST: { - description: '표준 정규 누적 분포를 반환합니다', - abstract: '표준 정규 누적 분포를 반환합니다', + description: '표준 정규 누적 분포 함수를 반환합니다. 이 분포의 평균은 0이며 표준 편차는 1입니다. 표준 정규 곡선 면적 표 대신 이 함수를 사용합니다.', + abstract: '표준 정규 누적 분포 함수를 반환합니다. 이 분포의 평균은 0이며 표준 편차는 1입니다. 표준 정규 곡선 면적 표 대신 이 함수를 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/normsdist-함수-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/ko-kr/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: '분포를 구할 값입니다.' }, + z: { name: 'z', detail: '필수 요소입니다. 분포를 구하려는 값입니다.' }, }, }, NORMSINV: { - description: '표준 정규 누적 분포의 역함수를 반환합니다', - abstract: '표준 정규 누적 분포의 역함수를 반환합니다', + description: '표준 정규 누적 분포의 역함수 값을 반환합니다. 이 분포의 평균은 0이고 표준 편차는 1입니다.', + abstract: '표준 정규 누적 분포의 역함수 값을 반환합니다. 이 분포의 평균은 0이고 표준 편차는 1입니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/normsinv-함수-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '정규 분포에 해당하는 확률입니다.' }, + probability: { name: 'probability', detail: '필수. 정규 분포를 따르는 확률입니다.' }, }, }, PERCENTILE: { - description: '데이터 집합에서 값의 k 백분위수를 반환합니다 (0과 1 포함)', - abstract: '데이터 집합에서 값의 k 백분위수를 반환합니다 (0과 1 포함)', + description: '범위에서 k번째 백분위수 값을 반환합니다. 이 함수를 사용하면 수용 한계값을 설정할 수 있습니다. 예를 들어 점수가 90번째 백분위수를 넘는 후보를 검색할 수 있습니다.', + abstract: '범위에서 k번째 백분위수 값을 반환합니다. 이 함수를 사용하면 수용 한계값을 설정할 수 있습니다. 예를 들어 점수가 90번째 백분위수를 넘는 후보를 검색할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentile-함수-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: 'array', detail: '상대적 위치를 정의하는 데이터의 배열 또는 범위입니다.' }, - k: { name: 'k', detail: '0과 1 범위의 백분위수 값입니다 (0과 1 포함).' }, + array: { name: 'array', detail: '필수. 상대 순위를 정의하는 데이터 배열 또는 범위입니다.' }, + k: { name: 'k', detail: '필수 요소입니다. 0에서 1 사이 범위의 백분위수 값입니다.' }, }, }, PERCENTRANK: { - description: '데이터 집합에서 값의 백분율 순위를 반환합니다 (0과 1 포함)', - abstract: '데이터 집합에서 값의 백분율 순위를 반환합니다 (0과 1 포함)', + description: 'PERCENTRANK 함수는 데이터 세트의 값 순위를 데이터 세트의 백분율로 반환합니다. 기본적으로 전체 데이터 세트 내 값의 상대 순위입니다. 예를 들어 PERCENTRANK를 사용하여 동일한 테스트에 대한 모든 점수 필드 중 개별 테스트 점수의 순위를 확인할 수 있습니다.', + abstract: 'PERCENTRANK 함수는 데이터 세트의 값 순위를 데이터 세트의 백분율로 반환합니다. 기본적으로 전체 데이터 세트 내 값의 상대 순위입니다. 예를 들어 PERCENTRANK를 사용하여 동일한 테스트에 대한 모든 점수 필드 중 개별 테스트 점수의 순위를 확인할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentrank-함수-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: 'array', detail: '상대적 위치를 정의하는 데이터의 배열 또는 범위입니다.' }, - x: { name: 'x', detail: '순위를 알고자 하는 값입니다.' }, - significance: { name: 'significance', detail: '반환된 백분율 값의 유효 자릿수를 식별하는 값입니다. 생략하면 PERCENTRANK.INC는 3자리 숫자(0.xxx)를 사용합니다.' }, + array: { name: 'array', detail: '필수. 백분율 순위가 결정되는 숫자 값의 데이터 범위(또는 미리 정의된 배열)입니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 배열 내의 순위를 알고자 하는 값입니다.' }, + significance: { name: 'significance', detail: '선택적. 백분율 값의 유효 자릿수를 나타내는 값입니다. 이 인수를 생략하면 PERCENTRANK에서는 세 자릿수(0.xxx)가 사용됩니다.' }, }, }, POISSON: { - description: '포아송 분포를 반환합니다', - abstract: '포아송 분포를 반환합니다', + description: '포아송 확률 분포값을 반환합니다. 포아송 분포를 사용하여 유료 주차장에 1분 동안 도착하는 자동차 수를 알아보는 경우처럼 특정 시간 동안 발생하는 사건 수를 예측할 수 있습니다.', + abstract: '포아송 확률 분포값을 반환합니다. 포아송 분포를 사용하여 유료 주차장에 1분 동안 도착하는 자동차 수를 알아보는 경우처럼 특정 시간 동안 발생하는 사건 수를 예측할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/poisson-함수-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 구할 값입니다.' }, - mean: { name: 'mean', detail: '분포의 산술 평균입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 POISSON은 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 사건의 수입니다.' }, + mean: { name: 'mean', detail: '필수. 기대값입니다.' }, + cumulative: { name: 'cumulative', detail: '필수. 반환된 확률 분포의 형태를 결정하는 논리 값입니다. 누적이 TRUE이면, POISSON은 발생하는 임의 이벤트의 수가 0에서 x 사이일 수 있는 누적 포아송 확률을 반환합니다. FALSE이면 발생하는 이벤트 수가 정확히 x인 Poisson 확률 질량 함수를 반환합니다.' }, }, }, QUARTILE: { - description: '데이터 집합의 사분위수를 반환합니다 (0과 1 포함)', - abstract: '데이터 집합의 사분위수를 반환합니다 (0과 1 포함)', + description: '데이터 집합에서 사분위수를 반환합니다. 사분위수는 판매 자료나 조사 자료의 모집단을 몇 개의 그룹으로 나눌 때 사용합니다. 예를 들어 QUARTILE을 사용하여 모집단에서 수익이 상위 25%인 자료들을 구할 수 있습니다.', + abstract: '데이터 집합에서 사분위수를 반환합니다. 사분위수는 판매 자료나 조사 자료의 모집단을 몇 개의 그룹으로 나눌 때 사용합니다. 예를 들어 QUARTILE을 사용하여 모집단에서 수익이 상위 25%인 자료들을 구할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/quartile-함수-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: 'array', detail: '사분위수 값을 구할 데이터의 배열 또는 범위입니다.' }, - quart: { name: 'quart', detail: '반환할 사분위수 값입니다.' }, + array: { name: 'array', detail: '필수. 사분위수를 계산하려는 숫자 값의 배열 또는 셀 범위입니다.' }, + quart: { name: 'quart', detail: '필수. 계산하려는 사분위수입니다.' }, }, }, RANK: { - description: '숫자 목록에서 숫자의 순위를 반환합니다', - abstract: '숫자 목록에서 숫자의 순위를 반환합니다', + description: '수 목록 내에서 지정한 수의 크기 순위를 반환합니다. 수의 순위는 목록에 있는 다른 수와의 상대 크기를 말합니다. 목록을 정렬하면 수의 위치와 순위가 같아질 수 있습니다.', + abstract: '수 목록 내에서 지정한 수의 크기 순위를 반환합니다. 수의 순위는 목록에 있는 다른 수와의 상대 크기를 말합니다. 목록을 정렬하면 수의 위치와 순위가 같아질 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rank-함수-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rank-function', }, ], functionParameter: { - number: { name: 'number', detail: '순위를 찾으려는 숫자입니다.' }, - ref: { name: 'ref', detail: '숫자 목록에 대한 참조입니다. ref의 숫자가 아닌 값은 무시됩니다.' }, - order: { name: 'order', detail: '숫자 순위를 매기는 방법을 지정하는 숫자입니다. order가 0(영) 또는 생략되면 Microsoft Excel은 ref가 내림차순으로 정렬된 목록인 것처럼 숫자의 순위를 매깁니다. order가 0이 아닌 값이면 Microsoft Excel은 ref가 오름차순으로 정렬된 목록인 것처럼 숫자의 순위를 매깁니다.' }, + number: { name: 'number', detail: '필수. 순위를 구하려는 수입니다.' }, + ref: { name: 'ref', detail: '필수. 숫자 목록에 대한 참조입니다. 숫자 이외의 값은 무시됩니다.' }, + order: { name: 'order', detail: '선택적. 순위 결정 방법을 지정하는 수입니다. order가 0이거나 이를 생략하면 ref가 내림차순으로 정렬된 목록인 것으로 가정하여 number의 순위를 부여합니다. order가 0이 아니면 ref가 오름차순으로 정렬된 목록인 것으로 가정하여 number의 순위를 부여합니다.' }, }, }, STDEV: { - description: '표본을 기준으로 표준 편차를 추정합니다. 표준 편차는 값이 평균값(평균)에서 얼마나 분산되어 있는지를 나타내는 척도입니다.', - abstract: '표본을 기준으로 표준 편차를 추정합니다', + description: '표본 집단의 표준 편차를 구합니다. 표준 편차를 통해 값이 평균 값에서 벗어나 있는 정도를 알 수 있습니다.', + abstract: '표본 집단의 표준 편차를 구합니다. 표준 편차를 통해 값이 평균 값에서 벗어나 있는 정도를 알 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdev-함수-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '모집단의 표본에 해당하는 첫 번째 숫자 인수입니다.' }, - number2: { name: 'number2', detail: '모집단의 표본에 해당하는 2~255개의 숫자 인수입니다. 쉼표로 구분된 인수 대신 단일 배열이나 배열에 대한 참조를 사용할 수도 있습니다.' }, + number1: { name: 'number1', detail: '필수. 모집단 표본에 해당하는 첫 번째 숫자 인수입니다.' }, + number2: { name: 'number2', detail: '선택적. 모집단 표본에 해당하는 숫자 인수로, 2개에서 255개까지 지정할 수 있습니다. 쉼표로 구분된 인수 대신 단일 배열이나 배열에 대한 참조를 사용할 수도 있습니다.' }, }, }, STDEVP: { - description: '인수로 지정된 전체 모집단을 기준으로 표준 편차를 계산합니다.', - abstract: '전체 모집단을 기준으로 표준 편차를 계산합니다', + description: '인수로 주어진 모집단 전체의 표준 편차를 계산합니다. 표준 편차를 통해 값이 평균 값에서 벗어나 있는 정도를 알 수 있습니다.', + abstract: '인수로 주어진 모집단 전체의 표준 편차를 계산합니다. 표준 편차를 통해 값이 평균 값에서 벗어나 있는 정도를 알 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdevp-함수-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '모집단에 해당하는 첫 번째 숫자 인수입니다.' }, - number2: { name: 'number2', detail: '모집단에 해당하는 2~255개의 숫자 인수입니다. 쉼표로 구분된 인수 대신 단일 배열이나 배열에 대한 참조를 사용할 수도 있습니다.' }, + number1: { name: 'number1', detail: '필수. 모집단에 해당하는 첫 번째 숫자 인수입니다.' }, + number2: { name: 'number2', detail: '선택적. 모집단에 해당하는 숫자 인수로, 2개에서 255개까지 지정할 수 있습니다. 쉼표로 구분된 인수 대신 단일 배열이나 배열에 대한 참조를 사용할 수도 있습니다.' }, }, }, TDIST: { - description: '스튜던트 t-분포에 대한 확률을 반환합니다', - abstract: '스튜던트 t-분포에 대한 확률을 반환합니다', + description: '학생 t 분포의 백분율 포인트(확률)를 반환합니다. 여기서 숫자 값(x)은 백분율 포인트를 계산할 t의 계산 값입니다. t-분포는 소표본의 데이터를 가설 검정할 때 사용됩니다. t-분포의 임계값 표 대신 이 함수를 사용합니다.', + abstract: '학생 t 분포의 백분율 포인트(확률)를 반환합니다. 여기서 숫자 값(x)은 백분율 포인트를 계산할 t의 계산 값입니다. t-분포는 소표본의 데이터를 가설 검정할 때 사용됩니다. t-분포의 임계값 표 대신 이 함수를 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tdist-함수-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 평가할 숫자 값입니다' }, - degFreedom: { name: 'degFreedom', detail: '자유도 수를 나타내는 정수입니다.' }, - tails: { name: 'tails', detail: '반환할 분포 꼬리 수를 지정합니다. Tails = 1이면 TDIST는 단측 분포를 반환합니다. Tails = 2이면 TDIST는 양측 분포를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 분포를 구하려는 숫자 값입니다.' }, + degFreedom: { name: 'degFreedom', detail: '필수. 자유도를 나타내는 정수입니다.' }, + tails: { name: 'tails', detail: '필수. 반환할 배포 꼬리 수를 지정합니다. Tails = 1이면 TDIST는 단측 분포를 반환합니다. Tails = 2이면 TDIST는 두 꼬리 분포를 반환합니다.' }, }, }, TINV: { - description: '스튜던트 t-분포에 대한 확률의 역함수를 반환합니다 (양측)', - abstract: '스튜던트 t-분포에 대한 확률의 역함수를 반환합니다 (양측)', + description: '스튜던트 t-분포의 양측 역함수 값을 반환합니다.', + abstract: '스튜던트 t-분포의 양측 역함수 값을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tinv-함수-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: 'probability', detail: '스튜던트 t-분포와 관련된 확률입니다.' }, - degFreedom: { name: 'degFreedom', detail: '자유도 수를 나타내는 정수입니다.' }, + probability: { name: 'probability', detail: '필수. 양측 스튜던트 t-분포의 확률값입니다.' }, + degFreedom: { name: 'degFreedom', detail: '필수. 분포를 결정짓는 자유도를 나타내는 숫자입니다.' }, }, }, TTEST: { - description: '스튜던트 t-검정과 관련된 확률을 반환합니다', - abstract: '스튜던트 t-검정과 관련된 확률을 반환합니다', + description: '스튜던트 t-검정에 근거한 확률을 반환합니다. TTEST 함수를 사용하여 두 개의 표본이 같은 평균값을 갖는 두 개의 같은 모집단에서 추출한 것인지를 판단할 수 있습니다.', + abstract: '스튜던트 t-검정에 근거한 확률을 반환합니다. TTEST 함수를 사용하여 두 개의 표본이 같은 평균값을 갖는 두 개의 같은 모집단에서 추출한 것인지를 판단할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ttest-함수-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: 'array1', detail: '첫 번째 배열 또는 데이터 범위입니다.' }, - array2: { name: 'array2', detail: '두 번째 배열 또는 데이터 범위입니다.' }, - tails: { name: 'tails', detail: '분포 꼬리 수를 지정합니다. tails = 1이면 TTEST는 단측 분포를 사용합니다. tails = 2이면 TTEST는 양측 분포를 사용합니다.' }, - type: { name: 'type', detail: '수행할 t-검정의 종류입니다.' }, + array1: { name: 'array1', detail: '필수. 첫 번째 데이터 집합입니다.' }, + array2: { name: 'array2', detail: '필수. 두 번째 데이터 집합입니다.' }, + tails: { name: 'tails', detail: '필수. 분포 꼬리 수를 지정합니다. tails = 1이면 TTEST는 단측 분포를 사용합니다. tails = 2인 경우 TTEST는 두 꼬리 분포를 사용합니다.' }, + type: { name: 'type', detail: '필수. 실행할 t-검정의 종류입니다.' }, }, }, VAR: { - description: '표본을 기준으로 분산을 추정합니다.', - abstract: '표본을 기준으로 분산을 추정합니다', + description: '표본의 분산을 예측합니다.', + abstract: '표본의 분산을 예측합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/var-함수-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/var-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '모집단의 표본에 해당하는 첫 번째 숫자 인수입니다.' }, - number2: { name: 'number2', detail: '모집단의 표본에 해당하는 2~255개의 숫자 인수입니다.' }, + number1: { name: 'number1', detail: '필수. 모집단 표본에 해당하는 첫 번째 숫자 인수입니다.' }, + number2: { name: 'number2', detail: '선택적. 모집단 표본에 해당하는 숫자 인수로, 2개에서 255개까지 지정할 수 있습니다.' }, }, }, VARP: { - description: '전체 모집단을 기준으로 분산을 계산합니다.', - abstract: '전체 모집단을 기준으로 분산을 계산합니다', + description: '전체 모집단의 분산을 계산합니다.', + abstract: '전체 모집단의 분산을 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/varp-함수-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '모집단에 해당하는 첫 번째 숫자 인수입니다.' }, - number2: { name: 'number2', detail: '모집단에 해당하는 2~255개의 숫자 인수입니다.' }, + number1: { name: 'number1', detail: '필수. 모집단에 해당하는 첫 번째 숫자 인수입니다.' }, + number2: { name: 'number2', detail: '선택적. 모집단에 해당하는 숫자 인수로, 2개에서 255개까지 지정할 수 있습니다.' }, }, }, WEIBULL: { - description: '와이블 분포를 반환합니다', - abstract: '와이블 분포를 반환합니다', + description: '와이블 분포값을 반환합니다. 이 분포는 장치의 평균 고장 시간을 계산하는 경우와 같은 신뢰도 분석에 사용합니다.', + abstract: '와이블 분포값을 반환합니다. 이 분포는 장치의 평균 고장 시간을 계산하는 경우와 같은 신뢰도 분석에 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/weibull-함수-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: '분포를 구할 값입니다.' }, - alpha: { name: 'alpha', detail: '분포의 매개 변수입니다.' }, - beta: { name: 'beta', detail: '분포의 매개 변수입니다.' }, - cumulative: { name: 'cumulative', detail: '함수의 형태를 결정하는 논리값입니다. cumulative가 TRUE이면 WEIBULL은 누적 분포 함수를 반환하고, FALSE이면 확률 밀도 함수를 반환합니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + alpha: { name: 'alpha', detail: '필수. 분포의 매개 변수입니다.' }, + beta: { name: 'beta', detail: '필수. 분포의 매개 변수입니다.' }, + cumulative: { name: 'cumulative', detail: '필수. 함수의 형태를 결정하는 인수입니다.' }, }, }, ZTEST: { - description: 'z-검정의 단측 확률값을 반환합니다', - abstract: 'z-검정의 단측 확률값을 반환합니다', + description: 'z-검정의 단측 검정 확률값을 반환합니다. 가설 모집단 평균 μ0가 주어진 경우 ZTEST 함수는 표본 평균이 데이터 집합(배열)의 관측 평균, 즉 관측된 표본 평균보다 클 확률을 반환합니다.', + abstract: 'z-검정의 단측 검정 확률값을 반환합니다. 가설 모집단 평균 μ0가 주어진 경우 ZTEST 함수는 표본 평균이 데이터 집합(배열)의 관측 평균, 즉 관측된 표본 평균보다 클 확률을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ztest-함수-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: 'array', detail: 'x를 테스트할 데이터의 배열 또는 범위입니다.' }, - x: { name: 'x', detail: '테스트할 값입니다.' }, - sigma: { name: 'sigma', detail: '모집단(알려진) 표준 편차입니다. 생략하면 표본 표준 편차가 사용됩니다.' }, + array: { name: 'array', detail: '필수. x를 검정할 데이터의 배열 또는 범위입니다.' }, + x: { name: 'x', detail: '필수 요소입니다. 검정할 값입니다.' }, + sigma: { name: 'sigma', detail: '선택적. 모집단(알려진) 표준 편차입니다. 생략하면 샘플 표준 편차가 사용됩니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/compatibility/pl-PL.ts new file mode 100644 index 0000000000..71f5112ed2 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/pl-PL.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'Zwraca skumulowaną funkcję gęstości prawdopodobieństwa beta. Rozkładu beta używa się zazwyczaj w badaniu zmian zawartości procentowych w próbkach, na przykład części doby spędzanej przez ludzi na oglądaniu telewizji.', + abstract: 'Zwraca skumulowaną funkcję gęstości prawdopodobieństwa beta. Rozkładu beta używa się zazwyczaj w badaniu zmian zawartości procentowych w próbkach, na przykład części doby spędzanej przez ludzi na oglądaniu telewizji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość między A a B, dla której określa się funkcję.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu.' }, + A: { name: 'A', detail: 'opcjonalny. Dolne ograniczenie interwału wartości x.' }, + B: { name: 'B', detail: 'Argument opcjonalny. Górne ograniczenie interwału wartości x.' }, + }, + }, + BETAINV: { + description: 'Zwraca odwrotność skumulowanej funkcji gęstości prawdopodobieństwa beta. Oznacza to, że jeśli prawdopodobieństwo = ROZKŁAD.BETA(x;...), wówczas ROZKŁAD.BETA.ODW(prawdopodobieństwo;...) = x. Rozkład beta może być używany w planowaniu projektów do modelowania możliwych czasów ukończenia przy danym oczekiwanym czasie ukończenia i jego zmienności.', + abstract: 'Zwraca odwrotność skumulowanej funkcji gęstości prawdopodobieństwa beta. Oznacza to, że jeśli prawdopodobieństwo = ROZKŁAD.BETA(x;...), wówczas ROZKŁAD.BETA.ODW(prawdopodobieństwo;...) = x. Rozkład beta może być używany w planowaniu projektów do modelowania możliwych czasów ukończenia przy danym oczekiwanym czasie ukończenia i jego zmienności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem beta.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu.' }, + A: { name: 'A', detail: 'opcjonalny. Dolne ograniczenie interwału wartości x.' }, + B: { name: 'B', detail: 'Argument opcjonalny. Górne ograniczenie interwału wartości x.' }, + }, + }, + BINOMDIST: { + description: 'Zwraca wartość pojedynczego składnika dwumianowego rozkładu prawdopodobieństwa. Funkcję ROZKŁAD.DWUM należy stosować do rozwiązywania problemów, w których występuje stała liczba testów lub prób, wynik każdej próby może być tylko sukcesem lub porażką, próby są niezależne, a prawdopodobieństwo sukcesu jest stałe w trakcie eksperymentu. Przykładowo funkcja ROZKŁAD.DWUM może obliczyć prawdopodobieństwo, że z trojga następnych nowo narodzonych dzieci dwoje będzie płci męskiej.', + abstract: 'Zwraca wartość pojedynczego składnika dwumianowego rozkładu prawdopodobieństwa. Funkcję ROZKŁAD.DWUM należy stosować do rozwiązywania problemów, w których występuje stała liczba testów lub prób, wynik każdej próby może być tylko sukcesem lub porażką, próby są niezależne, a prawdopodobieństwo sukcesu jest stałe w trakcie eksperymentu. Przykładowo funkcja ROZKŁAD.DWUM może obliczyć prawdopodobieństwo, że z trojga następnych nowo narodzonych dzieci dwoje będzie płci męskiej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Wymagane. Liczba sukcesów w próbach.' }, + trials: { name: 'trials', detail: 'Wymagane. Liczba niezależnych prób.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu w każdej próbie.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli argument „skumulowany” ma wartość PRAWDA, funkcja ROZKŁAD.DWUM zwraca funkcję rozkładu skumulowanego, czyli prawdopodobieństwo, że zachodzi co najwyżej liczba_s sukcesów; jeśli FAŁSZ, zwraca funkcję masy prawdopodobieństwa, czyli prawdopodobieństwo, że zajdzie liczba_s sukcesów.' }, + }, + }, + CHIDIST: { + description: 'Zwraca wartość prawostronnego prawdopodobieństwa rozkładu chi-kwadrat. Rozkład χ2 jest skojarzony z testem χ2. Test χ2 służy do porównywania wartości obserwowanych i przewidywanych. Na przykład eksperyment genetyczny może mieć hipotezę, że następne pokolenie roślin będzie w określonym zestawie kolorów. Przez porównanie wyników obserwowanych z wynikami oczekiwanymi można określić prawidłowość hipotezy.', + abstract: 'Zwraca wartość prawostronnego prawdopodobieństwa rozkładu chi-kwadrat. Rozkład χ2 jest skojarzony z testem χ2. Test χ2 służy do porównywania wartości obserwowanych i przewidywanych. Na przykład eksperyment genetyczny może mieć hipotezę, że następne pokolenie roślin będzie w określonym zestawie kolorów. Przez porównanie wyników obserwowanych z wynikami oczekiwanymi można określić prawidłowość hipotezy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, przy której ma być szacowany rozkład.' }, + degFreedom: { name: 'deg_freedom', detail: 'Argument wymagany. Liczba stopni swobody.' }, + }, + }, + CHIINV: { + description: 'Zwraca odwrotność prawostronnego prawdopodobieństwa rozkładu chi-kwadrat. Jeśli prawdopodobieństwo = ROZKŁAD.CHI(x;...), to ROZKŁAD.CHI.ODW(prawdopodobieństwo;...) = x. Ta funkcja służy do porównywania wyników obserwowanych z wynikami spodziewanymi w celu określenia, czy hipoteza jest prawidłowa.', + abstract: 'Zwraca odwrotność prawostronnego prawdopodobieństwa rozkładu chi-kwadrat. Jeśli prawdopodobieństwo = ROZKŁAD.CHI(x;...), to ROZKŁAD.CHI.ODW(prawdopodobieństwo;...) = x. Ta funkcja służy do porównywania wyników obserwowanych z wynikami spodziewanymi w celu określenia, czy hipoteza jest prawidłowa.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem chi-kwadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Wymagane. Liczba stopni swobody.' }, + }, + }, + CHITEST: { + description: 'Zwraca wartość testu niezależności. Funkcja TEST.CHI zwraca wartość rozkładu chi-kwadrat (χ2) statystyki i stosownych stopni swobody. Testu χ2 można używać do określania, czy dane eksperymentalne potwierdzają przewidywania wynikające z hipotezy.', + abstract: 'Zwraca wartość testu niezależności. Funkcja TEST.CHI zwraca wartość rozkładu chi-kwadrat (χ2) statystyki i stosownych stopni swobody. Testu χ2 można używać do określania, czy dane eksperymentalne potwierdzają przewidywania wynikające z hipotezy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Wymagane. Zakres danych zawierający wartości obserwowane, które należy porównać z wartościami przewidywanymi.' }, + expectedRange: { name: 'expected_range', detail: 'Wymagane. Zakres danych zawierający współczynnik iloczynu sum wierszy i sum kolumn do sumy końcowej.' }, + }, + }, + CONFIDENCE: { + description: 'Zwraca przedział ufności dla średniej z populacji z rozkładem normalnym.', + abstract: 'Zwraca przedział ufności dla średniej z populacji z rozkładem normalnym.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Wymagane. Poziom istotności używany do obliczania poziomu ufności. Poziom ufności jest równy 100*(1 – alfa)%, czyli wartość alfa równa 0,05 wskazuje poziom ufności 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe dla zakresu danych, które z założenia jest znane.' }, + size: { name: 'size', detail: 'Wymagane. Wielkość próby.' }, + }, + }, + COVAR: { + description: 'Zwraca kowariancję, czyli średnią iloczynów odchyleń dla każdej pary punktów danych w dwóch zbiorach danych.', + abstract: 'Zwraca kowariancję, czyli średnią iloczynów odchyleń dla każdej pary punktów danych w dwóch zbiorach danych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwszy zakres komórek zawierających liczby całkowite.' }, + array2: { name: 'array2', detail: 'Wymagane. Drugi zakres komórek zawierających liczby całkowite.' }, + }, + }, + CRITBINOM: { + description: 'Zwraca najmniejszą wartość, dla której skumulowany rozkład dwumianowy jest większy lub równy wartości kryterium. Funkcji tej należy używać w aplikacjach badających niezawodność. Na przykład funkcji PRÓG.ROZKŁAD.DWUM można użyć do wyznaczenia największej liczby wadliwych części, jakie mogą zejść z linii montażowej bez odrzucenia całej serii produktów.', + abstract: 'Zwraca najmniejszą wartość, dla której skumulowany rozkład dwumianowy jest większy lub równy wartości kryterium. Funkcji tej należy używać w aplikacjach badających niezawodność. Na przykład funkcji PRÓG.ROZKŁAD.DWUM można użyć do wyznaczenia największej liczby wadliwych części, jakie mogą zejść z linii montażowej bez odrzucenia całej serii produktów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Wymagane. Liczba prób Bernoulliego.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu w każdej próbie.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Wartość kryterium.' }, + }, + }, + EXPONDIST: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu wykładniczego. Funkcja ROZKŁAD.EXP umożliwia modelowanie upływu czasu między zdarzeniami, np. czasu oczekiwania na wypłatę gotówki z bankomatu. Można na przykład użyć funkcji ROZKŁAD.EXP do wyznaczenia prawdopodobieństwa, że zajmie to najwyżej jedną minutę.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu wykładniczego. Funkcja ROZKŁAD.EXP umożliwia modelowanie upływu czasu między zdarzeniami, np. czasu oczekiwania na wypłatę gotówki z bankomatu. Można na przykład użyć funkcji ROZKŁAD.EXP do wyznaczenia prawdopodobieństwa, że zajmie to najwyżej jedną minutę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość funkcji.' }, + lambda: { name: 'lambda', detail: 'Wymagane. Wartość parametru.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna określająca postać funkcji wykładniczej, która ma zostać podana. Jeśli argument „skumulowany” ma wartość PRAWDA, funkcja ROZKŁAD.EXP zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ — funkcję gęstości prawdopodobieństwa.' }, + }, + }, + FDIST: { + description: 'Zwraca wartość (prawostronnego) rozkładu prawdopodobieństwa F-Snedecora (stopień zróżnicowania) dla dwóch zestawów danych. Ta funkcja służy do określania, czy dwa zbiory danych mają różne stopnie zróżnicowania. Można na przykład sprawdzić wyniki testów uzyskane przez chłopców i dziewczęta zdające do szkoły średniej i określić, czy zmienność wyników uzyskanych przez dziewczęta różni się od zmienności wyników chłopców.', + abstract: 'Zwraca wartość (prawostronnego) rozkładu prawdopodobieństwa F-Snedecora (stopień zróżnicowania) dla dwóch zestawów danych. Ta funkcja służy do określania, czy dwa zbiory danych mają różne stopnie zróżnicowania. Można na przykład sprawdzić wyniki testów uzyskane przez chłopców i dziewczęta zdające do szkoły średniej i określić, czy zmienność wyników uzyskanych przez dziewczęta różni się od zmienności wyników chłopców.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + }, + }, + FINV: { + description: 'Zwraca wartość funkcji odwrotnej rozkładu (prawostronnego) prawdopodobieństwa F-Snedecora. Jeśli p=ROZKŁAD.F(x;...), to ROZKŁAD.F.ODW(p;...)=x.', + abstract: 'Zwraca wartość funkcji odwrotnej rozkładu (prawostronnego) prawdopodobieństwa F-Snedecora. Jeśli p=ROZKŁAD.F(x;...), to ROZKŁAD.F.ODW(p;...)=x.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone ze skumulowanym rozkładem F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + }, + }, + FTEST: { + description: 'Zwraca wynik testu F. Test F zwraca dwustronne prawdopodobieństwo, że wariancje w tablicach tablica1 i tablica2 nie różnią się znacząco. Funkcja umożliwia określenie, czy dwie próbki mają różne wariancje. Na przykład, mając wyniki testów ze szkół prywatnych i publicznych, można sprawdzić, czy w tych szkołach występują różne poziomy zróżnicowania wyników.', + abstract: 'Zwraca wynik testu F. Test F zwraca dwustronne prawdopodobieństwo, że wariancje w tablicach tablica1 i tablica2 nie różnią się znacząco. Funkcja umożliwia określenie, czy dwie próbki mają różne wariancje. Na przykład, mając wyniki testów ze szkół prywatnych i publicznych, można sprawdzić, czy w tych szkołach występują różne poziomy zróżnicowania wyników.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwsza tablica lub pierwszy zakres danych.' }, + array2: { name: 'array2', detail: 'Wymagane. Druga tablica lub drugi zakres danych.' }, + }, + }, + GAMMADIST: { + description: 'Zwraca rozkład gamma. Funkcja ta umożliwia badanie zmiennych, które mogą mieć rozkład skośny. Rozkład gamma jest powszechnie stosowany w analizie kolejek.', + abstract: 'Zwraca rozkład gamma. Funkcja ta umożliwia badanie zmiennych, które mogą mieć rozkład skośny. Rozkład gamma jest powszechnie stosowany w analizie kolejek.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, przy której ma być szacowany rozkład.' }, + alpha: { name: 'alpha', detail: 'Argument wymagany. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Argument wymagany. Parametr rozkładu. Jeśli wartość argumentu beta = 1, funkcja ROZKŁAD.GAMMA zwraca standardowy rozkład gamma.' }, + cumulative: { name: 'cumulative', detail: 'Argument wymagany. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁAD.GAMMA zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ — funkcję gęstości prawdopodobieństwa.' }, + }, + }, + GAMMAINV: { + description: 'Zwraca funkcję odwrotną skumulowanego rozkładu gamma. Jeśli p = ROZKŁAD.GAMMA(x;...), to ROZKŁAD.GAMMA.ODW(p;...) = x. Funkcja ta jest przydatna w badaniu zmiennej, której rozkład może być skośny.', + abstract: 'Zwraca funkcję odwrotną skumulowanego rozkładu gamma. Jeśli p = ROZKŁAD.GAMMA(x;...), to ROZKŁAD.GAMMA.ODW(p;...) = x. Funkcja ta jest przydatna w badaniu zmiennej, której rozkład może być skośny.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo związane z rozkładem gamma.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu. Jeśli wartość argumentu beta = 1, funkcja ROZKŁAD.GAMMA.ODW zwraca standardowy rozkład gamma.' }, + }, + }, + HYPGEOMDIST: { + description: 'Zwraca rozkład hipergeometryczny. Funkcja ROZKŁAD.HIPERGEOM zwraca prawdopodobieństwo sukcesów danej liczby próbek przy podanym rozmiarze próbki oraz podanych sukcesach populacji i rozmiarze populacji. Funkcję ROZKŁAD.HIPERGEOM należy stosować do rozwiązywania zagadnień dotyczących skończonej populacji, gdzie każda obserwacja jest sukcesem albo porażką i gdzie każdy podzbiór o podanej wielkości wybierany jest z jednakowym prawdopodobieństwem.', + abstract: 'Zwraca rozkład hipergeometryczny. Funkcja ROZKŁAD.HIPERGEOM zwraca prawdopodobieństwo sukcesów danej liczby próbek przy podanym rozmiarze próbki oraz podanych sukcesach populacji i rozmiarze populacji. Funkcję ROZKŁAD.HIPERGEOM należy stosować do rozwiązywania zagadnień dotyczących skończonej populacji, gdzie każda obserwacja jest sukcesem albo porażką i gdzie każdy podzbiór o podanej wielkości wybierany jest z jednakowym prawdopodobieństwem.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Wymagane. Liczba sukcesów w próbce.' }, + numberSample: { name: 'number_sample', detail: 'Wymagane. Wielkość próbki.' }, + populationS: { name: 'population_s', detail: 'Wymagane. Liczba sukcesów w populacji.' }, + numberPop: { name: 'number_pop', detail: 'Wymagane. Wielkość populacji.' }, + }, + }, + LOGINV: { + description: 'Zwraca wartość funkcji odwrotnej skumulowanego rozkładu logarytmiczno-normalnego x, gdzie ln(x) ma rozkład normalny z parametrami wartość_oczekiwana i odchylenie_std. Jeśli p = ROZKŁAD.LOG(x;...), to ROZKŁAD.LOG.ODW(p;...) = x.', + abstract: 'Zwraca wartość funkcji odwrotnej skumulowanego rozkładu logarytmiczno-normalnego x, gdzie ln(x) ma rozkład normalny z parametrami wartość_oczekiwana i odchylenie_std. Jeśli p = ROZKŁAD.LOG(x;...), to ROZKŁAD.LOG.ODW(p;...) = x.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem logarytmiczno-normalnym.' }, + mean: { name: 'mean', detail: 'Wymagane. Wartość średnia ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe ln(x).' }, + }, + }, + LOGNORMDIST: { + description: 'Oblicza skumulowany rozkład logarytmiczno-normalny x, gdzie ln(x) ma rozkład normalny z parametrami średnia i odchylenie_std. Funkcję tę należy stosować do analizowania danych, które zostały przetworzone logarytmicznie.', + abstract: 'Oblicza skumulowany rozkład logarytmiczno-normalny x, gdzie ln(x) ma rozkład normalny z parametrami średnia i odchylenie_std. Funkcję tę należy stosować do analizowania danych, które zostały przetworzone logarytmicznie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + mean: { name: 'mean', detail: 'Wymagane. Wartość średnia ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe ln(x).' }, + }, + }, + MODE: { + description: 'Załóżmy, że chcesz sprawdzić najpopularniejszą liczbę gatunków ptaków widzianych w próbce zliczanych ptaków na krytycznych terenach podmokłych w okresie 30 lat lub chcesz sprawdzić najczęściej występującą liczbę połączeń telefonicznych w centrum pomocy telefonicznej w godzinach poza szczytem. Aby obliczyć tryb grupy liczb, użyj funkcji WYST.NAJM .', + abstract: 'Załóżmy, że chcesz sprawdzić najpopularniejszą liczbę gatunków ptaków widzianych w próbce zliczanych ptaków na krytycznych terenach podmokłych w okresie 30 lat lub chcesz sprawdzić najczęściej występującą liczbę połączeń telefonicznych w centrum pomocy telefonicznej w godzinach poza szczytem. Aby obliczyć tryb grupy liczb, użyj funkcji WYST.NAJM .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwsza liczba zakresu, dla którego ma zostać obliczona dominanta.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Argumenty liczbowe od 2 do 255, dla których należy obliczyć dominantę. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + NEGBINOMDIST: { + description: 'Zwraca ujemny rozkład dwumianowy. Funkcja ROZKŁAD.DWUM.PRZEC zwraca w wyniku prawdopodobieństwo, że będzie liczba_p niepowodzeń przed liczba_s-tym sukcesem, kiedy stałe prawdopodobieństwo sukcesu jest prawdopodobieństwo_s. Funkcja ta pracuje podobnie jak funkcja zwracająca rozkład dwumianowy, z tym wyjątkiem, że liczba sukcesów jest stała, a liczba prób jest zmienna. Podobnie jak w przypadku rozkładu dwumianowego, zakłada się, że próby są niezależne.', + abstract: 'Zwraca ujemny rozkład dwumianowy. Funkcja ROZKŁAD.DWUM.PRZEC zwraca w wyniku prawdopodobieństwo, że będzie liczba_p niepowodzeń przed liczba_s-tym sukcesem, kiedy stałe prawdopodobieństwo sukcesu jest prawdopodobieństwo_s. Funkcja ta pracuje podobnie jak funkcja zwracająca rozkład dwumianowy, z tym wyjątkiem, że liczba sukcesów jest stała, a liczba prób jest zmienna. Podobnie jak w przypadku rozkładu dwumianowego, zakłada się, że próby są niezależne.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Wymagane. Liczba porażek.' }, + numberS: { name: 'number_s', detail: 'Wymagane. Progowa liczba sukcesów.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu.' }, + }, + }, + NORMDIST: { + description: 'Funkcja ROZKŁAD.NORMALNY zwraca rozkład normalny dla określonej średniej i odchylenia standardowego. Funkcja ta ma szeroki zakres zastosowań w statystyce, w tym testowanie hipotez.', + abstract: 'Funkcja ROZKŁAD.NORMALNY zwraca rozkład normalny dla określonej średniej i odchylenia standardowego. Funkcja ta ma szeroki zakres zastosowań w statystyce, w tym testowanie hipotez.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której należy obliczyć rozkład' }, + mean: { name: 'mean', detail: 'Wymagane. Średnia arytmetyczna rozkładu' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe rozkładu' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu "skumulowany" jest PRAWDA, funkcja ROZKŁAD.NORMALNY zwraca funkcję rozkładu skumulowanego. jeśli wartością argumentu "skumulowany" jest FAŁSZ, funkcja zwraca funkcję masy prawdopodobieństwa.' }, + }, + }, + NORMINV: { + description: 'Zwraca odwrotność skumulowanego rozkładu normalnego dla podanej średniej i odchylenia standardowego.', + abstract: 'Zwraca odwrotność skumulowanego rozkładu normalnego dla podanej średniej i odchylenia standardowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Argument wymagany. Prawdopodobieństwo odpowiadające rozkładowi normalnemu.' }, + mean: { name: 'mean', detail: 'Argument wymagany. Średnia arytmetyczna rozkładu.' }, + standardDev: { name: 'standard_dev', detail: 'Argument wymagany. Odchylenie standardowe rozkładu.' }, + }, + }, + NORMSDIST: { + description: 'Zwraca funkcję skumulowanego rozkładu normalnego. Rozkład ten ma średnią zero i odchylenie standardowe równe jeden. Funkcję tę należy stosować zamiast tabeli obszarów standardowych krzywych normalnych.', + abstract: 'Zwraca funkcję skumulowanego rozkładu normalnego. Rozkład ten ma średnią zero i odchylenie standardowe równe jeden. Funkcję tę należy stosować zamiast tabeli obszarów standardowych krzywych normalnych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Argument wymagany. Wartość, dla której należy obliczyć rozkład.' }, + }, + }, + NORMSINV: { + description: 'Zwraca funkcję odwrotną skumulowanego, standardowego rozkładu normalnego. Rozkład ten ma średnią równą zero i standardowe odchylenie równe jeden.', + abstract: 'Zwraca funkcję odwrotną skumulowanego, standardowego rozkładu normalnego. Rozkład ten ma średnią równą zero i standardowe odchylenie równe jeden.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Argument wymagany. Prawdopodobieństwo odpowiadające rozkładowi normalnemu.' }, + }, + }, + PERCENTILE: { + description: 'Zwraca k-ty percentyl wartości w zakresie. Funkcję tę można stosować do określania progu akceptacji. Na przykład można podjąć decyzję o przebadaniu kandydatów, których wyniki są powyżej 90-ego percentylu.', + abstract: 'Zwraca k-ty percentyl wartości w zakresie. Funkcję tę można stosować do określania progu akceptacji. Na przykład można podjąć decyzję o przebadaniu kandydatów, których wyniki są powyżej 90-ego percentylu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres danych definiujący względną pozycję.' }, + k: { name: 'k', detail: 'Argument wymagany. Wartość percentylu z przedziału domkniętego od 0 do 1.' }, + }, + }, + PERCENTRANK: { + description: 'Funkcja PROCENT.POZYCJA zwraca pozycję wartości w zestawie danych jako procent zbioru danych — zasadniczo względną pozycję wartości w całym zestawie danych. Za pomocą funkcji PROCENT.POZYCJA można na przykład określić pozycję wyniku testu danej osoby w polu wszystkich wyników dla tego samego testu.', + abstract: 'Funkcja PROCENT.POZYCJA zwraca pozycję wartości w zestawie danych jako procent zbioru danych — zasadniczo względną pozycję wartości w całym zestawie danych. Za pomocą funkcji PROCENT.POZYCJA można na przykład określić pozycję wyniku testu danej osoby w polu wszystkich wyników dla tego samego testu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Zakres danych (lub wstępnie zdefiniowana tablica) wartości liczbowych, w których jest określana pozycja procentu.' }, + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ma zostać określona pozycja w tablicy.' }, + significance: { name: 'significance', detail: 'Opcjonalne. Wartość identyfikująca liczbę cyfr znaczących dla zwracanej wartości procentowej. Jeśli ten argument zostanie pominięty, funkcja PROCENT.POZYCJA użyje trzech cyfr (0,xxx).' }, + }, + }, + POISSON: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Poissona. Zwykłym zastosowaniem rozkładu Poissona jest prognozowanie liczby zdarzeń w danym czasie, takiej jak liczba samochodów przejeżdżających przez plac w czasie jednej minuty.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Poissona. Zwykłym zastosowaniem rozkładu Poissona jest prognozowanie liczby zdarzeń w danym czasie, takiej jak liczba samochodów przejeżdżających przez plac w czasie jednej minuty.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Liczba zdarzeń.' }, + mean: { name: 'mean', detail: 'Argument wymagany. Oczekiwana wartość liczbowa.' }, + cumulative: { name: 'cumulative', detail: 'Argument wymagany. Wartość logiczna, która określa postać zwracanego rozkładu prawdopodobieństwa. Jeśli argument skumulowany ma wartość PRAWDA, funkcja ROZKŁAD.POISSON zwraca skumulowane prawdopodobieństwo Poissona, że liczba przypadkowych zdarzeń będzie między zero a x włącznie; jeśli ma wartość FAŁSZ, funkcja zwraca funkcję masy prawdopodobieństwa Poissona, że liczba zdarzeń będzie równa dokładnie x.' }, + }, + }, + QUARTILE: { + description: 'Zwraca kwartyl zbioru danych. Kwartyle często są używane w danych o sprzedaży i w danych statystycznych do dzielenia populacji na grupy. Na przykład funkcję KWARTYL można zastosować do znalezienia górnych 25% dochodów w populacji.', + abstract: 'Zwraca kwartyl zbioru danych. Kwartyle często są używane w danych o sprzedaży i w danych statystycznych do dzielenia populacji na grupy. Na przykład funkcję KWARTYL można zastosować do znalezienia górnych 25% dochodów w populacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres komórek z wartościami liczbowymi, dla których ma zostać obliczona wartość kwartylu.' }, + quart: { name: 'quart', detail: 'Wymagane. Wskazuje, która wartość ma zostać zwrócona.' }, + }, + }, + RANK: { + description: 'Zwraca pozycję pewnej liczby na liście liczb. Pozycja liczby jest to jej wielkość w stosunku do innych wartości na liście. (Gdyby przeprowadzić sortowanie listy, pozycja liczby oznaczałaby jej miejsce na liście po sortowaniu.)', + abstract: 'Zwraca pozycję pewnej liczby na liście liczb. Pozycja liczby jest to jej wielkość w stosunku do innych wartości na liście. (Gdyby przeprowadzić sortowanie listy, pozycja liczby oznaczałaby jej miejsce na liście po sortowaniu.)', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wymagane. Liczba, której pozycja ma zostać określona.' }, + ref: { name: 'ref', detail: 'Wymagane. Odwołanie do listy liczb. Nieliczbowe wartości argumentu lista są ignorowane.' }, + order: { name: 'order', detail: 'Opcjonalne. Liczba wskazująca sposób określania pozycji liczby. Jeżeli argument lp jest równy 0 lub jest pominięty, program Microsoft Excel określa pozycję liczby, jak gdyby argument lista był listą sortowaną w kolejności malejącej. Jeżeli argument lp ma dowolną wartość niezerową, program Microsoft Excel określa pozycję liczby, jak gdyby argument lista był listą sortowaną w kolejności rosnącej.' }, + }, + }, + STDEV: { + description: 'Szacuje odchylenie standardowe próbki. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości przeciętnej (średniej).', + abstract: 'Szacuje odchylenie standardowe próbki. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości przeciętnej (średniej).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający próbce populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 255 argumentów liczbowych odpowiadających próbce populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + STDEVP: { + description: 'Oblicza odchylenie standardowe dla całej populacji podanej w postaci argumentów. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + abstract: 'Oblicza odchylenie standardowe dla całej populacji podanej w postaci argumentów. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 255 argumentów liczbowych odpowiadających populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + TDIST: { + description: 'Zwraca Punkty procentowe (prawdopodobieństwo) dla rozkładu t Studenta, gdzie wartość liczbowa (x) jest obliczoną wartością t, dla której należy obliczyć Punkty procentowe. Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + abstract: 'Zwraca Punkty procentowe (prawdopodobieństwo) dla rozkładu t Studenta, gdzie wartość liczbowa (x) jest obliczoną wartością t, dla której należy obliczyć Punkty procentowe. Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość liczbowa, przy której należy oszacować rozkład.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba całkowita oznaczająca liczbę stopni swobody.' }, + tails: { name: 'tails', detail: 'Wymagane. Określa liczbę stron zwracanego układu. Jeśli strony = 1, funkcja ROZKŁAD.T zwraca rozkład jednostronny. Jeśli strony = 2, funkcja ROZKŁAD.T zwraca rozkład dwustronny.' }, + }, + }, + TINV: { + description: 'Zwraca dwustronną odwrotność rozkładu t-Studenta.', + abstract: 'Zwraca dwustronną odwrotność rozkładu t-Studenta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Argument wymagany. Prawdopodobieństwo skojarzone z rozkładem dwustronnym t-Studenta.' }, + degFreedom: { name: 'degFreedom', detail: 'Argument wymagany. Liczba stopni swobody charakteryzująca rozkład.' }, + }, + }, + TTEST: { + description: 'Zwraca prawdopodobieństwo skojarzone z testem t-Studenta. Funkcję TEST.T należy stosować do określenia, czy istnieje prawdopodobieństwo tego, że dwie próbki pochodzą z tych samych podległych populacji, które mają taką samą wartość średnią.', + abstract: 'Zwraca prawdopodobieństwo skojarzone z testem t-Studenta. Funkcję TEST.T należy stosować do określenia, czy istnieje prawdopodobieństwo tego, że dwie próbki pochodzą z tych samych podległych populacji, które mają taką samą wartość średnią.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Argument wymagany. Pierwszy zbiór danych.' }, + array2: { name: 'array2', detail: 'Argument wymagany. Drugi zbiór danych.' }, + tails: { name: 'tails', detail: 'Argument wymagany. Określa liczbę stron rozkładu. Jeśli argument strony = 1, funkcja TEST.T stosuje rozkład jednostronny. Jeśli argument strony = 2, funkcja TEST.T stosuje rozkład dwustronny.' }, + type: { name: 'type', detail: 'Argument wymagany. Typ testu t, który należy przeprowadzić.' }, + }, + }, + VAR: { + description: 'Szacuje wariancję na podstawie próbki.', + abstract: 'Szacuje wariancję na podstawie próbki.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający próbce populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 255 argumentów liczbowych odpowiadających próbce populacji.' }, + }, + }, + VARP: { + description: 'Oblicza wariancję na podstawie całej populacji.', + abstract: 'Oblicza wariancję na podstawie całej populacji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 255 argumentów liczbowych odpowiadających populacji.' }, + }, + }, + WEIBULL: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Weibulla. Rozkład ten znajduje zastosowanie w analizie niezawodności, na przykład przy obliczaniu średniego czasu międzyawaryjnego urządzeń.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Weibulla. Rozkład ten znajduje zastosowanie w analizie niezawodności, na przykład przy obliczaniu średniego czasu międzyawaryjnego urządzeń.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + alpha: { name: 'alpha', detail: 'Argument wymagany. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Argument wymagany. Parametr rozkładu.' }, + cumulative: { name: 'cumulative', detail: 'Argument wymagany. Wyznacza postać funkcji.' }, + }, + }, + ZTEST: { + description: 'Zwraca prawdopodobieństwo testu dwustronnego z. Dla pewnej przyjętej w hipotezie średniej z populacji, μ0, funkcja TEST.Z zwraca prawdopodobieństwo, że średnia z próbki będzie większa od średniej z obserwacji w zbiorze danych (tablicy), tj. od obserwowanej średniej próbki.', + abstract: 'Zwraca prawdopodobieństwo testu dwustronnego z. Dla pewnej przyjętej w hipotezie średniej z populacji, μ0, funkcja TEST.Z zwraca prawdopodobieństwo, że średnia z próbki będzie większa od średniej z obserwacji w zbiorze danych (tablicy), tj. od obserwowanej średniej próbki.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres danych, w stosunku do którego ma być testowana wartość x.' }, + x: { name: 'x', detail: 'Argument wymagany. Testowana wartość.' }, + sigma: { name: 'sigma', detail: 'Opcjonalne. Odchylenie standardowe populacji (znane). W przypadku pomięcia tego argumentu stosowane będzie odchylenie standardowe próbki.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/compatibility/pt-BR.ts new file mode 100644 index 0000000000..4867dfd2cf --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/compatibility/pt-BR.ts @@ -0,0 +1,585 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BETADIST: { + description: 'Retorna a função de densidade de probabilidade beta cumulativa. A distribuição beta geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + abstract: 'Retorna a função de densidade de probabilidade beta cumulativa. A distribuição beta geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/betadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor entre A e B no qual se avalia a função.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + A: { name: 'A', detail: 'Um limite inferior para o intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Um limite superior para o intervalo de x.' }, + }, + }, + BETAINV: { + description: 'Retorna o inverso da função de densidade de probabilidade beta cumulativa para uma distribuição beta especificada. Ou seja, se probabilidade = DISTBETA(x;...), BETA.ACUM.INV(probabilidade;...) = x. A distribuição beta pode ser usada no planejamento do projeto para criar modelos de tempos de conclusão provável de acordo com determinado tempo de conclusão e variabilidade esperados.', + abstract: 'Retorna o inverso da função de densidade de probabilidade beta cumulativa para uma distribuição beta especificada. Ou seja, se probabilidade = DISTBETA(x;...), BETA.ACUM.INV(probabilidade;...) = x. A distribuição beta pode ser usada no planejamento do projeto para criar modelos de tempos de conclusão provável de acordo com determinado tempo de conclusão e variabilidade esperados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/betainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade associada à distribuição beta.' }, + alpha: { name: 'alpha', detail: 'Necessário. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Necessário. Um parâmetro da distribuição.' }, + A: { name: 'A', detail: 'Opcional. Um limite inferior para o intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Um limite superior para o intervalo de x.' }, + }, + }, + BINOMDIST: { + description: 'Retorna a probabilidade de distribuição binomial do termo individual. Use DISTRBINOM em problemas com um número fixo de testes ou tentativas, quando os resultados de determinada tentativa forem apenas sucesso ou fracasso, quando as tentativas forem independentes e quando a probabilidade de sucesso for constante durante toda a experiência. Por exemplo, DISTRBINOM pode calcular a probabilidade de que dois dos próximos três bebês sejam meninos.', + abstract: 'Retorna a probabilidade de distribuição binomial do termo individual. Use DISTRBINOM em problemas com um número fixo de testes ou tentativas, quando os resultados de determinada tentativa forem apenas sucesso ou fracasso, quando as tentativas forem independentes e quando a probabilidade de sucesso for constante durante toda a experiência. Por exemplo, DISTRBINOM pode calcular a probabilidade de que dois dos próximos três bebês sejam meninos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/binomdist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Obrigatório. O número de tentativas bem-sucedidas.' }, + trials: { name: 'trials', detail: 'Obrigatório. O número de tentativas independentes.' }, + probabilityS: { name: 'probability_s', detail: 'Obrigatório. A probabilidade de sucesso em cada tentativa.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DISTRBINOM retornará a função de distribuição cumulativa, que é a probabilidade de que exista no máximo núm_s sucessos; se for FALSO, retornará a função massa de probabilidade, que é a probabilidade de que exista núm_s sucessos.' }, + }, + }, + CHIDIST: { + description: 'Retorna a probabilidade de cauda direita da distribuição qui-quadrada. A distribuição χ2 está associada ao teste χ2. Use o teste χ2 para comparar os valores observados e os esperados. Por exemplo, uma experiência genética pode gerar a hipótese de que a próxima geração de plantas exibirá determinado conjunto de cores. Comparando os resultados observados com os esperados, você poderá decidir se a hipótese original é válida.', + abstract: 'Retorna a probabilidade de cauda direita da distribuição qui-quadrada. A distribuição χ2 está associada ao teste χ2. Use o teste χ2 para comparar os valores observados e os esperados. Por exemplo, uma experiência genética pode gerar a hipótese de que a próxima geração de plantas exibirá determinado conjunto de cores. Comparando os resultados observados com os esperados, você poderá decidir se a hipótese original é válida.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/chidist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual a distribuição será avaliada.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obrigatório. O número de graus de liberdade.' }, + }, + }, + CHIINV: { + description: 'Retorna o inverso da probabilidade de cauda direita da distribuição qui-quadrada. Se probabilidade = CHIDIST(x,...), em seguida, CHIINV(probabilidade,...) = x. Use esta função para comparar os resultados observados com os esperados para decidir se a sua hipótese original é válida.', + abstract: 'Retorna o inverso da probabilidade de cauda direita da distribuição qui-quadrada. Se probabilidade = CHIDIST(x,...), em seguida, CHIINV(probabilidade,...) = x. Use esta função para comparar os resultados observados com os esperados para decidir se a sua hipótese original é válida.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/chiinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade associada à distribuição qui-quadrada.' }, + degFreedom: { name: 'deg_freedom', detail: 'Necessário. O número de graus de liberdade.' }, + }, + }, + CHITEST: { + description: 'Retorna o teste para independência. TESTE.QUI retorna o valor da distribuição qui-quadrada (χ2) para a estatística e os graus apropriados de liberdade. Você pode usar os testes χ2 para determinar se os resultados hipotéticos são verificados por uma experiência.', + abstract: 'Retorna o teste para independência. TESTE.QUI retorna o valor da distribuição qui-quadrada (χ2) para a estatística e os graus apropriados de liberdade. Você pode usar os testes χ2 para determinar se os resultados hipotéticos são verificados por uma experiência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/chitest-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Obrigatório. O intervalo de dados que contém observações a serem comparadas com os valores esperados.' }, + expectedRange: { name: 'expected_range', detail: 'Obrigatório. O intervalo de dados que contém a razão entre o produto dos totais de linhas e dos totais de colunas e o total geral.' }, + }, + }, + CONFIDENCE: { + description: 'Retorna o intervalo de confiança para uma média da população, usando uma distribuição normal.', + abstract: 'Retorna o intervalo de confiança para uma média da população, usando uma distribuição normal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/confidence-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obrigatório. O nível de significância usado para calcular o nível de confiança. O nível de confiança é igual a 100*(1 - alfa)% ou, em outras palavras, um alfa de 0,05 indica um nível de confiança de 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio-padrão da população para o intervalo de dados e é assumido como conhecido.' }, + size: { name: 'size', detail: 'Obrigatório. O tamanho da amostra.' }, + }, + }, + COVAR: { + description: 'Devolve covariância, a média dos produtos de desvios para cada par de pontos de dados em dois conjuntos de dados.', + abstract: 'Devolve covariância, a média dos produtos de desvios para cada par de pontos de dados em dois conjuntos de dados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/covar-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. O primeiro intervalo de células de inteiros.' }, + array2: { name: 'array2', detail: 'Obrigatório. O segundo intervalo de células de inteiros.' }, + }, + }, + CRITBINOM: { + description: 'Retorna o menor valor para o qual a distribuição binomial cumulativa é maior ou igual ao valor padrão. Use esta função para aplicações de garantia de qualidade. Por exemplo, use CRIT.BINOM para determinar o número máximo de peças defeituosas que pode sair de uma linha de montagem sem rejeitar o lote inteiro.', + abstract: 'Retorna o menor valor para o qual a distribuição binomial cumulativa é maior ou igual ao valor padrão. Use esta função para aplicações de garantia de qualidade. Por exemplo, use CRIT.BINOM para determinar o número máximo de peças defeituosas que pode sair de uma linha de montagem sem rejeitar o lote inteiro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/critbinom-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obrigatório. O número de tentativas de Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Obrigatório. A probabilidade de sucesso em cada tentativa.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. O valor padrão.' }, + }, + }, + EXPONDIST: { + description: 'Retorna a distribuição exponencial. Use DISTEXPON para criar um modelo do tempo entre os eventos, como quanto tempo determinado caixa eletrônico leva para liberar o dinheiro. Por exemplo, você pode usar DISTEXPON para determinar a probabilidade de que o processo leve no máximo um minuto.', + abstract: 'Retorna a distribuição exponencial. Use DISTEXPON para criar um modelo do tempo entre os eventos, como quanto tempo determinado caixa eletrônico leva para liberar o dinheiro. Por exemplo, você pode usar DISTEXPON para determinar a probabilidade de que o processo leve no máximo um minuto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/expondist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor da função.' }, + lambda: { name: 'lambda', detail: 'Obrigatório. O valor do parâmetro.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que indica a forma da função exponencial a ser fornecida. Se cumulativo for VERDADEIRO, DISTEXPON retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + FDIST: { + description: 'Retorna a distribuição de probabilidade F (de cauda direita) (nível de diversidade) para dois conjuntos de dados. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, é possível examinar os resultados dos testes de homens e mulheres que ingressam no 2º grau e determinar se a variabilidade entre as mulheres é diferente daquela encontrada entre os homens.', + abstract: 'Retorna a distribuição de probabilidade F (de cauda direita) (nível de diversidade) para dois conjuntos de dados. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, é possível examinar os resultados dos testes de homens e mulheres que ingressam no 2º grau e determinar se a variabilidade entre as mulheres é diferente daquela encontrada entre os homens.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obrigatório. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obrigatório. O grau de liberdade do denominador.' }, + }, + }, + FINV: { + description: 'Retorna o inverso da distribuição de probabilidades F (de cauda direita). Se p = DISTF(x;...), então INVF(p;...) = x.', + abstract: 'Retorna o inverso da distribuição de probabilidades F (de cauda direita). Se p = DISTF(x;...), então INVF(p;...) = x.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/finv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade associada à distribuição cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obrigatório. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obrigatório. O grau de liberdade do denominador.' }, + }, + }, + FTEST: { + description: 'Devolve o resultado de um teste F. Um teste F devolve a probabilidade bicaudal de que as variâncias na matriz1 e na matriz2 não são significativamente diferentes. Use esta função para determinar se duas amostras possuem variações diferentes. Por exemplo, a partir de resultados de testes fornecidos por escolas públicas e particulares, você pode verificar se essas escolas têm diferentes níveis de diversidade da pontuação de teste.', + abstract: 'Devolve o resultado de um teste F. Um teste F devolve a probabilidade bicaudal de que as variâncias na matriz1 e na matriz2 não são significativamente diferentes. Use esta função para determinar se duas amostras possuem variações diferentes. Por exemplo, a partir de resultados de testes fornecidos por escolas públicas e particulares, você pode verificar se essas escolas têm diferentes níveis de diversidade da pontuação de teste.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ftest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. A primeira matriz ou intervalo de dados.' }, + array2: { name: 'array2', detail: 'Obrigatório. A segunda matriz ou intervalo de dados.' }, + }, + }, + GAMMADIST: { + description: 'Retorna a distribuição gama. Você pode usar esta função para estudar variáveis que possam apresentar uma distribuição enviesada. A distribuição gama é comumente utilizada em análise de filas.', + abstract: 'Retorna a distribuição gama. Você pode usar esta função para estudar variáveis que possam apresentar uma distribuição enviesada. A distribuição gama é comumente utilizada em análise de filas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gammadist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual a distribuição será avaliada.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: '(em inglês) Obrigatório. Um parâmetro da distribuição. Se beta = 1, DISTGAMA retorna a distribuição gama padrão.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DISTGAMA retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + GAMMAINV: { + description: 'Retorna o inverso da distribuição cumulativa gama. Se p = DISTGAMA(x;...), então INVGAMA(p;...) = x. Você pode usar essa função para estudar uma variável cuja distribuição pode ser enviesada.', + abstract: 'Retorna o inverso da distribuição cumulativa gama. Se p = DISTGAMA(x;...), então INVGAMA(p;...) = x. Você pode usar essa função para estudar uma variável cuja distribuição pode ser enviesada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gammainv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. A probabilidade associada à distribuição gama.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Obrigatório. Um parâmetro da distribuição. Se beta = 1, INVGAMA retornará a distribuição gama padrão.' }, + }, + }, + HYPGEOMDIST: { + description: 'Retorna a distribuição hipergeométrica. DIST.HIPERGEOM retorna a probabilidade de um determinado número de sucessos de uma amostra, de acordo com o tamanho da amostra, sucessos da população e tamanho da população. Use DIST.HIPERGEOM para problemas com uma população finita, onde cada observação seja equivalente a um sucesso ou a um fracasso, e onde cada subconjunto de um determinado tamanho seja escolhido com igual probabilidade.', + abstract: 'Retorna a distribuição hipergeométrica. DIST.HIPERGEOM retorna a probabilidade de um determinado número de sucessos de uma amostra, de acordo com o tamanho da amostra, sucessos da população e tamanho da população. Use DIST.HIPERGEOM para problemas com uma população finita, onde cada observação seja equivalente a um sucesso ou a um fracasso, e onde cada subconjunto de um determinado tamanho seja escolhido com igual probabilidade.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hypgeomdist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Necessário. O número de sucessos em uma amostra.' }, + numberSample: { name: 'number_sample', detail: 'Necessário. O tamanho da amostra.' }, + populationS: { name: 'population_s', detail: 'Necessário. O número de sucessos na população.' }, + numberPop: { name: 'number_pop', detail: 'Necessário. O tamanho da população.' }, + }, + }, + LOGINV: { + description: 'Retorna o inverso da função de distribuição cumulativa lognormal de x, em que ln(x) normalmente é distribuída com os parâmetros média e desv_padrão. Se p = DIST.LOGNORMAL(x;...) então INVLOG(p;...) = x.', + abstract: 'Retorna o inverso da função de distribuição cumulativa lognormal de x, em que ln(x) normalmente é distribuída com os parâmetros média e desv_padrão. Se p = DIST.LOGNORMAL(x;...) então INVLOG(p;...) = x.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/loginv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade associada à distribuição lognormal.' }, + mean: { name: 'mean', detail: 'Necessário. A média do ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão do ln(x).' }, + }, + }, + LOGNORMDIST: { + description: 'Retorna a distribuição log-normal de x, onde ln (x) costuma ser distribuído com média de parâmetros e desv_padrão. Use esta função para analisar os dados que forem transformados através de logaritmos.', + abstract: 'Retorna a distribuição log-normal de x, onde ln (x) costuma ser distribuído com média de parâmetros e desv_padrão. Use esta função para analisar os dados que forem transformados através de logaritmos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/lognormdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + mean: { name: 'mean', detail: 'Necessário. A média do ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão do ln(x).' }, + }, + }, + MODE: { + description: 'Digamos que quer descobrir o número mais comum de espécies de aves avistadas numa amostra de contagem de aves numa zona húmida crítica durante um período de 30 anos, ou quer descobrir o número mais frequente de chamadas telefónicas num centro de suporte telefónico durante as horas de ponta. Para calcular o modo de um grupo de números, utilize a função MODE .', + abstract: 'Digamos que quer descobrir o número mais comum de espécies de aves avistadas numa amostra de contagem de aves numa zona húmida crítica durante um período de 30 anos, ou quer descobrir o número mais frequente de chamadas telefónicas num centro de suporte telefónico durante as horas de ponta. Para calcular o modo de um grupo de números, utilize a função MODE .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mode-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento de número cujo modo você deseja calcular.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos de número de 2 a 255 para os quais você deseja calcular o modo. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + NEGBINOMDIST: { + description: 'Retorna a distribuição binomial negativa. DIST.BIN.NEG retorna a probabilidade de ocorrer núm_f fracassos antes de núm_s-ésimo sucesso, quando a probabilidade constante de um sucesso é probabilidade_s. Esta função é semelhante à distribuição binomial, exceto pelo fato de que o número de sucessos é fixo e o numero de tentativas é variável. Como ocorre na distribuição binomial, as tentativas são consideradas independentes.', + abstract: 'Retorna a distribuição binomial negativa. DIST.BIN.NEG retorna a probabilidade de ocorrer núm_f fracassos antes de núm_s-ésimo sucesso, quando a probabilidade constante de um sucesso é probabilidade_s. Esta função é semelhante à distribuição binomial, exceto pelo fato de que o número de sucessos é fixo e o numero de tentativas é variável. Como ocorre na distribuição binomial, as tentativas são consideradas independentes.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/negbinomdist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Necessário. O número de insucessos.' }, + numberS: { name: 'number_s', detail: 'Necessário. O número a partir do qual se considera haver sucesso.' }, + probabilityS: { name: 'probability_s', detail: 'Necessário. A probabilidade de sucesso.' }, + }, + }, + NORMDIST: { + description: 'A função NORMDIST retorna a distribuição normal para a média especificada e o desvio padrão. Essa função tem uma ampla gama de aplicativos em estatísticas, incluindo testes de hipótese.', + abstract: 'A função NORMDIST retorna a distribuição normal para a média especificada e o desvio padrão. Essa função tem uma ampla gama de aplicativos em estatísticas, incluindo testes de hipótese.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/normdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor para o qual você deseja a distribuição' }, + mean: { name: 'mean', detail: 'Necessário. A média aritmética da distribuição' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão da distribuição' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for TRUE, NORMDIST retornará a função de distribuição cumulativa; se cumulativo for FALSE, ele retornará a função de massa de probabilidade.' }, + }, + }, + NORMINV: { + description: 'Retorna o inverso da distribuição cumulativa normal para a média específica e o desvio padrão.', + abstract: 'Retorna o inverso da distribuição cumulativa normal para a média específica e o desvio padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/norminv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade correspondente à distribuição normal.' }, + mean: { name: 'mean', detail: 'Obrigatório. A média aritmética da distribuição.' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio padrão da distribuição.' }, + }, + }, + NORMSDIST: { + description: 'Retorna a função da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um. Use esta função no lugar de uma tabela de áreas de curva normal padrão.', + abstract: 'Retorna a função da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um. Use esta função no lugar de uma tabela de áreas de curva normal padrão.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/normsdist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obrigatório. O valor cuja distribuição você deseja obter.' }, + }, + }, + NORMSINV: { + description: 'Retorna o inverso da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um.', + abstract: 'Retorna o inverso da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/normsinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade correspondente à distribuição normal.' }, + }, + }, + PERCENTILE: { + description: 'Retorna o k-ésimo percentil de valores em um intervalo. Você pode usar esta função para estabelecer um limite de aceitação. Por exemplo, você pode decidir examinar candidatos com pontuação acima do 90º percentil.', + abstract: 'Retorna o k-ésimo percentil de valores em um intervalo. Você pode usar esta função para estabelecer um limite de aceitação. Por exemplo, você pode decidir examinar candidatos com pontuação acima do 90º percentil.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou intervalo de dados que define a posição relativa.' }, + k: { name: 'k', detail: 'Obrigatório. O valor do percentil no intervalo 0..1, inclusivo.' }, + }, + }, + PERCENTRANK: { + description: 'A função PERCENTRANK retorna a classificação de um valor em um conjunto de dados como uma porcentagem do conjunto de dados -- essencialmente, a posição relativa de um valor dentro de todo o conjunto de dados. Por exemplo, você pode usar PERCENTRANK para determinar a posição da pontuação de teste de um indivíduo entre o campo de todas as pontuações para o mesmo teste.', + abstract: 'A função PERCENTRANK retorna a classificação de um valor em um conjunto de dados como uma porcentagem do conjunto de dados -- essencialmente, a posição relativa de um valor dentro de todo o conjunto de dados. Por exemplo, você pode usar PERCENTRANK para determinar a posição da pontuação de teste de um indivíduo entre o campo de todas as pontuações para o mesmo teste.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentrank-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. O intervalo de dados (ou matriz pré-definida) de valores numéricos dentro dos quais a classificação percentual é determinada.' }, + x: { name: 'x', detail: 'Obrigatório. O valor para o qual você deseja saber a classificação dentro da matriz.' }, + significance: { name: 'significance', detail: 'Opcional. Um valor opcional que identifica o número de dígitos significativos para o valor de porcentagem retornado. Se omitido, ORDEM.PORCENTUAL usará três dígitos (0,xxx).' }, + }, + }, + POISSON: { + description: 'Retorna a distribuição Poisson. Uma aplicação comum da distribuição Poisson é prever o número de eventos em um determinado período de tempo, como o número de carros que chega ao ponto de pedágio em um minuto.', + abstract: 'Retorna a distribuição Poisson. Uma aplicação comum da distribuição Poisson é prever o número de eventos em um determinado período de tempo, como o número de carros que chega ao ponto de pedágio em um minuto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/poisson-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O número de eventos.' }, + mean: { name: 'mean', detail: 'Obrigatório. O valor numérico esperado.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da distribuição de probabilidade fornecida. Se cumulativo for VERDADEIRO, POISSON retornará a probabilidade Poisson de que o número de eventos aleatórios estará entre zero e x inclusive; se FALSO, retornará a função massa da probabilidade Poisson de que o número de eventos será equivalente a x.' }, + }, + }, + QUARTILE: { + description: 'Retorna o quartil do conjunto de dados. Quartis são comumente usados em dados de vendas e de pesquisas para dividir a população em grupos. Por exemplo, você pode usar QUARTIL para descobrir 25% de maior renda de uma população.', + abstract: 'Retorna o quartil do conjunto de dados. Quartis são comumente usados em dados de vendas e de pesquisas para dividir a população em grupos. Por exemplo, você pode usar QUARTIL para descobrir 25% de maior renda de uma população.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/quartile-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou intervalo de célula de valores numéricos cujo valor quartil você deseja obter.' }, + quart: { name: 'quart', detail: 'Obrigatório. Indica o valor a ser retornado.' }, + }, + }, + RANK: { + description: 'Retorna a posição de um número em uma lista de números. A ordem de um número é seu tamanho em relação a outros valores de uma lista. (Se você fosse classificar a lista, a ordem do número seria a sua posição.)', + abstract: 'Retorna a posição de um número em uma lista de números. A ordem de um número é seu tamanho em relação a outros valores de uma lista. (Se você fosse classificar a lista, a ordem do número seria a sua posição.)', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rank-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número cuja posição se deseja encontrar.' }, + ref: { name: 'ref', detail: 'Obrigatório. Uma referência a uma lista de números. Valores não numéricos em ref são ignorados.' }, + order: { name: 'order', detail: 'Opcional. Um número que especifica como posicionar um número em uma ordem. Se ordem for 0 ou omitido, o Microsoft Excel ordenará o número como se ref fosse uma lista classificada na ordem descendente. Se ordem for qualquer valor diferente de zero, o Microsoft Excel ordenará o número como se ref fosse uma lista classificada na ordem ascendente.' }, + }, + }, + STDEV: { + description: 'Estima o desvio padrão com base em uma amostra. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'Estima o desvio padrão com base em uma amostra. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento numérico correspondente a uma amostra de população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 255 correspondentes a uma amostra de população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + STDEVP: { + description: 'Calcula o desvio padrão com base na população total fornecida como argumentos. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'Calcula o desvio padrão com base na população total fornecida como argumentos. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdevp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro argumento numérico correspondente a uma população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 255 correspondentes a uma população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + TDIST: { + description: 'Retorna os pontos percentuais (probabilidade) para a distribuição t de Student, onde o valor numérico (x) é um valor calculado de t para o qual os pontos percentuais devem ser computados. A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + abstract: 'Retorna os pontos percentuais (probabilidade) para a distribuição t de Student, onde o valor numérico (x) é um valor calculado de t para o qual os pontos percentuais devem ser computados. A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tdist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor numérico em que se avalia a distribuição.' }, + degFreedom: { name: 'degFreedom', detail: 'Necessário. Um número inteiro indicando o número de graus de liberdade.' }, + tails: { name: 'tails', detail: 'Necessário. Especifica o número de caudas da distribuição a ser retornado. Se Caudas = 1, DISTT retornará a distribuição unicaudal. Se Caudas = 2, DISTT retornará a distribuição bicaudal.' }, + }, + }, + TINV: { + description: 'Retorna o inverso bicaudal da distribuição t de Student', + abstract: 'Retorna o inverso bicaudal da distribuição t de Student', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tinv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. A probabilidade associada à distribuição t de Student bicaudal.' }, + degFreedom: { name: 'degFreedom', detail: 'Obrigatório. O número de graus de liberdade que caracteriza a distribuição.' }, + }, + }, + TTEST: { + description: 'Retorna a probabilidade associada ao teste t de Student. Use TESTET para determinar se duas amostras poderão ser provenientes de duas populações subjacentes que possuem a mesma média.', + abstract: 'Retorna a probabilidade associada ao teste t de Student. Use TESTET para determinar se duas amostras poderão ser provenientes de duas populações subjacentes que possuem a mesma média.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ttest-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. O primeiro conjunto de dados.' }, + array2: { name: 'array2', detail: 'Obrigatório. O segundo conjunto de dados.' }, + tails: { name: 'tails', detail: 'Obrigatório. Especifica o número de caudas da distribuição. Se caudas = 1, TESTET usará a distribuição unicaudal. Se caudas = 2, TESTET usará a distribuição bicaudal.' }, + type: { name: 'type', detail: 'Obrigatório. O tipo de Teste t a ser executado.' }, + }, + }, + VAR: { + description: 'Estima a variação com base em uma amostra.', + abstract: 'Estima a variação com base em uma amostra.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/var-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento numérico correspondente a uma amostra de população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 255 correspondentes a uma amostra de população.' }, + }, + }, + VARP: { + description: 'Calcula a variação com base na população inteira.', + abstract: 'Calcula a variação com base na população inteira.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/varp-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento numérico correspondente a uma população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 255 correspondentes a uma população.' }, + }, + }, + WEIBULL: { + description: 'Retorna a distribuição Weibull. Use esta distribuição na análise de confiabilidade, como no cálculo do tempo médio de falha para determinado dispositivo.', + abstract: 'Retorna a distribuição Weibull. Use esta distribuição na análise de confiabilidade, como no cálculo do tempo médio de falha para determinado dispositivo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/weibull-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: '(em inglês) Obrigatório. Um parâmetro da distribuição.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Determina a forma da função.' }, + }, + }, + ZTEST: { + description: 'Retorna o valor de probabilidade uni-caudal de um teste-z. Para uma média de população hipotética, μ0, TESTEZ retorna a probabilidade de que a média da população seja maior que a média de observações no conjunto de dados (matriz) — ou seja, a média da amostra observada.', + abstract: 'Retorna o valor de probabilidade uni-caudal de um teste-z. Para uma média de população hipotética, μ0, TESTEZ retorna a probabilidade de que a média da população seja maior que a média de observações no conjunto de dados (matriz) — ou seja, a média da amostra observada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ztest-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou o intervalo de dados em que x será testado.' }, + x: { name: 'x', detail: 'Obrigatório. O valor a ser testado.' }, + sigma: { name: 'sigma', detail: 'Opcional. O desvio padrão da população (conhecido). Quando não especificado, o desvio padrão de amostra será usado.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/compatibility/ru-RU.ts index fe7e3de08c..8918fd0468 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/ru-RU.ts @@ -18,323 +18,320 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: 'Возвращает интегральную функцию плотности бета-вероятности', - abstract: 'Возвращает интегральную функцию плотности бета-вероятности', + description: 'Возвращает интегральную функцию плотности бета-вероятности. Функция интегрального бета-распределения обычно используется для изучения вариации в процентах какой-либо величины, например, части дня, которую люди проводят у телевизора.', + abstract: 'Возвращает интегральную функцию плотности бета-вероятности. Функция интегрального бета-распределения обычно используется для изучения вариации в процентах какой-либо величины, например, части дня, которую люди проводят у телевизора.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%82%D0%B0%D1%80%D0%B0%D1%81%D0%BF-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/ru-ru/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение в интервале между A и B, для которого вычисляется функция.' }, - alpha: { name: 'альфа', detail: 'Параметр распределения.' }, - beta: { name: 'бета', detail: 'Параметр распределения.' }, + x: { name: 'x', detail: 'Обязательный. Значение в интервале между A и B, для которого вычисляется функция.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Параметр распределения.' }, + beta: { name: 'бета', detail: 'Обязательно. Параметр распределения.' }, A: { name: 'A', detail: 'Нижняя граница интервала изменения x.' }, - B: { name: 'B', detail: 'Верхняя граница интервала изменения x.' }, + B: { name: 'B', detail: 'Необязательный. Верхняя граница интервала изменения x.' }, }, }, BETAINV: { - description: 'Возвращает обратную интегральную функцию плотности бета-вeроятности указанного бета-распределения', - abstract: 'Возвращает обратную интегральную функцию плотности бета-вeроятности указанного бета-распределения', + description: 'Возвращает обратную интегральную функцию плотности бета-вeроятности указанного бета-распределения. Иными словами, если вероятность = БЕТАРАСП(x;...), то БЕТАОБР(вероятность;...) = x. Бета-распределение используется при планировании для определения вероятного времени завершения работы, если заданы ожидаемое время завершения и его вариативность.', + abstract: 'Возвращает обратную интегральную функцию плотности бета-вeроятности указанного бета-распределения. Иными словами, если вероятность = БЕТАРАСП(x;...), то БЕТАОБР(вероятность;...) = x. Бета-распределение используется при планировании для определения вероятного времени завершения работы, если заданы ожидаемое время завершения и его вариативность.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%82%D0%B0%D0%BE%D0%B1%D1%80-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, связанная с бета-распределением.' }, - alpha: { name: 'альфа', detail: 'Параметр распределения.' }, - beta: { name: 'бета', detail: 'Параметр распределения.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, связанная с бета-распределением.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Параметр распределения.' }, + beta: { name: 'бета', detail: 'Обязательно. Параметр распределения.' }, A: { name: 'A', detail: 'Нижняя граница интервала изменения x.' }, - B: { name: 'B', detail: 'Верхняя граница интервала изменения x.' }, + B: { name: 'B', detail: 'Необязательный. Верхняя граница интервала изменения x.' }, }, }, BINOMDIST: { - description: 'Возвращает отдельное значение биномиального распределения', - abstract: 'Возвращает отдельное значение биномиального распределения', + description: 'Возвращает отдельное значение биномиального распределения. Функция БИНОМРАСП используется в задачах с фиксированным числом тестов или испытаний, когда результатом любого испытания может быть только успех или неудача, испытания независимы, а вероятность успеха одинакова на протяжении всего эксперимента. Например, при помощи БИНОМРАСП можно вычислить, с какой вероятностью двое из трех следующих новорожденных будут мальчиками.', + abstract: 'Возвращает отдельное значение биномиального распределения. Функция БИНОМРАСП используется в задачах с фиксированным числом тестов или испытаний, когда результатом любого испытания может быть только успех или неудача, испытания независимы, а вероятность успеха одинакова на протяжении всего эксперимента. Например, при помощи БИНОМРАСП можно вычислить, с какой вероятностью двое из трех следующих новорожденных будут мальчиками.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC%D1%80%D0%B0%D1%81%D0%BF-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: 'число успехов', detail: 'Количество успешных испытаний.' }, - trials: { name: 'число испытаний', detail: 'Количество независимых испытаний.' }, - probabilityS: { name: 'вероятность успеха ', detail: 'Вероятность успеха каждого испытания. ' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятив имеет значение TRUE, функция BINOMDIST возвращает функцию накопительного распределения, которая является вероятностью наличия не более числа успехов. Если значение FALSE, возвращается функция вероятностной массы, то есть вероятность числа успехов.' }, + numberS: { name: 'число успехов', detail: 'Обязательно. Количество успешных испытаний.' }, + trials: { name: 'число испытаний', detail: 'Обязательно. Количество независимых испытаний.' }, + probabilityS: { name: 'вероятность успеха ', detail: 'Обязательно. Вероятность успеха каждого испытания.' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Логическое значение, определяющее форму функции. Если кумулятив имеет значение TRUE, функция BINOMDIST возвращает функцию накопительного распределения, которая является вероятностью наличия не более number_s успехов. Если значение FALSE, возвращается функция вероятностной массы, то есть вероятность number_s успехов.' }, }, }, CHIDIST: { - description: 'Возвращает правостороннюю вероятность распределения хи-квадрат', - abstract: 'Возвращает правостороннюю вероятность распределения хи-квадрат', + description: 'Возвращает правостороннюю вероятность распределения хи-квадрат. Распределение χ2 связано с критерием χ2. Критерий χ2 используется для сравнения ожидаемых и наблюдаемых значений. Например, в генетическом эксперименте выдвигается гипотеза, что следующее поколение растений будет обладать определенной окраской. Сравнивая наблюдаемые результаты с ожидаемыми, можно определить, верна ли исходная гипотеза.', + abstract: 'Возвращает правостороннюю вероятность распределения хи-квадрат. Распределение χ2 связано с критерием χ2. Критерий χ2 используется для сравнения ожидаемых и наблюдаемых значений. Например, в генетическом эксперименте выдвигается гипотеза, что следующее поколение растений будет обладать определенной окраской. Сравнивая наблюдаемые результаты с ожидаемыми, можно определить, верна ли исходная гипотеза.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82%D1%80%D0%B0%D1%81%D0%BF-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - degFreedom: { name: 'степени свободы', detail: 'Число степеней свободы.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого требуется вычислить распределение.' }, + degFreedom: { name: 'степени свободы', detail: 'Обязательно. Число степеней свободы.' }, }, }, CHIINV: { - description: 'Возвращает значение, обратное правосторонней вероятности распределения хи-квадрат', - abstract: 'Возвращает значение, обратное правосторонней вероятности распределения хи-квадрат', + description: 'Возвращает значение, обратное правосторонней вероятности распределения хи-квадрат. Если вероятность = ХИ2РАСП(x;...), то ХИ2ОБР(вероятность;...) = x. Данная функция позволяет сравнить наблюдаемые результаты с ожидаемыми, чтобы определить, верна ли исходная гипотеза.', + abstract: 'Возвращает значение, обратное правосторонней вероятности распределения хи-квадрат. Если вероятность = ХИ2РАСП(x;...), то ХИ2ОБР(вероятность;...) = x. Данная функция позволяет сравнить наблюдаемые результаты с ожидаемыми, чтобы определить, верна ли исходная гипотеза.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82%D0%BE%D0%B1%D1%80-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: ' Вероятность, связанная с распределением хи-квадрат.' }, - degFreedom: { name: 'степени свободы', detail: 'Число степеней свободы.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, связанная с распределением хи-квадрат.' }, + degFreedom: { name: 'степени свободы', detail: 'Обязательно. Число степеней свободы.' }, }, }, CHITEST: { - description: 'Возвращает критерий независимости', - abstract: 'Возвращает критерий независимости', + description: 'Возвращает критерий независимости. Функция ХИ2ТЕСТ возвращает значение статистики для распределения хи-квадрат (χ2) и соответствующее число степеней свободы. Критерий χ2 используется, чтобы определить, подтверждается ли гипотеза экспериментом.', + abstract: 'Возвращает критерий независимости. Функция ХИ2ТЕСТ возвращает значение статистики для распределения хи-квадрат (χ2) и соответствующее число степеней свободы. Критерий χ2 используется, чтобы определить, подтверждается ли гипотеза экспериментом.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82%D1%82%D0%B5%D1%81%D1%82-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: 'фактический интервал ', detail: 'Интервал данных, который содержит результаты наблюдений, подлежащие сравнению с ожидаемыми значениями.' }, - expectedRange: { name: 'ожидаемый интервал ', detail: 'Интервал данных, который содержит отношение произведений итогов по строкам и столбцам к общему итогу.' }, + actualRange: { name: 'фактический интервал ', detail: 'Обязательно. Интервал данных, который содержит результаты наблюдений, подлежащие сравнению с ожидаемыми значениями.' }, + expectedRange: { name: 'ожидаемый интервал ', detail: 'Обязательно. Интервал данных, который содержит отношение произведений итогов по строкам и столбцам к общему итогу.' }, }, }, CONFIDENCE: { - description: 'Возвращает доверительный интервал для среднего генеральной совокупности с нормальным распределением', - abstract: 'Возвращает доверительный интервал для среднего генеральной совокупности с нормальным распределением', + description: 'Возвращает доверительный интервал для среднего генеральной совокупности с нормальным распределением.', + abstract: 'Возвращает доверительный интервал для среднего генеральной совокупности с нормальным распределением.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D0%B2%D0%B5%D1%80%D0%B8%D1%82-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'альфа', detail: 'Уровень значимости, используемый для вычисления доверительного уровня. Доверительный уровень равен 100*(1 - альфа) процентам или, иными словами, значение аргумента "альфа", равное 0,05, означает 95-процентный доверительный уровень.' }, - standardDev: { name: 'стандартное отклонение', detail: 'Стандартное отклонение генеральной совокупности для диапазона данных, предполагается известным.' }, - size: { name: 'размер', detail: 'Размер выборки.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Уровень значимости, используемый для вычисления доверительного уровня. Доверительный уровень равен 100*(1 - альфа) процентам или, иными словами, значение аргумента "альфа", равное 0,05, означает 95-процентный доверительный уровень.' }, + standardDev: { name: 'стандартное отклонение', detail: 'Обязательно. Стандартное отклонение генеральной совокупности для диапазона данных, предполагается известным.' }, + size: { name: 'размер', detail: 'Обязательно. Размер выборки.' }, }, }, COVAR: { - description: 'Возвращает ковариацию, т. е. среднее произведений отклонений для каждой пары точек в двух наборах данных.', - abstract: 'Возвращает ковариацию', + description: 'Возвращает ковариантность, среднее значение продуктов отклонений для каждой пары точек данных в двух наборах данных.', + abstract: 'Возвращает ковариантность, среднее значение продуктов отклонений для каждой пары точек данных в двух наборах данных.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%B2%D0%B0%D1%80-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/ru-ru/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: 'массив1', detail: 'Первый диапазон ячеек с целыми числами.' }, - array2: { name: 'массив2', detail: ' Второй диапазон ячеек с целыми числами.' }, + array1: { name: 'массив1', detail: 'Обязательно. Первый диапазон ячеек с целыми числами.' }, + array2: { name: 'массив2', detail: 'Обязательно. Второй диапазон ячеек с целыми числами.' }, }, }, CRITBINOM: { - description: 'Возвращает наименьшее значение, для которого интегральное биномиальное распределение больше или равно заданному критерию', - abstract: 'Возвращает наименьшее значение, для которого интегральное биномиальное распределение больше или равно заданному критерию', + description: 'Возвращает наименьшее значение, для которого интегральное биномиальное распределение больше или равно заданному критерию. Эта функция используется в приложениях, связанных с контролем качества. Например, функция КРИТБИНОМ используется для определения наибольшего допустимого количества дефектных комплектующих, которое еще позволяет обойтись без отбраковки всей партии.', + abstract: 'Возвращает наименьшее значение, для которого интегральное биномиальное распределение больше или равно заданному критерию. Эта функция используется в приложениях, связанных с контролем качества. Например, функция КРИТБИНОМ используется для определения наибольшего допустимого количества дефектных комплектующих, которое еще позволяет обойтись без отбраковки всей партии.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D1%80%D0%B8%D1%82%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: 'число испытаний', detail: 'Число испытаний Бернулли.' }, - probabilityS: { name: 'вероятность успеха ', detail: 'Вероятность успеха каждого испытания. ' }, - alpha: { name: 'альфа', detail: ' Значение критерия.' }, + trials: { name: 'число испытаний', detail: 'Обязательно. Число испытаний Бернулли.' }, + probabilityS: { name: 'вероятность успеха ', detail: 'Обязательно. Вероятность успеха в каждом испытании.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Значение критерия.' }, }, }, EXPONDIST: { - description: 'Возвращает экспоненциальное распределение', - abstract: 'Возвращает экспоненциальное распределение', + description: 'Возвращает экспоненциальное распределение. Функция ЭКСПРАСП используется для моделирования временных задержек между событиями, например времени, которое потребуется на доставку денежного перевода через автоматизированную банковскую систему. В частности, при помощи функции ЭКСПРАСП можно определить вероятность того, что этот процесс займет не более 1 минуты.', + abstract: 'Возвращает экспоненциальное распределение. Функция ЭКСПРАСП используется для моделирования временных задержек между событиями, например времени, которое потребуется на доставку денежного перевода через автоматизированную банковскую систему. В частности, при помощи функции ЭКСПРАСП можно определить вероятность того, что этот процесс займет не более 1 минуты.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8D%D0%BA%D1%81%D0%BF%D1%80%D0%B0%D1%81%D0%BF-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - lambda: { name: 'лямбла', detail: 'Значение параметра.' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму экспоненциальной функции, которую следует использовать. Если аргумент "интегральная" имеет значение ИСТИНА, функция ЭКСПРАСП возвращает интегральную функцию распределения; если он имеет значение ЛОЖЬ, возвращается функция плотности распределения.' }, + x: { name: 'x', detail: 'Обязательный. Значение функции.' }, + lambda: { name: 'лямбла', detail: 'Обязательно. Значение параметра.' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Логическое значение, определяющее форму экспоненциальной функции, которую следует использовать. Если аргумент "интегральная" имеет значение ИСТИНА, функция ЭКСПРАСП возвращает интегральную функцию распределения; если он имеет значение ЛОЖЬ, возвращается функция плотности распределения.' }, }, }, FDIST: { - description: 'Возвращает правый хвост F-распределения вероятности для двух наборов данных', - abstract: 'Возвращает правый хвост F-распределения вероятности для двух наборов данных', + description: 'Возвращает правый хвост F-распределения вероятности для двух наборов данных. Эта функция позволяет определить, имеют ли два множества данных различные степени разброса результатов. Можно, например, проанализировать результаты тестирования старшеклассников и определить, различается ли разброс результатов мальчиков и девочек.', + abstract: 'Возвращает правый хвост F-распределения вероятности для двух наборов данных. Эта функция позволяет определить, имеют ли два множества данных различные степени разброса результатов. Можно, например, проанализировать результаты тестирования старшеклассников и определить, различается ли разброс результатов мальчиков и девочек.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f%D1%80%D0%B0%D1%81%D0%BF-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого вычисляется функция.' }, - degFreedom1: { name: 'степени свободы1', detail: 'Числитель степеней свободы.' }, - degFreedom2: { name: 'степени свободы2', detail: 'Знаменатель степеней свободы.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого вычисляется функция.' }, + degFreedom1: { name: 'степени свободы1', detail: 'Обязательно. Числитель степеней свободы.' }, + degFreedom2: { name: 'степени свободы2', detail: 'Обязательно. Знаменатель степеней свободы.' }, }, }, FINV: { - description: 'Возвращает значение, обратное (правостороннему) F-распределению вероятностей', - abstract: 'Возвращает значение, обратное (правостороннему) F-распределению вероятностей', + description: 'Возвращает значение, обратное (правостороннему) F-распределению вероятностей. Если p = FРАСП(x;...), то FРАСПОБР(p;...) = x.', + abstract: 'Возвращает значение, обратное (правостороннему) F-распределению вероятностей. Если p = FРАСП(x;...), то FРАСПОБР(p;...) = x.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f%D1%80%D0%B0%D1%81%D0%BF%D0%BE%D0%B1%D1%80-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, связанная с интегральным F-распределением.' }, - degFreedom1: { name: 'степени свободы1', detail: 'Числитель степеней свободы.' }, - degFreedom2: { name: 'степени свободы2', detail: 'Знаменатель степеней свободы.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, связанная с интегральным F-распределением.' }, + degFreedom1: { name: 'степени свободы1', detail: 'Обязательно. Числитель степеней свободы.' }, + degFreedom2: { name: 'степени свободы2', detail: 'Обязательно. Знаменатель степеней свободы.' }, }, }, FTEST: { - description: 'Возвращает результат F-теста', - abstract: 'Возвращает результат F-теста', + description: 'Возвращает результат F-теста. F-тест возвращает двустороннюю вероятность того, что разница между дисперсиями аргументов "массив1" и "массив2" несущественна. Эта функция позволяет определить, имеют ли две выборки различные дисперсии. Например, если даны результаты тестирования для частных и общественных школ, можно определить, имеют ли эти школы различные уровни разброса результатов тестирования.', + abstract: 'Возвращает результат F-теста. F-тест возвращает двустороннюю вероятность того, что разница между дисперсиями аргументов "массив1" и "массив2" несущественна. Эта функция позволяет определить, имеют ли две выборки различные дисперсии. Например, если даны результаты тестирования для частных и общественных школ, можно определить, имеют ли эти школы различные уровни разброса результатов тестирования.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D1%82%D0%B5%D1%81%D1%82-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: 'массив1', detail: 'Первый массив или диапазон данных.' }, - array2: { name: 'массив2', detail: 'Второй массив или диапазон данных.' }, + array1: { name: 'массив1', detail: 'Обязательно. Первый массив или диапазон данных.' }, + array2: { name: 'массив2', detail: 'Обязательно. Второй массив или диапазон данных.' }, }, }, GAMMADIST: { - description: 'Возвращает гамма-распределение', - abstract: 'Возвращает гамма-распределение', + description: 'Возвращает гамма-распределение. Эту функцию можно использовать для изучения переменных, которые имеют асимметричное распределение. Гамма-распределение широко используется при анализе систем массового обслуживания.', + abstract: 'Возвращает гамма-распределение. Эту функцию можно использовать для изучения переменных, которые имеют асимметричное распределение. Гамма-распределение широко используется при анализе систем массового обслуживания.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0%D1%80%D0%B0%D1%81%D0%BF-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - alpha: { name: 'альфа', detail: 'Параметр распределения.' }, - beta: { name: 'бета', detail: 'Параметр распределения.' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если аргумент "интегральная" имеет значение ИСТИНА, функция ГАММАРАСП возвращает интегральную функцию распределения; если этот аргумент имеет значение ЛОЖЬ, возвращается функция плотности распределения вероятности.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого требуется вычислить распределение.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Параметр распределения.' }, + beta: { name: 'бета', detail: 'Обязательно. Параметр распределения. Если аргумент "бета" = 1, функция ГАММАРАСП возвращает стандартное гамма-распределение.' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Логическое значение, определяющее форму функции. Если аргумент "интегральная" имеет значение ИСТИНА, функция ГАММАРАСП возвращает интегральную функцию распределения; если этот аргумент имеет значение ЛОЖЬ, возвращается функция плотности распределения вероятности.' }, }, }, GAMMAINV: { - description: 'Возвращает обратное гамма-кумулятивное распределение', - abstract: 'Возвращает обратное гамма-кумулятивное распределение', + description: 'Возвращает обратное гамма-кумулятивное распределение. Если p = GAMMADIST(x,...), то GAMMAINV(p,...) = x. Эту функцию можно использовать для изучения переменной, распределение которой может быть отклонено.', + abstract: 'Возвращает обратное гамма-кумулятивное распределение. Если p = GAMMADIST(x,...), то GAMMAINV(p,...) = x. Эту функцию можно использовать для изучения переменной, распределение которой может быть отклонено.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0%D0%BE%D0%B1%D1%80-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, связанная с гамма-распределением.' }, - alpha: { name: 'альфа', detail: 'Параметр распределения.' }, - beta: { name: 'бета', detail: 'Параметр распределения.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, связанная с гамма-распределением.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Параметр распределения.' }, + beta: { name: 'бета', detail: 'Обязательно. Параметр распределения. Если "бета" = 1, функция ГАММАОБР возвращает стандартное гамма-распределение.' }, }, }, HYPGEOMDIST: { - description: 'Возвращает гипергеометрическое распределение', - abstract: 'Возвращает гипергеометрическое распределение', + description: 'Возвращает гипергеометрическое распределение. Значение, возвращаемое функцией ГИПЕРГЕОМЕТ, — это вероятность заданного количества успехов в выборке, если заданы размер выборки, количество успехов в генеральной совокупности и размер генеральной совокупности. Функция ГИПЕРГЕОМЕТ используется для задач с конечной генеральной совокупностью, где каждое наблюдение — успех или неудача, а каждое из подмножеств заданного размера выбирается с равной вероятностью.', + abstract: 'Возвращает гипергеометрическое распределение. Значение, возвращаемое функцией ГИПЕРГЕОМЕТ, — это вероятность заданного количества успехов в выборке, если заданы размер выборки, количество успехов в генеральной совокупности и размер генеральной совокупности. Функция ГИПЕРГЕОМЕТ используется для задач с конечной генеральной совокупностью, где каждое наблюдение — успех или неудача, а каждое из подмножеств заданного размера выбирается с равной вероятностью.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B8%D0%BF%D0%B5%D1%80%D0%B3%D0%B5%D0%BE%D0%BC%D0%B5%D1%82-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: 'число успехов в выборке', detail: 'Количество успешных испытаний в выборке.' }, - numberSample: { name: 'размер выборки', detail: 'Размер выборки.' }, - populationS: { name: 'число успехов в совокупности ', detail: 'Количество успешных испытаний в генеральной совокупности.' }, - numberPop: { name: 'размер совокупности', detail: 'Размер генеральной совокупности' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее вид функции. Если значение кумулятивного распределения равно TRUE, HYPGEOMDIST возвращает кумулятивную функцию распределения; если FALSE, функция возвращает функцию плотности вероятности.' }, + sampleS: { name: 'число успехов в выборке', detail: 'Обязательно. Количество успешных испытаний в выборке.' }, + numberSample: { name: 'размер выборки', detail: 'Обязательно. Размер выборки.' }, + populationS: { name: 'число успехов в совокупности ', detail: 'Обязательно. Количество успешных испытаний в генеральной совокупности.' }, + numberPop: { name: 'размер совокупности', detail: 'Обязательно. Размер генеральной совокупности.' }, }, }, LOGINV: { - description: 'Возвращает обратную функцию логнормального распределения', - abstract: 'Возвращает обратную функцию логнормального распределения', + description: 'Возвращает обратную функцию логнормального распределения x, где ln(x) имеет нормальное распределение с параметрами "среднее" и "стандартное_отклонение". Если p = ЛОГНОРМРАСП(x;...), то ЛОГНОРМОБР(p;...) = x.', + abstract: 'Возвращает обратную функцию логнормального распределения x, где ln(x) имеет нормальное распределение с параметрами "среднее" и "стандартное_отклонение". Если p = ЛОГНОРМРАСП(x;...), то ЛОГНОРМОБР(p;...) = x.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC%D0%BE%D0%B1%D1%80-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, связанная с логнормальным распределением.' }, - mean: { name: 'cреднее', detail: 'Среднее ln(x).' }, - standardDev: { name: 'стандартное отклонение', detail: 'Стандартное отклонение ln(x).' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, связанная с логнормальным распределением.' }, + mean: { name: 'cреднее', detail: 'Обязательно. Среднее ln(x).' }, + standardDev: { name: 'стандартное отклонение', detail: 'Обязательно. Стандартное отклонение ln(x).' }, }, }, LOGNORMDIST: { - description: 'Возвращает интегральное логнормальное распределение', - abstract: 'Возвращает интегральное логнормальное распределение', + description: 'Возвращает интегральное логнормальное распределение для x, где ln(x) является нормально распределенным с параметрами "среднее" и "стандартное_откл". Эта функция используется для анализа данных, которые были логарифмически преобразованы.', + abstract: 'Возвращает интегральное логнормальное распределение для x, где ln(x) является нормально распределенным с параметрами "среднее" и "стандартное_откл". Эта функция используется для анализа данных, которые были логарифмически преобразованы.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC%D1%80%D0%B0%D1%81%D0%BF-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - mean: { name: 'cреднее', detail: 'Среднее ln(x).' }, - standardDev: { name: 'стандартное отклонение', detail: 'Стандартное отклонение ln(x).' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятивная функция TRUE, LOGNORM.DIST возвращает кумулятивную функцию распределения; если FALSE, возвращает функцию плотности вероятности.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого вычисляется функция.' }, + mean: { name: 'cреднее', detail: 'Обязательно. Среднее ln(x).' }, + standardDev: { name: 'стандартное отклонение', detail: 'Обязательно. Стандартное отклонение ln(x).' }, }, }, MODE: { - description: 'Возвращает наиболее часто встречающееся или повторяющееся значение в массиве или диапазоне данных', - abstract: 'Возвращает наиболее часто встречающееся или повторяющееся значение в массиве или диапазоне данных.', + description: 'Предположим, что вы хотите узнать наиболее распространенное количество видов птиц, замеченных в выборке птиц, подсчитываемых на критических водно-болотных угодьях в течение 30-летнего периода времени, или вы хотите узнать наиболее часто встречающееся количество телефонных звонков в телефонный центр поддержки в часы вне пиковой нагрузки. Чтобы вычислить режим группы чисел, используйте функцию MODE .', + abstract: 'Предположим, что вы хотите узнать наиболее распространенное количество видов птиц, замеченных в выборке птиц, подсчитываемых на критических водно-болотных угодьях в течение 30-летнего периода времени, или вы хотите узнать наиболее часто встречающееся количество телефонных звонков в телефонный центр поддержки в часы вне пиковой нагрузки. Чтобы вычислить режим группы чисел, используйте функцию MODE .', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BE%D0%B4%D0%B0-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'Первый числовой аргумент, для которого требуется вычислить моду.' }, - number2: { name: 'число2', detail: 'От 1 до 255 числовых аргументов, для которых вычисляется мода. Вместо аргументов, разделенных точкой с запятой, можно воспользоваться массивом или ссылкой на массив.' }, + number1: { name: 'число1', detail: 'Обязательно. Первый числовой аргумент, для которого требуется вычислить моду.' }, + number2: { name: 'число2', detail: 'Дополнительные. От 1 до 255 числовых аргументов, для которых вычисляется мода. Вместо аргументов, разделенных точкой с запятой, можно воспользоваться массивом или ссылкой на массив.' }, }, }, NEGBINOMDIST: { - description: 'Возвращает отрицательное биномиальное распределение', - abstract: 'Возвращает отрицательное биномиальное распределение', + description: 'Возвращает отрицательное биномиальное распределение. Функция ОТРБИНОМРАСП возвращает вероятность того, заданному количеству успешных испытаний ("число успехов") будет предшествовать определенное количество неудачных испытаний ("число неудач") при условии, что вероятность успешного испытания постоянна и равна значению аргумента "вероятность_успеха". Эта функция подобна биномиальному распределению, за тем исключением, что количество успехов — фиксированное, а количество испытаний — переменное. Как и в случае биномиального распределения, испытания считаются независимыми.', + abstract: 'Возвращает отрицательное биномиальное распределение. Функция ОТРБИНОМРАСП возвращает вероятность того, заданному количеству успешных испытаний ("число успехов") будет предшествовать определенное количество неудачных испытаний ("число неудач") при условии, что вероятность успешного испытания постоянна и равна значению аргумента "вероятность_успеха". Эта функция подобна биномиальному распределению, за тем исключением, что количество успехов — фиксированное, а количество испытаний — переменное. Как и в случае биномиального распределения, испытания считаются независимыми.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%82%D1%80%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC%D1%80%D0%B0%D1%81%D0%BF-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/ru-ru/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: 'число неудач', detail: 'Количество неудачных испытаний.' }, - numberS: { name: 'число успехов', detail: ' Пороговое значение числа успешных испытаний.' }, - probabilityS: { name: 'вероятность успеха ', detail: 'Вероятность успеха.' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятивная функция TRUE, NEGBINOMDIST возвращает кумулятивную функцию распределения; если FALSE, возвращает функцию плотности вероятности.' }, + numberF: { name: 'число неудач', detail: 'Обязательно. Количество неудачных испытаний.' }, + numberS: { name: 'число успехов', detail: 'Обязательно. Пороговое значение числа успешных испытаний.' }, + probabilityS: { name: 'вероятность успеха ', detail: 'Обязательно. Вероятность успеха.' }, }, }, NORMDIST: { - description: 'Возвращает нормальное распределение для указанного среднего и стандартного отклонения', - abstract: 'Возвращает нормальное распределение для указанного среднего и стандартного отклонения', + description: 'Функция НОРМДИСТ возвращает нормальное распределение для указанного среднего и стандартного отклонения. Эта функция имеет широкий спектр приложений в статистике, включая тестирование гипотез.', + abstract: 'Функция НОРМДИСТ возвращает нормальное распределение для указанного среднего и стандартного отклонения. Эта функция имеет широкий спектр приложений в статистике, включая тестирование гипотез.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC%D1%80%D0%B0%D1%81%D0%BF-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/ru-ru/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - mean: { name: 'cреднее', detail: 'Среднее ln(x).' }, - standardDev: { name: 'стандартное отклонение', detail: 'Стандартное отклонение ln(x).' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятивная функция TRUE, NORMDIST возвращает кумулятивную функцию распределения; если FALSE, возвращает функцию плотности вероятности.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого требуется распределение' }, + mean: { name: 'cреднее', detail: 'Обязательно. Среднее арифметическое распределения' }, + standardDev: { name: 'стандартное отклонение', detail: 'Обязательно. Стандартное отклонение распределения' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Логическое значение, определяющее форму функции. Если совокупное значение равно TRUE, функция НОРМДИСТ возвращает функцию накопительного распределения; Если совокупное значение равно FALSE, возвращается функция вероятностной массы.' }, }, }, NORMINV: { @@ -343,244 +340,244 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC%D0%BE%D0%B1%D1%80-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, соответствующая нормальному распределению.' }, - mean: { name: 'cреднее', detail: 'Среднее ln(x).' }, - standardDev: { name: 'стандартное отклонение', detail: 'Стандартное отклонение ln(x).' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, соответствующая нормальному распределению.' }, + mean: { name: 'cреднее', detail: 'Обязательно. Среднее арифметическое распределения.' }, + standardDev: { name: 'стандартное отклонение', detail: 'Обязательно. Стандартное отклонение распределения.' }, }, }, NORMSDIST: { - description: 'Возвращает стандартное нормальное интегральное распределение', - abstract: 'Возвращает стандартное нормальное интегральное распределение', + description: 'Возвращает стандартное нормальное интегральное распределение. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице. Данная функция используется вместо таблицы площадей стандартной нормальной кривой.', + abstract: 'Возвращает стандартное нормальное интегральное распределение. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице. Данная функция используется вместо таблицы площадей стандартной нормальной кривой.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC%D1%81%D1%82%D1%80%D0%B0%D1%81%D0%BF-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/ru-ru/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: 'Значение, для которого требуется вычислить распределение.' }, + z: { name: 'z', detail: 'Значение, для которого строится распределение.' }, }, }, NORMSINV: { - description: 'Возвращает обратное значение стандартного нормального распределения', - abstract: 'Возвращает обратное значение стандартного нормального распределения', + description: 'Возвращает обратное значение стандартного нормального распределения. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице.', + abstract: 'Возвращает обратное значение стандартного нормального распределения. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC%D1%81%D1%82%D0%BE%D0%B1%D1%80-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, соответствующая нормальному распределению.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, соответствующая нормальному распределению.' }, }, }, PERCENTILE: { - description: 'Возвращает k-ю персентиль для значений из интервала', - abstract: 'Возвращает k-ю персентиль для значений из интервала', + description: 'Возвращает k-ю персентиль для значений из интервала. Эта функция используется для определения порога приемлемости. Например, можно принять решение экзаменовать только тех кандидатов, которые набрали большее количество баллов, чем 90-ая персентиль.', + abstract: 'Возвращает k-ю персентиль для значений из интервала. Эта функция используется для определения порога приемлемости. Например, можно принять решение экзаменовать только тех кандидатов, которые набрали большее количество баллов, чем 90-ая персентиль.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B5%D1%80%D1%81%D0%B5%D0%BD%D1%82%D0%B8%D0%BB%D1%8C-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: 'массив', detail: 'Массив или диапазон данных, который определяет относительное положение.' }, - k: { name: 'k', detail: 'Значение процентили в интервале от 0 до 1, включая эти числа.' }, + array: { name: 'массив', detail: 'Обязательно. Массив или диапазон данных, который определяет относительное положение.' }, + k: { name: 'k', detail: 'Обязательный. Значение процентили в интервале от 0 до 1, включая эти числа.' }, }, }, PERCENTRANK: { - description: 'Возвращает ранг значения в наборе данных в процентах от набора данных', - abstract: 'Возвращает ранг значения в наборе данных в процентах от набора данных', + description: 'Функция PERCENTRANK возвращает ранг значения в наборе данных в виде процента от набора данных. По сути, относительное положение значения во всем наборе данных. Например, можно использовать PERCENTRANK, чтобы определить положение отдельного тестового балла среди поля всех оценок для одного теста.', + abstract: 'Функция PERCENTRANK возвращает ранг значения в наборе данных в виде процента от набора данных. По сути, относительное положение значения во всем наборе данных. Например, можно использовать PERCENTRANK, чтобы определить положение отдельного тестового балла среди поля всех оценок для одного теста.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: 'массив', detail: 'Массив или диапазон данных, который определяет относительное положение.' }, - x: { name: 'x', detail: 'Значение, для которого требуется узнать ранг в массиве.' }, - significance: { name: 'точность', detail: 'Значение, определяющее количество значимых цифр для возвращаемого процентного значения. Если этот аргумент опущен, для функции ПРОЦЕНТРАНГ используются три цифры (0,xxx).' }, + array: { name: 'массив', detail: 'Обязательно. Диапазон данных (или предопределенного массива) числовых значений, в пределах которых определяется процентный ранг.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого требуется узнать ранг в массиве.' }, + significance: { name: 'точность', detail: 'Дополнительные. Значение, определяющее количество значимых цифр для возвращаемого процентного значения. Если этот аргумент опущен, для функции ПРОЦЕНТРАНГ используются три цифры (0,xxx).' }, }, }, POISSON: { - description: 'Возвращает распределение Пуассона', - abstract: 'Возвращает распределение Пуассона', + description: 'Возвращает распределение Пуассона. Обычное применение распределения Пуассона состоит в предсказании количества событий, происходящих за определенное время, например количества машин, появляющихся на площади за одну минуту.', + abstract: 'Возвращает распределение Пуассона. Обычное применение распределения Пуассона состоит в предсказании количества событий, происходящих за определенное время, например количества машин, появляющихся на площади за одну минуту.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%83%D0%B0%D1%81%D1%81%D0%BE%D0%BD-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - mean: { name: 'cреднее', detail: 'Среднее ln(x).' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятивная функция TRUE, POISSON возвращает кумулятивную функцию распределения; если FALSE, он возвращает функцию плотности вероятности.' }, + x: { name: 'x', detail: 'Обязательный. Количество событий.' }, + mean: { name: 'cреднее', detail: 'Обязательно. Ожидаемое числовое значение.' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Логическое значение, определяющее форму возвращаемого распределения вероятностей. Если кумулятив имеет значение TRUE, функция POISSON возвращает совокупную вероятность того, что число случайных событий будет находиться в диапазоне от нуля до x включительно; Если значение FALSE, возвращается функция пуассона вероятностной массы, которая указывает, что количество происходящих событий будет точно x.' }, }, }, QUARTILE: { - description: 'Возвращает квартиль множества данных', - abstract: 'Возвращает квартиль множества данных', + description: 'Возвращает квартиль множества данных. Квартиль часто используются при анализе продаж для разбиения генеральной совокупности на группы. Например, можно воспользоваться функцией КВАРТИЛЬ, чтобы найти среди всех предприятий 25 процентов наиболее доходных.', + abstract: 'Возвращает квартиль множества данных. Квартиль часто используются при анализе продаж для разбиения генеральной совокупности на группы. Например, можно воспользоваться функцией КВАРТИЛЬ, чтобы найти среди всех предприятий 25 процентов наиболее доходных.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B8%D0%BB%D1%8C-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: 'массив', detail: 'Массив или диапазон ячеек с числовыми значениями, для которых определяется значение квартиля.' }, - quart: { name: 'часть', detail: 'Значение, которое требуется вернуть.' }, + array: { name: 'массив', detail: 'Обязательно. Массив или диапазон ячеек с числовыми значениями, для которых определяется значение квартиля.' }, + quart: { name: 'часть', detail: 'Обязательно. Значение, которое требуется вернуть.' }, }, }, RANK: { - description: 'Возвращает ранг числа в списке чисел', - abstract: 'Возвращает ранг числа в списке чисел', + description: 'Возвращает ранг числа в списке чисел. Ранг числа — это его величина относительно других значений в списке. (Если отсортировать список, то ранг числа будет его позицией.)', + abstract: 'Возвращает ранг числа в списке чисел. Ранг числа — это его величина относительно других значений в списке. (Если отсортировать список, то ранг числа будет его позицией.)', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%BD%D0%B3-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rank-function', }, ], functionParameter: { - number: { name: 'число', detail: 'Число, для которого определяется ранг.' }, - ref: { name: 'cсылка', detail: 'Ссылка на список чисел. Нечисловые значения в ссылке игнорируются.' }, - order: { name: 'порядок', detail: 'Число, определяющее способ упорядочения. Если значение аргумента "порядок" равно 0 или опущено, ранг числа определяется в Microsoft Excel так, как если бы ссылка была списком, отсортированным в порядке убывания. Если значение аргумента "порядок" — любое число, кроме нуля, то ранг числа определяется в Microsoft Excel так, как если бы ссылка была списком, отсортированным в порядке возрастания.' }, + number: { name: 'число', detail: 'Обязательно. Число, для которого определяется ранг.' }, + ref: { name: 'cсылка', detail: 'Обязательно. Ссылка на список чисел. Нечисловые значения в ссылке игнорируются.' }, + order: { name: 'порядок', detail: 'Дополнительные. Число, определяющее способ упорядочения. Если значение аргумента "порядок" равно 0 или опущено, ранг числа определяется в Microsoft Excel так, как если бы ссылка была списком, отсортированным в порядке убывания. Если значение аргумента "порядок" — любое число, кроме нуля, то ранг числа определяется в Microsoft Excel так, как если бы ссылка была списком, отсортированным в порядке возрастания.' }, }, }, STDEV: { - description: 'Оценивает стандартное отклонение по выборке. Стандартное отклонение — это мера того, насколько широко разбросаны точки данных относительно их среднего', - abstract: 'Оценивает стандартное отклонение по выборке', + description: 'Оценивает стандартное отклонение по выборке. Стандартное отклонение — это мера того, насколько широко разбросаны точки данных относительно их среднего.', + abstract: 'Оценивает стандартное отклонение по выборке. Стандартное отклонение — это мера того, насколько широко разбросаны точки данных относительно их среднего.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'Первый числовой аргумент, соответствующий выборке из генеральной совокупности.' }, - number2: { name: 'число2', detail: 'Числовые аргументы 2—255, соответствующие выборке из генеральной совокупности. Вместо аргументов, разделенных точкой с запятой, можно использовать массив или ссылку на массив.' }, + number1: { name: 'число1', detail: 'Обязательно. Первый числовой аргумент, соответствующий выборке из генеральной совокупности.' }, + number2: { name: 'число2', detail: 'Дополнительные. Числовые аргументы 2—255, соответствующие выборке из генеральной совокупности. Вместо аргументов, разделенных точкой с запятой, можно использовать массив или ссылку на массив.' }, }, }, STDEVP: { - description: 'Вычисляет стандартное отклонение по генеральной совокупности', - abstract: 'Вычисляет стандартное отклонение по генеральной совокупности', + description: 'Вычисляет стандартное отклонение по генеральной совокупности. Стандартное отклонение — это мера того, насколько широко разбросаны точки данных относительно их среднего.', + abstract: 'Вычисляет стандартное отклонение по генеральной совокупности. Стандартное отклонение — это мера того, насколько широко разбросаны точки данных относительно их среднего.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD%D0%BF-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'Первый числовой аргумент, соответствующий генеральной совокупности.' }, - number2: { name: 'число2', detail: 'Числовые аргументы 2—255, соответствующие генеральной совокупности. Вместо аргументов, разделенных точкой с запятой, можно использовать массив или ссылку на массив.' }, + number1: { name: 'число1', detail: 'Обязательно. Первый числовой аргумент, соответствующий генеральной совокупности.' }, + number2: { name: 'число2', detail: 'Дополнительные. Числовые аргументы 2—255, соответствующие генеральной совокупности. Вместо аргументов, разделенных точкой с запятой, можно использовать массив или ссылку на массив.' }, }, }, TDIST: { - description: 'Возвращает процентные точки (вероятность) для t-распределения Стьюдента', - abstract: 'Возвращает процентные точки (вероятность) для t-распределения Стьюдента', + description: 'Возвращает процентные точки (вероятность) для t-распределения Стьюдента, где числовое значение (x) — вычисляемое значение t, для которого должны быть вычислены вероятности. T-распределение используется для проверки гипотез при малом объеме выборки. Данную функцию можно использовать вместо таблицы критических значений t-распределения.', + abstract: 'Возвращает процентные точки (вероятность) для t-распределения Стьюдента, где числовое значение (x) — вычисляемое значение t, для которого должны быть вычислены вероятности. T-распределение используется для проверки гипотез при малом объеме выборки. Данную функцию можно использовать вместо таблицы критических значений t-распределения.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D1%80%D0%B0%D1%81%D0%BF-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Числовое значение, для которого требуется вычислить распределение.' }, - degFreedom: { name: 'cтепени свободы', detail: 'Целое, указывающее число степеней свободы.' }, - tails: { name: 'хвосты', detail: 'Определяет количество возвращаемых хвостов распределения. Если значение "хвосты" = 1, функция TDIST возвращает одностороннее распределение. Если значение "хвосты" = 2, функция TDIST возвращает двустороннее распределение.' }, + x: { name: 'x', detail: 'Обязательный. Числовое значение, для которого требуется вычислить распределение.' }, + degFreedom: { name: 'cтепени свободы', detail: 'Обязательно. Целое, указывающее число степеней свободы.' }, + tails: { name: 'хвосты', detail: 'Обязательно. Определяет количество возвращаемых хвостов распределения. Если значение "хвосты" = 1, функция СТЬЮДРАСП возвращает одностороннее распределение. Если значение "хвосты" = 2, функция СТЬЮДРАСП возвращает двустороннее распределение.' }, }, }, TINV: { - description: 'Возвращает двустороннее обратное t-распределения Стьюдента', - abstract: 'Возвращает двустороннее обратное t-распределения Стьюдента', + description: 'Возвращает двустороннее обратное t-распределения Стьюдента.', + abstract: 'Возвращает двустороннее обратное t-распределения Стьюдента.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D1%80%D0%B0%D1%81%D0%BF%D0%BE%D0%B1%D1%80-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: 'вероятность', detail: 'Вероятность, соответствующая двустороннему распределению Стьюдента.' }, - degFreedom: { name: 'cтепени свободы', detail: 'Целое, указывающее число степеней свободы.' }, + probability: { name: 'вероятность', detail: 'Обязательно. Вероятность, соответствующая двустороннему распределению Стьюдента.' }, + degFreedom: { name: 'cтепени свободы', detail: 'Обязательно. Число степеней свободы, характеризующее распределение.' }, }, }, TTEST: { - description: 'Возвращает вероятность, соответствующую критерию Стьюдента', - abstract: 'Возвращает вероятность, соответствующую критерию Стьюдента', + description: 'Возвращает вероятность, соответствующую критерию Стьюдента. Функция ТТЕСТ позволяет определить, вероятность того, что две выборки взяты из генеральных совокупностей, которые имеют одно и то же среднее.', + abstract: 'Возвращает вероятность, соответствующую критерию Стьюдента. Функция ТТЕСТ позволяет определить, вероятность того, что две выборки взяты из генеральных совокупностей, которые имеют одно и то же среднее.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D1%82%D0%B5%D1%81%D1%82-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: 'массив1', detail: 'Первый массив или диапазон данных.' }, - array2: { name: 'массив2', detail: 'Второй массив или диапазон данных.' }, - tails: { name: 'хвосты', detail: 'Число хвостов распределения. Если значение "хвосты" = 1, функция TTEST возвращает одностороннее распределение. Если значение "хвосты" = 2, функция TTEST возвращает двустороннее распределение.' }, - type: { name: 'тип', detail: 'Вид выполняемого t-теста.' }, + array1: { name: 'массив1', detail: 'Обязательно. Первый набор данных.' }, + array2: { name: 'массив2', detail: 'Обязательно. Второй набор данных.' }, + tails: { name: 'хвосты', detail: 'Обязательно. Число хвостов распределения. Если значение "хвосты" = 1, функция ТТЕСТ возвращает одностороннее распределение. Если значение "хвосты" = 2, функция ТТЕСТ возвращает двустороннее распределение.' }, + type: { name: 'тип', detail: 'Обязательно. Вид выполняемого t-теста.' }, }, }, VAR: { - description: 'Оценивает дисперсию по выборке', - abstract: 'Оценивает дисперсию по выборке', + description: 'Оценивает дисперсию по выборке.', + abstract: 'Оценивает дисперсию по выборке.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/var-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'Первый числовой аргумент, соответствующий выборке из генеральной совокупности.' }, - number2: { name: 'число2', detail: 'Числовые аргументы 2—255, соответствующие выборке из генеральной совокупности.' }, + number1: { name: 'число1', detail: 'Обязательно. Первый числовой аргумент, соответствующий выборке из генеральной совокупности.' }, + number2: { name: 'число2', detail: 'Дополнительные. Числовые аргументы 2—255, соответствующие выборке из генеральной совокупности.' }, }, }, VARP: { - description: 'Вычисляет дисперсию для генеральной совокупности', - abstract: 'Вычисляет дисперсию для генеральной совокупности', + description: 'Вычисляет дисперсию для генеральной совокупности.', + abstract: 'Вычисляет дисперсию для генеральной совокупности.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF%D1%80-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'Первый числовой аргумент, соответствующий генеральной совокупности.' }, - number2: { name: 'число2', detail: 'Числовые аргументы 2—255, соответствующие генеральной совокупности.' }, + number1: { name: 'число1', detail: 'Обязательно. Первый числовой аргумент, соответствующий генеральной совокупности.' }, + number2: { name: 'число2', detail: 'Дополнительные. Числовые аргументы 2—255, соответствующие генеральной совокупности.' }, }, }, WEIBULL: { - description: 'Возвращает распределение Вейбулла', - abstract: 'Возвращает распределение Вейбулла', + description: 'Возвращает распределение Вейбулла. Это распределение используется при анализе надежности, например для вычисления среднего времени наработки на отказ какого-либо устройства.', + abstract: 'Возвращает распределение Вейбулла. Это распределение используется при анализе надежности, например для вычисления среднего времени наработки на отказ какого-либо устройства.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%B5%D0%B9%D0%B1%D1%83%D0%BB%D0%BB-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Значение, для которого требуется вычислить распределение.' }, - alpha: { name: 'альфа', detail: 'Параметр распределения.' }, - beta: { name: 'бета', detail: 'Параметр распределения.' }, - cumulative: { name: 'накопительная', detail: 'Логическое значение, определяющее форму функции. Если кумулятивная функция TRUE, WEIBULL возвращает кумулятивную функцию распределения; если FALSE, он возвращает функцию плотности вероятности.' }, + x: { name: 'x', detail: 'Обязательный. Значение, для которого вычисляется функция.' }, + alpha: { name: 'альфа', detail: 'Обязательно. Параметр распределения.' }, + beta: { name: 'бета', detail: 'Обязательно. Параметр распределения.' }, + cumulative: { name: 'накопительная', detail: 'Обязательно. Определяет форму функции.' }, }, }, ZTEST: { - description: 'Возвращает одностороннее значение вероятности z-теста', - abstract: 'Возвращает одностороннее значение вероятности z-теста', + description: 'Возвращает одностороннее значение вероятности z-теста. Для заданного гипотетического среднего генеральной совокупности (μ0) функция ZТЕСТ возвращает вероятность того, что выборочное среднее будет больше среднего значения множества рассмотренных данных (массива), называемого также средним значением наблюдаемой выборки.', + abstract: 'Возвращает одностороннее значение вероятности z-теста. Для заданного гипотетического среднего генеральной совокупности (μ0) функция ZТЕСТ возвращает вероятность того, что выборочное среднее будет больше среднего значения множества рассмотренных данных (массива), называемого также средним значением наблюдаемой выборки.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-z%D1%82%D0%B5%D1%81%D1%82-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: 'массив', detail: 'Массив или диапазон данных, с которыми сравнивается x.' }, - x: { name: 'x', detail: 'Проверяемое значение.' }, - sigma: { name: 'сигма', detail: 'Известное стандартное отклонение генеральной совокупности. Если этот аргумент опущен, используется стандартное отклонение выборки.' }, + array: { name: 'массив', detail: 'Обязательно. Массив или диапазон данных, с которыми сравнивается x.' }, + x: { name: 'x', detail: 'Обязательный. Проверяемое значение.' }, + sigma: { name: 'сигма', detail: 'Дополнительные. Известное стандартное отклонение генеральной совокупности. Если этот аргумент опущен, используется стандартное отклонение выборки.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/compatibility/sk-SK.ts index 276e8bc5c2..5cddfe0b1a 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/sk-SK.ts @@ -18,569 +18,566 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: 'Vracia beta kumulatívnu distribučnú funkciu', - abstract: 'Vracia beta kumulatívnu distribučnú funkciu', + description: 'Vráti hodnotu funkcie kumulatívnej hustoty rozdelenia pravdepodobnosti beta. Rozdelenie beta sa používa na skúmanie zmeny percentuálnej časti určitého javu pre dané výbery, napríklad časti dňa, počas ktorej ľudia pozerajú televíziu.', + abstract: 'Vráti hodnotu funkcie kumulatívnej hustoty rozdelenia pravdepodobnosti beta. Rozdelenie beta sa používa na skúmanie zmeny percentuálnej časti určitého javu pre dané výbery, napríklad časti dňa, počas ktorej ľudia pozerajú televíziu.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/sk-sk/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota medzi A a B, v ktorej chcete vyhodnotiť funkciu.' }, - alpha: { name: 'alfa', detail: 'Parameter rozdelenia.' }, - beta: { name: 'beta', detail: 'Parameter rozdelenia.' }, - A: { name: 'A', detail: 'Dolná hranica intervalu x.' }, - B: { name: 'B', detail: 'Horná hranica intervalu x.' }, + x: { name: 'x', detail: 'Povinný argument. Predstavuje hodnotu medzi hodnotami argumentov A a B, pre ktorú chcete zistiť hodnotu funkcie.' }, + alpha: { name: 'alfa', detail: 'Povinné. Parameter rozdelenia.' }, + beta: { name: 'beta', detail: 'Povinné. Parameter rozdelenia.' }, + A: { name: 'A', detail: 'Dolná hranica pre interval hodnôt x.' }, + B: { name: 'B', detail: 'B Voliteľný argument. Horná hranica pre interval hodnôt x.' }, }, }, BETAINV: { - description: 'Vracia inverznú kumulatívnu distribučnú funkciu pre zadané beta rozdelenie', - abstract: 'Vracia inverznú kumulatívnu distribučnú funkciu pre zadané beta rozdelenie', + description: 'Vráti inverznú hodnotu kumulatívnej funkcie hustoty pravdepodobnosti beta pre zadané beta rozdelenie. To znamená, že ak pravdepodobnosť = BETADIST(x,...), potom BETAINV(pravdepodobnosť,...) = x. Rozdelenie beta možno použiť na plánovanie projektov pre modelovanie pravdepodobnej doby ukončenia, ak je zadaná očakávaná doba ukončenia a premenlivosť.', + abstract: 'Vráti inverznú hodnotu kumulatívnej funkcie hustoty pravdepodobnosti beta pre zadané beta rozdelenie. To znamená, že ak pravdepodobnosť = BETADIST(x,...), potom BETAINV(pravdepodobnosť,...) = x. Rozdelenie beta možno použiť na plánovanie projektov pre modelovanie pravdepodobnej doby ukončenia, ak je zadaná očakávaná doba ukončenia a premenlivosť.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť priradená beta rozdeleniu.' }, - alpha: { name: 'alfa', detail: 'Parameter rozdelenia.' }, - beta: { name: 'beta', detail: 'Parameter rozdelenia.' }, - A: { name: 'A', detail: 'Dolná hranica intervalu x.' }, - B: { name: 'B', detail: 'Horná hranica intervalu x.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť spojená s rozdelením beta.' }, + alpha: { name: 'alfa', detail: 'Povinné. Parameter rozdelenia.' }, + beta: { name: 'beta', detail: 'Povinné. Predstavuje parameter rozdelenia.' }, + A: { name: 'A', detail: 'Dolná hranica pre interval hodnôt x.' }, + B: { name: 'B', detail: 'B Voliteľný argument. Horná hranica pre interval hodnôt x.' }, }, }, BINOMDIST: { - description: 'Vracia pravdepodobnosť jednotlivého člena binomického rozdelenia', - abstract: 'Vracia pravdepodobnosť jednotlivého člena binomického rozdelenia', + description: 'Vráti hodnotu binomického rozdelenia pravdepodobnosti diskrétnych veličín. Funkcia BINOMDIST sa používa pri problémoch s pevným počtom testov alebo pokusov, keď výsledkom pokusu môže byť iba úspech alebo neúspech, pokusy sú nezávislé a pravdepodobnosť úspechu je počas trvania experimentu konštantná. Funkciou BINOMDIST napríklad môžete vypočítať, aká je pravdepodobnosť, že dve z ďalších troch narodených detí budú chlapci.', + abstract: 'Vráti hodnotu binomického rozdelenia pravdepodobnosti diskrétnych veličín. Funkcia BINOMDIST sa používa pri problémoch s pevným počtom testov alebo pokusov, keď výsledkom pokusu môže byť iba úspech alebo neúspech, pokusy sú nezávislé a pravdepodobnosť úspechu je počas trvania experimentu konštantná. Funkciou BINOMDIST napríklad môžete vypočítať, aká je pravdepodobnosť, že dve z ďalších troch narodených detí budú chlapci.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: 'počet_uspechov', detail: 'Počet úspechov v pokusoch.' }, - trials: { name: 'pokusy', detail: 'Počet nezávislých pokusov.' }, - probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Pravdepodobnosť úspechu v každom pokuse.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, BINOMDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + numberS: { name: 'počet_uspechov', detail: 'Povinné. Počet úspešných pokusov.' }, + trials: { name: 'pokusy', detail: 'Povinné. Počet nezávislých pokusov.' }, + probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Povinné. Pravdepodobnosť úspechu pre každý pokus.' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Logická hodnota, ktorá určuje tvar funkcie. Ak je hodnotou argumentu kumulatívne (súčet) logická hodnota TRUE, funkcia BINOMDIST vráti súčtovú distribučnú funkciu, teda pravdepodobnosť navyššej number_s úspešných pokusov. Ak má hodnotu FALSE, vráti hustotu pravdepodobnosti, teda pravdepodobnosť number_s úspechu.' }, }, }, CHIDIST: { - description: 'Vracia pravostrannú pravdepodobnosť chí-kvadrát rozdelenia.', - abstract: 'Vracia pravostrannú pravdepodobnosť chí-kvadrát rozdelenia.', + description: 'Vráti pravostrannú pravdepodobnosť pre rozdelenie chí-kvadrát. Rozdelenie ?2 je spojené s testom ?2. Test ?2 porovnáva pozorované a očakávané hodnoty. Pri genetickom experimente môžete napríklad predpokladať, že nasledujúca generácia rastlín bude mať určitú farbu kvetov. Porovnaním pozorovaných a očakávaných výsledkov môžete zistiť, či platí pôvodný predpoklad.', + abstract: 'Vráti pravostrannú pravdepodobnosť pre rozdelenie chí-kvadrát. Rozdelenie ?2 je spojené s testom ?2. Test ?2 porovnáva pozorované a očakávané hodnoty. Pri genetickom experimente môžete napríklad predpokladať, že nasledujúca generácia rastlín bude mať určitú farbu kvetov. Porovnaním pozorovaných a očakávaných výsledkov môžete zistiť, či platí pôvodný predpoklad.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pri ktorej chcete vyhodnotiť rozdelenie.' }, - degFreedom: { name: 'stupne_voľnosti', detail: 'Počet stupňov voľnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete zistiť hodnotu rozdelenia.' }, + degFreedom: { name: 'stupne_voľnosti', detail: 'Povinné. Počet stupňov voľnosti.' }, }, }, CHIINV: { - description: 'Vracia inverznú pravostrannú pravdepodobnosť chí-kvadrát rozdelenia.', - abstract: 'Vracia inverznú pravostrannú pravdepodobnosť chí-kvadrát rozdelenia.', + description: 'Vráti inverznú hodnotu pravostrannej pravdepodobnosti rozdelenia chí-kvadrát. Ak pravdepodobnosť = CHIDIST(x,...), potom CHIINV(pravdepodobnosť,...) = x. Táto funkcia slúži na porovnávanie zaznamenaných a očakávaných výsledkov, na základe ktorého možno rozhodnúť, či platí pôvodný predpoklad.', + abstract: 'Vráti inverznú hodnotu pravostrannej pravdepodobnosti rozdelenia chí-kvadrát. Ak pravdepodobnosť = CHIDIST(x,...), potom CHIINV(pravdepodobnosť,...) = x. Táto funkcia slúži na porovnávanie zaznamenaných a očakávaných výsledkov, na základe ktorého možno rozhodnúť, či platí pôvodný predpoklad.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť priradená chí-kvadrát rozdeleniu.' }, - degFreedom: { name: 'stupne_voľnosti', detail: 'Počet stupňov voľnosti.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť spojená s rozdelením chí-kvadrát.' }, + degFreedom: { name: 'stupne_voľnosti', detail: 'Povinné. Počet stupňov voľnosti.' }, }, }, CHITEST: { - description: 'Vracia test nezávislosti', - abstract: 'Vracia test nezávislosti', + description: 'Počíta test nezávislosti. Funkcia CHITEST vráti hodnotu rozdelenia chí-kvadrát (χ2) pre štatistiku a príslušné stupne voľnosti. Testy χ2 umožňujú určiť, či sú očakávané výsledky potvrdené experimentom.', + abstract: 'Počíta test nezávislosti. Funkcia CHITEST vráti hodnotu rozdelenia chí-kvadrát (χ2) pre štatistiku a príslušné stupne voľnosti. Testy χ2 umožňujú určiť, či sú očakávané výsledky potvrdené experimentom.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: 'skutočný_rozsah', detail: 'Rozsah údajov obsahujúci pozorovania, ktoré sa testujú voči očakávaným hodnotám.' }, - expectedRange: { name: 'očakávaný_rozsah', detail: 'Rozsah údajov obsahujúci pomer súčtov riadkov a stĺpcov k celkovému súčtu.' }, + actualRange: { name: 'skutočný_rozsah', detail: 'Povinné. Rozsah údajov obsahujúci pozorovania, ktoré chcete testovať a porovnávať s predpokladanými výsledkami.' }, + expectedRange: { name: 'očakávaný_rozsah', detail: 'Povinné. Rozsah údajov obsahujúci podiel súčinu súčtov riadkov a stĺpcov a celkového súčtu.' }, }, }, CONFIDENCE: { - description: 'Vracia interval spoľahlivosti pre populačný priemer pomocou normálneho rozdelenia.', - abstract: 'Vracia interval spoľahlivosti pre populačný priemer pomocou normálneho rozdelenia.', + description: 'Vráti interval spoľahlivosti pre strednú hodnotu populácie použitím normálneho rozdelenia.', + abstract: 'Vráti interval spoľahlivosti pre strednú hodnotu populácie použitím normálneho rozdelenia.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alfa', detail: 'Hladina významnosti použitá na výpočet spoľahlivosti. Úroveň spoľahlivosti je 100*(1 - alfa)%, napr. alfa 0,05 znamená 95 % spoľahlivosť.' }, - standardDev: { name: 'štandardná_odchýlka', detail: 'Populačná štandardná odchýlka pre rozsah údajov, ktorá sa považuje za známu.' }, - size: { name: 'veľkosť', detail: 'Veľkosť vzorky.' }, + alpha: { name: 'alfa', detail: 'Povinné. Hladina významnosti, pomocou ktorej sa počíta koeficient spoľahlivosti. Koeficient spoľahlivosti sa rovná 100*(1 - alfa)%, čiže ak sa argument alfa rovná 0,05, tak koeficient spoľahlivosti je 95%.' }, + standardDev: { name: 'štandardná_odchýlka', detail: 'Povinné. Smerodajná odchýlka základného súboru pre danú oblasť údajov a predpokladá sa že je známa.' }, + size: { name: 'veľkosť', detail: 'Povinné. Veľkosť vzorky.' }, }, }, COVAR: { - description: 'Vracia kovarianciu populácie, priemer súčinov odchýlok pre každý pár údajov v dvoch množinách.', - abstract: 'Vracia kovarianciu populácie', + description: 'Vráti hodnotu kovariancie, priemernú hodnotu súčinu odchýlok pre všetky dvojice údajových bodov v dvoch množinách údajov.', + abstract: 'Vráti hodnotu kovariancie, priemernú hodnotu súčinu odchýlok pre všetky dvojice údajových bodov v dvoch množinách údajov.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/sk-sk/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: 'pole1', detail: 'Prvý rozsah hodnôt buniek.' }, - array2: { name: 'pole2', detail: 'Druhý rozsah hodnôt buniek.' }, + array1: { name: 'pole1', detail: 'Povinné. Prvý rozsah buniek s celými číslami.' }, + array2: { name: 'pole2', detail: 'Povinné. Druhý rozsah buniek s celými číslami.' }, }, }, CRITBINOM: { - description: 'Vracia najmenšiu hodnotu, pre ktorú je kumulatívne binomické rozdelenie menšie alebo rovné kritériu', - abstract: 'Vracia najmenšiu hodnotu, pre ktorú je kumulatívne binomické rozdelenie menšie alebo rovné kritériu', + description: 'Vráti najmenšiu hodnotu, pre ktorú má distribučná funkcia binomického rozdelenia hodnotu väčšiu alebo rovnajúcu sa hodnote kritéria. Táto funkcia sa používa na kontrolu a zaisťovanie kvality. Funkciu CRITBINOM môžete napríklad použiť na určenie najväčšieho možného počtu chybných súčiastok, ktoré môžu opustiť výrobnú linku bez toho, aby bolo treba odmietnuť celú sériu.', + abstract: 'Vráti najmenšiu hodnotu, pre ktorú má distribučná funkcia binomického rozdelenia hodnotu väčšiu alebo rovnajúcu sa hodnote kritéria. Táto funkcia sa používa na kontrolu a zaisťovanie kvality. Funkciu CRITBINOM môžete napríklad použiť na určenie najväčšieho možného počtu chybných súčiastok, ktoré môžu opustiť výrobnú linku bez toho, aby bolo treba odmietnuť celú sériu.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: 'pokusy', detail: 'Počet Bernoulliho pokusov.' }, - probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Pravdepodobnosť úspechu v každom pokuse.' }, - alpha: { name: 'alfa', detail: 'Kritériová hodnota.' }, + trials: { name: 'pokusy', detail: 'Povinné. Počet Bernoulliho pokusov.' }, + probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Povinné. Pravdepodobnosť úspechu pre každý pokus.' }, + alpha: { name: 'alfa', detail: 'Povinné. Hodnota kritéria.' }, }, }, EXPONDIST: { - description: 'Vracia exponenciálne rozdelenie', - abstract: 'Vracia exponenciálne rozdelenie', + description: 'Vráti hodnotu distribučnej funkcie alebo hustoty exponenciálneho rozdelenia. Funkcia EXPONDIST sa používa na modelovanie času medzi udalosťami, napríklad doba, za ktorú bankomat vydá peniaze. Pomocou funkcie EXPONDIST napríklad môžete vypočítať pravdepodobnosť, že tento proces trvá najviac 1 minútu.', + abstract: 'Vráti hodnotu distribučnej funkcie alebo hustoty exponenciálneho rozdelenia. Funkcia EXPONDIST sa používa na modelovanie času medzi udalosťami, napríklad doba, za ktorú bankomat vydá peniaze. Pomocou funkcie EXPONDIST napríklad môžete vypočítať pravdepodobnosť, že tento proces trvá najviac 1 minútu.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pri ktorej chcete vyhodnotiť rozdelenie.' }, - lambda: { name: 'lambda', detail: 'Hodnota parametra.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, EXPONDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota funkcie.' }, + lambda: { name: 'lambda', detail: 'Povinné. Hodnota parametra.' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Logická hodnota, ktorá určuje, aký typ funkcie sa má poskytnúť. Ak má argument kumulatívne hodnotu TRUE, funkcia EXPONDIST vráti súčtovú distribučnú funkciu. Ak má hodnotu FALSE, vráti funkciu hustoty rozdelenia pravdepodobnosti.' }, }, }, FDIST: { - description: 'Vracia (pravostranné) F-rozdelenie pravdepodobnosti', - abstract: 'Vracia (pravostranné) F-rozdelenie pravdepodobnosti', + description: 'Vráti hodnotu (pravostranného) rozdelenia pravdepodobnosti F (stupeň rozdielnosti) pre dve množiny údajov. Pomocou tejto funkcie možno určiť, či majú dve množiny údajov rôzne stupne odlišnosti. Môžete napríklad skúmať výsledky prijímacích skúšok na strednú školu u mužov a u žien a určiť, či existujú odlišnosti.', + abstract: 'Vráti hodnotu (pravostranného) rozdelenia pravdepodobnosti F (stupeň rozdielnosti) pre dve množiny údajov. Pomocou tejto funkcie možno určiť, či majú dve množiny údajov rôzne stupne odlišnosti. Môžete napríklad skúmať výsledky prijímacích skúšok na strednú školu u mužov a u žien a určiť, či existujú odlišnosti.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pri ktorej chcete vyhodnotiť funkciu.' }, - degFreedom1: { name: 'stupne_voľnosti1', detail: 'Počet stupňov voľnosti v čitateli.' }, - degFreedom2: { name: 'stupne_voľnosti2', detail: 'Počet stupňov voľnosti v menovateli.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete funkciu vyhodnotiť.' }, + degFreedom1: { name: 'stupne_voľnosti1', detail: 'Povinné. Počet stupňov voľnosti v čitateli.' }, + degFreedom2: { name: 'stupne_voľnosti2', detail: 'Povinné. Počet stupňov voľnosti v menovateli.' }, }, }, FINV: { - description: 'Vracia inverzné (pravostranné) F-rozdelenie pravdepodobnosti', - abstract: 'Vracia inverzné (pravostranné) F-rozdelenie pravdepodobnosti', + description: 'Vráti inverznú hodnotu (sprava ohraničeného) rozdelenia pravdepodobnosti F. Ak p = F.DIST.RT(x,...), potom F.INV.RT(p,...) = x. Ak p = FDIST(x,...), potom FINV(p,...) = x.', + abstract: 'Vráti inverznú hodnotu (sprava ohraničeného) rozdelenia pravdepodobnosti F. Ak p = F.DIST.RT(x,...), potom F.INV.RT(p,...) = x. Ak p = FDIST(x,...), potom FINV(p,...) = x.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť priradená kumulatívnemu F-rozdeleniu.' }, - degFreedom1: { name: 'stupne_voľnosti1', detail: 'Počet stupňov voľnosti v čitateli.' }, - degFreedom2: { name: 'stupne_voľnosti2', detail: 'Počet stupňov voľnosti v menovateli.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Predstavuje pravdepodobnosť spojenú s kumulatívnym rozdelením F.' }, + degFreedom1: { name: 'stupne_voľnosti1', detail: 'Povinné. Počet stupňov voľnosti v čitateli.' }, + degFreedom2: { name: 'stupne_voľnosti2', detail: 'Povinné. Počet stupňov voľnosti v menovateli.' }, }, }, FTEST: { - description: 'Vracia výsledok F-testu', - abstract: 'Vracia výsledok F-testu', + description: 'Vráti výsledok F-testu. F-test vráti dvojstrannú pravdepodobnosť významnej odlišnosti rozptylov v argumentoch pole1 a pole2. Pomocou tejto funkcie možno zistiť, či sa rozptyly dvoch vzoriek líšia. Ak napríklad porovnáte výsledky testov z dvoch rozličných typov škôl (štátna a súkromná), môžete zistiť, či majú tieto školy rozdielny rozptyl výsledkov testov.', + abstract: 'Vráti výsledok F-testu. F-test vráti dvojstrannú pravdepodobnosť významnej odlišnosti rozptylov v argumentoch pole1 a pole2. Pomocou tejto funkcie možno zistiť, či sa rozptyly dvoch vzoriek líšia. Ak napríklad porovnáte výsledky testov z dvoch rozličných typov škôl (štátna a súkromná), môžete zistiť, či majú tieto školy rozdielny rozptyl výsledkov testov.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: 'pole1', detail: 'Prvé pole alebo rozsah údajov.' }, - array2: { name: 'pole2', detail: 'Druhé pole alebo rozsah údajov.' }, + array1: { name: 'pole1', detail: 'Povinné. Prvé pole alebo rozsah údajov.' }, + array2: { name: 'pole2', detail: 'Povinné. Druhé pole alebo rozsah údajov.' }, }, }, GAMMADIST: { - description: 'Vracia gama rozdelenie', - abstract: 'Vracia gama rozdelenie', + description: 'Vráti hodnotu distribučnej funkcie alebo hustoty rozdelenia gama. Táto funkcia sa používa napríklad na skúmanie premenných, ktoré môžu mať zošikmené rozdelenie. Rozdelenie gama sa obvykle používa na analýzu radov.', + abstract: 'Vráti hodnotu distribučnej funkcie alebo hustoty rozdelenia gama. Táto funkcia sa používa napríklad na skúmanie premenných, ktoré môžu mať zošikmené rozdelenie. Rozdelenie gama sa obvykle používa na analýzu radov.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, - alpha: { name: 'alfa', detail: 'Parameter rozdelenia.' }, - beta: { name: 'beta', detail: 'Parameter rozdelenia.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, GAMMADIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete zistiť hodnotu rozdelenia.' }, + alpha: { name: 'alfa', detail: 'Povinné. Parameter rozdelenia.' }, + beta: { name: 'beta', detail: 'Povinné. Parameter rozdelenia. Ak beta = 1, funkcia GAMMADIST vráti štandardné rozdelenie gama.' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Logická hodnota, ktorá určuje tvar funkcie. Ak má tento argument hodnotu TRUE, funkcia GAMMADIST vráti súčtovú distribučnú funkciu. Ak má hodnotu FALSE, vráti funkciu hustoty rozdelenia pravdepodobnosti.' }, }, }, GAMMAINV: { - description: 'Vracia inverznú kumulatívnu gama distribúciu', - abstract: 'Vracia inverznú kumulatívnu gama distribúciu', + description: 'Vráti inverznú funkciu ku (kumulatívnej) distribučnej funkcii rozdelenia gama. Ak p = GAMMADIST(x,...), potom GAMMAINV(p,...) = x. Táto funkcia sa používa na skúmanie premennej s možným asymetrickým (šikmým) rozdelením.', + abstract: 'Vráti inverznú funkciu ku (kumulatívnej) distribučnej funkcii rozdelenia gama. Ak p = GAMMADIST(x,...), potom GAMMAINV(p,...) = x. Táto funkcia sa používa na skúmanie premennej s možným asymetrickým (šikmým) rozdelením.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť priradená gama rozdeleniu.' }, - alpha: { name: 'alfa', detail: 'Parameter rozdelenia.' }, - beta: { name: 'beta', detail: 'Parameter rozdelenia.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť spojená s rozdelením gama.' }, + alpha: { name: 'alfa', detail: 'Povinné. Parameter rozdelenia.' }, + beta: { name: 'beta', detail: 'Povinné. Parameter rozdelenia. Ak beta = 1, funkcia GAMMAINV vráti štandardné rozdelenie gama.' }, }, }, HYPGEOMDIST: { - description: 'Vracia hypergeometrické rozdelenie', - abstract: 'Vracia hypergeometrické rozdelenie', + description: 'Vráti hodnotu funkcie hypergeometrického rozdelenia. Funkcia HYPGEOMDIST vráti pravdepodobnosť, že bude práve daný počet úspešných pozorovaní vo vzorke, ak je daná veľkosť vzorky, počet úspešných pozorovaní v základnom súbore a veľkosť základného súboru. Funkcia HYPGEOMDIST sa používa pri problémoch týkajúcich sa konečného základného súboru, pričom môžu byť jednotlivé pozorovania úspešné alebo neúspešné a kde je pravdepodobnosť vybratia každej podmnožiny danej veľkosti rovnaká.', + abstract: 'Vráti hodnotu funkcie hypergeometrického rozdelenia. Funkcia HYPGEOMDIST vráti pravdepodobnosť, že bude práve daný počet úspešných pozorovaní vo vzorke, ak je daná veľkosť vzorky, počet úspešných pozorovaní v základnom súbore a veľkosť základného súboru. Funkcia HYPGEOMDIST sa používa pri problémoch týkajúcich sa konečného základného súboru, pričom môžu byť jednotlivé pozorovania úspešné alebo neúspešné a kde je pravdepodobnosť vybratia každej podmnožiny danej veľkosti rovnaká.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: 'úspechy_vzorka', detail: 'Počet úspechov vo vzorke.' }, - numberSample: { name: 'veľkosť_vzorky', detail: 'Veľkosť vzorky.' }, - populationS: { name: 'úspechy_populácia', detail: 'Počet úspechov v populácii.' }, - numberPop: { name: 'veľkosť_populácie', detail: 'Veľkosť populácie.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, HYPGEOMDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + sampleS: { name: 'úspechy_vzorka', detail: 'Povinné. Počet úspešných pozorovaní v základnom súbore.' }, + numberSample: { name: 'veľkosť_vzorky', detail: 'Povinné. Počet prvkov vo výberovom súbore.' }, + populationS: { name: 'úspechy_populácia', detail: 'Povinné. Počet úspešných pozorovaní vo vzorke.' }, + numberPop: { name: 'veľkosť_populácie', detail: 'Povinné. Počet prvkov základného súboru.' }, }, }, LOGINV: { - description: 'Vracia inverznú kumulatívnu distribučnú funkciu lognormálneho rozdelenia', - abstract: 'Vracia inverznú kumulatívnu distribučnú funkciu lognormálneho rozdelenia', + description: 'Vráti inverznú lognormálnu kumulatívnu distribučnú funkciu x, kde ln(x) má normálnu distribúciu s parametrami stredná_hodnota a smerodajná_odchýlka. Ak p = LOGNORMDIST(x;...), potom LOGINV(p;...) = x.', + abstract: 'Vráti inverznú lognormálnu kumulatívnu distribučnú funkciu x, kde ln(x) má normálnu distribúciu s parametrami stredná_hodnota a smerodajná_odchýlka. Ak p = LOGNORMDIST(x;...), potom LOGINV(p;...) = x.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť zodpovedajúca lognormálnemu rozdeleniu.' }, - mean: { name: 'priemer', detail: 'Aritmetický priemer rozdelenia.' }, - standardDev: { name: 'štandardná_odchýlka', detail: 'Štandardná odchýlka rozdelenia.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť spojená s lognormálnou distribúciou.' }, + mean: { name: 'priemer', detail: 'Povinné. Stredná hodnota hodnôt ln(x).' }, + standardDev: { name: 'štandardná_odchýlka', detail: 'Povinné. Smerodajná odchýlka hodnôt ln(x).' }, }, }, LOGNORMDIST: { - description: 'Vracia kumulatívne lognormálne rozdelenie', - abstract: 'Vracia kumulatívne lognormálne rozdelenie', + description: 'Vráti hodnotu distribučnej funkcie súčtového lognormálneho rozdelenia pre hodnotu x, kde ln(x) má normálne rozdelenie s parametrami stredná_hodnota a smerodajná_odchýlka. Táto funkcia sa používa na analýzu údajov, ktoré boli transformované logaritmickou funkciou.', + abstract: 'Vráti hodnotu distribučnej funkcie súčtového lognormálneho rozdelenia pre hodnotu x, kde ln(x) má normálne rozdelenie s parametrami stredná_hodnota a smerodajná_odchýlka. Táto funkcia sa používa na analýzu údajov, ktoré boli transformované logaritmickou funkciou.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, - mean: { name: 'priemer', detail: 'Aritmetický priemer rozdelenia.' }, - standardDev: { name: 'štandardná_odchýlka', detail: 'Štandardná odchýlka rozdelenia.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, LOGNORMDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete funkciu vyhodnotiť.' }, + mean: { name: 'priemer', detail: 'Povinné. Stredná hodnota hodnôt ln(x).' }, + standardDev: { name: 'štandardná_odchýlka', detail: 'Povinné. Smerodajná odchýlka hodnôt ln(x).' }, }, }, MODE: { - description: 'Vracia najčastejšiu hodnotu v množine údajov', - abstract: 'Vracia najčastejšiu hodnotu v množine údajov', + description: 'Povedzme, že chcete zistiť najbežnejší počet druhov vtákov pozorovaných vo vzorke počtov vtákov v kritickej mokradi, za 30 rokov, alebo chcete zistiť najčastejšie sa vyskytujúci počet telefonických hovorov v centre telefonickej podpory mimo špičky. Ak chcete vypočítať modus skupiny čísel, použite funkciu MODE .', + abstract: 'Povedzme, že chcete zistiť najbežnejší počet druhov vtákov pozorovaných vo vzorke počtov vtákov v kritickej mokradi, za 30 rokov, alebo chcete zistiť najčastejšie sa vyskytujúci počet telefonických hovorov v centre telefonickej podpory mimo špičky. Ak chcete vypočítať modus skupiny čísel, použite funkciu MODE .', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Prvé číslo, odkaz na bunku alebo rozsah, pre ktoré chcete vypočítať modus.' }, - number2: { name: 'číslo2', detail: 'Ďalšie čísla, odkazy na bunky alebo rozsahy, pre ktoré chcete vypočítať modus, maximálne 255.' }, + number1: { name: 'číslo1', detail: 'Povinné. Prvý číselný argument, pre ktorý chcete vypočítať modus.' }, + number2: { name: 'číslo2', detail: 'Voliteľný argument. 2 až 255 číselných argumentov, pre ktoré chcete vypočítať modus. Namiesto argumentov oddelených čiarkami môžete použiť jedno pole alebo odkaz na pole.' }, }, }, NEGBINOMDIST: { - description: 'Vracia negatívne binomické rozdelenie', - abstract: 'Vracia negatívne binomické rozdelenie', + description: 'Vráti hodnotu funkcie záporného binomického rozdelenia. Funkcia NEGBINOMDIST vráti pravdepodobnosť toho, že dôjde k číslo_f neúspechom, kým nastane číslo_s úspechov pri konštantnej pravdepodobnosti úspechu vyjadrenej hodnotou pravdepodobnosť_úspechu. Táto funkcia má podobný tvar aj význam ako binomické rozdelenie, s tým rozdielom, že počet úspešných pozorovaní je pevný a počet pokusov premenlivý. Podobne ako pri binomickom rozdelení, jednotlivé pokusy sa považujú za nezávislé.', + abstract: 'Vráti hodnotu funkcie záporného binomického rozdelenia. Funkcia NEGBINOMDIST vráti pravdepodobnosť toho, že dôjde k číslo_f neúspechom, kým nastane číslo_s úspechov pri konštantnej pravdepodobnosti úspechu vyjadrenej hodnotou pravdepodobnosť_úspechu. Táto funkcia má podobný tvar aj význam ako binomické rozdelenie, s tým rozdielom, že počet úspešných pozorovaní je pevný a počet pokusov premenlivý. Podobne ako pri binomickom rozdelení, jednotlivé pokusy sa považujú za nezávislé.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/sk-sk/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: 'počet_neúspechov', detail: 'Počet neúspechov.' }, - numberS: { name: 'počet_uspechov', detail: 'Prahový počet úspechov.' }, - probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Pravdepodobnosť úspechu.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, NEGBINOMDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + numberF: { name: 'počet_neúspechov', detail: 'Povinné. Počet neúspešných pokusov.' }, + numberS: { name: 'počet_uspechov', detail: 'Povinné. Prahová hodnota počtu úspešných pokusov.' }, + probabilityS: { name: 'pravdepodobnosť_uspechu', detail: 'Povinné. Pravdepodobnosť úspechu.' }, }, }, NORMDIST: { - description: 'Vracia normálne kumulatívne rozdelenie', - abstract: 'Vracia normálne kumulatívne rozdelenie', + description: 'Funkcia NORMDIST vráti hodnotu distribučnej funkcie alebo hustoty normálneho rozdelenia pre zadanú strednú hodnotu a smerodajnú odchýlku. Táto funkcia má v štatistike široké použitie, vrátane testovania hypotéz.', + abstract: 'Funkcia NORMDIST vráti hodnotu distribučnej funkcie alebo hustoty normálneho rozdelenia pre zadanú strednú hodnotu a smerodajnú odchýlku. Táto funkcia má v štatistike široké použitie, vrátane testovania hypotéz.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/sk-sk/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, - mean: { name: 'priemer', detail: 'Aritmetický priemer rozdelenia.' }, - standardDev: { name: 'štandardná_odchýlka', detail: 'Štandardná odchýlka rozdelenia.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, NORMDIST vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete vypočítať rozdelenie.' }, + mean: { name: 'priemer', detail: 'Povinné. Aritmetický priemer rozdelenia' }, + standardDev: { name: 'štandardná_odchýlka', detail: 'Povinné. Smerodajná odchýlka rozdelenia' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Logická hodnota, ktorá určuje tvar funkcie. Ak má tento argument hodnotu TRUE, funkcia NORMDIST vráti súčtovú distribučnú funkciu. ak má argument kumulatívne hodnotu FALSE, vráti hustotu rozdelenia pravdepodobnosti.' }, }, }, NORMINV: { - description: 'Vracia inverznú kumulatívnu distribúciu normálneho rozdelenia', - abstract: 'Vracia inverznú kumulatívnu distribúciu normálneho rozdelenia', + description: 'Vráti inverznú funkciu k distribučnej funkcii normálneho rozdelenia pre zadanú strednú hodnotu a smerodajnú odchýlku.', + abstract: 'Vráti inverznú funkciu k distribučnej funkcii normálneho rozdelenia pre zadanú strednú hodnotu a smerodajnú odchýlku.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť zodpovedajúca normálnemu rozdeleniu.' }, - mean: { name: 'priemer', detail: 'Aritmetický priemer rozdelenia.' }, - standardDev: { name: 'štandardná_odchýlka', detail: 'Štandardná odchýlka rozdelenia.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť zodpovedajúca normálnemu rozdeleniu.' }, + mean: { name: 'priemer', detail: 'Povinné. Aritmetický priemer rozdelenia.' }, + standardDev: { name: 'štandardná_odchýlka', detail: 'Povinné. Smerodajná odchýlka rozdelenia.' }, }, }, NORMSDIST: { - description: 'Vracia štandardné normálne kumulatívne rozdelenie', - abstract: 'Vracia štandardné normálne kumulatívne rozdelenie', + description: 'Vráti hodnotu distribučnej funkcie štandardného normálneho rozdelenia. Toto rozdelenie má strednú hodnotu 0 a smerodajnú odchýlku 1. Táto funkcia sa používa miesto tabuľky pre výpočet integrálu pod krivkou štandardného normálneho rozdelenia.', + abstract: 'Vráti hodnotu distribučnej funkcie štandardného normálneho rozdelenia. Toto rozdelenie má strednú hodnotu 0 a smerodajnú odchýlku 1. Táto funkcia sa používa miesto tabuľky pre výpočet integrálu pod krivkou štandardného normálneho rozdelenia.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/sk-sk/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, + z: { name: 'z', detail: 'Povinný argument. Hodnota, pre ktorú chcete vypočítať rozdelenie.' }, }, }, NORMSINV: { - description: 'Vracia inverznú kumulatívnu distribúciu štandardného normálneho rozdelenia', - abstract: 'Vracia inverznú kumulatívnu distribúciu štandardného normálneho rozdelenia', + description: 'Vráti inverznú funkciu k distribučnej funkcii štandardného normálneho rozdelenia. Toto rozdelenie má strednú hodnotu 0 a smerodajnú odchýlku 1.', + abstract: 'Vráti inverznú funkciu k distribučnej funkcii štandardného normálneho rozdelenia. Toto rozdelenie má strednú hodnotu 0 a smerodajnú odchýlku 1.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť zodpovedajúca normálnemu rozdeleniu.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť zodpovedajúca normálnemu rozdeleniu.' }, }, }, PERCENTILE: { - description: 'Vracia k-ty percentil hodnôt v množine údajov (zahŕňa 0 a 1)', - abstract: 'Vracia k-ty percentil hodnôt v množine údajov (zahŕňa 0 a 1)', + description: 'Vráti K-ty percentil v rozsahu hodnôt. Táto funkcia sa používa na stanovenie prahových hodnôt. Umožňuje napríklad preskúmať kandidátov, ktorí dosiahli aspoň 90-ty percentil.', + abstract: 'Vráti K-ty percentil v rozsahu hodnôt. Táto funkcia sa používa na stanovenie prahových hodnôt. Umožňuje napríklad preskúmať kandidátov, ktorí dosiahli aspoň 90-ty percentil.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: 'pole', detail: 'Pole alebo rozsah údajov, ktorý definuje relatívne poradie.' }, - k: { name: 'k', detail: 'Percentil v rozsahu 0 až 1 (zahŕňa 0 a 1).' }, + array: { name: 'pole', detail: 'Povinné. Pole alebo rozsah údajov, ktoré určujú relatívne umiestnenie.' }, + k: { name: 'k', detail: 'Povinný argument. Hodnota percentilu z uzavretého intervalu 0..1.' }, }, }, PERCENTRANK: { - description: 'Vracia percentilové poradie hodnoty v množine údajov (zahŕňa 0 a 1)', - abstract: 'Vracia percentilové poradie hodnoty v množine údajov (zahŕňa 0 a 1)', + description: 'Funkcia PERCENTRANK vráti poradie hodnoty v množine údajov, vyjadrené percentuálnou časťou množiny údajov – v podstate ide o relatívne umiestnenie hodnoty v rámci celej množiny údajov. Funkciu PERCENTRANK môžete použiť napríklad na určenie poradia výsledkov testu jednotlivca v poli všetkých výsledkov toho istého testu.', + abstract: 'Funkcia PERCENTRANK vráti poradie hodnoty v množine údajov, vyjadrené percentuálnou časťou množiny údajov – v podstate ide o relatívne umiestnenie hodnoty v rámci celej množiny údajov. Funkciu PERCENTRANK môžete použiť napríklad na určenie poradia výsledkov testu jednotlivca v poli všetkých výsledkov toho istého testu.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: 'pole', detail: 'Pole alebo rozsah údajov, ktorý definuje relatívne poradie.' }, - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete poznať poradie.' }, - significance: { name: 'významnosť', detail: 'Hodnota určujúca počet platných číslic pre vrátenú percentuálnu hodnotu. Ak je vynechaná, PERCENTRANK.INC použije tri číslice (0.xxx).' }, + array: { name: 'pole', detail: 'Povinné. Rozsah údajov (alebo preddefinované pole) číselných hodnôt, v ktorých sa určuje percentuálne poradie.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, ktorej poradie v rámci poľa chcete zistiť.' }, + significance: { name: 'významnosť', detail: 'Voliteľný argument. Hodnota určujúca počet desatinných miest, na ktoré bude vracaná hodnota zaokrúhlená. Ak túto hodnotu nezadáte, funkcia PERCENTRANK použije 3 desatinné miesta (0,xxx).' }, }, }, POISSON: { - description: 'Vracia Poissonovo rozdelenie', - abstract: 'Vracia Poissonovo rozdelenie', + description: 'Vráti hodnoty Poissonovho rozdelenia. Poissonovo rozdelenie sa obvykle používa na určenie pravdepodobného počtu prípadov za jednotku času, ako napríklad počet automobilov prichádzajúcich na colnicu za jednu minútu.', + abstract: 'Vráti hodnoty Poissonovho rozdelenia. Poissonovo rozdelenie sa obvykle používa na určenie pravdepodobného počtu prípadov za jednotku času, ako napríklad počet automobilov prichádzajúcich na colnicu za jednu minútu.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, - mean: { name: 'priemer', detail: 'Aritmetický priemer rozdelenia.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, POISSON vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Počet prípadov.' }, + mean: { name: 'priemer', detail: 'Povinné. Očakávaná číselná hodnota.' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Logická hodnota určujúca formu vráteného rozdelenia pravdepodobnosti. Ak má tento argument hodnotu TRUE, vráti funkcia POISSON distribučnú funkciu Poissonovho rozdelenia pravdepodobnosti s tým, že počet náhodných prípadov bude v intervale nula až x. Ak má argument hodnotu FALSE, vráti sa pravdepodobnostná funkcia Poissonovho rozdelenia tak, že počet prípadov bude práve x.' }, }, }, QUARTILE: { - description: 'Vracia kvartil množiny údajov (zahŕňa 0 a 1)', - abstract: 'Vracia kvartil množiny údajov (zahŕňa 0 a 1)', + description: 'Vráti kvartil množiny údajov. Kvartily sa často používajú pri spracovaní údajov o predaji alebo prieskume na rozdelenie populácie do skupín. Funkciu QUARTILE môžete napríklad použiť na vyhľadanie najvyšších 25 percent príjmu v populácii.', + abstract: 'Vráti kvartil množiny údajov. Kvartily sa často používajú pri spracovaní údajov o predaji alebo prieskume na rozdelenie populácie do skupín. Funkciu QUARTILE môžete napríklad použiť na vyhľadanie najvyšších 25 percent príjmu v populácii.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: 'pole', detail: 'Pole alebo rozsah údajov, pre ktoré chcete hodnoty kvartilu.' }, - quart: { name: 'kvartil', detail: 'Hodnota kvartilu, ktorú chcete vrátiť.' }, + array: { name: 'pole', detail: 'Povinné. Pole alebo rozsah buniek obsahujúcich číselné hodnoty, z ktorých chcete kvartil vypočítať.' }, + quart: { name: 'kvartil', detail: 'Povinné. Určuje vrátenú hodnotu.' }, }, }, RANK: { - description: 'Vracia poradie čísla v zozname čísel', - abstract: 'Vracia poradie čísla v zozname čísel', + description: 'Vráti relatívnu veľkosť čísla v zozname čísel. Relatívna veľkosť čísla je jeho veľkosť v porovnaní s ostatnými hodnotami v zozname. (Ak by ste zoznam zoradili, umiestnenie čísla by bola jeho relatívna veľkosť).', + abstract: 'Vráti relatívnu veľkosť čísla v zozname čísel. Relatívna veľkosť čísla je jeho veľkosť v porovnaní s ostatnými hodnotami v zozname. (Ak by ste zoznam zoradili, umiestnenie čísla by bola jeho relatívna veľkosť).', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rank-function', }, ], functionParameter: { - number: { name: 'číslo', detail: 'Číslo, ktorého poradie chcete zistiť.' }, - ref: { name: 'odkaz', detail: 'Odkaz na zoznam čísel. Nečíselné hodnoty v odkaze sa ignorujú.' }, - order: { name: 'poradie', detail: 'Číslo určujúce spôsob určovania poradia. Ak je order 0 alebo vynechané, Excel určuje poradie zostupne. Ak je order nenulové, Excel určuje poradie vzostupne.' }, + number: { name: 'číslo', detail: 'Povinné. Číslo, ktorého relatívnu veľkosť chcete nájsť.' }, + ref: { name: 'odkaz', detail: 'Povinné. Odkaz na zoznam čísel. Hodnoty, ktoré nie sú čísla, sú v parametri odkaz ignorované.' }, + order: { name: 'poradie', detail: 'Voliteľný argument. Číslo určujúce spôsob zisťovania relatívnej veľkosti čísla. Ak je parameter poradie 0 (nula) alebo vynechaný, program Microsoft Excel určí relatívnu veľkosť čísla, ako keby bol zoznam v parametri odkaz zoradený zostupne. Ak má parameter poradie nenulovú hodnotu, program Microsoft Excel určí relatívnu veľkosť čísla, ako keby bol zoznam v parametri odkaz zoradený vzostupne.' }, }, }, STDEV: { - description: 'Odhaduje štandardnú odchýlku na základe vzorky. Štandardná odchýlka je miera rozptýlenia hodnôt od priemeru.', - abstract: 'Odhaduje štandardnú odchýlku na základe vzorky', + description: 'Odhadne smerodajnú odchýlku podľa výberového súboru. Smerodajná odchýlka vyjadruje, ako sa hodnoty líšia od priemernej hodnoty (strednej hodnoty).', + abstract: 'Odhadne smerodajnú odchýlku podľa výberového súboru. Smerodajná odchýlka vyjadruje, ako sa hodnoty líšia od priemernej hodnoty (strednej hodnoty).', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Prvý číselný argument zodpovedajúci vzorke populácie.' }, - number2: { name: 'číslo2', detail: 'Číselné argumenty 2 až 255 zodpovedajúce vzorke populácie. Môžete použiť aj jedno pole alebo odkaz na pole namiesto argumentov oddelených čiarkou.' }, + number1: { name: 'číslo1', detail: 'Povinné. Číselný argument 1 zodpovedajúci výberovému súboru.' }, + number2: { name: 'číslo2', detail: 'Voliteľný argument. Číselné argumenty 2 až 255 zodpovedajúce výberovému súboru. Namiesto argumentov oddelených bodkočiarkami môžete použiť jedno pole alebo odkaz na pole.' }, }, }, STDEVP: { - description: 'Vypočíta štandardnú odchýlku na základe celej populácie zadanej argumentmi.', - abstract: 'Vypočíta štandardnú odchýlku na základe celej populácie', + description: 'Vypočíta smerodajnú odchýlku základného súboru, ktorý bol zadaný ako argument. Smerodajná odchýlka vyjadruje, ako sa hodnoty odlišujú od priemeru (strednej hodnoty).', + abstract: 'Vypočíta smerodajnú odchýlku základného súboru, ktorý bol zadaný ako argument. Smerodajná odchýlka vyjadruje, ako sa hodnoty odlišujú od priemeru (strednej hodnoty).', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Prvý číselný argument zodpovedajúci populácii.' }, - number2: { name: 'číslo2', detail: 'Číselné argumenty 2 až 255 zodpovedajúce populácii. Môžete použiť aj jedno pole alebo odkaz na pole namiesto argumentov oddelených čiarkou.' }, + number1: { name: 'číslo1', detail: 'Povinné. Číselný argument 1 zodpovedajúci základnému súboru.' }, + number2: { name: 'číslo2', detail: 'Voliteľný argument. Číselné argumenty 2 až 255 zodpovedajúce základnému súboru. Namiesto argumentov oddelených bodkočiarkami môžete použiť jedno pole alebo odkaz na pole.' }, }, }, TDIST: { - description: 'Vracia pravdepodobnosť pre Studentovo t-rozdelenie', - abstract: 'Vracia pravdepodobnosť pre Studentovo t-rozdelenie', + description: 'Vracia hladinu významnosti (pravdepodobnosť) pre funkciu Studentovho t-rozdelenia, kde x je vypočítaná číselná hodnota parametra t, pre ktorú sa zisťuje hladina významnosti. T-rozdelenie sa používa pri testovaní hypotéz o malých vzorkách údajov. Funkcia sa používa namiesto tabuľky kritických hodnôt t-rozdelenia.', + abstract: 'Vracia hladinu významnosti (pravdepodobnosť) pre funkciu Studentovho t-rozdelenia, kde x je vypočítaná číselná hodnota parametra t, pre ktorú sa zisťuje hladina významnosti. T-rozdelenie sa používa pri testovaní hypotéz o malých vzorkách údajov. Funkcia sa používa namiesto tabuľky kritických hodnôt t-rozdelenia.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Číselná hodnota, pri ktorej chcete vyhodnotiť rozdelenie.' }, - degFreedom: { name: 'stupne_voľnosti', detail: 'Celé číslo určujúce počet stupňov voľnosti.' }, - tails: { name: 'chvosty', detail: 'Určuje počet chvostov rozdelenia. Ak tails = 1, TDIST vráti jednostranné rozdelenie. Ak tails = 2, TDIST vráti obojstranné rozdelenie.' }, + x: { name: 'x', detail: 'Povinný argument. Číselná hodnota, pre ktorú sa zisťuje hodnota rozdelenia.' }, + degFreedom: { name: 'stupne_voľnosti', detail: 'Povinné. Celé číslo určujúce počet stupňov voľnosti.' }, + tails: { name: 'chvosty', detail: 'Povinné. Určuje, či ide o jednostranné alebo obojstranné rozdelenie. Ak strany = 1, funkcia TDIST vracia jednostranné rozdelenie. Ak strany = 2, funkcia TDIST vracia obojstranné rozdelenie.' }, }, }, TINV: { - description: 'Vracia inverznú pravdepodobnosť pre Studentovo t-rozdelenie (obojstranné)', - abstract: 'Vracia inverznú pravdepodobnosť pre Studentovo t-rozdelenie (obojstranné)', + description: 'Vráti obojstranné inverzné Studentovo t-rozdelenie.', + abstract: 'Vráti obojstranné inverzné Studentovo t-rozdelenie.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: 'pravdepodobnosť', detail: 'Pravdepodobnosť priradená Studentovmu t-rozdeleniu.' }, - degFreedom: { name: 'stupne_voľnosti', detail: 'Celé číslo určujúce počet stupňov voľnosti.' }, + probability: { name: 'pravdepodobnosť', detail: 'Povinné. Pravdepodobnosť spojená s obojstranným Studentovým t-rozdelením.' }, + degFreedom: { name: 'stupne_voľnosti', detail: 'Povinné. Počet stupňov voľnosti, ktorými je možné rozdelenie charakterizovať.' }, }, }, TTEST: { - description: 'Vracia pravdepodobnosť priradenú Studentovmu t-testu', - abstract: 'Vracia pravdepodobnosť priradenú Studentovmu t-testu', + description: 'Vráti pravdepodobnosť súvisiacu so Studentovým t-testom. Funkcia TTEST sa používa na určenie pravdepodobnosti pôvodu dvoch vzoriek z dvoch základných súborov s rovnakou priemernou hodnotou.', + abstract: 'Vráti pravdepodobnosť súvisiacu so Studentovým t-testom. Funkcia TTEST sa používa na určenie pravdepodobnosti pôvodu dvoch vzoriek z dvoch základných súborov s rovnakou priemernou hodnotou.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: 'pole1', detail: 'Prvé pole alebo rozsah údajov.' }, - array2: { name: 'pole2', detail: 'Druhé pole alebo rozsah údajov.' }, - tails: { name: 'chvosty', detail: 'Určuje počet chvostov rozdelenia. Ak tails = 1, TTEST používa jednostranné rozdelenie. Ak tails = 2, TTEST používa obojstranné rozdelenie.' }, - type: { name: 'typ', detail: 'Typ t-testu, ktorý sa má vykonať.' }, + array1: { name: 'pole1', detail: 'Povinné. Prvá množina údajov.' }, + array2: { name: 'pole2', detail: 'Povinné. Druhá množina údajov.' }, + tails: { name: 'chvosty', detail: 'Povinné. Určuje, či ide o jednostranné alebo obojstranné rozdelenie. Ak strany = 1, funkcia TTEST vracia jednostranné rozdelenie. Ak strany = 2, funkcia TTEST vracia obojstranné rozdelenie.' }, + type: { name: 'typ', detail: 'Povinné. Druh vykonaného t-testu.' }, }, }, VAR: { - description: 'Odhaduje rozptyl na základe vzorky.', - abstract: 'Odhaduje rozptyl na základe vzorky', + description: 'Odhadne rozptyl na základe vzorky.', + abstract: 'Odhadne rozptyl na základe vzorky.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/var-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Prvý číselný argument zodpovedajúci vzorke populácie.' }, - number2: { name: 'číslo2', detail: 'Číselné argumenty 2 až 255 zodpovedajúce vzorke populácie.' }, + number1: { name: 'číslo1', detail: 'Povinné. Číselný argument 1 zodpovedajúci výberovému súboru.' }, + number2: { name: 'číslo2', detail: 'Voliteľný argument. Číselné argumenty 2 až 255 zodpovedajúce výberovému súboru.' }, }, }, VARP: { - description: 'Vypočíta rozptyl na základe celej populácie.', - abstract: 'Vypočíta rozptyl na základe celej populácie', + description: 'Vypočíta rozptyl na základe celého základného súboru.', + abstract: 'Vypočíta rozptyl na základe celého základného súboru.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Prvý číselný argument zodpovedajúci populácii.' }, - number2: { name: 'číslo2', detail: 'Číselné argumenty 2 až 255 zodpovedajúce populácii.' }, + number1: { name: 'číslo1', detail: 'Povinné. Číselný argument 1 zodpovedajúci základnému súboru.' }, + number2: { name: 'číslo2', detail: 'Voliteľný argument. Číselné argumenty 2 až 255 zodpovedajúce základnému súboru.' }, }, }, WEIBULL: { - description: 'Vracia Weibullovo rozdelenie', - abstract: 'Vracia Weibullovo rozdelenie', + description: 'Vráti hodnotu Weibullovho rozdelenia. Toto rozdelenie sa používa na analýzu spoľahlivosti, ako je napríklad výpočet stredného času medzi poruchami prístroja.', + abstract: 'Vráti hodnotu Weibullovho rozdelenia. Toto rozdelenie sa používa na analýzu spoľahlivosti, ako je napríklad výpočet stredného času medzi poruchami prístroja.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: 'Hodnota, pre ktorú chcete rozdelenie.' }, - alpha: { name: 'alfa', detail: 'Parameter rozdelenia.' }, - beta: { name: 'beta', detail: 'Parameter rozdelenia.' }, - cumulative: { name: 'kumulatívne', detail: 'Logická hodnota určujúca tvar funkcie. Ak cumulative je TRUE, WEIBULL vráti kumulatívnu distribučnú funkciu; ak FALSE, vráti funkciu hustoty pravdepodobnosti.' }, + x: { name: 'x', detail: 'Povinný argument. Hodnota, pre ktorú chcete funkciu vyhodnotiť.' }, + alpha: { name: 'alfa', detail: 'Povinné. Parameter rozdelenia.' }, + beta: { name: 'beta', detail: 'Povinné. Parameter rozdelenia.' }, + cumulative: { name: 'kumulatívne', detail: 'Povinné. Určuje tvar funkcie.' }, }, }, ZTEST: { - description: 'Vracia jednostrannú pravdepodobnostnú hodnotu z-testu', - abstract: 'Vracia jednostrannú pravdepodobnostnú hodnotu z-testu', + description: 'Vráti jednostrannú hodnotu pravdepodobnosti z-testu. Pre danú predpokladanú strednú hodnotu základného súboru μ0 funkcia ZTEST vráti pravdepodobnosť, s akou bude stredná hodnota vzorky väčšia ako priemerná hodnota pozorovaní v množine údajov (poli) — teda ako zistená stredná hodnota vzorky.', + abstract: 'Vráti jednostrannú hodnotu pravdepodobnosti z-testu. Pre danú predpokladanú strednú hodnotu základného súboru μ0 funkcia ZTEST vráti pravdepodobnosť, s akou bude stredná hodnota vzorky väčšia ako priemerná hodnota pozorovaní v množine údajov (poli) — teda ako zistená stredná hodnota vzorky.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: 'pole', detail: 'Pole alebo rozsah údajov, voči ktorému sa testuje x.' }, - x: { name: 'x', detail: 'Hodnota, ktorú chcete testovať.' }, - sigma: { name: 'sigma', detail: 'Populačná (známa) štandardná odchýlka. Ak je vynechaná, použije sa výberová štandardná odchýlka.' }, + array: { name: 'pole', detail: 'Povinné. Pole alebo rozsah údajov, vzhľadom na ktoré sa bude testovať hodnota x.' }, + x: { name: 'x', detail: 'Povinný argument. Testovaná hodnota.' }, + sigma: { name: 'sigma', detail: 'Voliteľný argument. Smerodajná odchýlka (známa) základného súboru. Ak sa vynechá, použije sa smerodajná odchýlka vzorky.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/compatibility/vi-VN.ts index 247b1d1de9..2a2344add9 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/vi-VN.ts @@ -18,95 +18,95 @@ import type enUS from './en-US'; const locale: typeof enUS = { 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', + description: 'Trả về hàm mật độ xác suất beta lũy tích. Phân bố beta thường được dùng để nghiên cứu sự biến thiên theo tỷ lệ phần trăm của một số thứ qua các mẫu, chẳng hạn như thời gian trong ngày mà người ta dành để xem ti vi.', + abstract: 'Trả về hàm mật độ xác suất beta lũy tích. Phân bố beta thường được dùng để nghiên cứu sự biến thiên theo tỷ lệ phần trăm của một số thứ qua các mẫu, chẳng hạn như thời gian trong ngày mà người ta dành để xem ti vi.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/betadist-function', }, ], 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.' }, + x: { name: 'số', detail: 'buộc. Giá trị giữa A và B dùng để định trị hàm.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. Một tham biến của phân phối.' }, + beta: { name: 'beta', detail: 'Yêu cầu. Một tham biến của phân phối.' }, + A: { name: 'giới hạn dưới', detail: 'Tùy chọn. Cận dưới của khoảng x.' }, + B: { name: 'giới hạn trên', detail: 'chọn. Cận trên của khoảng x.' }, }, }, 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', + description: 'Trả về giá trị nghịch đảo của hàm mật độ xác suất beta lũy tích cho một phân bố beta đã xác định. Tức là, nếu xác suất = BETADIST(x,...) thì BETAINV(xác suất,...) = x. Có thể dùng phân bố beta trong lập kế hoạch dự án để làm mẫu thời gian có thể hoàn thành trên cơ sở thời gian dự kiến và khả năng có sự thay đổi.', + abstract: 'Trả về giá trị nghịch đảo của hàm mật độ xác suất beta lũy tích cho một phân bố beta đã xác định. Tức là, nếu xác suất = BETADIST(x,...) thì BETAINV(xác suất,...) = x. Có thể dùng phân bố beta trong lập kế hoạch dự án để làm mẫu thời gian có thể hoàn thành trên cơ sở thời gian dự kiến và khả năng có sự thay đổi.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/betainv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Xác suất gắn với phân bố beta.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. Một tham biến của phân phối.' }, + beta: { name: 'beta', detail: 'Yêu cầu. Tham số phân bố.' }, + A: { name: 'giới hạn dưới', detail: 'Tùy chọn. Cận dưới của khoảng x.' }, + B: { name: 'giới hạn trên', detail: 'chọn. Cận trên của khoảng x.' }, }, }, 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', + description: 'Trả về xác suất phân bố nhị thức của thuật ngữ riêng lẻ. Hãy dùng BINOMDIST trong các vấn đề có số lượng kiểm định hoặc phép thử ấn định khi kết quả của bất kỳ phép thử nào chỉ là thành công hay thất bại, khi các phép thử là độc lập và khi xác suất thành công không đổi trong suốt quá trình thử nghiệm. Ví dụ, BINOMDIST có thể tính toán xác suất rằng hai trong số ba em bé tiếp theo là bé trai.', + abstract: 'Trả về xác suất phân bố nhị thức của thuật ngữ riêng lẻ. Hãy dùng BINOMDIST trong các vấn đề có số lượng kiểm định hoặc phép thử ấn định khi kết quả của bất kỳ phép thử nào chỉ là thành công hay thất bại, khi các phép thử là độc lập và khi xác suất thành công không đổi trong suốt quá trình thử nghiệm. Ví dụ, BINOMDIST có thể tính toán xác suất rằng hai trong số ba em bé tiếp theo là bé trai.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/binomdist-function', }, ], 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.' }, + numberS: { name: 'số lần thành công', detail: 'Yêu cầu. Số lần thành công trong các phép thử.' }, + trials: { name: 'số phép thử', detail: 'Yêu cầu. Số phép thử độc lập.' }, + probabilityS: { name: 'xác suất thành công', detail: 'Yêu cầu. Xác suất thành công của mỗi phép thử.' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. 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ì BINOMDIST trả về hàm phân bố lũy tích, là xác suất có nhiều nhất số lần thành công; nếu SAI, nó trả về hàm khối xác suất, là xác suất có số lần thành công.' }, }, }, 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', + description: 'Trả về xác suất đầu bên phải của phân bố khi bình phương. Phân bố χ2 gắn với kiểm thử χ2. Hãy dùng kiểm thử χ2 để so sánh các giá trị quan sát được và dự kiến. Ví dụ, thí nghiệm di truyền có thể đưa ra giả thuyết rằng thế hệ tiếp theo của cây trồng sẽ có một bộ màu nhất định. Bằng cách so sánh kết quả quan sát được với kết quả dự kiến, bạn có thể xác định giả thuyết ban đầu của mình có hợp lệ hay không.', + abstract: 'Trả về xác suất đầu bên phải của phân bố khi bình phương. Phân bố χ2 gắn với kiểm thử χ2. Hãy dùng kiểm thử χ2 để so sánh các giá trị quan sát được và dự kiến. Ví dụ, thí nghiệm di truyền có thể đưa ra giả thuyết rằng thế hệ tiếp theo của cây trồng sẽ có một bộ màu nhất định. Bằng cách so sánh kết quả quan sát được với kết quả dự kiến, bạn có thể xác định giả thuyết ban đầu của mình có hợp lệ hay không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chidist-function', }, ], 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.' }, + x: { name: 'số', detail: 'buộc. Giái trị bạn muốn đánh giá phân phối.' }, + degFreedom: { name: 'bậc tự do', detail: 'Yêu cầu. 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.', + description: 'Trả về giá trị nghịch đảo của xác suất đầu bên phải của phân bố khi bình phương. Nếu xác suất = CHIDIST(x,...) thì CHIINV(xác suất,...) = x. Hãy dùng hàm này để so sánh kết quả quan sát được với kết quả dự kiến để xác định giả thuyết ban đầu của bạn có hợp lệ hay không.', + abstract: 'Trả về giá trị nghịch đảo của xác suất đầu bên phải của phân bố khi bình phương. Nếu xác suất = CHIDIST(x,...) thì CHIINV(xác suất,...) = x. Hãy dùng hàm này để so sánh kết quả quan sát được với kết quả dự kiến để xác định giả thuyết ban đầu của bạn có hợp lệ hay không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chiinv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Xác suất gắn với phân bố khi bình phương.' }, + degFreedom: { name: 'bậc tự do', detail: 'Yêu cầu. 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', + description: 'Trả về kiểm định tính độc lập. CHITEST trả về giá trị từ phân bố (χ2) khi bình phương cho thống kê và bậc tự do phù hợp. Bạn có thể dùng kiểm định χ2 để xác định kết quả được giả thuyết có được thí nghiệm xác nhận hay không.', + abstract: 'Trả về kiểm định tính độc lập. CHITEST trả về giá trị từ phân bố (χ2) khi bình phương cho thống kê và bậc tự do phù hợp. Bạn có thể dùng kiểm định χ2 để xác định kết quả được giả thuyết có được thí nghiệm xác nhận hay không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chitest-function', }, ], 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.' }, + actualRange: { name: 'phạm vi quan sát', detail: 'Yêu cầu. 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: 'Yêu cầu. 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: { @@ -115,476 +115,471 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/confidence-function', }, ], 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.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. 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: 'Yêu cầu. Độ 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: 'Yêu cầu. 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', + description: 'Trả về hiệp phương sai, trung bình tích của các độ lệch 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, trung bình tích của các độ lệch cho mỗi cặp điểm dữ liệu trong hai tập dữ liệu.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/covar-function', }, ], 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.' }, + array1: { name: 'mảng 1', detail: 'Yêu cầu. Phạm vi ô thứ nhất chứa các số nguyên.' }, + array2: { name: 'mảng 2', detail: 'Yêu cầu. Phạm vi ô thứ hai chứa các số nguyên.' }, }, }, 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', + description: 'Trả về giá trị nhỏ nhất sao cho phân bố nhị thức lũy tích lớn hơn hoặc bằng một giá trị tiêu chí. Dùng hàm này cho các ứng dụng bảo đảm chất lượng. Ví dụ, dùng hàm CRITBINOM để xác định số lượng bộ phận bị hỏng lớn nhất được cho phép để chạy dây chuyền lắp ráp mà không từ chối toàn bộ lô hàng.', + abstract: 'Trả về giá trị nhỏ nhất sao cho phân bố nhị thức lũy tích lớn hơn hoặc bằng một giá trị tiêu chí. Dùng hàm này cho các ứng dụng bảo đảm chất lượng. Ví dụ, dùng hàm CRITBINOM để xác định số lượng bộ phận bị hỏng lớn nhất được cho phép để chạy dây chuyền lắp ráp mà không từ chối toàn bộ lô hàng.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/critbinom-function', }, ], 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í.' }, + trials: { name: 'số phép thử', detail: 'Yêu cầu. Số phép thử Bernoulli.' }, + probabilityS: { name: 'xác suất thành công', detail: 'Yêu cầu. 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: 'Yêu cầu. Giá trị tiêu chí.' }, }, }, EXPONDIST: { - description: 'Trả về phân phối mũ', - abstract: 'Trả về phân phối mũ', + description: 'Trả về phân bố hàm mũ. Dùng hàm EXPONDIST để làm mẫu thời gian giữa các sự kiện, chẳng hạn như máy rút tiền tự động cần bao nhiêu thời gian để giao tiền mặt. Ví dụ, bạn có thể dùng hàm EXPONDIST để xác định xác suất quá trình này diễn ra trong nhiều nhất là 1 phút.', + abstract: 'Trả về phân bố hàm mũ. Dùng hàm EXPONDIST để làm mẫu thời gian giữa các sự kiện, chẳng hạn như máy rút tiền tự động cần bao nhiêu thời gian để giao tiền mặt. Ví dụ, bạn có thể dùng hàm EXPONDIST để xác định xác suất quá trình này diễn ra trong nhiều nhất là 1 phút.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/expondist-function', }, ], 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.' }, + x: { name: 'số', detail: 'buộc. Giá trị của hàm.' }, + lambda: { name: 'lambda', detail: 'Yêu cầu. Giá trị tham số.' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. Giá trị lô-gic cho biết cung cấp kiểu hàm mũ nào. Nếu cumulative là TRUE, hàm EXPONDIST trả về hàm phân bố lũy tích; nếu FALSE, 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)', + description: 'Trả về phân bố xác suất (mức đa dạng) F (bên phải) cho hai tập dữ liệu. Bạn có thể dùng hàm này để xác định hai tập dữ liệu có mức đa dạng khác nhau hay không. Ví dụ, bạn có thể xem xét điểm kiểm tra của học sinh nam và học sinh nữ tại trường trung học và xác định mức biến đổi trong học sinh nữ có khác với mức đó trong học sinh nam không.', + abstract: 'Trả về phân bố xác suất (mức đa dạng) F (bên phải) cho hai tập dữ liệu. Bạn có thể dùng hàm này để xác định hai tập dữ liệu có mức đa dạng khác nhau hay không. Ví dụ, bạn có thể xem xét điểm kiểm tra của học sinh nam và học sinh nữ tại trường trung học và xác định mức biến đổi trong học sinh nữ có khác với mức đó trong học sinh nam không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fdist-function', }, ], 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ố.' }, + x: { name: 'số', detail: 'buộc. Giá trị để đánh giá hàm.' }, + degFreedom1: { name: 'bậc tự do ở tử số', detail: 'Yêu cầu. Bậc tự do ở tử số.' }, + degFreedom2: { name: 'bậc tự do ở mẫu số.', detail: 'Yêu cầu. 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).', + description: 'Trả về nghịch đảo của phân bố xác suất F (đầu bên phải). Nếu p = FDIST(x,...), thì FINV(p,...) = x.', + abstract: 'Trả về nghịch đảo của phân bố xác suất F (đầu bên phải). Nếu p = FDIST(x,...), thì FINV(p,...) = x.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/finv-function', }, ], 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ố.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. 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: 'Yêu cầu. Bậc tự do ở tử số.' }, + degFreedom2: { name: 'bậc tự do ở mẫu số.', detail: 'Yêu cầu. 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', + description: 'Trả về kết quả của kiểm tra F-test. Một kiểm tra F-test trả về xác suất hai đầu mà phương sai trong array1 và array1 khác nhau không đáng kể. Dùng hàm này để xác định xem hai mẫu có các phương sai khác nhau không. Ví dụ, biết điểm kiểm tra của các trường công lập và trường tư thục, bạn có thể kiểm tra xem những trường này có các mức điểm số kiểm tra khác nhau hay không.', + abstract: 'Trả về kết quả của kiểm tra F-test. Một kiểm tra F-test trả về xác suất hai đầu mà phương sai trong array1 và array1 khác nhau không đáng kể. Dùng hàm này để xác định xem hai mẫu có các phương sai khác nhau không. Ví dụ, biết điểm kiểm tra của các trường công lập và trường tư thục, bạn có thể kiểm tra xem những trường này có các mức điểm số kiểm tra khác nhau hay không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ftest-function', }, ], 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.' }, + array1: { name: 'mảng 1', detail: 'Yêu cầu. Mảng thứ nhất của phạm vi dữ liệu.' }, + array2: { name: 'mảng 2', detail: 'Yêu cầu. 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 γ', + description: 'Trả về phân bố gamma. Bạn có thể dùng hàm này để nghiên cứu các biến số có thể có phân bố lệch. Phân bố gamma thường được dùng trong phân tích hàng đợi.', + abstract: 'Trả về phân bố gamma. Bạn có thể dùng hàm này để nghiên cứu các biến số có thể có phân bố lệch. Phân bố gamma thường được dùng trong phân tích hàng đợ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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gammadist-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Giái trị bạn muốn đánh giá phân phối.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. Một tham biến tới phân phối.' }, + beta: { name: 'beta', detail: 'Yêu cầu. Một tham biến tới phân phối. Nếu beta = 1, GAMMADIST trả về phân bố gamma chuẩn.' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. 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 γ', + description: 'Trả về giá trị đảo của phân bố lũy tích gamma. Nếu p = GAMMADIST(x,...), thì GAMMAINV(p,...) = x. Bạn có thể dùng hàm này để nghiên cứu các biến số mà phân bố của chúng có thể là đối xứng lệch.', + abstract: 'Trả về giá trị đảo của phân bố lũy tích gamma. Nếu p = GAMMADIST(x,...), thì GAMMAINV(p,...) = x. Bạn có thể dùng hàm này để nghiên cứu các biến số mà phân bố của chúng có thể là đối xứng lệch.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gammainv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Xác xuất gắn với phân bố gamma.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. Một tham biến tới phân phối.' }, + beta: { name: 'beta', detail: 'Yêu cầu. Một tham biến tới phân phối. Nếu beta = 1, GAMMAINV trả về phân bố gamma chuẩn.' }, }, }, HYPGEOMDIST: { - description: 'Trả về phân bố siêu bội.', - abstract: 'Trả về phân bố siêu bội.', + description: 'Trả về phân bố siêu bội. Hàm HYPGEOMDIST trả về xác suất của số lần thành công mẫu đã biết, biết trước kích thước mẫu, thành công của tập hợp và kích cỡ của tập hợp. Dùng hàm HYPGEOMDIST cho các vấn đề về tập hợp hữu hạn, trong đó mỗi quan sát có thể là thành công hoặc thất bại và trong đó mỗi tập con có kích thước đã biết được chọn với khả năng như nhau.', + abstract: 'Trả về phân bố siêu bội. Hàm HYPGEOMDIST trả về xác suất của số lần thành công mẫu đã biết, biết trước kích thước mẫu, thành công của tập hợp và kích cỡ của tập hợp. Dùng hàm HYPGEOMDIST cho các vấn đề về tập hợp hữu hạn, trong đó mỗi quan sát có thể là thành công hoặc thất bại và trong đó mỗi tập con có kích thước đã biết được chọn với khả năng như nhau.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hypgeomdist-function', }, ], 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.' }, + sampleS: { name: 'Số lần thành công mẫu', detail: 'Yêu cầu. Số lần thành công trong mẫu.' }, + numberSample: { name: 'Kích thước mẫu', detail: 'Yêu cầu. Kích thước của mẫu.' }, + populationS: { name: 'Tổng số thành công', detail: 'Yêu cầu. Số lần thành công trong tập hợp.' }, + numberPop: { name: 'Kích thước tổng thể', detail: 'Yêu cầu. Kích thước của tập hợp.' }, }, }, 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', + description: 'Trả về nghịch đảo của hàm phân phối lô-ga-rit chuẩn lũy tích của x, trong đó ln(x) thường được phân bố với tham số trung bình và độ lệch chuẩn. Nếu p = LOGNORMDIST(x,...), khi đó LOGINV(p,...) = x.', + abstract: 'Trả về nghịch đảo của hàm phân phối lô-ga-rit chuẩn lũy tích của x, trong đó ln(x) thường được phân bố với tham số trung bình và độ lệch chuẩn. Nếu p = LOGNORMDIST(x,...), khi đó LOGINV(p,...) = x.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/loginv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Một xác suất gắn với phân bố lô-ga-rit chuẩn.' }, + mean: { name: 'trung độ số', detail: 'Yêu cầu. Trung bình của ln(x).' }, + standardDev: { name: 'Độ lệch chuẩn', detail: 'Yêu cầu. Độ lệch chuẩn của ln(x).' }, }, }, 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', + description: 'Trả về phân bố chuẩn lô-ga-rít lũy tích của x, trong đó ln(x) thường được phân bố với trung bình tham số và độ lệch chuẩn. Dùng hàm này để phân tích những dữ liệu đã được biến đổi theo lô-ga-rit.', + abstract: 'Trả về phân bố chuẩn lô-ga-rít lũy tích của x, trong đó ln(x) thường được phân bố với trung bình tham số và độ lệch chuẩn. Dùng hàm này để phân tích những dữ liệu đã được biến đổi theo lô-ga-rit.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lognormdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Giá trị để đánh giá hàm.' }, + mean: { name: 'trung độ số', detail: 'Yêu cầu. Trung bình của ln(x).' }, + standardDev: { name: 'Độ lệch chuẩn', detail: 'Yêu cầu. Độ lệch chuẩn của ln(x).' }, }, }, 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.', + description: 'Giả sử bạn muốn tìm hiểu số lượng loài chim phổ biến nhất bị nhìn thấy trong một mẫu số lượng chim tại một vùng ngập nước quan trọng trong khoảng thời gian 30 năm, hoặc bạn muốn tìm số lượng cuộc gọi điện thoại thường xuyên nhất tại một trung tâm hỗ trợ qua điện thoại trong giờ thấp điểm. Để tính toán chế độ của một nhóm số, hãy sử dụng hàm MODE .', + abstract: 'Giả sử bạn muốn tìm hiểu số lượng loài chim phổ biến nhất bị nhìn thấy trong một mẫu số lượng chim tại một vùng ngập nước quan trọng trong khoảng thời gian 30 năm, hoặc bạn muốn tìm số lượng cuộc gọi điện thoại thường xuyên nhất tại một trung tâm hỗ trợ qua điện thoại trong giờ thấp điểm. Để tính toán chế độ của một nhóm số, hãy sử dụng hàm MODE .', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mode-function', }, ], 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ế độ.' }, + number1: { name: 'số 1', detail: 'Yêu cầu. Đối số dạng số đầu tiên cho những gì bạn muốn tính số yếu vị.' }, + number2: { name: 'số 2', detail: 'Tùy chọn. Các đối số dạng số từ 2 tới 255 mà bạn muốn tính toán số yếu vị trong đó. 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.' }, }, }, NEGBINOMDIST: { - description: 'Trả về phân bố nhị thức âm', - abstract: 'Trả về phân bố nhị thức âm', + description: 'Trả về phân bố nhị thức âm. Hàm NEGBINOMDIST trả về xác suất sẽ có number_f lần thất bại trước thành công thứ number_s, khi xác suất không đổi của một lần thành công là probability_s. Hàm này tương tự như phân bố nhị thức, ngoại trừ việc số lần thành công được cố định và số lần thử biến đổi. Giống như phân bố nhị thức, số lần thử được giả định là độc lập.', + abstract: 'Trả về phân bố nhị thức âm. Hàm NEGBINOMDIST trả về xác suất sẽ có number_f lần thất bại trước thành công thứ number_s, khi xác suất không đổi của một lần thành công là probability_s. Hàm này tương tự như phân bố nhị thức, ngoại trừ việc số lần thành công được cố định và số lần thử biến đổi. Giống như phân bố nhị thức, số lần thử được giả định là độc lập.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/negbinomdist-function', }, ], 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.' }, + numberF: { name: 'số lần thất bại.', detail: 'Yêu cầu. Số lần thất bại.' }, + numberS: { name: 'số lần thành công', detail: 'Yêu cầu. Số ngưỡng thành công.' }, + probabilityS: { name: 'xác suất thành công', detail: 'Yêu cầu. Xác suất thành công.' }, }, }, 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', + description: 'Hàm NORMDIST trả về phân bố chuẩn cho độ lệch chuẩn và giá trị trung độ đã xác định. Hàm này có một loạt các ứng dụng trong thống kê, bao gồm kiểm tra giả thuyết.', + abstract: 'Hàm NORMDIST trả về phân bố chuẩn cho độ lệch chuẩn và giá trị trung độ đã xác định. Hàm này có một loạt các ứng dụng trong thống kê, bao gồm kiểm tra giả thuyết.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/normdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Giá trị mà bạn muốn có phân bố của nó' }, + mean: { name: 'trung độ số', detail: 'Yêu cầu. Trung bình số học của phân bố' }, + standardDev: { name: 'Độ lệch chuẩn', detail: 'Yêu cầu. Độ lệch chuẩn của phân bố' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. Một giá trị lô-gic quyết định dạng thức của hàm. Nếu lũy tích là TRUE, thì hàm NORMDIST trả về hàm phân bố lũy tích; nếu lũy tích là FALSE, nó trả về hàm khối 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', + description: 'Trả về nghịch đảo của phân bố lũy tích chuẩn với độ lệch chuẩn và giá trị trung độ đã xác định.', + abstract: 'Trả về nghịch đảo của phân bố lũy tích chuẩn với độ lệch chuẩn và giá trị trung độ đã xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/norminv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Một xác suất tương ứng với phân bố chuẩn.' }, + mean: { name: 'trung độ số', detail: 'Yêu cầu. Trung độ số học của phân phối.' }, + standardDev: { name: 'Độ lệch chuẩn', detail: 'Yêu cầu. Độ 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', + description: 'Trả về hàm phân bố lũy tích chuẩn chuẩn hóa. Phân bố có giá trị trung độ bằng 0 (không) và độ lệch chuẩn là một. Dùng hàm này thay cho bảng chứa các vùng đường cong chuẩn chuẩn hóa.', + abstract: 'Trả về hàm phân bố lũy tích chuẩn chuẩn hóa. Phân bố có giá trị trung độ bằng 0 (không) và độ lệch chuẩn là một. Dùng hàm này thay cho bảng chứa các vùng đường cong chuẩn 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: 'Giá trị mà bạn muốn có phân bố của nó.' }, + z: { name: 'z', detail: 'buộc. 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', + description: 'Trả về giá trị đảo của phân bố lũy tích chuẩn chuẩn hóa. Phân bố có giá trị trung bình bằng không và độ lệch chuẩn là một.', + abstract: 'Trả về giá trị đảo của phân bố lũy tích chuẩn chuẩn hóa. Phân bố có giá trị trung bình bằng không và độ lệch chuẩn là một.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: 'xác suất', detail: 'Một xác suất tương ứng với phân bố chuẩn.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. 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)', + description: 'Trả về phân vị thứ k của các giá trị trong phạm vi. Bạn có thể dùng hàm này để thiết lập ngưỡng chấp nhận. Ví dụ, bạn có thể quyết định kiểm tra những ứng viên đạt điểm cao hơn phân vị thứ 90.', + abstract: 'Trả về phân vị thứ k của các giá trị trong phạm vi. Bạn có thể dùng hàm này để thiết lập ngưỡng chấp nhận. Ví dụ, bạn có thể quyết định kiểm tra những ứng viên đạt điểm cao hơn phân vị thứ 90.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentile-function', }, ], 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).' }, + array: { name: 'mảng', detail: 'Yêu cầu. Mảng hoặc phạm vi dữ liệu xác định vị trí tương đối.' }, + k: { name: 'k', detail: 'buộc. Giá trị phân vị trong phạm vi 0..1, bao gồm cả 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)', + description: 'Hàm PERCENTRANK trả về thứ hạng của một giá trị trong tập dữ liệu dưới dạng tỷ lệ phần trăm của tập dữ liệu -- về cơ bản, vị trí tương đối của một giá trị trong toàn bộ tập dữ liệu. Ví dụ, bạn có thể dùng hàm PERCENTRANK để xác định vị thế của điểm kiểm tra của một cá nhân trong số tất cả các điểm số của cùng một bài kiểm tra.', + abstract: 'Hàm PERCENTRANK trả về thứ hạng của một giá trị trong tập dữ liệu dưới dạng tỷ lệ phần trăm của tập dữ liệu -- về cơ bản, vị trí tương đối của một giá trị trong toàn bộ tập dữ liệu. Ví dụ, bạn có thể dùng hàm PERCENTRANK để xác định vị thế của điểm kiểm tra của một cá nhân trong số tất cả các điểm số của cùng một bài kiểm tra.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentrank-function', }, ], 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).' }, + array: { name: 'mảng', detail: 'Yêu cầu. Phạm vi dữ liệu (hoặc mảng xác định trước) của các giá trị số trong đó thứ hạng phần trăm được xác định.' }, + x: { name: 'x', detail: 'buộc. Giá trị mà bạn muốn biết thứ hạng trong mảng.' }, + significance: { name: 'chữ số có nghĩa', detail: 'Tùy chọn. 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.', + description: 'Trả về phân bố Poisson. Một ứng dụng thường gặp của phân bố Poisson là để dự đoán số sự kiện trong một thời gian cụ thể, chẳng hạn như số xe tới một trạm thu phí trong 1 phút.', + abstract: 'Trả về phân bố Poisson. Một ứng dụng thường gặp của phân bố Poisson là để dự đoán số sự kiện trong một thời gian cụ thể, chẳng hạn như số xe tới một trạm thu phí trong 1 phút.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/poisson-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Số sự kiện.' }, + mean: { name: 'trung độ số', detail: 'Yêu cầu. Giá trị dạng số ước tính.' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. Giá trị lô-gic xác định dạng thức của phân bố xác suất được trả về. Nếu lũy tích là TRUE, thì hàm POISSON trả về xác xuất Poisson lũy tích mà một số sự kiện ngẫu nhiên sẽ xảy ra từ không đến x, bao gồm cả không và x; nếu FALSE, nó trả về hàm khối xác xuất Poission mà số sự kiện xảy ra sẽ chính xác là x.' }, }, }, 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)', + description: 'Trả về tứ phân vị của tập dữ liệu. Tứ phân vị được dùng trong dữ liệu khảo sát và bán hàng để chia tập hợp thành các nhóm. Ví dụ, bạn có thể dùng hàm QUARTILE để tìm ra 25% số người có thu nhập cao nhất trong một tập hợp dân cư.', + abstract: 'Trả về tứ phân vị của tập dữ liệu. Tứ phân vị được dùng trong dữ liệu khảo sát và bán hàng để chia tập hợp thành các nhóm. Ví dụ, bạn có thể dùng hàm QUARTILE để tìm ra 25% số người có thu nhập cao nhất trong một tập hợp dân cư.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/quartile-function', }, ], 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ề.' }, + array: { name: 'mảng', detail: 'Yêu cầu. Mảng hoặc phạm vi ô có chứa các giá trị số mà bạn muốn tìm giá trị tứ phân vị.' }, + quart: { name: 'giá trị tứ phân', detail: 'Yêu cầu. Chỉ rõ giá trị nào 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ố', + description: 'Trả về thứ hạng của một số trong danh sách các số. Thứ hạng của số là kích thước của nó trong tương quan với các giá trị khác trong danh sách. (Nếu bạn cần sắp xếp danh sách, thì thứ hạng của số là vị trí của nó).', + abstract: 'Trả về thứ hạng của một số trong danh sách các số. Thứ hạng của số là kích thước của nó trong tương quan với các giá trị khác trong danh sách. (Nếu bạn cần sắp xếp danh sách, thì thứ hạng của số là vị trí của nó).', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rank-function', }, ], 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.' }, + number: { name: 'số', detail: 'Yêu cầu. Số mà bạn muốn tìm thứ hạng của nó.' }, + ref: { name: 'danh sách các số', detail: 'Yêu cầu. 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: 'Tùy chọn. Một con số chỉ rõ cách xếp hạng số. Nếu thứ tự là 0 (không) hoặc được bỏ qua, thì Microsoft Excel xếp hạng số giống như khi tham chiếu là một danh sách theo thứ tự giảm dần. Nếu thứ tự là bất kỳ giá trị nào khác không, thì Microsoft Excel xếp hạng số giống như khi tham chiếu là một danh sách theo 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', + 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. Độ 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 độ).', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdev-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Yêu cầu. Đối số dạng số đầu tiên tương ứng với mẫu tổng thể.' }, + number2: { name: 'number2', detail: 'Tùy chọn. Đối số dạng số từ 2 đến 255 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.' }, }, }, 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ố', + 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ố. Độ 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: '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ố. Độ 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 độ).', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdevp-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Yêu cầu. Đối số dạng số đầu tiên tương ứng với tổng thể.' }, + number2: { name: 'number2', detail: 'Tùy chọn. Đối số dạng số từ 2 đến 255 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.' }, }, }, 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', + description: 'Trả về các Điểm Phần trăm (xác suất) cho phân bố t Student, trong đó giá trị số (x) là giá trị tính toán của t và được dùng để tính các Điểm Phần trăm. Phân bố t được dùng trong kiểm tra giả thuyết của các tập dữ liệu mẫu có số lượng nhỏ. Hàm này được dùng thay cho bảng các giá trị cực độ của phân phối t.', + abstract: 'Trả về các Điểm Phần trăm (xác suất) cho phân bố t Student, trong đó giá trị số (x) là giá trị tính toán của t và được dùng để tính các Điểm Phần trăm. Phân bố t được dùng trong kiểm tra giả thuyết của các tập dữ liệu mẫu có số lượng nhỏ. Hàm này được dùng thay cho bảng các giá trị cực độ của phân phối t.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tdist-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Giá trị số dùng để đánh giá phân bố.' }, + degFreedom: { name: 'bậc tự do', detail: 'Yêu cầu. Là một số nguyên cho biết số bậc tự do.' }, + tails: { name: 'đặc điểm đuôi', detail: 'Yêu cầu. 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)', + description: 'Trả về nghịch đảo hai phía của phân bố t Student.', + abstract: 'Trả về nghịch đảo hai phía của phân bố t Student.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tinv-function', }, ], 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.' }, + probability: { name: 'xác suất', detail: 'Yêu cầu. Xác xuất kết hợp với phân bố t Student hai phía.' }, + degFreedom: { name: 'bậc tự do', detail: 'Yêu cầu. Số bậc tự do biểu thị đặc điểm của phân bố.' }, }, }, 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.', + description: 'Trả về xác suất kết hợp với Phép thử t Student. Dùng hàm TTEST để xác định xem hai mẫu thử có xuất phát từ hai tập hợp gốc có cùng giá trị trung bình hay không.', + abstract: 'Trả về xác suất kết hợp với Phép thử t Student. Dùng hàm TTEST để xác định xem hai mẫu thử có xuất phát từ hai tập hợp gốc có cùng giá trị trung bình hay không.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ttest-function', }, ], 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.' }, + array1: { name: 'mảng 1', detail: 'Yêu cầu. Tập dữ liệu thứ nhất.' }, + array2: { name: 'mảng 2', detail: 'Yêu cầu. Tập dữ liệu thứ hai.' }, + tails: { name: 'đặc điểm đuôi', detail: 'Yêu cầu. Xác định số phần dư của phân bố. Nếu tails = 1, hàm TTEST dùng phân bố một phía. Nếu tails = 2, hàm TTEST dùng phân bố hai phía.' }, + type: { name: 'loại Phép thử', detail: 'Yêu cầu. Kiểu phép thử t-Test 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', + 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/var-%E5%87%BD%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/vi-vn/excel/functions/var-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Yêu cầu. Đối số dạng số đầu tiên tương ứng với mẫu tổng thể.' }, + number2: { name: 'number2', detail: 'Tùy chọn. Là các đối số dạng số từ 2 đến 255 tương ứng với một mẫu của một tập hợp.' }, }, }, 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ể', + 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/varp-%E5%87%BD%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/vi-vn/excel/functions/varp-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Yêu cầu. Đối số dạng số đầu tiên tương ứng với tổng thể.' }, + number2: { name: 'number2', detail: 'Tùy chọn. Là các đối số dạng số từ 2 đến 255 tương ứng với một tập hợp.' }, }, }, WEIBULL: { - description: 'Trả về phân bố Weibull.', - abstract: 'Trả về phân bố Weibull.', + description: 'Trả về phân bố Weibull. Dùng phân bố này trong phân tích độ tin cậy, chẳng hạn như tính toán tuổi thọ trung bình của một thiết bị.', + abstract: 'Trả về phân bố Weibull. Dùng phân bố này trong phân tích độ tin cậy, chẳng hạn như tính toán tuổi thọ trung bình của một thiết bị.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/weibull-function', }, ], 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.' }, + x: { name: 'x', detail: 'buộc. Giá trị để đánh giá hàm.' }, + alpha: { name: 'alpha', detail: 'Yêu cầu. Một tham biến tới phân phối.' }, + beta: { name: 'beta', detail: 'Yêu cầu. Một tham biến tới phân phối.' }, + cumulative: { name: 'tích lũy', detail: 'Yêu cầu. Xác định dạng hàm.' }, }, }, 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.', + description: 'Trả về giá trị xác suất một phía của kiểm tra z. Đối với một trung bình tổng thể giả thuyết nhất định, μ0, hàm ZTEST trả về xác suất rằng trung độ mẫu sẽ lớn hơn trung bình quan sát trong bộ dữ liệu (mảng) — tức là, trung độ mẫu quan sát được.', + abstract: 'Trả về giá trị xác suất một phía của kiểm tra z. Đối với một trung bình tổng thể giả thuyết nhất định, μ0, hàm ZTEST trả về xác suất rằng trung độ mẫu sẽ lớn hơn trung bình quan sát trong bộ dữ liệu (mảng) — tức là, trung độ mẫu quan sát được.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ztest-function', }, ], 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.' }, + array: { name: 'mảng', detail: 'Yêu cầu. Mảng hay khoảng dữ liệu để kiểm tra x.' }, + x: { name: 'x', detail: 'buộc. Giá trị cần kiểm tra.' }, + sigma: { name: 'Độ lệch chuẩn', detail: 'Tùy chọn. Độ lệch chuẩn tổng thể (đã biết). Nếu bỏ qua, độ lệch chuẩn mẫu sẽ được dùng.' }, }, }, - }; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/compatibility/zh-CN.ts index 9080472555..925b6e263a 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/zh-CN.ts @@ -18,95 +18,95 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: '返回 beta 累积分布函数', - abstract: '返回 beta 累积分布函数', + description: '返回累积 beta 概率密度函数。 Beta 分布通常用于研究样本中一定部分的变化情况,例如,人们一天中看电视的时间比率。', + abstract: '返回累积 beta 概率密度函数。 Beta 分布通常用于研究样本中一定部分的变化情况,例如,人们一天中看电视的时间比率。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/betadist-%E5%87%BD%E6%95%B0-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/zh-cn/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: '值', detail: '用来计算其函数的值,介于下限值和上限值之间。' }, - alpha: { name: 'alpha', detail: '分布的第一个参数。' }, - beta: { name: 'beta', detail: '分布的第二个参数。' }, - A: { name: '下限', detail: '函数的下限,默认值为 0。' }, - B: { name: '上限', detail: '函数的上限,默认值为 1。' }, + x: { name: '值', detail: '必需。 用来计算其函数的值,介于值 A 和 B 之间。' }, + alpha: { name: 'alpha', detail: '必填。 分布参数。' }, + beta: { name: 'beta', detail: '必填。 分布参数。' }, + A: { name: '下限', detail: '可选。 x 所属区间的下界。' }, + B: { name: '上限', detail: '可选。 x 所属区间的上界。' }, }, }, BETAINV: { - description: '返回指定 beta 分布的累积分布函数的反函数', - abstract: '返回指定 beta 分布的累积分布函数的反函数', + description: '返回指定 beta 分布的累积 beta 概率密度函数的反函数。 也就是说,如果 probability = BETADIST(x,...),则 BETAINV(probability,...) = x。 beta 分布函数可用于项目设计,在已知预期的完成时间和变化参数后,模拟可能的完成时间。', + abstract: '返回指定 beta 分布的累积 beta 概率密度函数的反函数。 也就是说,如果 probability = BETADIST(x,...),则 BETAINV(probability,...) = x。 beta 分布函数可用于项目设计,在已知预期的完成时间和变化参数后,模拟可能的完成时间。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/betainv-%E5%87%BD%E6%95%B0-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '与 beta 分布相关的概率。' }, - alpha: { name: 'alpha', detail: '分布的第一个参数。' }, - beta: { name: 'beta', detail: '分布的第二个参数。' }, - A: { name: '下限', detail: '函数的下限,默认值为 0。' }, - B: { name: '上限', detail: '函数的上限,默认值为 1。' }, + probability: { name: '概率', detail: '必填。 与 beta 分布相关的概率。' }, + alpha: { name: 'alpha', detail: '必填。 分布参数。' }, + beta: { name: 'beta', detail: '必填。 分布参数。' }, + A: { name: '下限', detail: '可选。 x 所属区间的下界。' }, + B: { name: '上限', detail: '可选。 x 所属区间的上界。' }, }, }, BINOMDIST: { - description: '返回一元二项式分布的概率', - abstract: '返回一元二项式分布的概率', + description: '返回一元二项式分布的概率。 BINOMDIST 用于处理固定次数的试验或实验问题,前提是任意试验的结果仅为成功或失败两种情况,实验是独立实验,且在整个试验过程中成功的概率固定不变。 例如,BINOMDIST 可以计算三个即将出生的婴儿中两个是男孩的概率。', + abstract: '返回一元二项式分布的概率。 BINOMDIST 用于处理固定次数的试验或实验问题,前提是任意试验的结果仅为成功或失败两种情况,实验是独立实验,且在整个试验过程中成功的概率固定不变。 例如,BINOMDIST 可以计算三个即将出生的婴儿中两个是男孩的概率。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/binomdist-%E5%87%BD%E6%95%B0-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: '成功次数', detail: '试验的成功次数。' }, - trials: { name: '试验次数', detail: '独立试验次数。' }, - probabilityS: { name: '成功概率', detail: '每次试验成功的概率。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。如果为 TRUE,则 BINOMDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + numberS: { name: '成功次数', detail: '必填。 试验的成功次数。' }, + trials: { name: '试验次数', detail: '必填。 独立试验次数。' }, + probabilityS: { name: '成功概率', detail: '必填。 每次试验成功的概率。' }, + cumulative: { name: '累积', detail: '必填。 决定函数形式的逻辑值。 如果 cumulative 为 TRUE,则 BINOMDIST 返回累积分布函数,即最多存在 number_s 次成功的概率;如果为 FALSE,则返回概率密度函数,即存在 number_s 次成功的概率。' }, }, }, CHIDIST: { - description: '返回 χ2 分布的右尾概率。', - abstract: '返回 χ2 分布的右尾概率。', + description: '返回 χ2 分布的右尾概率。 χ2 分布与 χ2 测试相关联。 使用 χ2 测试可比较观察值和预期值。 例如,某项遗传学实验可能假设下一代植物将呈现出某一组颜色。 通过使用该函数比较观察结果和理论值,可以确定初始假设是否有效。', + abstract: '返回 χ2 分布的右尾概率。 χ2 分布与 χ2 测试相关联。 使用 χ2 测试可比较观察值和预期值。 例如,某项遗传学实验可能假设下一代植物将呈现出某一组颜色。 通过使用该函数比较观察结果和理论值,可以确定初始假设是否有效。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chidist-%E5%87%BD%E6%95%B0-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: '值', detail: '用来计算分布的数值。' }, - degFreedom: { name: '自由度', detail: '自由度数。' }, + x: { name: '值', detail: '必需。 用来计算分布的数值。' }, + degFreedom: { name: '自由度', detail: '必填。 自由度数。' }, }, }, CHIINV: { - description: '返回 χ2 分布的右尾概率的反函数。', - abstract: '返回 χ2 分布的右尾概率的反函数。', + description: '返回 χ2 分布的右尾概率的反函数。 如果 probability = CHIDIST(x,...),则 CHIINV(probability,...) = x。 使用此函数可比较观察结果与理论值,以确定初始假设是否有效。', + abstract: '返回 χ2 分布的右尾概率的反函数。 如果 probability = CHIDIST(x,...),则 CHIINV(probability,...) = x。 使用此函数可比较观察结果与理论值,以确定初始假设是否有效。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chiinv-%E5%87%BD%E6%95%B0-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '与 χ2 分布相关联的概率。' }, - degFreedom: { name: '自由度', detail: '自由度数。' }, + probability: { name: '概率', detail: '必填。 与 χ2 分布相关联的概率。' }, + degFreedom: { name: '自由度', detail: '必填。 自由度数。' }, }, }, CHITEST: { - description: '返回独立性检验值', - abstract: '返回独立性检验值', + description: '返回独立性检验值。 CHITEST 返回卡方 (χ2) 分布的统计值和相应的自由度数。 您可以使用 χ2 检验值确定假设结果是否经过实验验证。', + abstract: '返回独立性检验值。 CHITEST 返回卡方 (χ2) 分布的统计值和相应的自由度数。 您可以使用 χ2 检验值确定假设结果是否经过实验验证。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chitest-%E5%87%BD%E6%95%B0-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: '观察范围', detail: '包含观察值的数据区域,用于检验预期值。' }, - expectedRange: { name: '预期范围', detail: '包含行列汇总的乘积与总计值之比率的数据区域。' }, + actualRange: { name: '观察范围', detail: '必填。 包含观察值的数据区域,用于检验预期值。' }, + expectedRange: { name: '预期范围', detail: '必填。 包含行列汇总的乘积与总计值之比率的数据区域。' }, }, }, CONFIDENCE: { @@ -115,472 +115,469 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/confidence-%E5%87%BD%E6%95%B0-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alpha', detail: '用来计算置信水平的显著性水平。 置信水平等于 100*(1 - alpha)%,亦即,如果 alpha 为 0.05,则置信水平为 95%。' }, - standardDev: { name: '总体标准偏差', detail: '数据区域的总体标准偏差,假定为已知。' }, - size: { name: '样本大小', detail: '样本大小。' }, + alpha: { name: 'alpha', detail: '必填。 用来计算置信水平的显著性水平。 置信水平等于 100*(1 - alpha)%,亦即,如果 alpha 为 0.05,则置信水平为 95%。' }, + standardDev: { name: '总体标准偏差', detail: '必填。 数据区域的总体标准偏差,假定为已知。' }, + size: { name: '样本大小', detail: '必填。 样本大小。' }, }, }, COVAR: { - description: '返回总体协方差,即两个数据集中每对数据点的偏差乘积的平均值。', - abstract: '返回总体协方差', + description: '返回协方差,即两个数据集中每个数据点对的偏差积的平均值。', + abstract: '返回协方差,即两个数据集中每个数据点对的偏差积的平均值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/covar-%E5%87%BD%E6%95%B0-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/zh-cn/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: '数组1', detail: '第一个单元格值区域。' }, - array2: { name: '数组2', detail: '第二个单元格值区域。' }, + array1: { name: '数组1', detail: '必填。 整数的第一个单元格区域。' }, + array2: { name: '数组2', detail: '必填。 整数的第二个单元格区域。' }, }, }, CRITBINOM: { - description: '返回使累积二项式分布小于或等于临界值的最小值', - abstract: '返回使累积二项式分布小于或等于临界值的最小值', + description: '返回一个数值,它是使得累积二项式分布的函数值大于等于临界值的最小整数。 此函数可用于质量检验。 例如,使用 CRITBINOM 来决定装配线上整批产品达到检验合格所允许的最多残次品个数。', + abstract: '返回一个数值,它是使得累积二项式分布的函数值大于等于临界值的最小整数。 此函数可用于质量检验。 例如,使用 CRITBINOM 来决定装配线上整批产品达到检验合格所允许的最多残次品个数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/critbinom-%E5%87%BD%E6%95%B0-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: '试验次数', detail: '伯努利试验的次数。' }, - probabilityS: { name: '成功概率', detail: '每次试验成功的概率。' }, - alpha: { name: '目标概率', detail: '临界值。' }, + trials: { name: '试验次数', detail: '必填。 贝努利试验次数。' }, + probabilityS: { name: '成功概率', detail: '必填。 一次试验中成功的概率。' }, + alpha: { name: '目标概率', detail: '必填。 临界值。' }, }, }, EXPONDIST: { - description: '返回指数分布', - abstract: '返回指数分布', + description: '返回指数分布。 使用 EXPONDIST 可以建立事件之间的时间间隔模型,如银行自动提款机支付一次现金所花费的时间。 例如,可通过 EXPONDIST 来确定这一过程最长持续一分钟的发生概率。', + abstract: '返回指数分布。 使用 EXPONDIST 可以建立事件之间的时间间隔模型,如银行自动提款机支付一次现金所花费的时间。 例如,可通过 EXPONDIST 来确定这一过程最长持续一分钟的发生概率。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/expondist-%E5%87%BD%E6%95%B0-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: '值', detail: '用来计算分布的数值。' }, - lambda: { name: 'lambda', detail: '参数值。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。 如果为 TRUE,则 EXPONDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: '值', detail: '必需。 函数值。' }, + lambda: { name: 'lambda', detail: '必填。 参数值。' }, + cumulative: { name: '累积', detail: '必填。 逻辑值,用于指定指数函数的形式。 如果 cumulative 为 TRUE,则 EXPONDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, }, }, FDIST: { - description: '返回 F 概率分布(右尾)', - abstract: '返回 F 概率分布(右尾)', + description: '返回两个数据集的(右尾)F 概率分布(变化程度)。 使用此函数可以确定两组数据是否存在变化程度上的不同。 例如,分析进入中学的男生、女生的考试分数,来确定女生分数的变化程度是否与男生不同。', + abstract: '返回两个数据集的(右尾)F 概率分布(变化程度)。 使用此函数可以确定两组数据是否存在变化程度上的不同。 例如,分析进入中学的男生、女生的考试分数,来确定女生分数的变化程度是否与男生不同。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fdist-%E5%87%BD%E6%95%B0-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: '值', detail: '用来计算函数的值。' }, - degFreedom1: { name: '分子自由度', detail: '分子自由度。' }, - degFreedom2: { name: '分母自由度', detail: '分母自由度。' }, + x: { name: '值', detail: '必需。 用来计算函数的值。' }, + degFreedom1: { name: '分子自由度', detail: '必填。 分子自由度。' }, + degFreedom2: { name: '分母自由度', detail: '必填。 分母自由度。' }, }, }, FINV: { - description: '返回 F 概率分布(右尾)的反函数', - abstract: '返回 F 概率分布(右尾)的反函数', + description: '返回(右尾)F 概率分布函数的反函数值。 如果 p = FDIST(x,...),则 FINV(p,...) = x。', + abstract: '返回(右尾)F 概率分布函数的反函数值。 如果 p = FDIST(x,...),则 FINV(p,...) = x。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/finv-%E5%87%BD%E6%95%B0-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: '概率', detail: 'F 累积分布的概率值。' }, - degFreedom1: { name: '分子自由度', detail: '分子自由度。' }, - degFreedom2: { name: '分母自由度', detail: '分母自由度。' }, + probability: { name: '概率', detail: '必填。 F 累积分布的概率值。' }, + degFreedom1: { name: '分子自由度', detail: '必填。 分子自由度。' }, + degFreedom2: { name: '分母自由度', detail: '必填。 分母自由度。' }, }, }, FTEST: { - description: '返回 F 检验的结果', - abstract: '返回 F 检验的结果', + description: '返回 F 测试的结果。 F 测试返回 array1 和 array2 中的方差没有明显差异的双尾概率。 使用此函数可确定两个示例是否有不同的方差。 例如,给定公立和私立学校的测验分数,可以检验各学校间测验分数的差别程度。', + abstract: '返回 F 测试的结果。 F 测试返回 array1 和 array2 中的方差没有明显差异的双尾概率。 使用此函数可确定两个示例是否有不同的方差。 例如,给定公立和私立学校的测验分数,可以检验各学校间测验分数的差别程度。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ftest-%E5%87%BD%E6%95%B0-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: '数组1', detail: '第一个数据数组或数据范围。' }, - array2: { name: '数组2', detail: '第二个数据数组或数据范围。' }, + array1: { name: '数组1', detail: '必填。 第一个数组或数据区域。' }, + array2: { name: '数组2', detail: '必填。 第二个数组或数据区域。' }, }, }, GAMMADIST: { - description: '返回 γ 分布', - abstract: '返回 γ 分布', + description: '返回伽玛分布函数的函数值。 可以使用此函数来研究呈斜分布的变量。 伽玛分布通常用于排队分析。', + abstract: '返回伽玛分布函数的函数值。 可以使用此函数来研究呈斜分布的变量。 伽玛分布通常用于排队分析。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gammadist-%E5%87%BD%E6%95%B0-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算其分布的数值。' }, - alpha: { name: 'alpha', detail: '分布的第一个参数。' }, - beta: { name: 'beta', detail: '分布的第二个参数。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。如果为TRUE,则 GAMMADIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: 'x', detail: '必需。 用来计算分布的数值。' }, + alpha: { name: 'alpha', detail: '必填。 分布参数。' }, + beta: { name: 'beta', detail: '必填。 分布参数。 如果 beta = 1,则 GAMMADIST 返回标准伽玛分布。' }, + cumulative: { name: '累积', detail: '必填。 决定函数形式的逻辑值。 如果 cumulative 为 TRUE,则 GAMMADIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, }, }, GAMMAINV: { - description: '返回 γ 累积分布函数的反函数', - abstract: '返回 γ 累积分布函数的反函数', + description: '返回伽玛累积分布函数的反函数值。 如果 p = GAMMADIST(x,...),则 GAMMAINV(p,...) = x。 使用此函数可以研究有可能呈斜分布的变量。', + abstract: '返回伽玛累积分布函数的反函数值。 如果 p = GAMMADIST(x,...),则 GAMMAINV(p,...) = x。 使用此函数可以研究有可能呈斜分布的变量。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gammainv-%E5%87%BD%E6%95%B0-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '与伽玛分布相关的概率。' }, - alpha: { name: 'alpha', detail: '分布的第一个参数。' }, - beta: { name: 'beta', detail: '分布的第二个参数。' }, + probability: { name: '概率', detail: '必填。 伽玛分布相关的概率。' }, + alpha: { name: 'alpha', detail: '必填。 分布参数。' }, + beta: { name: 'beta', detail: '必填。 分布参数。 如果 beta = 1,则 GAMMAINV 返回标准伽玛分布。' }, }, }, HYPGEOMDIST: { - description: '返回超几何分布', - abstract: '返回超几何分布', + description: '返回超几何分布。 如果已知样本量、总体成功次数和总体大小,则 HYPGEOMDIST 返回样本取得已知成功次数的概率。 HYPGEOMDIST 用于处理以下的有限总体问题,在该有限总体中,每次观察结果或为成功或为失败,并且已知样本量的每个子集的选取是等可能的。', + abstract: '返回超几何分布。 如果已知样本量、总体成功次数和总体大小,则 HYPGEOMDIST 返回样本取得已知成功次数的概率。 HYPGEOMDIST 用于处理以下的有限总体问题,在该有限总体中,每次观察结果或为成功或为失败,并且已知样本量的每个子集的选取是等可能的。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hypgeomdist-%E5%87%BD%E6%95%B0-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: '样本成功次数', detail: '样本中成功的次数。' }, - numberSample: { name: '样本大小', detail: '样本大小。' }, - populationS: { name: '总体成功次数', detail: '总体中成功的次数。' }, - numberPop: { name: '总体大小', detail: '总体大小。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。如果为TRUE,则 HYPGEOMDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + sampleS: { name: '样本成功次数', detail: '必填。 样本中成功的次数。' }, + numberSample: { name: '样本大小', detail: '必填。 样本量。' }, + populationS: { name: '总体成功次数', detail: '必填。 总体中成功的次数。' }, + numberPop: { name: '总体大小', detail: '必填。 总体大小。' }, }, }, LOGINV: { - description: '返回对数正态累积分布的反函数', - abstract: '返回对数正态累积分布的反函数', + description: '返回 x 的对数累积分布函数的反函数值,此处的 ln(x) 是服从参数 mean 和 standard_dev 的正态分布。 如果 p = LOGNORMDIST(x,...),则 LOGINV(p,...) = x。', + abstract: '返回 x 的对数累积分布函数的反函数值,此处的 ln(x) 是服从参数 mean 和 standard_dev 的正态分布。 如果 p = LOGNORMDIST(x,...),则 LOGINV(p,...) = x。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/loginv-%E5%87%BD%E6%95%B0-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '对应于对数正态分布的概率。' }, - mean: { name: '平均值', detail: '分布的算术平均值。' }, - standardDev: { name: '标准偏差', detail: '分布的标准偏差。' }, + probability: { name: '概率', detail: '必填。 与对数分布相关的概率。' }, + mean: { name: '平均值', detail: '必填。 ln(x) 的平均值。' }, + standardDev: { name: '标准偏差', detail: '必填。 ln(x) 的标准偏差。' }, }, }, LOGNORMDIST: { - description: '返回对数正态累积分布', - abstract: '返回对数正态累积分布', + description: '返回 x 的对数累积分布函数的函数值,此处的 ln(x) 是服从参数 mean 和 standard_dev 的正态分布。 使用此函数可以分析经过对数变换的数据。', + abstract: '返回 x 的对数累积分布函数的函数值,此处的 ln(x) 是服从参数 mean 和 standard_dev 的正态分布。 使用此函数可以分析经过对数变换的数据。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lognormdist-%E5%87%BD%E6%95%B0-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算其分布的数值。' }, - mean: { name: '平均值', detail: '分布的算术平均值。' }, - standardDev: { name: '标准偏差', detail: '分布的标准偏差。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。 如果为 TRUE,则 LOGNORMDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: 'x', detail: '必需。 用来计算函数的值。' }, + mean: { name: '平均值', detail: '必填。 ln(x) 的平均值。' }, + standardDev: { name: '标准偏差', detail: '必填。 ln(x) 的标准偏差。' }, }, }, MODE: { - description: '返回在数据集内出现次数最多的值', - abstract: '返回在数据集内出现次数最多的值', + description: '假设你想要找出 30 年内在关键湿地的鸟类计数样本中发现的最常见的鸟类物种数量,或者想要找出非高峰时段电话支持中心最常发生的电话次数。 若要计算一组数字的模式,请使用 MODE 函数。', + abstract: '假设你想要找出 30 年内在关键湿地的鸟类计数样本中发现的最常见的鸟类物种数量,或者想要找出非高峰时段电话支持中心最常发生的电话次数。 若要计算一组数字的模式,请使用 MODE 函数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mode-%E5%87%BD%E6%95%B0-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: '数值 1', detail: '要计算众数的第一个数字、单元格引用或单元格区域。' }, - number2: { name: '数值 2', detail: '要计算众数的其他数字、单元格引用或单元格区域,最多可包含 255 个。' }, + number1: { name: '数值 1', detail: '必填。 要计算其众数的第一个数字参数。' }, + number2: { name: '数值 2', detail: '选。 要计算其众数的 2 到 255 个数字参数。 也可以用单一数组或对某个数组的引用来代替用逗号分隔的参数。' }, }, }, NEGBINOMDIST: { - description: '返回负二项式分布', - abstract: '返回负二项式分布', + description: '返回负二项式分布。 当成功概率为常量 probability_s 时,NEGBINOMDIST 返回在达到 number_s 次成功之前,出现 number_f 次失败的概率。 此函数与二项式分布相似,只是它的成功次数固定,试验次数为变量。 与二项式分布相同的是,二者均假定试验是独立的。', + abstract: '返回负二项式分布。 当成功概率为常量 probability_s 时,NEGBINOMDIST 返回在达到 number_s 次成功之前,出现 number_f 次失败的概率。 此函数与二项式分布相似,只是它的成功次数固定,试验次数为变量。 与二项式分布相同的是,二者均假定试验是独立的。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/negbinomdist-%E5%87%BD%E6%95%B0-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/zh-cn/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: '失败次数', detail: '失败的次数。' }, - numberS: { name: '成功次数', detail: '成功次数的阈值。' }, - probabilityS: { name: '成功概率', detail: '成功的概率。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。 如果为 TRUE,则 NEGBINOMDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + numberF: { name: '失败次数', detail: '必填。 失败的次数。' }, + numberS: { name: '成功次数', detail: '必填。 成功次数的阈值。' }, + probabilityS: { name: '成功概率', detail: '必填。 成功的概率。' }, }, }, NORMDIST: { - description: '返回正态累积分布', - abstract: '返回正态累积分布', + description: 'NORMDIST 函数返回指定平均值和标准偏差的正态分布。 此函数在统计(包括假设测试)中具有广泛的应用。', + abstract: 'NORMDIST 函数返回指定平均值和标准偏差的正态分布。 此函数在统计(包括假设测试)中具有广泛的应用。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/normdist-%E5%87%BD%E6%95%B0-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/zh-cn/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算其分布的数值。' }, - mean: { name: '平均值', detail: '分布的算术平均值。' }, - standardDev: { name: '标准偏差', detail: '分布的标准偏差。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。 如果为 TRUE,则 NORMDIST 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: 'x', detail: '必需。 要为其分配的值' }, + mean: { name: '平均值', detail: '必填。 分布的算术平均值' }, + standardDev: { name: '标准偏差', detail: '必填。 分布的标准偏差' }, + cumulative: { name: '累积', detail: '必填。 决定函数形式的逻辑值。 如果 cumulative 为 TRUE,则 NORMDIST 返回累积分布函数;如果 cumulative 为 FALSE,则返回概率质量函数。' }, }, }, NORMINV: { - description: '返回正态累积分布的反函数', - abstract: '返回正态累积分布的反函数', + description: '返回指定平均值和标准偏差的正态累积分布函数的反函数值。', + abstract: '返回指定平均值和标准偏差的正态累积分布函数的反函数值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/norminv-%E5%87%BD%E6%95%B0-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/norminv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '对应于正态分布的概率。' }, - mean: { name: '平均值', detail: '分布的算术平均值。' }, - standardDev: { name: '标准偏差', detail: '分布的标准偏差。' }, + probability: { name: '概率', detail: '必填。 对应于正态分布的概率。' }, + mean: { name: '平均值', detail: '必填。 分布的算术平均值。' }, + standardDev: { name: '标准偏差', detail: '必填。 分布的标准偏差。' }, }, }, NORMSDIST: { - description: '返回标准正态累积分布', - abstract: '返回标准正态累积分布', + description: '返回标准正态累积分布函数的函数值。 该分布的平均值为 0(零),标准偏差为 1。 可以使用此函数代替标准正态曲线面积表。', + abstract: '返回标准正态累积分布函数的函数值。 该分布的平均值为 0(零),标准偏差为 1。 可以使用此函数代替标准正态曲线面积表。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/normsdist-%E5%87%BD%E6%95%B0-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/zh-cn/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: '需要计算其分布的数值。' }, + z: { name: 'z', detail: '必需。 需要计算其分布的数值。' }, }, }, NORMSINV: { - description: '返回标准正态累积分布函数的反函数', - abstract: '返回标准正态累积分布函数的反函数', + description: '返回标准正态累积分布函数的反函数值。 该分布的平均值为 0,标准偏差为 1。', + abstract: '返回标准正态累积分布函数的反函数值。 该分布的平均值为 0,标准偏差为 1。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/normsinv-%E5%87%BD%E6%95%B0-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '对应于正态分布的概率。' }, + probability: { name: '概率', detail: '必填。 对应于正态分布的概率。' }, }, }, PERCENTILE: { - description: '返回数据集中第 k 个百分点的值 (包含 0 和 1)', - abstract: '返回数据集中第 k 个百分点的值 (包含 0 和 1)', + description: '返回区域中数值的第 k 个百分点的值。 可以使用此函数来确定接受的阈值。 例如,可以决定检查得分高于第 90 个百分点的候选人。', + abstract: '返回区域中数值的第 k 个百分点的值。 可以使用此函数来确定接受的阈值。 例如,可以决定检查得分高于第 90 个百分点的候选人。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentile-%E5%87%BD%E6%95%B0-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: '数组', detail: '定义相对位置的数组或数据区域。' }, - k: { name: 'k', detail: '0 到 1 之间的百分点值 (包含 0 和 1)。' }, + array: { name: '数组', detail: '必填。 定义相对位置的数组或数据区域。' }, + k: { name: 'k', detail: '必需。 0 到 1 之间的百分点值,包含 0 和 1。' }, }, }, PERCENTRANK: { - description: '返回数据集中值的百分比排位 (包含 0 和 1)', - abstract: '返回数据集中值的百分比排位 (包含 0 和 1)', + description: 'PERCENTRANK 函数以数据集的百分比形式返回数据集中某个值的排名,实质上是整个数据集中某个值的相对位置。 例如,可以使用 PERCENTRANK 来确定个人测试分数在同一测试的所有分数字段中的地位。', + abstract: 'PERCENTRANK 函数以数据集的百分比形式返回数据集中某个值的排名,实质上是整个数据集中某个值的相对位置。 例如,可以使用 PERCENTRANK 来确定个人测试分数在同一测试的所有分数字段中的地位。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentrank-%E5%87%BD%E6%95%B0-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: '数组', detail: '定义相对位置的数组或数据区域。' }, - x: { name: 'x', detail: '需要得到其排位的值。' }, - significance: { name: '有效位数', detail: '用于标识返回的百分比值的有效位数的值。 如果省略,则 PERCENTRANK 使用 3 位小数 (0.xxx)。' }, + array: { name: '数组', detail: '必填。 (或预定义数组的数据范围) 确定百分比秩的数值。' }, + x: { name: 'x', detail: '必需。 想要了解数组中排名的值。' }, + significance: { name: '有效位数', detail: '选。 用于标识返回的百分比值的有效位数的值。 如果省略,则 PERCENTRANK 使用 3 位小数 (0.xxx)。' }, }, }, POISSON: { - description: '返回泊松分布', - abstract: '返回泊松分布', + description: '返回泊松分布。 泊松分布的一个常见应用是预测特定时间内的事件数,例如 1 分钟内到达收费停车场的汽车数。', + abstract: '返回泊松分布。 泊松分布的一个常见应用是预测特定时间内的事件数,例如 1 分钟内到达收费停车场的汽车数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/poisson-%E5%87%BD%E6%95%B0-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算其分布的数值。' }, - mean: { name: '平均值', detail: '分布的算术平均值。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。 如果为 TRUE,则 POISSON 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: 'x', detail: '必需。 事件数。' }, + mean: { name: '平均值', detail: '必填。 期望值。' }, + cumulative: { name: '累积', detail: '必填。 一逻辑值,确定所返回的概率分布的形式。 如果 cumulative 为 TRUE,则 POISSON 返回发生的随机事件数在零(含零)和 x(含 x)之间的累积泊松概率;如果为 FALSE,则 POISSON 返回发生的事件数正好是 x 的泊松概率密度函数。' }, }, }, QUARTILE: { - description: '返回数据集的四分位数 (包含 0 和 1)', - abstract: '返回数据集的四分位数 (包含 0 和 1)', + description: '返回一组数据的四分位点。 四分位点通常用于销售和调查数据,以对总体进行分组。 例如,您可以使用 QUARTILE 查找总体中前 25% 的收入值。', + abstract: '返回一组数据的四分位点。 四分位点通常用于销售和调查数据,以对总体进行分组。 例如,您可以使用 QUARTILE 查找总体中前 25% 的收入值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/quartile-%E5%87%BD%E6%95%B0-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: '数组', detail: '要求得四分位数值的数组或数据区域。' }, - quart: { name: '四分位值', detail: '要返回的四分位数值。' }, + array: { name: '数组', detail: '必填。 要求得四分位数值的数组或数字型单元格区域。' }, + quart: { name: '四分位值', detail: '必填。 指定返回哪一个值。' }, }, }, RANK: { - description: '返回一列数字的数字排位', - abstract: '返回一列数字的数字排位', + description: '返回一列数字的数字排位。 数字的排名是其相对于列表中其他值的大小。 (如果要对列表进行排序,则数字的排名将是其位置。)', + abstract: '返回一列数字的数字排位。 数字的排名是其相对于列表中其他值的大小。 (如果要对列表进行排序,则数字的排名将是其位置。)', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rank-%E5%87%BD%E6%95%B0-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rank-function', }, ], functionParameter: { - number: { name: '数值', detail: '要找到其排位的数字。' }, - ref: { name: '数字列表', detail: '对数字列表的引用。Ref 中的非数字值会被忽略。' }, - order: { name: '排位方式', detail: '一个指定数字排位方式的数字。0 或省略为降序,非 0 为升序。' }, + number: { name: '数值', detail: '必填。 要找到其排位的数字。' }, + ref: { name: '数字列表', detail: '必填。 对数字列表的引用。 Ref 中的非数字值会被忽略。' }, + order: { name: '排位方式', detail: '选。 一个指定数字排位方式的数字。 如果 order 为 0(零)或省略,Microsoft Excel 对数字的排位是基于 ref 为按照降序排列的列表。 如果 order 不为零,Microsoft Excel 对数字的排位是基于 ref 为按照升序排列的列表。' }, }, }, STDEV: { description: '根据样本估计标准偏差。 标准偏差可以测量值在平均值(中值)附近分布的范围大小。', - abstract: '基于样本估算标准偏差', + abstract: '根据样本估计标准偏差。 标准偏差可以测量值在平均值(中值)附近分布的范围大小。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdev-%E5%87%BD%E6%95%B0-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: '数值 1', detail: '对应于总体样本的第一个数值参数。' }, - number2: { name: '数值 2', detail: '对应于总体样本的 2 到 255 个数值参数。 也可以用单一数组或对某个数组的引用来代替用逗号分隔的参数。' }, + number1: { name: '数值 1', detail: '必填。 对应于总体样本的第一个数值参数。' }, + number2: { name: '数值 2', detail: '选。 对应于总体样本的 2 到 255 个数值参数。 也可以用单一数组或对某个数组的引用来代替用逗号分隔的参数。' }, }, }, STDEVP: { - description: '根据作为参数给定的整个总体计算标准偏差。', - abstract: '基于整个样本总体计算标准偏差', + description: '根据作为参数给定的整个总体计算标准偏差。 标准偏差可以测量值在平均值(中值)附近分布的范围大小。', + abstract: '根据作为参数给定的整个总体计算标准偏差。 标准偏差可以测量值在平均值(中值)附近分布的范围大小。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdevp-%E5%87%BD%E6%95%B0-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: '数值 1', detail: '对应于总体的第一个数值参数。' }, - number2: { name: '数值 2', detail: '对应于总体的 2 到 255 个数值参数。 也可以用单一数组或对某个数组的引用来代替用逗号分隔的参数。' }, + number1: { name: '数值 1', detail: '必填。 对应于总体的第一个数值参数。' }, + number2: { name: '数值 2', detail: '选。 对应于总体的 2 到 255 个数值参数。 也可以用单一数组或对某个数组的引用来代替用逗号分隔的参数。' }, }, }, TDIST: { - description: '返回学生的 t 概率分布', - abstract: '返回学生的 t 概率分布', + description: '返回学生 t 分布的百分点(概率),其中,数字值 (x) 是用来计算百分点的 t 的计算值。 t 分布用于小型样本数据集的假设检验。 可以使用该函数代替 t 分布的临界值表。', + abstract: '返回学生 t 分布的百分点(概率),其中,数字值 (x) 是用来计算百分点的 t 的计算值。 t 分布用于小型样本数据集的假设检验。 可以使用该函数代替 t 分布的临界值表。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tdist-%E5%87%BD%E6%95%B0-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算分布的数值。' }, - degFreedom: { name: '自由度', detail: '一个表示自由度数的整数。' }, - tails: { name: '尾部特性', detail: '指定返回的分布函数是单尾分布还是双尾分布。 如果 Tails = 1,则 TDIST 返回单尾分布。 如果Tails = 2,则 TDIST 返回双尾分布。' }, + x: { name: 'x', detail: '必需。 需要计算分布的数值。' }, + degFreedom: { name: '自由度', detail: '必填。 一个表示自由度数的整数。' }, + tails: { name: '尾部特性', detail: '必填。 指定返回的分布函数是单尾分布还是双尾分布。 如果 Tails = 1,则 TDIST 返回单尾分布。 如果Tails = 2,则 TDIST 返回双尾分布。' }, }, }, TINV: { - description: '返回学生的 t 概率分布的反函数 (双尾)', - abstract: '返回学生的 t 概率分布的反函数 (双尾)', + description: '返回学生 t 分布的双尾反函数。', + abstract: '返回学生 t 分布的双尾反函数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tinv-%E5%87%BD%E6%95%B0-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: '概率', detail: '与学生的 t 分布相关的概率。' }, - degFreedom: { name: '自由度', detail: '一个表示自由度数的整数。' }, + probability: { name: '概率', detail: '必填。 与双尾学生 t 分布相关的概率。' }, + degFreedom: { name: '自由度', detail: '必填。 代表分布的自由度数。' }, }, }, TTEST: { - description: '返回与学生 t-检验相关的概率', - abstract: '返回与学生 t-检验相关的概率', + description: '返回与学生 t 检验相关的概率。 使用函数 TTEST 确定两个样本是否可能来自两个具有相同平均值的基础总体。', + abstract: '返回与学生 t 检验相关的概率。 使用函数 TTEST 确定两个样本是否可能来自两个具有相同平均值的基础总体。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ttest-%E5%87%BD%E6%95%B0-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: '数组1', detail: '第一个数据数组或数据范围。' }, - array2: { name: '数组2', detail: '第二个数据数组或数据范围。' }, - tails: { name: '尾部特性', detail: '指定分布尾数。 如果 tails = 1,则 TTEST 使用单尾分布。 如果 tails = 2,则 TTEST 使用双尾分布。' }, - type: { name: '检验类型', detail: '要执行的 t 检验的类型。' }, + array1: { name: '数组1', detail: '必填。 第一个数据集。' }, + array2: { name: '数组2', detail: '必填。 第二个数据集。' }, + tails: { name: '尾部特性', detail: '必填。 指定分布尾数。 如果 tails = 1,则 TTEST 使用单尾分布。 如果 tails = 2,则 TTEST 使用双尾分布。' }, + type: { name: '检验类型', detail: '必填。 要执行的 t 检验的类型。' }, }, }, VAR: { description: '计算基于给定样本的方差。', - abstract: '基于样本估算方差', + abstract: '计算基于给定样本的方差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/var-%E5%87%BD%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/var-function', }, ], functionParameter: { - number1: { name: '数值 1', detail: '对应于总体样本的第一个数值参数。' }, - number2: { name: '数值 2', detail: '应于总体样本的 2 到 255 个数值参数。' }, + number1: { name: '数值 1', detail: '必填。 对应于总体样本的第一个数值参数。' }, + number2: { name: '数值 2', detail: '选。 对应于总体样本的 2 到 255 个数值参数。' }, }, }, VARP: { - description: '计算基于样本总体的方差。', - abstract: '计算基于样本总体的方差', + description: '根据整个总体计算方差。', + abstract: '根据整个总体计算方差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/varp-%E5%87%BD%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: '数值 1', detail: '对应于总体的第一个数值参数。' }, - number2: { name: '数值 2', detail: '对应于总体的 2 到 255 个数值参数。' }, + number1: { name: '数值 1', detail: '必填。 对应于总体的第一个数值参数。' }, + number2: { name: '数值 2', detail: '选。 对应于总体的 2 到 255 个数值参数。' }, }, }, WEIBULL: { - description: '返回 Weibull 分布', - abstract: '返回 Weibull 分布', + description: '返回 Weibull 分布。 可以将该分布用于可靠性分析,例如计算设备出现故障的平均时间。', + abstract: '返回 Weibull 分布。 可以将该分布用于可靠性分析,例如计算设备出现故障的平均时间。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/weibull-%E5%87%BD%E6%95%B0-b83dc2c6-260b-4754-bef2-633196f6fdcc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要计算其分布的数值。' }, - alpha: { name: 'alpha', detail: '分布的第一个参数。' }, - beta: { name: 'beta', detail: '分布的第二个参数。' }, - cumulative: { name: '累积', detail: '决定函数形式的逻辑值。如果为TRUE,则 WEIBULL 返回累积分布函数;如果为 FALSE,则返回概率密度函数。' }, + x: { name: 'x', detail: '必需。 用来计算函数的值。' }, + alpha: { name: 'alpha', detail: '必填。 分布参数。' }, + beta: { name: 'beta', detail: '必填。 分布参数。' }, + cumulative: { name: '累积', detail: '必填。 确定函数的形式。' }, }, }, ZTEST: { - description: '返回 z 检验的单尾概率值', - abstract: '返回 z 检验的单尾概率值', + description: '返回 z 检验的单尾概率值。 对于给定的假设总体平均值 μ0,ZTEST 返回样本平均值大于数据集(数组)中观察平均值的概率,即观察样本平均值。', + abstract: '返回 z 检验的单尾概率值。 对于给定的假设总体平均值 μ0,ZTEST 返回样本平均值大于数据集(数组)中观察平均值的概率,即观察样本平均值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ztest-%E5%87%BD%E6%95%B0-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: '数组', detail: '用来检验 x 的数组或数据区域。' }, - x: { name: 'x', detail: '要测试的值。' }, - sigma: { name: '标准偏差', detail: '总体(已知)标准偏差。 如果省略,则使用样本标准偏差。' }, + array: { name: '数组', detail: '必填。 用来检验 x 的数组或数据区域。' }, + x: { name: 'x', detail: '必需。 要测试的值。' }, + sigma: { name: '标准偏差', detail: '选。 总体(已知)标准偏差。 如果省略,则使用样本标准偏差。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/compatibility/zh-TW.ts index a13491cafe..3fd47693ee 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/compatibility/zh-TW.ts @@ -18,567 +18,566 @@ import type enUS from './en-US'; const locale: typeof enUS = { BETADIST: { - description: '傳回 beta 累積分佈函數', - abstract: '傳回 beta 累積分佈函數', + description: '傳回累加 beta 機率密度函數。 beta 分配常用來研究不同樣本之間的變異程度百分比,例如研究大眾每日花在看電視的部分時間。', + abstract: '傳回累加 beta 機率密度函數。 beta 分配常用來研究不同樣本之間的變異程度百分比,例如研究大眾每日花在看電視的部分時間。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/betadist-%E5%87%BD%E6%95%B0-49f1b9a9-a5da-470f-8077-5f1730b5fd47', + url: 'https://support.microsoft.com/zh-tw/excel/functions/betadist-function', }, ], functionParameter: { - x: { name: '值', detail: '用來計算其函數的值,介於下限值和上限值之間。' }, - alpha: { name: 'alpha', detail: '分佈的第一個參數。' }, - beta: { name: 'beta', detail: '分佈的第二個參數。' }, - A: { name: '下限', detail: '函數的下限,預設值為 0。' }, - B: { name: '上限', detail: '函數的上限,預設值為 1。' }, + x: { name: '值', detail: '需要 X 。 為 A 與 B 之間的一個數值,用以評估該函數。' }, + alpha: { name: 'alpha', detail: '必須。 這是分配的參數。' }, + beta: { name: 'beta', detail: '必須。 這是分配的參數。' }, + A: { name: '下限', detail: '可選的。 這是 x 區間下限。' }, + B: { name: '上限', detail: '選。 這是 x 區間上限。' }, }, }, BETAINV: { - description: '傳回指定 beta 分佈的累積分佈函數的反函數', - abstract: '傳回指定 beta 分佈的累積分佈函數的反函數', + description: '傳回指定 beta 分配之累加 beta 機率密度函數的反函數值。 也就是說,若 probability = BETADIST(x,...),則 BETAINV(probability,...) = x。 在專案規劃中可使用 beta 分配,以特定的預期完成時間及變化來模擬可能的完成時間。', + abstract: '傳回指定 beta 分配之累加 beta 機率密度函數的反函數值。 也就是說,若 probability = BETADIST(x,...),則 BETAINV(probability,...) = x。 在專案規劃中可使用 beta 分配,以特定的預期完成時間及變化來模擬可能的完成時間。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/betainv-%E5%87%BD%E6%95%B0-8b914ade-b902-43c1-ac9c-c05c54f10d6c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/betainv-function', }, ], functionParameter: { - probability: { name: '機率', detail: 'beta 分佈的相關機率。' }, - alpha: { name: 'alpha', detail: '分佈的第一個參數。' }, - beta: { name: 'beta', detail: '分佈的第二個參數。' }, - A: { name: '下限', detail: '函數的下限,預設值為 0。' }, - B: { name: '上限', detail: '函數的上限,預設值為 1。' }, + probability: { name: '機率', detail: '必須。 這是 beta 分配的相關機率。' }, + alpha: { name: 'alpha', detail: '必須。 這是分配的參數。' }, + beta: { name: 'beta', detail: '必須。 這是分配的參數。' }, + A: { name: '下限', detail: '可選的。 這是 x 區間下限。' }, + B: { name: '上限', detail: '選。 這是 x 區間上限。' }, }, }, BINOMDIST: { - description: '傳回一元二項式分佈的機率', - abstract: '傳回一元二項式分佈的機率', + description: '傳回在特定次數的二項分配實驗中,實驗成功的機率。 若實驗的結果不是成功就是失敗,並且任何實驗都是獨立的,同時在整個實驗中,成功的機率是常數,便可使用 BINOMDIST 函數來解決固定實驗次數的問題。 例如,BINOMDIST 可以計算下三胎中有兩男的機率。', + abstract: '傳回在特定次數的二項分配實驗中,實驗成功的機率。 若實驗的結果不是成功就是失敗,並且任何實驗都是獨立的,同時在整個實驗中,成功的機率是常數,便可使用 BINOMDIST 函數來解決固定實驗次數的問題。 例如,BINOMDIST 可以計算下三胎中有兩男的機率。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/binomdist-%E5%87%BD%E6%95%B0-506a663e-c4ca-428d-b9a8-05583d68789c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/binomdist-function', }, ], functionParameter: { - numberS: { name: '成功次數', detail: '為實驗的成功次數。' }, - trials: { name: '實驗次數', detail: '為獨立實驗的次數。' }, - probabilityS: { name: '成功機率', detail: '每一次實驗的成功機率。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。如果為 TRUE,則 BINOMDIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。' }, + numberS: { name: '成功次數', detail: '必須。 為實驗的成功次數。' }, + trials: { name: '實驗次數', detail: '必須。 為獨立實驗的次數。' }, + probabilityS: { name: '成功機率', detail: '必須。 每一次實驗的成功機率。' }, + cumulative: { name: '累積', detail: '必須。 這是決定函數形式的邏輯值。 如果 cumulative 為 TRUE,則 BINOMDIST 會傳回累加分配函數,最多有 number_s 次成功的機率;如果為 FALSE,則會傳回機率質量函數,有 number_s 次成功的機率。' }, }, }, CHIDIST: { - description: '傳回 χ2 分佈的右尾機率', - abstract: '傳回 χ2 分佈的右尾機率', + description: '傳回卡方分配的右尾機率值。 χ2 分配與 χ2 檢定相關聯。 使用 χ2 檢定可以比較觀察值與預期值。 例如,遺傳學實驗可能會假設植物的下一代會顯出一組特定的顏色。 藉由比較觀查結果與預期結果,您可以判定原先的假設是否有效。', + abstract: '傳回卡方分配的右尾機率值。 χ2 分配與 χ2 檢定相關聯。 使用 χ2 檢定可以比較觀察值與預期值。 例如,遺傳學實驗可能會假設植物的下一代會顯出一組特定的顏色。 藉由比較觀查結果與預期結果,您可以判定原先的假設是否有效。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chidist-%E5%87%BD%E6%95%B0-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chidist-function', }, ], functionParameter: { - x: { name: '值', detail: '用來評估分佈的值。' }, - degFreedom: { name: '自由度', detail: '自由度。' }, + x: { name: '值', detail: '需要 X 。 這是用來評估分配的值。' }, + degFreedom: { name: '自由度', detail: '必須。 這是自由度。' }, }, }, CHIINV: { - description: '傳回 χ2 分佈的右尾機率的反函數值。', - abstract: '傳回 χ2 分佈的右尾機率的反函數值。', + description: '傳回卡方分配之右尾機率的反函數值。 若 probability = CHIDIST(x,...),則 CHIINV(probability,...) = x。 使用此函數比較觀查結果和預期結果,用以判斷原始的假設是否有效。', + abstract: '傳回卡方分配之右尾機率的反函數值。 若 probability = CHIDIST(x,...),則 CHIINV(probability,...) = x。 使用此函數比較觀查結果和預期結果,用以判斷原始的假設是否有效。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chiinv-%E5%87%BD%E6%95%B0-cfbea3f6-6e4f-40c9-a87f-20472e0512af', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chiinv-function', }, ], functionParameter: { - probability: { name: '機率', detail: '與 χ2 分佈相關聯的機率。' }, - degFreedom: { name: '自由度', detail: '自由度。' }, + probability: { name: '機率', detail: '必須。 這是與卡方分配相關聯的機率。' }, + degFreedom: { name: '自由度', detail: '必須。 這是自由度。' }, }, }, CHITEST: { - description: '返回獨立性檢驗值', - abstract: '返回獨立性檢驗值', + description: '傳回獨立性檢定的結果。 CHITEST 會根據統計量及適當的自由度傳回卡方 (χ2) 分配的值。 您可以使用 χ2 檢定來判斷實驗結果是否符合原先的假設。', + abstract: '傳回獨立性檢定的結果。 CHITEST 會根據統計量及適當的自由度傳回卡方 (χ2) 分配的值。 您可以使用 χ2 檢定來判斷實驗結果是否符合原先的假設。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chitest-%E5%87%BD%E6%95%B0-981ff871-b694-4134-848e-38ec704577ac', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chitest-function', }, ], functionParameter: { - actualRange: { name: '觀察範圍', detail: '觀察值範圍,用來檢定預期值。' }, - expectedRange: { name: '預期範圍', detail: '資料範圍,其內容為各欄總和乘各列總和後的值,再除以全部值總和的比率。' }, + actualRange: { name: '觀察範圍', detail: '必須。 這是觀察值範圍,用來檢定預期值。' }, + expectedRange: { name: '預期範圍', detail: '必須。 這是資料範圍,其內容為各欄總和乘各列總和後的值,再除以全部值總和的比率。' }, }, }, CONFIDENCE: { - description: '使用常態分佈傳回總體平均值的置信區間。', - abstract: '使用常態分佈傳回總體平均值的置信區間。', + description: '使用常態分配,傳回母體平均數的信賴區間。', + abstract: '使用常態分配,傳回母體平均數的信賴區間。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/confidence-%E5%87%BD%E6%95%B0-75ccc007-f77c-4343-bc14-673642091ad6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/confidence-function', }, ], functionParameter: { - alpha: { name: 'alpha', detail: '用於計算置信水準的顯著水準。置信水準等於 100*(1 - alpha)%,換句話說,alpha 0.05 表示信賴水準為 95%。' }, - standardDev: { name: '總體標準差', detail: '假設資料範圍的總體標準差已知。' }, - size: { name: '樣本大小', detail: '樣本大小。' }, + alpha: { name: 'alpha', detail: '必須。 用以推算信賴等級的顯著水準。 信賴等級等於 100*(1 - alpha)%,換言之,0.05 的 alpha 值所指的是百分之 95 的信賴等級。' }, + standardDev: { name: '總體標準差', detail: '必須。 這是資料範圍的母體標準差,且假定為已知。' }, + size: { name: '樣本大小', detail: '必須。 這是樣本大小。' }, }, }, COVAR: { - description: '傳回總體協方差,即兩個資料集中每對資料點的偏差乘積的平均值。', - abstract: '傳回總體協方差', + description: '回傳協方差,即兩組資料中每個資料點對偏差乘積的平均值。', + abstract: '回傳協方差,即兩組資料中每個資料點對偏差乘積的平均值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/covar-%E5%87%BD%E6%95%B0-50479552-2c03-4daf-bd71-a5ab88b2db03', + url: 'https://support.microsoft.com/zh-tw/excel/functions/covar-function', }, ], functionParameter: { - array1: { name: '陣列1', detail: '第一個儲存格值範圍。' }, - array2: { name: '陣列2', detail: '第二個儲存格值範圍。' }, + array1: { name: '陣列1', detail: '必須。 第一個整數的儲存格範圍。' }, + array2: { name: '陣列2', detail: '必須。 第二個整數的儲存格範圍。' }, }, }, CRITBINOM: { - description: '傳回使累積二項式分佈小於或等於臨界值的最小值', - abstract: '傳回使累積二項式分佈小於或等於臨界值的最小值', + description: '傳回累加二項分配函數大於或等於臨界值的最小數值。 此函數可用於品質保證應用程式中。 例如,使用 CRITBINOM 來決定我們在無需放棄整批產品的條件下,允許生產線上生產瑕疵品的最大數目。', + abstract: '傳回累加二項分配函數大於或等於臨界值的最小數值。 此函數可用於品質保證應用程式中。 例如,使用 CRITBINOM 來決定我們在無需放棄整批產品的條件下,允許生產線上生產瑕疵品的最大數目。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/critbinom-%E5%87%BD%E6%95%B0-eb6b871d-796b-4d21-b69b-e4350d5f407b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/critbinom-function', }, ], functionParameter: { - trials: { name: '實驗次數', detail: '伯努利實驗的次數。' }, - probabilityS: { name: '成功機率', detail: '每一次實驗的成功機率。' }, - alpha: { name: '目標機率', detail: '臨界值。' }, + trials: { name: '實驗次數', detail: '必須。 為二項分配之測試個數。' }, + probabilityS: { name: '成功機率', detail: '必須。 每一次實驗的成功機率。' }, + alpha: { name: '目標機率', detail: '必須。 這是臨界值。' }, }, }, EXPONDIST: { - description: '返回指數分佈', - abstract: '返回指數分佈', + description: '傳回指數分配函數。 使用 EXPONDIST 來建立兩事件間的時間模式,例如銀行自動櫃員機在提款時所花費的時間。 例如,您可以使用 EXPONDIST 來判定該程序最多花一分鐘的機率。', + abstract: '傳回指數分配函數。 使用 EXPONDIST 來建立兩事件間的時間模式,例如銀行自動櫃員機在提款時所花費的時間。 例如,您可以使用 EXPONDIST 來判定該程序最多花一分鐘的機率。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/expondist-%E5%87%BD%E6%95%B0-68ab45fd-cd6d-4887-9770-9357eb8ee06a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/expondist-function', }, ], functionParameter: { - x: { name: '值', detail: '用來評估分佈的值。' }, - lambda: { name: 'lambda', detail: '參數值。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。 如果為 TRUE,EXPONDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。' }, + x: { name: '值', detail: '需要 X 。 這是函數的值。' }, + lambda: { name: 'lambda', detail: '必須。 這是參數值。' }, + cumulative: { name: '累積', detail: '必須。 這是指出要提供何種指數函數形式的邏輯值。 如果 cumulative 為 TRUE,則 EXPONDIST 會傳回累加分配函數;如果為 FALSE,則會傳回機率密度函數。' }, }, }, FDIST: { - description: '傳回 F 機率分佈(右尾)', - abstract: '傳回 F 機率分佈(右尾)', + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fdist-function', }, ], functionParameter: { - x: { name: '值', detail: '用於評估函數的值。' }, - degFreedom1: { name: '分子自由度', detail: '分子的自由度。' }, - degFreedom2: { name: '分母自由度', detail: '分母的自由度。' }, + x: { name: '值', detail: '需要 X 。 這是用於評估函數的值。' }, + degFreedom1: { name: '分子自由度', detail: '必須。 這是分子的自由度。' }, + degFreedom2: { name: '分母自由度', detail: '必須。 這是分母的自由度。' }, }, }, FINV: { - description: '傳回 F 機率分佈(右尾)的反函數', - abstract: '傳回 F 機率分佈(右尾)的反函數', + description: '傳回 (右尾) F 機率分配的反函數值。 如果 p = FDIST(x,...),則 FINV(p,...) = x。', + abstract: '傳回 (右尾) F 機率分配的反函數值。 如果 p = FDIST(x,...),則 FINV(p,...) = x。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/finv-%E5%87%BD%E6%95%B0-4d46c97c-c368-4852-bc15-41e8e31140b1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/finv-function', }, ], functionParameter: { - probability: { name: '機率', detail: 'F 累積分佈相關的機率' }, - degFreedom1: { name: '分子自由度', detail: '分子的自由度。' }, - degFreedom2: { name: '分母自由度', detail: '分母的自由度。' }, + probability: { name: '機率', detail: '必須。 這是與 F 累加分配相關的機率。' }, + degFreedom1: { name: '分子自由度', detail: '必須。 這是分子的自由度。' }, + degFreedom2: { name: '分母自由度', detail: '必須。 這是分母的自由度。' }, }, }, FTEST: { - description: '傳回 F 檢驗的結果', - abstract: '傳回 F 檢驗的結果', + description: '傳回 F 檢定的結果。 F 檢定會傳回 array1 及 array2 中變異數沒有顯著差異的雙尾機率值。 使用此函數來判斷兩個樣本是否有不同的變異數。 例如,對特定的公私立學校的測驗成績,您可以測試這些學校的測試成績是否具有不同的變異程度。', + abstract: '傳回 F 檢定的結果。 F 檢定會傳回 array1 及 array2 中變異數沒有顯著差異的雙尾機率值。 使用此函數來判斷兩個樣本是否有不同的變異數。 例如,對特定的公私立學校的測驗成績,您可以測試這些學校的測試成績是否具有不同的變異程度。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ftest-%E5%87%BD%E6%95%B0-4c9e1202-53fe-428c-a737-976f6fc3f9fd', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ftest-function', }, ], functionParameter: { - array1: { name: '陣列1', detail: '第一個陣列或資料範圍。' }, - array2: { name: '陣列2', detail: '第二個陣列或資料範圍。' }, + array1: { name: '陣列1', detail: '必須。 這是第一個陣列或資料範圍。' }, + array2: { name: '陣列2', detail: '必須。 這是第二個陣列或資料範圍。' }, }, }, GAMMADIST: { - description: '傳回 γ 分佈', - abstract: '傳回 γ 分佈', + description: '傳回伽瑪分配。 您可使用此函數來研究可能有偏態分配的變數。 伽瑪分配通常用於佇列分析。', + abstract: '傳回伽瑪分配。 您可使用此函數來研究可能有偏態分配的變數。 伽瑪分配通常用於佇列分析。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gammadist-%E5%87%BD%E6%95%B0-7327c94d-0f05-4511-83df-1dd7ed23e19e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gammadist-function', }, ], functionParameter: { - x: { name: 'x', detail: '要找出分佈的數值。' }, - alpha: { name: 'alpha', detail: '分佈的第一個參數。' }, - beta: { name: 'beta', detail: '分佈的第二個參數。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。如果為 TRUE,則 GAMMADIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。' }, + x: { name: 'x', detail: '需要 X 。 這是用來評估分配的值。' }, + alpha: { name: 'alpha', detail: '必須。 這是分配的參數。' }, + beta: { name: 'beta', detail: '必須。 這是分配的參數。 若 beta = 1,則 GAMMADIST 會傳回標準的伽瑪分配。' }, + cumulative: { name: '累積', detail: '必須。 這是決定函數形式的邏輯值。 如果 cumulative 為 TRUE,GAMMADIST 會傳回累加分配函數;如果為 FALSE,則會傳回機率密度函數。' }, }, }, GAMMAINV: { - description: '傳回 γ 累積分佈函數的反函數', - abstract: '傳回 γ 累積分佈函數的反函數', + description: '傳回伽瑪累加分配的反函數值。 如果 p = GAMMADIST(x,...),則 GAMMAINV(p,...) = x。 您可以使用此函數來研究可能是偏態分配的變數。', + abstract: '傳回伽瑪累加分配的反函數值。 如果 p = GAMMADIST(x,...),則 GAMMAINV(p,...) = x。 您可以使用此函數來研究可能是偏態分配的變數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gammainv-%E5%87%BD%E6%95%B0-06393558-37ab-47d0-aa63-432f99e7916d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gammainv-function', }, ], functionParameter: { - probability: { name: '機率', detail: '與伽瑪分佈的相關機率。' }, - alpha: { name: 'alpha', detail: '分佈的第一個參數。' }, - beta: { name: 'beta', detail: '分佈的第二個參數。' }, + probability: { name: '機率', detail: '必須。 這是與伽瑪分配關聯的機率。' }, + alpha: { name: 'alpha', detail: '必須。 這是分配的參數。' }, + beta: { name: 'beta', detail: '必須。 這是分配的參數。 若 beta = 1,則 GAMMAINV 會傳回標準的伽瑪分配。' }, }, }, HYPGEOMDIST: { - description: '返回超幾何分佈', - abstract: '返回超幾何分佈', + description: '傳回超幾何分配。 HYPGEOMDIST 會傳回指定之樣本成功個數、樣本大小、母體成功個數及母體大小等的機率。 HYPGEOMDIST 可用以解決有限母體的問題,例如每次觀察成功或失敗,和每一個有同樣大小的子集合發生機會均等時適用。', + abstract: '傳回超幾何分配。 HYPGEOMDIST 會傳回指定之樣本成功個數、樣本大小、母體成功個數及母體大小等的機率。 HYPGEOMDIST 可用以解決有限母體的問題,例如每次觀察成功或失敗,和每一個有同樣大小的子集合發生機會均等時適用。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hypgeomdist-%E5%87%BD%E6%95%B0-23e37961-2871-4195-9629-d0b2c108a12e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hypgeomdist-function', }, ], functionParameter: { - sampleS: { name: '樣本成功次數', detail: '樣本中成功的次數。' }, - numberSample: { name: '樣本大小', detail: '樣本大小。' }, - populationS: { name: '總體成功次數', detail: '總體中成功的次數。' }, - numberPop: { name: '總體大小', detail: '總體大小。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。如果為 TRUE,則 HYPGEOMDIST 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。' }, + sampleS: { name: '樣本成功次數', detail: '必須。 這是樣本中的成功個數。' }, + numberSample: { name: '樣本大小', detail: '必須。 這是樣本的大小。' }, + populationS: { name: '總體成功次數', detail: '必須。 這是母體中的成功個數。' }, + numberPop: { name: '總體大小', detail: '必須。 這是母體的大小。' }, }, }, LOGINV: { - description: '傳回對數常態累積分佈的反函數', - abstract: '傳回對數常態累積分佈的反函數', + description: '傳回 x 的對數常態累加分配函數的反函數,其中 ln(x) 以 mean 和 standard_dev 參數進行常態分配。 如果 p = LOGNORMDIST(x,...),則 LOGINV(p,...) = x。', + abstract: '傳回 x 的對數常態累加分配函數的反函數,其中 ln(x) 以 mean 和 standard_dev 參數進行常態分配。 如果 p = LOGNORMDIST(x,...),則 LOGINV(p,...) = x。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/loginv-%E5%87%BD%E6%95%B0-0bd7631a-2725-482b-afb4-de23df77acfe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/loginv-function', }, ], functionParameter: { - probability: { name: '機率', detail: '對應到對數常態分佈的機率。' }, - mean: { name: '平均值', detail: '分佈的算術平均值。' }, - standardDev: { name: '標準差', detail: '分佈的標準差。' }, + probability: { name: '機率', detail: '必須。 這是與對數常態分配相關的機率。' }, + mean: { name: '平均值', detail: '必須。 這是 ln(x) 的平均值。' }, + standardDev: { name: '標準差', detail: '必須。 這是 ln(x) 的標準差。' }, }, }, LOGNORMDIST: { - description: '傳回對數常態累積分佈', - abstract: '傳回對數常態累積分佈', + description: '傳回 x 的累加對數常態分配,其中 ln(x) 以 mean 和 standard_dev 參數進行常態分配。 請使用此函數來分析對數轉換的資料。', + abstract: '傳回 x 的累加對數常態分配,其中 ln(x) 以 mean 和 standard_dev 參數進行常態分配。 請使用此函數來分析對數轉換的資料。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lognormdist-%E5%87%BD%E6%95%B0-f8d194cb-9ee3-4034-8c75-1bdb3884100b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lognormdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '要找出分佈的數值。' }, - mean: { name: '平均值', detail: '分佈的算術平均值。' }, - standardDev: { name: '標準差', detail: '分佈的標準差。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。 如果為 TRUE,LOGNORMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。' }, + x: { name: 'x', detail: '需要 X 。 這是用於評估函數的值。' }, + mean: { name: '平均值', detail: '必須。 這是 ln(x) 的平均值。' }, + standardDev: { name: '標準差', detail: '必須。 這是 ln(x) 的標準差。' }, }, }, MODE: { - description: '傳回在資料集內出現次數最多的值', - abstract: '傳回在資料集內出現次數最多的值', + description: '假設你想知道在關鍵濕地30年期間,鳥類普查樣本中最常見的鳥類數量,或想知道非尖峰時段電話支援中心最常接到的電話數量。 要計算一組數字的模態,請使用 MODE 函數。', + abstract: '假設你想知道在關鍵濕地30年期間,鳥類普查樣本中最常見的鳥類數量,或想知道非尖峰時段電話支援中心最常接到的電話數量。 要計算一組數字的模態,請使用 MODE 函數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mode-%E5%87%BD%E6%95%B0-e45192ce-9122-4980-82ed-4bdc34973120', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mode-function', }, ], functionParameter: { - number1: { name: '數值 1', detail: '要計算眾數的第一個數字、儲存格參考或儲存格區域。 ' }, - number2: { name: '數值 2', detail: '要計算眾數的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 ' }, + number1: { name: '數值 1', detail: '必須。 這是您要計算眾數的第一個數字引數。' }, + number2: { name: '數值 2', detail: '可選的。 這是要計算眾數的第 2 個到第 255 個數字引數。 您也可以使用單一陣列或陣列參照來取代以逗點分隔的引數。' }, }, }, NEGBINOMDIST: { - description: '傳回負二項式分佈', - abstract: '返回負二項式分佈', + description: '傳回負二項分配。 當成功常數機率為 probability_s 時,NEGBINOMDIST 會傳回 number_s 成功之前有 number_f 次失敗的機率。 此函數類似於二項分配,不過成功次數是固定的,而試驗的次數是變動的。 如同二項分配,也會假定每次試驗都是獨立的。', + abstract: '傳回負二項分配。 當成功常數機率為 probability_s 時,NEGBINOMDIST 會傳回 number_s 成功之前有 number_f 次失敗的機率。 此函數類似於二項分配,不過成功次數是固定的,而試驗的次數是變動的。 如同二項分配,也會假定每次試驗都是獨立的。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/negbinomdist-%E5%87%BD%E6%95%B0-f59b0a37-bae2-408d-b115-a315609ba714', + url: 'https://support.microsoft.com/zh-tw/excel/functions/negbinomdist-function', }, ], functionParameter: { - numberF: { name: '失敗次數', detail: '失敗的次數。' }, - numberS: { name: '成功次數', detail: '成功的閥值數目。' }, - probabilityS: { name: '成功機率', detail: '成功的機率。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。 如果為 TRUE,NEGBINOMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。' }, + numberF: { name: '失敗次數', detail: '必須。 這是失敗的次數。' }, + numberS: { name: '成功次數', detail: '必須。 這是成功的閥值數目。' }, + probabilityS: { name: '成功機率', detail: '必須。 這是成功的機率。' }, }, }, NORMDIST: { - description: '傳回常態累積分佈', - abstract: '返回常態累積分佈', + description: 'NORMDIST 函數回傳指定平均值與標準差的常態分布。 此函數在統計學中有廣泛的應用,包括假設檢定。', + abstract: 'NORMDIST 函數回傳指定平均值與標準差的常態分布。 此函數在統計學中有廣泛的應用,包括假設檢定。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/normdist-%E5%87%BD%E6%95%B0-126db625-c53e-4591-9a22-c9ff422d6d58', + url: 'https://support.microsoft.com/zh-tw/excel/functions/normdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '要找出分佈的數值。' }, - mean: { name: '平均值', detail: '分佈的算術平均值。' }, - standardDev: { name: '標準差', detail: '分佈的標準差。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。 如果為 TRUE,NORMDIST 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。' }, + x: { name: 'x', detail: '需要 X 。 你想要分配的價值' }, + mean: { name: '平均值', detail: '必須。 分布的算術平均值' }, + standardDev: { name: '標準差', detail: '必須。 分布的標準差' }, + cumulative: { name: '累積', detail: '必須。 這是決定函數形式的邏輯值。 若累積值為真,NORMDIST 會回傳累積分布函數;若累積為假,則回傳機率質量函數。' }, }, }, 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', - }], + description: '傳回指定之平均值和標準差的常態累加分配之反函數值。', + abstract: '傳回指定之平均值和標準差的常態累加分配之反函數值。', + links: [ + { + title: '教導', + url: 'https://support.microsoft.com/zh-tw/excel/functions/norminv-function', + }, + ], functionParameter: { - probability: { name: '機率', detail: '對應到常態分佈的機率。' }, - mean: { name: '平均值', detail: '分佈的算術平均值。' }, - standardDev: { name: '標準差', detail: '分佈的標準差。' }, + probability: { name: '機率', detail: '必須。 這是對應到常態分配的機率。' }, + mean: { name: '平均值', detail: '必須。 這是分配的算術平均值。' }, + standardDev: { name: '標準差', detail: '必須。 這是分配的標準差。' }, }, }, NORMSDIST: { - description: '傳回標準常態累積分佈', - abstract: '傳回標準常態累積分佈', + description: '傳回標準常態累加分配函數。 此分配的平均值為 0 (零),標準差為 1。 使用此函數可代替標準常態曲線區域的表格。', + abstract: '傳回標準常態累加分配函數。 此分配的平均值為 0 (零),標準差為 1。 使用此函數可代替標準常態曲線區域的表格。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/normsdist-%E5%87%BD%E6%95%B0-463369ea-0345-445d-802a-4ff0d6ce7cac', + url: 'https://support.microsoft.com/zh-tw/excel/functions/normsdist-function', }, ], functionParameter: { - z: { name: 'z', detail: '要找出分佈的數值。' }, + z: { name: 'z', detail: 'Z 必須。 這是您要找出分配的數值。' }, }, }, NORMSINV: { - description: '傳回標準常態累積分佈函數的反函數', - abstract: '傳回標準常態累積分佈函數的反函數', + description: '傳回標準常態累加分配的反函數值。 此分配的平均值為 0,標準差為 1。', + abstract: '傳回標準常態累加分配的反函數值。 此分配的平均值為 0,標準差為 1。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/normsinv-%E5%87%BD%E6%95%B0-8d1bce66-8e4d-4f3b-967c-30eed61f019d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/normsinv-function', }, ], functionParameter: { - probability: { name: '機率', detail: '對應到常態分佈的機率。' }, + probability: { name: '機率', detail: '必須。 這是對應到常態分配的機率。' }, }, }, PERCENTILE: { - description: '傳回資料集中第 k 個百分點的值 (包括 0 與 1)', - abstract: '傳回資料集中第 k 個百分點的值 (包括 0 與 1)', + description: '傳回範圍中第 K 個百分位數的值。 您可以使用這個函數來建立可接受的臨界值。 例如,只接受分數在百分之九十以上的候選者。', + abstract: '傳回範圍中第 K 個百分位數的值。 您可以使用這個函數來建立可接受的臨界值。 例如,只接受分數在百分之九十以上的候選者。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentile-%E5%87%BD%E6%95%B0-91b43a53-543c-4708-93de-d626debdddca', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentile-function', }, ], functionParameter: { - array: { name: '陣列', detail: '用以定義相對位置的陣列或資料範圍。' }, - k: { name: 'k', detail: '在 0 到 1 範圍內 (包括 0 與 1) 的百分位數。' }, + array: { name: '陣列', detail: '必須。 用以定義相對位置的陣列或資料範圍。' }, + k: { name: 'k', detail: '必須 。 在 0 到 1 範圍內 (包括 0 與 1) 的百分位數。' }, }, }, PERCENTRANK: { - description: '傳回資料集中值的百分比排位 (包括 0 與 1)', - abstract: '傳回資料集中值的百分比排位 (包括 0 與 1)', + description: 'PERCENTRANK 函數回傳資料集中某個值的排名,作為該數值在整個資料集中的百分比——本質上,就是該值在整個資料集中中的相對地位。 例如,你可以使用 PERCENTRANK 來判斷個人在所有測驗分數欄位中的排名。', + abstract: 'PERCENTRANK 函數回傳資料集中某個值的排名,作為該數值在整個資料集中的百分比——本質上,就是該值在整個資料集中中的相對地位。 例如,你可以使用 PERCENTRANK 來判斷個人在所有測驗分數欄位中的排名。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentrank-%E5%87%BD%E6%95%B0-f1b5836c-9619-4847-9fc9-080ec9024442', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentrank-function', }, ], functionParameter: { - array: { name: '陣列', detail: '用以定義相對位置的陣列或資料範圍。' }, - x: { name: 'x', detail: '想要知道排名的數值。' }, - significance: { name: '有效位數', detail: '用以識別傳回百分比值的最高有效位數之數值。 如果省略,PERCENTRANK 會使用三位小數 (0.xxx)。' }, + array: { name: '陣列', detail: '必須。 資料範圍 (或預先定義的陣列) 數值,百分比排名就在其中決定。' }, + x: { name: 'x', detail: '需要 X 。 你想知道陣列中排名的值。' }, + significance: { name: '有效位數', detail: '可選的。 用以識別傳回百分比值的最高有效位數之數值。 如果省略,PERCENTRANK 會使用三位小數 (0.xxx)。' }, }, }, POISSON: { - description: '返回泊松分佈', - abstract: '返回泊松分佈', + description: '傳回波式分配。 波氏分配的一般應用,在於預測特定時間內事件發生的次數,例如,一分鐘內經過收費站的汽車數。', + abstract: '傳回波式分配。 波氏分配的一般應用,在於預測特定時間內事件發生的次數,例如,一分鐘內經過收費站的汽車數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/poisson-%E5%87%BD%E6%95%B0-d81f7294-9d7c-4f75-bc23-80aa8624173a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/poisson-function', }, ], functionParameter: { - x: { name: 'x', detail: '要找出分佈的數值。' }, - mean: { name: '平均值', detail: '分佈的算術平均值。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。 如果為 TRUE,POISSON 會傳回累積分佈函數;如果為 FALSE,則會傳回機率密度函數。' }, + x: { name: 'x', detail: '需要 X 。 這是事件的數目。' }, + mean: { name: '平均值', detail: '必須。 這是期望值。' }, + cumulative: { name: '累積', detail: '必須。 這是邏輯值,用來決定機率分配所傳回的形式。 如果 cumulative 為 TRUE,POISSON 則會隨機事件發生次數在 0 到 x 次 (含) 之間的累加波氏機率;如果為 FALSE,則會傳回事件的數目正好是 x 的波氏機率密度函數。' }, }, }, QUARTILE: { - description: '傳回資料集的四分位數 (包括 0 與 1)', - abstract: '傳回資料集的四分位數 (包括 0 與 1)', + description: '傳回資料集的四分位數。 四分位數通常用於銷售和市場調查資料中,將母體分成不同的群組。 例如,您可以使用 QUARTILE 來找出母體中前 25% 的收入。', + abstract: '傳回資料集的四分位數。 四分位數通常用於銷售和市場調查資料中,將母體分成不同的群組。 例如,您可以使用 QUARTILE 來找出母體中前 25% 的收入。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/quartile-%E5%87%BD%E6%95%B0-93cf8f62-60cd-4fdb-8a92-8451041e1a2a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/quartile-function', }, ], functionParameter: { - array: { name: '陣列', detail: '要求得四分位數值的陣列或資料範圍。' }, - quart: { name: '四分位值', detail: '要傳回的四分位數值。' }, + array: { name: '陣列', detail: '必須。 這是要找出四分位數之數值的陣列或儲存格範圍。' }, + quart: { name: '四分位值', detail: '必須。 指出要傳回的數值。' }, }, }, RANK: { - description: '傳回一列數字的數字排位', - abstract: '傳回一列數字的數字排位', + description: '傳回數字在一數列中的排名。 數字的排名是它相對於列表中其他值的大小。 (如果你要排序這個清單,該數字的排名就是它的位置。)', + abstract: '傳回數字在一數列中的排名。 數字的排名是它相對於列表中其他值的大小。 (如果你要排序這個清單,該數字的排名就是它的位置。)', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rank-%E5%87%BD%E6%95%B0-6a2fc49d-1831-4a03-9d8c-c279cf99f723', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rank-function', }, ], functionParameter: { - number: { name: '數值', detail: '要找出其排名的數字。' }, - ref: { name: '數字清單', detail: '數字清單的參照。會忽略 ref 中的非數值。' }, - order: { name: '排列方式', detail: '指定排列數值方式的數字。0 或省略為遞減順序排序,非 0 為遞增順序排序。' }, + number: { name: '數值', detail: '必須。 這是要找出其排名的數字。' }, + ref: { name: '數字清單', detail: '必須。 指的是一串數字。 會忽略 ref 中的非數值。' }, + order: { name: '排列方式', detail: '可選的。 這是指定排列數值方式的數字。 如果 order 為 0 (零) 或被省略,則 Microsoft Excel 把 ref 當成以遞減順序排序的數列來為 number 排名。 如果 order 不是 0,則 Microsoft Excel 會將 ref 當成以遞增順序排序的數列來來為 number 排名。' }, }, }, STDEV: { - description: '根據樣本估計標準差。 標準差可以測量值在平均值(中位數)附近分佈的範圍大小。 ', - abstract: '基於樣本估算標準差', + description: '根據樣本來估算標準差。 標準差是用來衡量值與平均值 (平均數) 之間的離散程度。', + abstract: '根據樣本來估算標準差。 標準差是用來衡量值與平均值 (平均數) 之間的離散程度。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdev-%E5%87%BD%E6%95%B0-51fecaaa-231e-4bbb-9230-33650a72c9b0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdev-function', }, ], functionParameter: { - number1: { name: '數值 1', detail: '對應於總體樣本的第一個數值參數。 ' }, - number2: { name: '數值 2', detail: '對應於總體樣本的 2 到 255 個數值參數。 也可以用單一陣列或對某個陣列的引用來代替用逗號分隔的參數。 ' }, + number1: { name: '數值 1', detail: '必須。 這是對應至母體樣本的第一個數字引數。' }, + number2: { name: '數值 2', detail: '可選的。 這是對應至母體樣本的第 2 個到第 255 個數字引數。 您也可以使用單一陣列或陣列參照來取代以逗點分隔的引數。' }, }, }, STDEVP: { - description: '根據作為參數給定的整個總體計算標準偏差。 ', - abstract: '基於整個樣本總體計算標準差', + description: '根據指定為引數的整個母體來計算標準差。 標準差是用來衡量值與平均值 (平均數) 之間的離散程度。', + abstract: '根據指定為引數的整個母體來計算標準差。 標準差是用來衡量值與平均值 (平均數) 之間的離散程度。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdevp-%E5%87%BD%E6%95%B0-1f7c1c88-1bec-4422-8242-e9f7dc8bb195', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdevp-function', }, ], functionParameter: { - number1: { name: '數值 1', detail: '對應於總體的第一個數值參數。 ' }, - number2: { name: '數值 2', detail: '對應於總體的 2 到 255 個數值參數。 也可以用單一陣列或對某個陣列的引用來代替用逗號分隔的參數。 ' }, + number1: { name: '數值 1', detail: '必須。 這是對應至母體的第一個數字引數。' }, + number2: { name: '數值 2', detail: '可選的。 這是對應至母體的第 2 個到第 255 個數字引數。 您也可以使用單一陣列或陣列參照來取代以逗點分隔的引數。' }, }, }, TDIST: { - description: '傳回學生的 t 機率分佈', - abstract: '返回學生 t-分佈', + description: '傳回 Student T 分配的「百分比點」(機率),其中數值 (x) 為 T 的計算結果值,該值是以「百分比點」來計算。 T 分配用於小樣本資料集的假設檢定。 使用此函數可取代 T 分配的臨界值表格。', + abstract: '傳回 Student T 分配的「百分比點」(機率),其中數值 (x) 為 T 的計算結果值,該值是以「百分比點」來計算。 T 分配用於小樣本資料集的假設檢定。 使用此函數可取代 T 分配的臨界值表格。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tdist-%E5%87%BD%E6%95%B0-630a7695-4021-4853-9468-4a1f9dcdd192', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tdist-function', }, ], functionParameter: { - x: { name: 'x', detail: '需要計算分佈的數值。' }, - degFreedom: { name: '自由度', detail: '一個表示自由度數的整數。' }, - tails: { name: '尾部特性', detail: '指定要傳回之分佈尾數。 如果 Tails = 1,TDIST 會傳回單尾分佈。 如果 Tails = 2,TDIST 會傳回雙尾分佈。' }, + x: { name: 'x', detail: '需要 X 。 這是要評估分配的數值。' }, + degFreedom: { name: '自由度', detail: '必須。 這是指出自由度的整數值。' }, + tails: { name: '尾部特性', detail: '必須。 這是指定要傳回之分配尾數。 如果 Tails = 1,TDIST 會傳回單尾分配。 如果 Tails = 2,TDIST 會傳回雙尾分配。' }, }, }, TINV: { - description: '傳回學生的 t 機率分佈的反函數 (雙尾)', - abstract: '傳回學生的 t 機率分佈的反函數 (雙尾)', + description: '傳回 Student t 分配的雙尾反函數。', + abstract: '傳回 Student t 分配的雙尾反函數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tinv-%E5%87%BD%E6%95%B0-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tinv-function', }, ], functionParameter: { - probability: { name: '機率', detail: '與學生的 t 分佈相關的機率。' }, - degFreedom: { name: '自由度', detail: '一個表示自由度數的整數。' }, + probability: { name: '機率', detail: '必須。 這是與雙尾 Student t 分配相關的機率。' }, + degFreedom: { name: '自由度', detail: '必須。 這是用來說明分配特性的自由度。' }, }, }, TTEST: { - description: '傳回與學生 t-檢定相關的機率', - abstract: '返回與學生 t-檢定相關的機率', + description: '傳回與 Student 氏 T 檢定相關的機率。 使用 TTEST 可以判斷兩個樣本是否可能來自平均值相同的兩個相同基礎母體。', + abstract: '傳回與 Student 氏 T 檢定相關的機率。 使用 TTEST 可以判斷兩個樣本是否可能來自平均值相同的兩個相同基礎母體。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ttest-%E5%87%BD%E6%95%B0-1696ffc1-4811-40fd-9d13-a0eaad83c7ae', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ttest-function', }, ], functionParameter: { - array1: { name: '陣列1', detail: '第一個陣列或資料範圍。' }, - array2: { name: '陣列2', detail: '第二個陣列或資料範圍。' }, - tails: { name: '尾部特性', detail: '指定分佈的尾數。 如果 tails = 1,TTEST 會使用單尾分佈。 如果 tails = 2,TTEST 會使用雙尾分佈。' }, - type: { name: '檢定類型', detail: '要執行的 t 檢定類型。' }, + array1: { name: '陣列1', detail: '必須。 這是第一個資料集。' }, + array2: { name: '陣列2', detail: '必須。 這是第二個資料集。' }, + tails: { name: '尾部特性', detail: '必須。 指定分配的尾數。 如果 tails = 1,TTEST 會使用單尾分配。 如果 tails = 2,TTEST 會使用雙尾分配。' }, + type: { name: '檢定類型', detail: '必須。 這是要執行的 t 檢定種類。' }, }, }, VAR: { - description: '計算基於給定樣本的變異數。 ', - abstract: '基於樣本估算變異數', + description: '根據樣本來估計變異數。', + abstract: '根據樣本來估計變異數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/var-%E5%87%BD%E6%95%B0-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/var-function', }, ], functionParameter: { - number1: { name: '數值 1', detail: '對應於總體樣本的第一個數值參數。 ' }, - number2: { name: '數值 2', detail: '應於總體樣本的 2 到 255 個數值參數。 ' }, + number1: { name: '數值 1', detail: '必須。 這是對應至母體樣本的第一個數字引數。' }, + number2: { name: '數值 2', detail: '可選的。 這是對應至母體樣本的第 2 個到第 255 個數字引數。' }, }, }, VARP: { - description: '計算基於樣本總體的變異數。 ', - abstract: '計算以樣本總體為基礎的變異數', + description: '根據整個母體來計算變異數。', + abstract: '根據整個母體來計算變異數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/varp-%E5%87%BD%E6%95%B0-26a541c4-ecee-464d-a731-bd4c575b1a6b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/varp-function', }, ], functionParameter: { - number1: { name: '數值 1', detail: '對應於總體的第一個數值參數。 ' }, - number2: { name: '數值 2', detail: '對應於總體的 2 到 255 個數值參數。 ' }, + number1: { name: '數值 1', detail: '必須。 這是對應至母體的第一個數字引數。' }, + number2: { name: '數值 2', detail: '可選的。 這是對應至母體的第 2 個到第 254 個數字引數。' }, }, }, WEIBULL: { - description: '傳回 Weibull 分佈', - abstract: '傳回 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/weibull-function', }, ], functionParameter: { - x: { name: 'x', detail: '要找出分佈的數值。' }, - alpha: { name: 'alpha', detail: '分佈的第一個參數。' }, - beta: { name: 'beta', detail: '分佈的第二個參數。' }, - cumulative: { name: '累積', detail: '決定函數形式的邏輯值。如果為 TRUE,則 WEIBULL 傳回累積分佈函數;如果為 FALSE,則傳回機率密度函數。' }, + x: { name: 'x', detail: '需要 X 。 這是用於評估函數的值。' }, + alpha: { name: 'alpha', detail: '必須。 這是分配的參數。' }, + beta: { name: 'beta', detail: '必須。 這是分配的參數。' }, + cumulative: { name: '累積', detail: '必須。 決定此函數的形式。' }, }, }, ZTEST: { - description: '傳回 z 檢定的單尾機率值', - abstract: '傳回 z 檢定的單尾機率值', + description: '傳回 Z 檢定的單尾機率值。 對於特定的假設母體平均值 μ0,ZTEST 會傳回樣本平均值可能大於資料集 (陣列) 之觀察平均值 (也就是觀察的樣本平均值) 的機率。', + abstract: '傳回 Z 檢定的單尾機率值。 對於特定的假設母體平均值 μ0,ZTEST 會傳回樣本平均值可能大於資料集 (陣列) 之觀察平均值 (也就是觀察的樣本平均值) 的機率。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ztest-%E5%87%BD%E6%95%B0-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ztest-function', }, ], functionParameter: { - array: { name: '陣列', detail: '用來檢定 x 的陣列或資料範圍。' }, - x: { name: 'x', detail: '要檢定的值。' }, - sigma: { name: '標準差', detail: '總體(已知)標準差。如果省略,則使用樣本標準差。' }, + array: { name: '陣列', detail: '必須。 這是用來檢定 x 的陣列或資料範圍。' }, + x: { name: 'x', detail: '需要 X 。 這是要檢定的值。' }, + sigma: { name: '標準差', detail: '可選的。 這是母體 (已知) 的標準差。 如果省略,會使用樣本標準差。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/cube/ar-SA.ts new file mode 100644 index 0000000000..81752028d0 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/ar-SA.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'تُرجع خاصية مؤشر الأداء الرئيسي (KPI) وتعرض اسم KPI في الخلية. يعتبر KPI مقياساً كمياً، يحسب مثلاً إجمالي الربح الشهري أو معدل الدوران الربع سنوي للموظفين، ويتم استخدامه لمراقبة أداء المؤسسة.', + abstract: 'تُرجع خاصية مؤشر الأداء الرئيسي (KPI) وتعرض اسم KPI في الخلية. يعتبر KPI مقياساً كمياً، يحسب مثلاً إجمالي الربح الشهري أو معدل الدوران الربع سنوي للموظفين، ويتم استخدامه لمراقبة أداء المؤسسة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + kpiName: { name: 'Kpi_name', detail: 'مطلوب. سلسلة نصية لاسم KPI الموجود في المكعب.' }, + kpiProperty: { name: 'Kpi_property', detail: 'مطلوب. وهي مكون KPI الذي يتم إرجاعه ويمكن أن يكون واحداً مما يلي:' }, + caption: { name: 'التسميه التوضيحيه', detail: 'الاختياري. وهي سلسلة نصية بديلة يتم عرضها في الخلية بدلاً من kpi_name وkpi_property.' }, + }, + }, + CUBEMEMBER: { + description: 'تُرجع عضواً واحداً أو مجموعة من المكعب. ويمكن استخدامها للتحقق من وجود العضو أو المجموعة في المكعب.', + abstract: 'تُرجع عضواً واحداً أو مجموعة من المكعب. ويمكن استخدامها للتحقق من وجود العضو أو المجموعة في المكعب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + memberExpression: { name: 'Member_expression', detail: 'مطلوب. وهي سلسلة نصية لتعبير متعدد الأبعاد (MDX) يتم تقييمه إلى عضو فريد في المكعب. بدلاً من ذلك، يمكن أن تكون member_expression عبارة عن مجموعة تم تعيينها كنطاق خلايا أو كثابت صفيف.' }, + caption: { name: 'التسميه التوضيحيه', detail: 'الاختياري. وهي سلسلة نصية يتم عرضها في الخلية بدلاً من التسمية التوضيحية، وذلك إذا تم تعريف إحداها، من المكعب. عند إرجاع إحدى المجموعات، تكون التسمية التوضيحية المُستخدمة هي تلك الخاصة بآخر عضو في المجموعة.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'ترجع الدالة CUBEMEMBERPROPERTY ، إحدى دالات Cube في Excel، قيمة خاصية عضو من مكعب. ويمكن استخدامها للتحقق من وجود اسم العضو داخل المكعب وإرجاع الخاصية المحددة لهذا العضو.', + abstract: 'ترجع الدالة CUBEMEMBERPROPERTY ، إحدى دالات Cube في Excel، قيمة خاصية عضو من مكعب. ويمكن استخدامها للتحقق من وجود اسم العضو داخل المكعب وإرجاع الخاصية المحددة لهذا العضو.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + memberExpression: { name: 'Member_expression', detail: 'مطلوب. وهي سلسلة نصية لتعبير متعدد الأبعاد (MDX) خاص بأحد الأعضاء داخل المكعب.' }, + property: { name: 'الخاصيه', detail: 'مطلوب. وهي سلسلة نصية لاسم الخاصية التي تم إرجاعها أو مرجع إلى خلية تحتوي على اسم الخاصية.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'تُرجع العضو الأعلى أو المُصنف في مجموعة. ويمكن استخدامها لإرجاع عنصر واحد أو أكثر في مجموعة، مثل صاحب أعلى نسبة مبيعات أو أفضل عشرة طلاب.', + abstract: 'تُرجع العضو الأعلى أو المُصنف في مجموعة. ويمكن استخدامها لإرجاع عنصر واحد أو أكثر في مجموعة، مثل صاحب أعلى نسبة مبيعات أو أفضل عشرة طلاب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + setExpression: { name: 'Set_expression', detail: 'مطلوب. وهي سلسلة نصية لتعبير مجموعة، مثل "{[العنصر 1].الأطفال}". يمكن أيضاً أن تكون Set_expression عبارة عن الدالة CUBESET أو مرجع لخلية تحتوي على الدالة CUBESET.' }, + rank: { name: 'رتبه', detail: 'مطلوب. وهي قيمة عدد صحيح يحدد أعلى قيمة يتم إرجاعها. إذا كانت قيمة التصنيف تساوي 1، فإنها تُرجع أعلى قيمة، وإذا كانت قيمة التصنيف تساوي 2، فإنها تُرجع ثاني أعلى قيمة، وما إلى ذلك. لإرجاع أعلى خمس قيم، استخدم الدالة CUBERANKEDMEMBER خمس مرات، مع تحديد تصنيف مختلف، من 1 إلى 5، في كل مرة.' }, + caption: { name: 'التسميه التوضيحيه', detail: 'الاختياري. وهي سلسلة نصية يتم عرضها في الخلية بدلاً من التسمية التوضيحية، وذلك إذا تم تعريف إحداها، من المكعب.' }, + }, + }, + CUBESET: { + description: 'تعرّف مجموعة محسوبة من قيم أعضاء أو مجموعة عن طريق إرسال تعبير مجموعة إلى المكعب على الخادم، مما يؤدي إلى إنشاء المجموعة، ثم إرجاع تلك المجموعة إلى Microsoft Excel.', + abstract: 'تعرّف مجموعة محسوبة من قيم أعضاء أو مجموعة عن طريق إرسال تعبير مجموعة إلى المكعب على الخادم، مما يؤدي إلى إنشاء المجموعة، ثم إرجاع تلك المجموعة إلى Microsoft Excel.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + setExpression: { name: 'Set_expression', detail: 'مطلوب. وهي سلسلة نصية لتعبير مجموعة ينتج عنها مجموعة أعضاء أو مجموعات قيم. يمكن أيضاً أن تكون Set_expression عبارة عن مرجع خلية لنطاق Excel يحتوي على واحد أو أكثر من الأعضاء أو مجموعات القيم أو المجموعات التي تم تضمينها في المجموعة.' }, + caption: { name: 'التسميه التوضيحيه', detail: 'الاختياري. وهي سلسلة نصية يتم عرضها في الخلية بدلاً من التسمية التوضيحية، وذلك إذا تم تعريف إحداها، من المكعب.' }, + sortOrder: { name: 'Sort_order', detail: 'الاختياري. نوع الفرز الذي تريد تطبيقه، إن وجد، ويمكن أن يكون أياً مما يلي:' }, + sortBy: { name: 'Sort_by', detail: 'الاختياري. سلسلة نصية للقيمة التي سيتم الفرز بواسطتها. على سبيل المثال، للحصول على المدينة ذات المبيعات الأعلى، قد تكون set_expression مجموعة من المدن، وتكون sort_by هي مقياس المبيعات. أو، للحصول على المدينة ذات عدد السكان الأعلى، قد تكون set_expression مجموعة من المدن، وتكون sort_by هي مقياس عدد السكان. إذا sort_order تطلّب sort_by، وتم حذف sort_by، ترجع CUBESET رسالة الخطأ #VALUE!.' }, + }, + }, + CUBESETCOUNT: { + description: 'تُرجع عدد العناصر الموجودة في مجموعة.', + abstract: 'تُرجع عدد العناصر الموجودة في مجموعة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'تعيين', detail: 'مطلوب. وهي سلسلة نصية لتعبير Microsoft Excel يتم تقييمه إلى مجموعة معرّفة بواسطة الدالة CUBESET. يمكن أيضاً أن تكون Set عبارة عن الدالة CUBESET أو مرجعاً لخلية تحتوي على الدالة CUBESET.' }, + }, + }, + CUBEVALUE: { + description: 'تُرجع قيمة مجمّعة من المكعب.', + abstract: 'تُرجع قيمة مجمّعة من المكعب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'اتصال', detail: 'مطلوب. وهي سلسلة نصية لاسم الاتصال بالمكعب.' }, + memberExpression: { name: 'Member_expression', detail: 'الاختياري. وهي سلسلة نصية لتعبير متعدد الأبعاد (MDX) يتم تقييمه إلى عضو أو مجموعة داخل المكعب. ويمكن أن تكون member_expression بدلاً من ذلك عبارة عن مجموعة تم تعريفها باستخدام الدالة CUBESET. استخدم member_expression كمقسم طريقة عرض لتعريف جزء المكعب الذي يتم إرجاع القيمة المجمّعة له. إذا لم يتم تحديد أي مقياس في member_expression، فيتم استخدام المقياس الافتراضي لهذا المكعب.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/cube/ca-ES.ts index fd8fb781a0..8c77e42111 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/ca-ES.ts @@ -23,12 +23,14 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + kpiName: { name: 'Nom de l’KPI', detail: 'Text amb el nom de l’indicador clau de rendiment (KPI) del cub.' }, + kpiProperty: { name: 'Propietat de l’KPI', detail: 'Component de l’KPI que s’ha de retornar.' }, + caption: { name: 'Títol', detail: 'Opcional. Text alternatiu que es mostra a la cel·la.' }, }, }, CUBEMEMBER: { @@ -37,12 +39,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + memberExpression: { name: 'Expressió de membre', detail: 'Text d’una expressió multidimensional (MDX) que avalua un membre o una tupla del cub.' }, + caption: { name: 'Títol', detail: 'Opcional. Text alternatiu que es mostra a la cel·la.' }, }, }, CUBEMEMBERPROPERTY: { @@ -51,12 +54,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + memberExpression: { name: 'Expressió de membre', detail: 'Text d’una expressió multidimensional (MDX) d’un membre del cub.' }, + property: { name: 'Propietat', detail: 'Nom de la propietat que s’ha de retornar.' }, }, }, CUBERANKEDMEMBER: { @@ -65,12 +69,14 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/ca-es/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + setExpression: { name: 'Expressió de conjunt', detail: 'Text d’una expressió que defineix un conjunt del cub.' }, + rank: { name: 'Rang', detail: 'Enter que indica la posició del membre que s’ha de retornar.' }, + caption: { name: 'Títol', detail: 'Opcional. Text alternatiu que es mostra a la cel·la.' }, }, }, CUBESET: { @@ -79,12 +85,15 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + setExpression: { name: 'Expressió de conjunt', detail: 'Text d’una expressió que produeix un conjunt de membres o tuples.' }, + caption: { name: 'Títol', detail: 'Opcional. Text alternatiu que es mostra a la cel·la.' }, + sortOrder: { name: 'Ordre', detail: 'Opcional. Tipus d’ordenació que s’ha d’aplicar.' }, + sortBy: { name: 'Ordena per', detail: 'Opcional. Valor pel qual s’ha d’ordenar el conjunt.' }, }, }, CUBESETCOUNT: { @@ -93,12 +102,11 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + set: { name: 'Conjunt', detail: 'Expressió que avalua un conjunt definit per CUBESET, o una referència que el conté.' }, }, }, CUBEVALUE: { @@ -107,12 +115,12 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/ca-es/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primer' }, - number2: { name: 'número2', detail: 'segon' }, + connection: { name: 'Connexió', detail: 'Text amb el nom de la connexió al cub.' }, + memberExpression: { name: 'Expressió de membre', detail: 'Opcional. Expressió MDX que avalua un membre o una tupla del cub.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/de-DE.ts b/packages/sheets-formula/src/locale/function-list/cube/de-DE.ts new file mode 100644 index 0000000000..beb5a31a01 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/de-DE.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Gibt die Eigenschaft eines Key Performance Indicators (KPI) zurück und zeigt den KPI-Namen in der Zelle an. Ein KPI ist eine quantifizierbare Größe (z. B. der monatliche Bruttogewinn oder die quartalsweise Fluktuation), mit dem die Leistung eines Unternehmens überwacht wird.', + abstract: 'Gibt die Eigenschaft eines Key Performance Indicators (KPI) zurück und zeigt den KPI-Namen in der Zelle an. Ein KPI ist eine quantifizierbare Größe (z. B. der monatliche Bruttogewinn oder die quartalsweise Fluktuation), mit dem die Leistung eines Unternehmens überwacht wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + kpiName: { name: 'Kpi_name', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen des KPI im Cube.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Erforderlich. Es beinhaltet die zurückgegebene KPI-Komponente und kann folgende Werte annehmen:' }, + caption: { name: 'Beschriftung', detail: 'Optional. Eine alternative Textzeichenfolge, die in der Zelle anstelle von kpi_name und kpi_property angezeigt wird.' }, + }, + }, + CUBEMEMBER: { + description: 'Gibt ein Element oder ein Tupel aus dem Cube zurück. Wird verwendet, um zu überprüfen, ob das Element oder Tupel im Cube vorhanden ist.', + abstract: 'Gibt ein Element oder ein Tupel aus dem Cube zurück. Wird verwendet, um zu überprüfen, ob das Element oder Tupel im Cube vorhanden ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Erforderlich. Eine Textzeichenfolge eines multidimensionalen Ausdrucks (MDX), der ein eindeutiges Element im Cube ergibt. Alternativ kann "Element_Ausdruck" auch ein Tupel sein, das als ein Zellbereich oder eine Matrixkonstante angegeben wird.' }, + caption: { name: 'Beschriftung', detail: 'Optional. Es enthält eine Textzeichenfolge, die statt der Beschriftung aus dem Cube (sofern definiert) in der Zelle angezeigt wird. Wenn ein Tupel zurückgegeben wird, entspricht die verwendete Beschriftung der Beschriftung für das letzte Element im Tupel.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'Die CUBEMEMBERPROPERTY-Funktion , eine der Cubefunktionen in Excel, gibt den Wert einer Membereigenschaft aus einem Cube zurück. Damit wird geprüft, ob ein Elementname im Cube vorhanden ist, und die angegebene Eigenschaft für dieses Element wird zurückgegeben.', + abstract: 'Die CUBEMEMBERPROPERTY-Funktion , eine der Cubefunktionen in Excel, gibt den Wert einer Membereigenschaft aus einem Cube zurück. Damit wird geprüft, ob ein Elementname im Cube vorhanden ist, und die angegebene Eigenschaft für dieses Element wird zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Erforderlich. Eine Textzeichenfolge eines multidimensionalen Ausdrucks (MDX) für ein Element im Cube.' }, + property: { name: 'Eigenschaft', detail: 'Erforderlich. Eine Textzeichenfolge des Namens der zurückgegebenen Eigenschaft oder ein Bezug auf eine Zelle, die den Namen der Eigenschaft enthält.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Gibt das n-te oder n-rangige Element in einer Menge zurück. Wird verwendet, um mindestens ein Element in einer Menge zurückzugeben, z. B. den besten Vertriebsmitarbeiter oder die 10 besten Kursteilnehmer.', + abstract: 'Gibt das n-te oder n-rangige Element in einer Menge zurück. Wird verwendet, um mindestens ein Element in einer Menge zurückzugeben, z. B. den besten Vertriebsmitarbeiter oder die 10 besten Kursteilnehmer.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + setExpression: { name: 'Set_expression', detail: 'Erforderlich. Eine Textzeichenfolge eines Mengenausdrucks, z. B. "{[Element1].Kinder}". "Menge_Ausdruck" kann auch die CUBEMENGE-Funktion oder ein Bezug auf eine Zelle mit der CUBEMENGE-Funktion sein.' }, + rank: { name: 'Rang', detail: 'Erforderlich. Ein ganzzahliger Wert zur Angabe des obersten Werts, der zurückgegeben werden soll. Wenn "Rang" der Wert "1" ist, wird der oberste Wert zurückgegeben; ist "Rang" der Wert "2", wird der zweitoberste Wert zurückgegeben usw. Wenn die 5 obersten Werte zurückgegeben werden sollen, verwenden Sie CUBERANGELEMENT fünfmal, und geben Sie jedes Mal einen anderen Rang ("1" bis "5") an.' }, + caption: { name: 'Beschriftung', detail: 'Optional. Es ist eine Textzeichenfolge aus dem Cube, die in der Zelle statt der Beschriftung angezeigt wird, sofern dies entsprechend definiert wurde.' }, + }, + }, + CUBESET: { + description: 'Definiert einen berechneten Satz von Elementen oder Tupeln, indem ein Satzausdruck an den Cube auf dem Server gesendet wird, der den Satz erstellt und diesen Satz anschließend an Microsoft Excel zurückgibt.', + abstract: 'Definiert einen berechneten Satz von Elementen oder Tupeln, indem ein Satzausdruck an den Cube auf dem Server gesendet wird, der den Satz erstellt und diesen Satz anschließend an Microsoft Excel zurückgibt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + setExpression: { name: 'Set_expression', detail: 'Erforderlich. Eine Textzeichenfolge eines Set-Ausdrucks, der zu einer Reihe von Membern oder Tupeln führt. Set_expression kann auch ein Zellbezug auf einen Excel-Bereich sein, der ein oder mehrere Elemente, Tupel oder Sätze enthält, die im Satz enthalten sind.' }, + caption: { name: 'Beschriftung', detail: 'Optional. Eine Textzeichenfolge, die in der Zelle anstelle des Untertitel angezeigt wird, sofern definiert, aus dem Cube.' }, + sortOrder: { name: 'Sort_order', detail: 'Optional. Es kann folgende Werte annehmen:' }, + sortBy: { name: 'Sort_by', detail: 'Optional. Eine Textzeichenfolge des Werts, nach dem sortiert werden soll. Um beispielsweise die Stadt mit dem höchsten Umsatz zu erhalten, wäre set_expression eine Reihe von Städten, und sort_by wäre das Sales-Measure. Um die Stadt mit der höchsten Einwohnerzahl zu erhalten, wäre set_expression eine Reihe von Städten, und sort_by wäre das Bevölkerungsmaß. Wenn sort_order sort_by erfordert und sort_by weggelassen wird, gibt CUBESET den #VALUE! zurück.' }, + }, + }, + CUBESETCOUNT: { + description: 'Gibt die Anzahl der Elemente in einem Satz zurück.', + abstract: 'Gibt die Anzahl der Elemente in einem Satz zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Festgelegt', detail: 'Erforderlich. Eine Textzeichenfolge eines Microsoft Excel-Ausdrucks, der zu einem von der CUBESET-Funktion definierten Satz ausgewertet wird. Set kann auch die CUBESET-Funktion oder ein Verweis auf eine Zelle sein, die die CUBESET-Funktion enthält.' }, + }, + }, + CUBEVALUE: { + description: 'Gibt einen aggregierten Wert aus dem Cube zurück.', + abstract: 'Gibt einen aggregierten Wert aus dem Cube zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Verbindung', detail: 'Erforderlich. Eine Textzeichenfolge mit dem Namen der Verbindung zum Cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Optional. Eine Textzeichenfolge eines mehrdimensionalen Ausdrucks (MDX), der zu einem Member oder Tupel innerhalb des Cubes ausgewertet wird. Alternativ kann member_expression ein mit der CUBESET-Funktion definierter Satz sein. Verwenden Sie member_expression als Slicer, um den Teil des Cubes zu definieren, für den der aggregierte Wert zurückgegeben wird. Wenn in member_expression kein Measure angegeben ist, wird das Standardmeasure für diesen Cube verwendet.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/en-US.ts b/packages/sheets-formula/src/locale/function-list/cube/en-US.ts index c619010243..23d9283a4c 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/en-US.ts @@ -21,12 +21,14 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/en-us/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + kpiName: { name: 'Kpi_name', detail: 'Required. A text string of the name of the KPI in the cube.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Required. The KPI component returned and can be one of the following:' }, + caption: { name: 'Caption', detail: 'Optional. An alternative text string that is displayed in the cell instead of kpi_name and kpi_property.' }, }, }, CUBEMEMBER: { @@ -35,26 +37,28 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/en-us/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Required. A text string of a multidimensional expression (MDX) that evaluates to a unique member in the cube. Alternatively, member_expression can be a tuple, specified as a cell range or an array constant.' }, + caption: { name: 'Caption', detail: 'Optional. A text string displayed in the cell instead of the caption, if one is defined, from the cube. When a tuple is returned, the caption used is the one for the last member in the tuple.' }, }, }, 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.', + description: 'The CUBEMEMBERPROPERTY function, one of the Cube functions in Excel, returns the value of a member property from a cube. Use it to validate that a member name exists within the cube, and to return the specified property for this member.', + abstract: 'The CUBEMEMBERPROPERTY function, one of the Cube functions in Excel, returns the value of a member property from a cube. Use it 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', + url: 'https://support.microsoft.com/en-us/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Required. A text string of a multidimensional expression (MDX) of a member within the cube.' }, + property: { name: 'Property', detail: 'Required. A text string of the name of the property returned or a reference to a cell that contains the name of the property.' }, }, }, CUBERANKEDMEMBER: { @@ -63,12 +67,14 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/en-us/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + setExpression: { name: 'Set_expression', detail: 'Required. A text string of a set expression, such as "{[Item1].children}". Set_expression can also be the CUBESET function, or a reference to a cell that contains the CUBESET function.' }, + rank: { name: 'Rank', detail: 'Required. An integer value specifying the top value to return. If rank is a value of 1, it returns the top value, if rank is a value of 2, it returns the second most top value, and so on. To return the top 5 values, use CUBERANKEDMEMBER five times, specifying a different rank, 1 through 5, each time.' }, + caption: { name: 'Caption', detail: 'Optional. A text string displayed in the cell instead of the caption, if one is defined, from the cube.' }, }, }, CUBESET: { @@ -77,12 +83,15 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/en-us/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + setExpression: { name: 'Set_expression', detail: 'Required. A text string of a set expression that results in a set of members or tuples. Set_expression can also be a cell reference to an Excel range that contains one or more members, tuples, or sets included in the set.' }, + caption: { name: 'Caption', detail: 'Optional. A text string that is displayed in the cell instead of the caption, if one is defined, from the cube.' }, + sortOrder: { name: 'Sort_order', detail: 'Optional. The type of sort, if any, to perform and can be one of the following:' }, + sortBy: { name: 'Sort_by', detail: 'Optional. A text string of the value by which to sort. For example, to get the city with the highest sales, set_expression would be a set of cities, and sort_by would be the sales measure. Or, to get the city with the highest population, set_expression would be a set of cities, and sort_by would be the population measure. If sort_order requires sort_by, and sort_by is omitted, CUBESET returns the #VALUE! error message.' }, }, }, CUBESETCOUNT: { @@ -91,12 +100,11 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/en-us/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + set: { name: 'Set', detail: 'Required. A text string of a Microsoft Excel expression that evaluates to a set defined by the CUBESET function. Set can also be the CUBESET function, or a reference to a cell that contains the CUBESET function.' }, }, }, CUBEVALUE: { @@ -105,12 +113,12 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/en-us/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: 'Connection', detail: 'Required. A text string of the name of the connection to the cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Optional. A text string of a multidimensional expression (MDX) that evaluates to a member or tuple within the cube. Alternatively, member_expression can be a set defined with the CUBESET function. Use member_expression as a slicer to define the portion of the cube for which the aggregated value is returned. If no measure is specified in member_expression, the default measure for that cube is used.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/es-ES.ts b/packages/sheets-formula/src/locale/function-list/cube/es-ES.ts index 5c1793f63b..6b3c3cf00b 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/es-ES.ts @@ -18,87 +18,95 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: 'Devuelve una propiedad de indicador clave de rendimiento (KPI) y muestra el nombre del KPI en la celda. Un KPI es una medida cuantificable, como el beneficio bruto mensual o la rotación trimestral de empleados, que se utiliza para supervisar el rendimiento de una organización.', - abstract: 'Devuelve una propiedad de indicador clave de rendimiento (KPI) y muestra el nombre del KPI en la celda. Un KPI es una medida cuantificable, como el beneficio bruto mensual o la rotación trimestral de empleados, que se utiliza para supervisar el rendimiento de una organización.', + description: 'Devuelve una propiedad de indicador clave de rendimiento (KPI) y muestra el nombre del KPI en la celda. Un KPI es una medida cuantificable, como los beneficios brutos mensuales o la facturación trimestral por empleado, que se usa para supervisar el rendimiento de una organización.', + abstract: 'Devuelve una propiedad de indicador clave de rendimiento (KPI) y muestra el nombre del KPI en la celda. Un KPI es una medida cuantificable, como los beneficios brutos mensuales o la facturación trimestral por empleado, que se usa para supervisar el rendimiento de una organización.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/es-es/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + kpiName: { name: 'Kpi_name', detail: 'Obligatorio. Una cadena de texto del nombre del KPI en el cubo.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Obligatorio. El componente KPI devuelto, que puede ser uno de los siguientes:' }, + caption: { name: 'Título', detail: 'Opcional. Una cadena de texto alternativa que se muestra en la celda en lugar de nombre_kpi y propiedad_kpi.' }, }, }, CUBEMEMBER: { - description: 'Devuelve un miembro o tupla del cubo. Úselo para validar que el miembro o la tupla existe en el cubo.', - abstract: 'Devuelve un miembro o tupla del cubo. Úselo para validar que el miembro o la tupla existe en el cubo.', + description: 'Devuelve un miembro o tupla del cubo. Se usa para validar la existencia del miembro o tupla en el cubo.', + abstract: 'Devuelve un miembro o tupla del cubo. Se usa para validar la existencia del miembro o tupla en el cubo.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/es-es/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Obligatorio. Una cadena de texto de una expresión multidimensional (MDX) que evalúa en un miembro único del cubo. Como alternativa, expresión_miembro puede ser una tupla, especificada como un rango de celdas o una constante matricial.' }, + caption: { name: 'Título', detail: 'Opcional. Una cadena de texto mostrada en la celda en vez del título, si se define uno, del cubo. Cuando se devuelve una tupla, el título usado es el del último miembro de la tupla.' }, }, }, CUBEMEMBERPROPERTY: { - description: 'Devuelve el valor de una propiedad de miembro del cubo. Úselo para validar que existe un nombre de miembro dentro del cubo y para devolver la propiedad especificada para este miembro.', - abstract: 'Devuelve el valor de una propiedad de miembro del cubo. Úselo para validar que existe un nombre de miembro dentro del cubo y para devolver la propiedad especificada para este miembro.', + description: 'La función PROPIEDADMIEMBROCUBO , una de las funciones de Cubo en Excel, devuelve el valor de una propiedad miembro de un cubo. Se usa para validar la existencia de un nombre de miembro en el cubo y para devolver la propiedad especificada para este miembro.', + abstract: 'La función PROPIEDADMIEMBROCUBO , una de las funciones de Cubo en Excel, devuelve el valor de una propiedad miembro de un cubo. Se usa para validar la existencia de un nombre de miembro en el cubo y para devolver la propiedad especificada para este miembro.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/es-es/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Obligatorio. Una cadena de texto de una expresión multidimensional (MDX) de un miembro dentro del cubo.' }, + property: { name: 'Propiedad', detail: 'Obligatorio. Una cadena de texto del nombre de la propiedad devuelta o una referencia a una celda que contiene el nombre de la propiedad.' }, }, }, CUBERANKEDMEMBER: { - description: 'Devuelve el enésimo miembro, o clasificado, en un conjunto. Úselo para devolver uno o más elementos en un conjunto, como el mejor vendedor o los 10 mejores estudiantes.', - abstract: 'Devuelve el enésimo miembro, o clasificado, en un conjunto. Úselo para devolver uno o más elementos en un conjunto, como el mejor vendedor o los 10 mejores estudiantes.', + description: 'Devuelve el miembro n, o clasificado, en un conjunto. Se usa para devolver uno o más elementos de un conjunto, por ejemplo, el cantante que más discos vende o los 10 mejores alumnos.', + abstract: 'Devuelve el miembro n, o clasificado, en un conjunto. Se usa para devolver uno o más elementos de un conjunto, por ejemplo, el cantante que más discos vende o los 10 mejores alumnos.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/es-es/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + setExpression: { name: 'Set_expression', detail: 'Obligatorio. Una cadena de texto de una expresión de conjunto, como "{[Elemento1].hijos}". Expresión_conjunto también puede ser la función CONJUNTOCUBO o una referencia a una celda que contiene la función CONJUNTOCUBO.' }, + rank: { name: 'Rango', detail: 'Obligatorio. Un valor entero que especifica el valor superior que se va a devolver. Si la clasificación es un valor de 1, devuelve el valor superior, si la clasificación es un valor de 2, devuelve el segundo más alto y así sucesivamente. Para devolver los 5 primeros valores, use MIEMBRORANGOCUBO cinco veces, especificando una clasificación diferente, del 1 al 5, cada vez.' }, + caption: { name: 'Título', detail: 'Opcional. Una cadena de texto mostrada en la celda en vez del título, si se define uno, del cubo.' }, }, }, CUBESET: { - description: 'Define un conjunto calculado de miembros o tuplas enviando una expresión de conjunto al cubo en el servidor, que crea el conjunto y luego devuelve ese conjunto a Microsoft Excel.', - abstract: 'Define un conjunto calculado de miembros o tuplas enviando una expresión de conjunto al cubo en el servidor, que crea el conjunto y luego devuelve ese conjunto a Microsoft Excel.', + description: 'Define un conjunto calculado de miembros o tuplas mediante el envío de una expresión de conjunto al cubo en el servidor, lo que crea el conjunto y, después, devuelve dicho conjunto a Microsoft Excel.', + abstract: 'Define un conjunto calculado de miembros o tuplas mediante el envío de una expresión de conjunto al cubo en el servidor, lo que crea el conjunto y, después, devuelve dicho conjunto a Microsoft Excel.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/es-es/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + setExpression: { name: 'Set_expression', detail: 'Obligatorio. Una cadena de texto de una expresión de conjunto que tiene como resultado un conjunto de miembros o tuplas. Expresión_conjunto también puede ser una referencia de celda a un rango de Excel que contiene uno o más miembros, tuplas o conjuntos incluidos en el conjunto.' }, + caption: { name: 'Título', detail: 'Opcional. Una cadena de texto mostrada en la celda en vez del título, si se define uno, del cubo.' }, + sortOrder: { name: 'Sort_order', detail: 'Opcional. El tipo de ordenación, de haber alguno, que se va a realizar, que puede ser uno de los siguientes:' }, + sortBy: { name: 'Sort_by', detail: 'Opcional. Una cadena de texto del valor por el que ordenar. Por ejemplo, para obtener la ciudad con las ventas más elevadas, expresión_conjunto sería un conjunto de ciudades y ordenar_por sería la medición de ventas. O bien, para obtener la ciudad con la población más elevada, expresión_conjunto sería un conjunto de ciudades y ordenar_por sería la medición de la población. Si criterio_ordenación requiere ordenar_por, y ordenar_por se omite, CONJUNTOCUBO devuelve el mensaje de error #¡VALOR!. mensaje de error.' }, }, }, CUBESETCOUNT: { - description: 'Devuelve el número de elementos en un conjunto.', - abstract: 'Devuelve el número de elementos en un conjunto.', + description: 'Devuelve el número de elementos de un conjunto.', + abstract: 'Devuelve el número de elementos de un conjunto.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/es-es/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + set: { name: 'Establecer', detail: 'Obligatorio. Una cadena de texto de una expresión de Microsoft Excel que se evalúa como un conjunto definido por la función CONJUNTOCUBO. El conjunto también puede ser la función CONJUNTOCUBO o una referencia a una celda que contiene la función CONJUNTOCUBO.' }, }, }, CUBEVALUE: { @@ -107,12 +115,12 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/es-es/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + connection: { name: 'Conexión', detail: 'Obligatorio. Una cadena de texto del nombre de la conexión al cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Opcional. Una cadena de texto de una expresión multidimensional (MDX) que se evalúa como un miembro o tupla dentro del cubo. Como alternativa, expresión_miembro puede ser un conjunto definido con la función CONJUNTOCUBO. Use expresión_miembro como rebanador para definir la parte del cubo para la que se devuelve el valor agregado. Si no se especifica ninguna medida en expresión_miembro, se usa la medida predeterminada para dicho cubo.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/cube/fr-FR.ts index 60a22638e2..ccdf69f1c2 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/fr-FR.ts @@ -14,8 +14,115 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Renvoie une propriété d’indicateur de performance clé et affiche le nom de l’indicateur dans la cellule. Un indicateur de performance clé est une mesure quantifiable, telle que la marge bénéficiaire brute mensuelle ou la rotation trimestrielle du personnel, utilisée pour évaluer les performances d’une entreprise.', + abstract: 'Renvoie une propriété d’indicateur de performance clé et affiche le nom de l’indicateur dans la cellule. Un indicateur de performance clé est une mesure quantifiable, telle que la marge bénéficiaire brute mensuelle ou la rotation trimestrielle du personnel, utilisée pour évaluer les performances d’une entreprise.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + kpiName: { name: 'Kpi_name', detail: 'Obligatoire. Chaîne de texte qui représente le nom de l’indicateur de performance clé dans le cube.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Obligatoire. Le composant d’indicateur de performance clé retourné et peut être l’un des éléments suivants :' }, + caption: { name: 'Légende', detail: 'Optionnel. Chaîne de texte alternative affichée dans la cellule à la place de nom_icp et propriété_icp.' }, + }, + }, + CUBEMEMBER: { + description: 'Renvoie un membre ou un tuple du cube. Utilisez cette fonction pour valider l’existence du membre ou du tuple dans le cube.', + abstract: 'Renvoie un membre ou un tuple du cube. Utilisez cette fonction pour valider l’existence du membre ou du tuple dans le cube.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Obligatoire. Chaîne de texte d’une expression multidimensionnelle (MDX) qui indique un membre du cube. Cet argument peut également être un tuple, spécifié en tant que plage de cellules ou de constante matricielle.' }, + caption: { name: 'Légende', detail: 'Optionnel. Chaîne de texte affichée dans la cellule à la place de la légende provenant du cube, si celle-ci est définie. Lorsqu’un tuple est renvoyé, la légende utilisée est celle du dernier membre dans le tuple.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'La fonction CUBEMEMBERPROPERTY , l’une des fonctions Cube dans Excel, retourne la valeur d’une propriété membre à partir d’un cube. Utilisez cette fonction pour valider l’existence d’un nom de membre dans le cube et pour renvoyer la propriété spécifiée pour ce membre.', + abstract: 'La fonction CUBEMEMBERPROPERTY , l’une des fonctions Cube dans Excel, retourne la valeur d’une propriété membre à partir d’un cube. Utilisez cette fonction pour valider l’existence d’un nom de membre dans le cube et pour renvoyer la propriété spécifiée pour ce membre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Obligatoire. Chaîne de texte d’une expression multidimensionnelle (MDX) d’un membre dans le cube.' }, + property: { name: 'Propriété', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la propriété renvoyée ou une référence à une cellule qui contient le nom de la propriété.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Renvoie le nième membre ou le membre placé à un certain rang dans un ensemble. Utilisez cette fonction pour renvoyer un ou plusieurs éléments d’un ensemble, tels que les meilleurs vendeurs ou les 10 meilleurs étudiants.', + abstract: 'Renvoie le nième membre ou le membre placé à un certain rang dans un ensemble. Utilisez cette fonction pour renvoyer un ou plusieurs éléments d’un ensemble, tels que les meilleurs vendeurs ou les 10 meilleurs étudiants.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + setExpression: { name: 'Set_expression', detail: 'Obligatoire. Chaîne de texte qui représente une expression définie, telle que "{[Élément1].enfants}". L’argument expression_données peut également être la fonction JEUCUBE ou une référence à une cellule contenant la fonction JEUCUBE.' }, + rank: { name: 'Rang', detail: 'Obligatoire. Représente une valeur entière spécifiant la valeur supérieure. Si la valeur du rang est 1, la valeur supérieure est renvoyée, si la valeur du rang est 2, la valeur venant en second après la valeur supérieure est renvoyée, et ainsi de suite. Pour renvoyer les 5 valeurs supérieures, utilisez RANGMEMBRECUBE cinq fois, en spécifiant à chaque fois un rang différent, de 1 à 5.' }, + caption: { name: 'Légende', detail: 'Optionnel. Chaîne de texte affichée dans la cellule à la place de la légende provenant du cube, si celle-ci est définie.' }, + }, + }, + CUBESET: { + description: 'Définit un ensemble calculé de membres ou de tuples en envoyant une expression définie au cube sur le serveur qui crée l’ensemble et le renvoie à Microsoft Excel.', + abstract: 'Définit un ensemble calculé de membres ou de tuples en envoyant une expression définie au cube sur le serveur qui crée l’ensemble et le renvoie à Microsoft Excel.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + setExpression: { name: 'Set_expression', detail: 'Obligatoire. Chaîne de texte qui représente une expression de données qui produit un ensemble de membres ou de tuples. Cet argument peut également être une référence de cellule renvoyant à une plage Excel qui contient un ou plusieurs membres, tuples ou ensembles inclus dans l’ensemble.' }, + caption: { name: 'Légende', detail: 'Optionnel. Chaîne de texte affichée dans la cellule à la place de la légende provenant du cube, si celle-ci est définie.' }, + sortOrder: { name: 'Sort_order', detail: 'Optionnel. Représente le type de tri, le cas échéant, à effectuer et peut être ce qui suit :' }, + sortBy: { name: 'Sort_by', detail: 'Optionnel. Chaîne de texte de la valeur par laquelle trier. Par exemple, pour obtenir la ville avec les ventes les plus élevées, set_expression serait un ensemble de villes, et sort_by serait la mesure des ventes. Ou, pour obtenir la ville avec la population la plus élevée, set_expression serait un ensemble de villes, et sort_by serait la mesure de la population. Si sort_order nécessite sort_by et que sort_by est omis, CUBESET renvoie la #VALUE ! est renvoyé.' }, + }, + }, + CUBESETCOUNT: { + description: 'Renvoie le nombre d’éléments dans un ensemble.', + abstract: 'Renvoie le nombre d’éléments dans un ensemble.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Ensemble', detail: 'Obligatoire. Chaîne de texte qui représente une expression Microsoft Excel qui indique un ensemble défini par la fonction JEUCUBE. L’argument ensemble peut également être la fonction JEUCUBE ou une référence à une cellule qui contient la fonction JEUCUBE.' }, + }, + }, + CUBEVALUE: { + description: 'Renvoie une valeur d’agrégation issue du cube.', + abstract: 'Renvoie une valeur d’agrégation issue du cube.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Connexion', detail: 'Obligatoire. Chaîne de texte qui représente le nom de la connexion au cube.' }, + memberExpression: { name: 'Member_expression', detail: 'Optionnel. Chaîne de texte qui représente une expression multidimensionnelle (MDX) qui indique un membre ou un tuple dans le cube. L’argument expression_membre peut également être un ensemble défini avec la fonction JEUCUBE. Utilisez l’argument expression_membre comme délimiteur pour définir la partie du cube pour laquelle la valeur d’agrégation est renvoyée. Si aucune mesure n’est spécifiée dans l’argument expression_membre, la mesure par défaut pour ce cube est utilisée.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/id-ID.ts b/packages/sheets-formula/src/locale/function-list/cube/id-ID.ts new file mode 100644 index 0000000000..3fa761308d --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/id-ID.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Mengembalikan properti indikator kinerja utama (KPI, Key Performance Indicator) dan menampilkan nama KPI dalam sel. KPI merupakan pengukuran yang dapat dihitung, seperti laba kotor bulanan atau pergantian karyawan per kuartal, yang digunakan untuk memantau kinerja organisasi.', + abstract: 'Mengembalikan properti indikator kinerja utama (KPI, Key Performance Indicator) dan menampilkan nama KPI dalam sel. KPI merupakan pengukuran yang dapat dihitung, seperti laba kotor bulanan atau pergantian karyawan per kuartal, yang digunakan untuk memantau kinerja organisasi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + kpiName: { name: 'Kpi_name', detail: 'Diperlukan. String teks nama KPI dalam kubus.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Diperlukan. Komponen KPI dikembalikan dan dapat berupa salah satu dari yang berikut:' }, + caption: { name: 'Caption', detail: 'Opsional. String teks alternatif yang ditampilkan dalam sel sebagai ganti kpi_name dan kpi_property.' }, + }, + }, + CUBEMEMBER: { + description: 'Mengembalikan anggota atau rangkap dari kubus. Gunakan untuk memvalidasi bahwa anggota atau rangkap ada di dalam kubus.', + abstract: 'Mengembalikan anggota atau rangkap dari kubus. Gunakan untuk memvalidasi bahwa anggota atau rangkap ada di dalam kubus.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + memberExpression: { name: 'Member_expression', detail: 'Diperlukan. Sebuah string teks ekspresi multidimensi (MDX, multidimensional expression) yang mengevaluasi anggota unik dalam kubus. Alternatifnya, member_expression dapat berupa rangkap, yang ditentukan sebagai rentang sel atau konstanta array.' }, + caption: { name: 'Caption', detail: 'Opsional. Sebuah string teks akan ditampilkan dalam sel sebagai ganti keterangan, jika ada, dari kubus. Bila rangkap dikembalikan, keterangan yang digunakan adalah keterangan untuk anggota terakhir dalam rangkap.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'Fungsi CUBEMEMBERPROPERTY , salah satu fungsi Kubus di Excel, mengembalikan nilai properti anggota dari kubus. Gunakan untuk memvalidasi bahwa nama anggota ada di dalam kubus dan untuk mengembalikan properti tertentu untuk anggota tersebut.', + abstract: 'Fungsi CUBEMEMBERPROPERTY , salah satu fungsi Kubus di Excel, mengembalikan nilai properti anggota dari kubus. Gunakan untuk memvalidasi bahwa nama anggota ada di dalam kubus dan untuk mengembalikan properti tertentu untuk anggota tersebut.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + memberExpression: { name: 'Member_expression', detail: 'Diperlukan. Sebuah string teks ekspresi multidimensi (MDX, multidimensional expression) dari anggota dalam kubik.' }, + property: { name: 'Properti', detail: 'Diperlukan. Sebuah string teks berupa nama properti yang dikembalikan atau referensi ke sel yang berisi nama properti.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Mengembalikan nilai ke-n, atau rangking, anggota di dalam suatu kumpuln. Gunakan untuk mengembalikan satu atau beberapa elemen dalam sebuah kumpulan, seperti tenaga penjualan paling berprestasi atau 10 siswa terbaik.', + abstract: 'Mengembalikan nilai ke-n, atau rangking, anggota di dalam suatu kumpuln. Gunakan untuk mengembalikan satu atau beberapa elemen dalam sebuah kumpulan, seperti tenaga penjualan paling berprestasi atau 10 siswa terbaik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + setExpression: { name: 'Set_expression', detail: 'Diperlukan. String teks dari sebuah ekspresi set, seperti "{[Item1].children}". Set_expression juga bisa berupa fungsi CUBESET, atau referensi ke sel yang memuat fungsi CUBESET.' }, + rank: { name: 'Peringkat', detail: 'Diperlukan. Bilangan bulat yang menentukan nilai teratas untuk dikembalikan. Jika peringkat berupa nilai 1, maka akan mengembalikan nilai teratas, jika peringkat berupa nilai 2, maka akan mengembalikan nilai teratas kedua, dan seterusnya. Untuk mengembalikan 5 nilai teratas, gunakan CUBERANKEDMEMBER lima kali, yang masing-masing menentukan peringkat yang berbeda, dari 1 sampai 5.' }, + caption: { name: 'Caption', detail: 'Opsional. Sebuah string teks akan ditampilkan dalam sel sebagai ganti keterangan, jika ada, dari kubus.' }, + }, + }, + CUBESET: { + description: 'Menentukan set terhitung dari anggota atau rangkap dengan mengirim ekspresi set ke kubus pada server, yang membuat set itu, lalu mengembalikan set itu ke Microsoft Excel.', + abstract: 'Menentukan set terhitung dari anggota atau rangkap dengan mengirim ekspresi set ke kubus pada server, yang membuat set itu, lalu mengembalikan set itu ke Microsoft Excel.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + setExpression: { name: 'Set_expression', detail: 'Diperlukan. String teks dari sebuah ekspresi set yang mengembalikan set anggota atau rangkap. Set_expression juga dapat menjadi referensi sel bagi sebuah rentang Excel yang memuat satu atau beberapa anggota, rangkap, atau beberapa set yang dimasukkan dalam set tersebut.' }, + caption: { name: 'Caption', detail: 'Opsional. Sebuah string teks ditampilkan dalam sel sebagai ganti keterangan, jika ditentukan dari kubus.' }, + sortOrder: { name: 'Sort_order', detail: 'Opsional. Tipe pengurutan, jika ada, untuk dijalankan dapat berupa salah satu dari yang berikut:' }, + sortBy: { name: 'Sort_by', detail: 'Opsional. Sebuah string teks nilai untuk mengurutkan. Misalnya, untuk mendapatkan kota dengan penjualan tertinggi, set_expression berupa serangkaian kota, dan sort_by berupa ukuran penjualan. Misalnya, untuk mendapatkan kota dengan populasi tertinggi, set_expression berupa serangkaian kota, dan sort_by berupa ukuran populasi. Jika sort_order mensyaratkan sort_by, dan sort_by dikosongkan, maka CUBESET mengembalikan pesan kesalahan #VALUE! .' }, + }, + }, + CUBESETCOUNT: { + description: 'Mengembalikan jumlah item dalam sebuah kumpulan.', + abstract: 'Mengembalikan jumlah item dalam sebuah kumpulan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Set', detail: 'Diperlukan. Sebuah string teks ekspresi Microsoft Excel yang mengevaluasi sebuah kumpulan yang ditentukan oleh fungsi CUBESET. Set juga bisa berupa fungsi CUBESET, atau referensi ke sel yang memuat fungsi CUBESET.' }, + }, + }, + CUBEVALUE: { + description: 'Mengembalikan nilai agregat dari kubus.', + abstract: 'Mengembalikan nilai agregat dari kubus.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Koneksi', detail: 'Diperlukan. String teks nama koneksi ke kubus.' }, + memberExpression: { name: 'Member_expression', detail: 'Opsional. Sebuah string teks ekspresi multidimensi (MDX, multidimensional expression) yang mengevaluasi anggota atau rangkap dalam kubus. Alternatifnya, member_expression dapat berupa sebuah set yang ditentukan dengan fungsi CUBESET. Gunakan member_expression sebagai pemotong untuk menentukan bagian kubus di mana nilai agregat dikembalikan. Jika tidak ada ukuran yang ditentukan dalam member_expression, maka ukuran default untuk kubus tersebut akan digunakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/it-IT.ts b/packages/sheets-formula/src/locale/function-list/cube/it-IT.ts new file mode 100644 index 0000000000..7ea731a8f7 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/it-IT.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Restituisce la proprietà di un indicatore di prestazioni chiave (KPI) e visualizza il nome di tale indicatore nella cella. Un KPI è una misura quantificabile, ad esempio l\'utile lordo mensile o il fatturato trimestrale dei dipendenti, usata per il monitoraggio delle prestazioni di un\'organizzazione.', + abstract: 'Restituisce la proprietà di un indicatore di prestazioni chiave (KPI) e visualizza il nome di tale indicatore nella cella. Un KPI è una misura quantificabile, ad esempio l\'utile lordo mensile o il fatturato trimestrale dei dipendenti, usata per il monitoraggio delle prestazioni di un\'organizzazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + kpiName: { name: 'Kpi_name', detail: 'Obbligatorio. Stringa di testo relativa al nome dell\'indicatore KPI nel cubo.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Obbligatorio. Componente KPI restituito e può essere uno degli elementi seguenti:' }, + caption: { name: 'Didascalia', detail: 'Opzionale. Stringa di testo alternativo visualizzata nella cella che sostituisce nome_kpi e proprietà_kpi.' }, + }, + }, + CUBEMEMBER: { + description: 'Restituisce un membro o una tupla dal cubo. Consente di verificare l\'esistenza del membro o della tupla nel cubo.', + abstract: 'Restituisce un membro o una tupla dal cubo. Consente di verificare l\'esistenza del membro o della tupla nel cubo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + memberExpression: { name: 'Espressione_membro', detail: 'Obbligatorio. Stringa di testo di un\'espressione multidimensionale (MDX) che restituisce un membro univoco nel cubo. In alternativa, può essere una tupla specificata come un intervallo di celle o una costante di matrice.' }, + caption: { name: 'Didascalia', detail: 'Opzionale. Stringa di testo visualizzata nella cella in sostituzione della didascalia del cubo, se ne è stata definita una. Quando viene restituita una tupla, la didascalia usata è quella relativa all\'ultimo membro della tupla.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'La funzione PROPRIETÀ.MEMBRO.CUBO , una delle funzioni cubo di Excel, restituisce il valore di una proprietà di un membro da un cubo. Consente di verificare l\'esistenza di un nome di membro all\'interno del cubo e di restituire la proprietà specificata per tale membro.', + abstract: 'La funzione PROPRIETÀ.MEMBRO.CUBO , una delle funzioni cubo di Excel, restituisce il valore di una proprietà di un membro da un cubo. Consente di verificare l\'esistenza di un nome di membro all\'interno del cubo e di restituire la proprietà specificata per tale membro.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + memberExpression: { name: 'Espressione_membro', detail: 'Obbligatorio. Stringa di testo di un\'espressione multidimensionale (MDX) di un membro all\'interno del cubo.' }, + property: { name: 'Proprietà', detail: 'Obbligatorio. Stringa di testo relativa al nome della proprietà restituita o riferimento a una cella che contiene il nome della proprietà.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Restituisce l\'n-esimo membro o il membro ordinato di un insieme. È possibile ottenere uno o più elementi di un insieme, ad esempio il venditore migliore o i primi 10 studenti.', + abstract: 'Restituisce l\'n-esimo membro o il membro ordinato di un insieme. È possibile ottenere uno o più elementi di un insieme, ad esempio il venditore migliore o i primi 10 studenti.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + setExpression: { name: 'Espressione_insieme', detail: 'Obbligatorio. Stringa di testo di un\'espressione di insieme, ad esempio "{[Elemento1].figli}". Può essere anche costituita dalla funzione SET.CUBO o da un riferimento a una cella che contiene tale funzione.' }, + rank: { name: 'Rango', detail: 'Obbligatorio. Valore intero che specifica il valore più alto da restituire. Se il valore rango è 1, viene restituito il valore più alto, se è 2, viene restituito il secondo valore più alto e così via. Per ottenere i primi 5 valori, usare cinque volte la funzione MEMBRO.CUBO.CON.RANGO specificando un rango diverso ogni volta, da 1 a 5.' }, + caption: { name: 'Didascalia', detail: 'Opzionale. Stringa di testo visualizzata nella cella in sostituzione della didascalia del cubo, se ne è stata definita una.' }, + }, + }, + CUBESET: { + description: 'Definisce un insieme di tuple o membri calcolati mediante l\'invio di un\'espressione di insieme al cubo sul server. In questo modo l\'insieme viene creato e restituito a Microsoft Excel.', + abstract: 'Definisce un insieme di tuple o membri calcolati mediante l\'invio di un\'espressione di insieme al cubo sul server. In questo modo l\'insieme viene creato e restituito a Microsoft Excel.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + setExpression: { name: 'Espressione_insieme', detail: 'Obbligatorio. Stringa di testo di un\'espressione di insieme che restituisce un insieme di membri o tuple. Può essere anche costituito da un riferimento di cella in un intervallo Excel che contiene uno o più membri, tuple o insiemi inclusi nell\'insieme.' }, + caption: { name: 'Didascalia', detail: 'Opzionale. Stringa di testo visualizzata nella cella in sostituzione della didascalia del cubo, se ne è stata definita una.' }, + sortOrder: { name: 'Sort_order', detail: 'Opzionale. Tipo di ordinamento da seguire, se presente, e può essere uno tra quelli seguenti:' }, + sortBy: { name: 'Sort_by', detail: 'Opzionale. Una stringa di testo del valore di ordinamento. Ad esempio, per ottenere la città con le vendite maggiori, espressione_insieme sarà un insieme di città e ordina_per sarà la misura delle vendite. In alternativa, per ottenere la città più densamente popolata, espressione_insieme sarà un insieme di città e ordina_per sarà la misura della popolazione. Se ordinamento richiede ordina_per e questo viene omesso, SET.CUBO restituirà il messaggio di errore #VALORE! .' }, + }, + }, + CUBESETCOUNT: { + description: 'Restituisce il numero di elementi di un insieme.', + abstract: 'Restituisce il numero di elementi di un insieme.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Impostare', detail: 'Obbligatorio. Stringa di testo di un\'espressione Microsoft Excel che restituisce un insieme definito dalla funzione SET.CUBO. Può essere anche costituito dalla funzione SET.CUBO o da un riferimento a una cella che contiene tale funzione.' }, + }, + }, + CUBEVALUE: { + description: 'Restituisce un valore aggregato dal cubo.', + abstract: 'Restituisce un valore aggregato dal cubo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Connessione', detail: 'Obbligatorio. Stringa di testo che si riferisce al nome della connessione al cubo.' }, + memberExpression: { name: 'Espressione_membro', detail: 'Opzionale. Stringa di testo di un\'espressione multidimensionale (MDX) che restituisce un membro o una tupla all\'interno del cubo. In alternativa, può essere un insieme definito mediante la funzione SET.CUBO. È possibile usare espressione_membro1 come filtro dei dati per la definizione della porzione del cubo per cui viene restituito il valore aggregato. Se in espressione_membro1 non viene specificata una misura, verrà usata la misura predefinita per il cubo.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/cube/ja-JP.ts index 572ef69f18..5ae8586b7d 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/ja-JP.ts @@ -23,12 +23,14 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubekpimember-%E9%96%A2%E6%95%B0-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + kpiName: { name: 'Kpi_name', detail: '必須。 キューブ内の KPI の名前を表す文字列です。' }, + kpiProperty: { name: 'Kpi_property', detail: '必須。 返される KPI コンポーネントです。次のいずれかを指定できます。' }, + caption: { name: 'キャプション', detail: 'オプション。 KPI 名および KPI のプロパティの代わりにセルに表示される代替テキストです。' }, }, }, CUBEMEMBER: { @@ -37,26 +39,28 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubemember-%E9%96%A2%E6%95%B0-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + memberExpression: { name: 'Member_expression', detail: '必須。 キューブの一意のメンバーを表す多次元式 (MDX) の文字列です。 セル範囲または配列定数として指定された組をメンバー式に指定できます。' }, + caption: { name: 'キャプション', detail: 'オプション。 定義されている場合、キューブのキャプションの代わりにセルに表示される文字列です。 組が返される場合、組の最後のメンバーのキャプションが使用されます。' }, }, }, CUBEMEMBERPROPERTY: { - description: 'キューブ内のメンバー プロパティの値を返します。 メンバー名がキューブ内に存在することを確認し、このメンバーの特定のプロパティを取得するために使用します。', - abstract: 'キューブ内のメンバー プロパティの値を返します。 メンバー名がキューブ内に存在することを確認し、このメンバーの特定のプロパティを取得するために使用します。', + description: 'Excel の Cube 関数の 1 つである CUBEMEMBERPROPERTY 関数 は、キューブからメンバー プロパティの値を返します。 メンバー名がキューブ内に存在することを確認し、このメンバーの特定のプロパティを取得するために使用します。', + abstract: 'Excel の Cube 関数の 1 つである CUBEMEMBERPROPERTY 関数 は、キューブからメンバー プロパティの値を返します。 メンバー名がキューブ内に存在することを確認し、このメンバーの特定のプロパティを取得するために使用します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubememberproperty-%E9%96%A2%E6%95%B0-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + memberExpression: { name: 'Member_expression', detail: '必須。 キューブのメンバーを表す多次元式 (MDX) の文字列です。' }, + property: { name: 'プロパティ', detail: '必須。 返されるプロパティ名を表す文字列またはプロパティ名を含むセルへの参照を指定します。' }, }, }, CUBERANKEDMEMBER: { @@ -65,12 +69,14 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cuberankedmember-%E9%96%A2%E6%95%B0-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + setExpression: { name: 'Set_expression', detail: '必須。 "{[アイテム 1].子供}" などのセット式を表す文字列です。 CUBESET 関数、または CUBESET 関数を格納するセルへの参照も指定できます。' }, + rank: { name: 'ランク', detail: '必須。 返される 1 番上の値を指定する整数値です。 ランクの値が 1 の場合、1 番上の値が返されます。ランクの値が 2 の場合、上から 2 番目の値が返されます。 上位 5 番目までの値を返す場合は、CUBERANKEDMEMBER 関数を 5 回使い、それぞれに 1 から 5 の異なるランクを指定します。' }, + caption: { name: 'キャプション', detail: 'オプション。 定義されている場合、キューブのキャプションの代わりにセルに表示される文字列です。' }, }, }, CUBESET: { @@ -79,12 +85,15 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubeset-%E9%96%A2%E6%95%B0-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + setExpression: { name: 'Set_expression', detail: '必須。 メンバーまたは組のセットを表すセット式の文字列です。 セット内の 1 つ以上のメンバー、組、またはセットを含む Excel 範囲へのセル参照を指定することもできます。' }, + caption: { name: 'キャプション', detail: 'オプション。 定義されている場合、キューブのキャプションの代わりにセルに表示される文字列です。' }, + sortOrder: { name: 'Sort_order', detail: 'オプション。 実行する並べ替えの種類です (存在する場合)。次のいずれかを指定できます。' }, + sortBy: { name: 'Sort_by', detail: 'オプション。 並べ替えの基準となる値を表す文字列です。 たとえば、最も販売額の多い都市を見つけるには、セット式を都市のセットに設定し、並べ替えキーを販売メジャーに設定します。 最も人口の多い都市を見つけるには、セット式を都市のセットに設定し、並べ替えキーを人口メジャーに設定します。 並べ替え順序に並べ替えキーが必要で、並べ替えキーが省略されている場合は、エラー値 #VALUE! が返されます。' }, }, }, CUBESETCOUNT: { @@ -93,12 +102,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubesetcount-%E9%96%A2%E6%95%B0-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + set: { name: '設定', detail: '必須。 CUBESET 関数で定義されたセットを表す Microsoft Office Excel の式を表す文字列です。 CUBESET 関数、または CUBESET 関数を格納するセルへの参照も指定できます。' }, }, }, CUBEVALUE: { @@ -107,12 +115,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cubevalue-%E9%96%A2%E6%95%B0-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '接続', detail: '必須。 キューブへの接続名を表す文字列です。' }, + memberExpression: { name: 'Member_expression', detail: 'オプション。 キューブ内のメンバーまたは組を表す多次元式 (MDX) の文字列です。 または、メンバー式は CUBESET 関数で定義したセットでもかまいません。 メンバー式をスライサーとして使用して、合計値が返されるキューブの部分を定義します。 メンバー式でメジャーが指定されない場合は、そのキューブの既定のメジャーが使用されます。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/cube/ko-KR.ts index 6fd9269b09..c545de4305 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/ko-KR.ts @@ -18,101 +18,109 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: 'KPI 속성을 반환하고 셀에 KPI 이름을 표시합니다. KPI는 조직의 성과를 모니터링하는 데 사용되는 측정 가능한 지표입니다, 예: 월간 총 이익 또는 분기별 직원 회전율.', - abstract: 'KPI 속성을 반환하고 셀에 KPI 이름을 표시합니다. KPI는 조직의 성과를 모니터링하는 데 사용되는 측정 가능한 지표입니다, 예: 월간 총 이익 또는 분기별 직원 회전율.', + description: 'KPI(핵심 성과 지표) 속성을 반환하고 셀에 KPI 이름을 표시합니다. KPI는 월별 매출총이익, 분기별 직원 전직률과 같이 수량화할 수 있는 측정값이며 조직의 성과를 모니터링하는 데 사용됩니다.', + abstract: 'KPI(핵심 성과 지표) 속성을 반환하고 셀에 KPI 이름을 표시합니다. KPI는 월별 매출총이익, 분기별 직원 전직률과 같이 수량화할 수 있는 측정값이며 조직의 성과를 모니터링하는 데 사용됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + kpiName: { name: 'Kpi_name', detail: '필수. 큐브의 KPI 이름을 나타내는 텍스트 문자열입니다.' }, + kpiProperty: { name: 'Kpi_property', detail: '필수. 반환되는 KPI 구성 요소로서 다음 중 하나일 수 있습니다.' }, + caption: { name: '캡션', detail: '선택적. kpi_name과 kpi_property 대신 셀에 표시되는 대체 텍스트 문자열입니다.' }, }, }, CUBEMEMBER: { - description: '큐브에서 멤버 또는 튜플을 반환합니다. 멤버 또는 튜플이 큐브에 존재하는지 확인하려면 사용합니다.', - abstract: '큐브에서 멤버 또는 튜플을 반환합니다. 멤버 또는 튜플이 큐브에 존재하는지 확인하려면 사용합니다.', + description: '큐브에서 구성원이나 튜플을 반환합니다. 큐브에 구성원이나 튜플이 있는지 확인하는 데 사용합니다.', + abstract: '큐브에서 구성원이나 튜플을 반환합니다. 큐브에 구성원이나 튜플이 있는지 확인하는 데 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + memberExpression: { name: 'Member_expression', detail: '필수. 큐브에서 고유한 구성원으로 평가되는 MDX(다차원 식)의 텍스트 문자열입니다. 또는 member_expression은 셀 범위 또는 배열 상수로 지정된 튜플이 될 수 있습니다.' }, + caption: { name: '캡션', detail: '선택적. 정의된 경우 큐브에서 캡션 대신 셀에 표시되는 텍스트 문자열입니다. 튜플이 반환될 경우 사용되는 캡션은 해당 튜플의 마지막 구성원에 대한 캡션입니다.' }, }, }, CUBEMEMBERPROPERTY: { - description: '큐브에서 멤버 속성의 값을 반환합니다. 멤버 이름이 큐브에 존재하는지 확인하려면 사용합니다.', - abstract: '큐브에서 멤버 속성의 값을 반환합니다. 멤버 이름이 큐브에 존재하는지 확인하려면 사용합니다.', + description: 'Excel의 Cube 함수 중 하나인 CUBEMEMBERPROPERTY 함수는 큐브에서 멤버 속성의 값을 반환합니다. 큐브 내에 구성원 이름이 있는지 확인하고 해당 구성원에 지정된 속성을 반환하는 데 사용합니다.', + abstract: 'Excel의 Cube 함수 중 하나인 CUBEMEMBERPROPERTY 함수는 큐브에서 멤버 속성의 값을 반환합니다. 큐브 내에 구성원 이름이 있는지 확인하고 해당 구성원에 지정된 속성을 반환하는 데 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + memberExpression: { name: 'Member_expression', detail: '필수. 큐브 내에 있는 구성원의 MDX(다차원 식)를 나타내는 텍스트 문자열입니다.' }, + property: { name: '속성', detail: '필수. 반환되는 속성의 이름을 나타내는 텍스트 문자열이거나 속성 이름을 포함하는 셀에 대한 참조입니다.' }, }, }, CUBERANKEDMEMBER: { - description: '집합에서 n번째 또는 순위가 지정된 멤버를 반환합니다. 최고 판매 역할을 수행하는 사람이나 상위 10명의 학생과 같은 집합에서 하나 이상의 요소를 반환하려면 사용합니다.', - abstract: '집합에서 n번째 또는 순위가 지정된 멤버를 반환합니다. 최고 판매 역할을 수행하는 사람이나 상위 10명의 학생과 같은 집합에서 하나 이상의 요소를 반환하려면 사용합니다.', + description: '집합에서 n번째 또는 순위 내의 구성원을 반환합니다. 최고 판매 사원이나 10등 내의 학생 등 집합에서 하나 이상의 요소를 반환하는 데 사용합니다.', + abstract: '집합에서 n번째 또는 순위 내의 구성원을 반환합니다. 최고 판매 사원이나 10등 내의 학생 등 집합에서 하나 이상의 요소를 반환하는 데 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + setExpression: { name: 'Set_expression', detail: '필수. "{[Item1].children}"과 같은 집합 식을 나타내는 텍스트 문자열입니다. set_expression은 CUBESET 함수이거나 CUBESET 함수를 포함하는 셀에 대한 참조일 수도 있습니다.' }, + rank: { name: '순위', detail: '필수. 반환할 맨 위 값을 지정하는 정수 값입니다. rank가 1이면 최상위 값을 반환하고 rank가 2이면 최상위에서 두 번째 값을 반환합니다. 상위 5개의 값을 반환하려면 CUBERANKEDMEMBER를 다섯 번 사용하고 1부터 5까지 매번 다른 순위를 지정하십시오.' }, + caption: { name: '캡션', detail: '선택적. 정의된 경우 큐브에서 캡션 대신 셀에 표시되는 텍스트 문자열입니다.' }, }, }, CUBESET: { - description: '집합 표현식을 서버의 큐브로 보내어 집합을 만들고 그 집합을 Microsoft Excel로 반환합니다.', - abstract: '집합 표현식을 서버의 큐브로 보내어 집합을 만들고 그 집합을 Microsoft Excel로 반환합니다.', + description: '서버의 큐브에 집합을 만드는 식을 전송하여 계산된 구성원이나 튜플 집합을 정의하고 이 집합을 Microsoft Excel에 반환합니다.', + abstract: '서버의 큐브에 집합을 만드는 식을 전송하여 계산된 구성원이나 튜플 집합을 정의하고 이 집합을 Microsoft Excel에 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + setExpression: { name: 'Set_expression', detail: '필수. 구성원 또는 튜플의 집합을 만드는 집합 식을 나타내는 텍스트 문자열입니다. set_expression은 집합에 포함된 구성원, 튜플 또는 하위 집합이 하나 이상 들어 있는 Excel 범위에 대한 셀 참조일 수도 있습니다.' }, + caption: { name: '캡션', detail: '선택적. 정의된 경우 큐브에서 캡션 대신 셀에 표시되는 텍스트 문자열입니다.' }, + sortOrder: { name: 'Sort_order', detail: '선택적. 수행할 정렬 유형으로서 다음 중 하나일 수 있습니다.' }, + sortBy: { name: 'Sort_by', detail: '선택적. 정렬 기준으로 사용할 값을 나타내는 텍스트 문자열입니다. 예를 들어 판매량이 가장 높은 도시를 가져오려면 set_expression에 도시 집합을 지정하고 sort_by에 판매량 측정값을 지정합니다. 인구가 가장 많은 도시를 가져오려면 set_expression에 도시 집합을 지정하고 sort_by에 인구 측정값을 지정합니다. sort_order에 sort_by가 필요한 경우 sort_by를 지정하지 않으면 CUBESET에서는 #VALUE! 오류 메시지가 반환됩니다.' }, }, }, CUBESETCOUNT: { - description: '집합에 있는 항목의 수를 반환합니다.', - abstract: '집합에 있는 항목의 수를 반환합니다.', + description: '집합에서 항목 개수를 반환합니다.', + abstract: '집합에서 항목 개수를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + set: { name: '설정', detail: '필수. CUBESET 함수에 의해 정의된 집합으로 계산되는 Microsoft Excel 식을 나타내는 텍스트 문자열입니다. set은 CUBESET 함수이거나 CUBESET 함수를 포함하는 셀에 대한 참조일 수도 있습니다.' }, }, }, CUBEVALUE: { - description: '큐브에서 집계된 값을 반환합니다.', - abstract: '큐브에서 집계된 값을 반환합니다.', + description: '큐브에서 집계 값을 반환합니다.', + abstract: '큐브에서 집계 값을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + connection: { name: '연결', detail: '필수. 큐브에 대한 연결 이름을 나타내는 텍스트 문자열입니다.' }, + memberExpression: { name: 'Member_expression', detail: '선택적. 큐브 내의 멤버 또는 튜플로 계산되는 MDX(다차원 식)의 텍스트 문자열입니다. 또는 member_expression CUBESET 함수로 정의된 집합일 수 있습니다. member_expression 슬라이서로 사용하여 집계된 값이 반환되는 큐브 부분을 정의합니다. member_expression 측정값이 지정되지 않은 경우 해당 큐브에 대한 기본 측정값이 사용됩니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/cube/pl-PL.ts new file mode 100644 index 0000000000..caeb77f419 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/pl-PL.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Zwraca właściwość kluczowego wskaźnika wydajności (KPI) oraz wyświetla nazwę KPI w komórce. Wskaźnik KPI jest miarą ilościową, taką jak miesięczny zysk brutto lub kwartalna fluktuacja pracowników, która jest używana do monitorowania wydajności organizacji.', + abstract: 'Zwraca właściwość kluczowego wskaźnika wydajności (KPI) oraz wyświetla nazwę KPI w komórce. Wskaźnik KPI jest miarą ilościową, taką jak miesięczny zysk brutto lub kwartalna fluktuacja pracowników, która jest używana do monitorowania wydajności organizacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + kpiName: { name: 'Kpi_name', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę wskaźnika KPI w module.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Wymagane. Jest to zwracany składnik wskaźnika KPI, który może mieć jedną z następujących postaci:' }, + caption: { name: 'Podpis', detail: 'Opcjonalne. Jest to alternatywny ciąg tekstowy, który jest wyświetlany w komórce zamiast parametrów kpi_nazwa oraz kpi_właściwość.' }, + }, + }, + CUBEMEMBER: { + description: 'Zwraca element lub krotkę z modułu. Służy do sprawdzania, czy element lub krotka istnieje w module.', + abstract: 'Zwraca element lub krotkę z modułu. Służy do sprawdzania, czy element lub krotka istnieje w module.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + memberExpression: { name: 'Member_expression', detail: 'Wymagane. Jest to ciąg tekstowy określający wyrażenie wielowymiarowe (MDX), którego wartością jest unikatowy element modułu. Ten argument może być również krotką podaną jako zakres komórek lub stała tablicowa.' }, + caption: { name: 'Podpis', detail: 'Opcjonalne. Jest to ciąg tekstowy wyświetlany w komórce zamiast podpisu modułu (jeśli zdefiniowano podpis modułu). Jeśli jest zwracana krotka, program używa podpisu ujętego w ostatnim elemencie krotki.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'Funkcja WŁAŚCIWOŚĆ.ELEMENTU.MODUŁU , jedna z funkcji Moduł w programie Excel, zwraca wartość właściwości elementu z modułu. Służy do sprawdzania, czy nazwa elementu istnieje w module, a także do zwracania określonej właściwości dla tego elementu.', + abstract: 'Funkcja WŁAŚCIWOŚĆ.ELEMENTU.MODUŁU , jedna z funkcji Moduł w programie Excel, zwraca wartość właściwości elementu z modułu. Służy do sprawdzania, czy nazwa elementu istnieje w module, a także do zwracania określonej właściwości dla tego elementu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + memberExpression: { name: 'Member_expression', detail: 'Wymagane. Jest to ciąg tekstowy określający wyrażenie wielowymiarowe (MDX) dla elementu w module.' }, + property: { name: 'Właściwość', detail: 'Wymagane. Jest to ciąg tekstowy nazwy zwróconej właściwości lub odwołania do komórki, która zawiera nazwę właściwości.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Zwraca n-ty (czyli uszeregowany) element zestawu. Służy do zwracania elementów zestawu, na przykład najlepszego sprzedawcy lub 10 najlepszych studentów.', + abstract: 'Zwraca n-ty (czyli uszeregowany) element zestawu. Służy do zwracania elementów zestawu, na przykład najlepszego sprzedawcy lub 10 najlepszych studentów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + setExpression: { name: 'Wyrażenie_docelowe', detail: 'Wymagane. Jest to ciąg tekstowy wyrażenia zestawu, na przykład „{[Element1].dzieci}”. Może to być również funkcja ZESTAW.MODUŁÓW lub odwołanie do komórki zawierającej tę funkcję.' }, + rank: { name: 'Rank', detail: 'Wymagane. Jest to liczba całkowita określająca najwyższą wartość, jaka ma zostać zwrócona. Jeśli argument pozycja ma wartość 1, funkcja zwraca najwyższą wartość, jeśli 2 — drugą wartość itd. Aby zwrócić 5 najwyższych wartości, należy pięć razy użyć funkcji USZEREGOWANY.ELEMENT.MODUŁU, określając pozycje od 1 do 5.' }, + caption: { name: 'Podpis', detail: 'Opcjonalne. Jest to ciąg tekstowy wyświetlany w komórce zamiast podpisu modułu (jeśli zdefiniowano podpis modułu).' }, + }, + }, + CUBESET: { + description: 'Definiuje obliczeniowy zestaw elementów lub krotek, wysyłając wyrażenie zestawu do modułu na serwerze, który tworzy zestaw i zwraca go do programu Microsoft Office Excel.', + abstract: 'Definiuje obliczeniowy zestaw elementów lub krotek, wysyłając wyrażenie zestawu do modułu na serwerze, który tworzy zestaw i zwraca go do programu Microsoft Office Excel.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + setExpression: { name: 'Wyrażenie_docelowe', detail: 'Wymagane. Jest to ciąg tekstowy wyrażenia zestawu, którego wartością jest zestaw elementów lub krotek. Może to być również odwołanie do zakresu komórek programu Excel zawierającego pewną liczbę elementów, krotek lub zestawów należących do zestawu.' }, + caption: { name: 'Podpis', detail: 'Opcjonalne. Jest to ciąg tekstowy, który jest wyświetlany w komórce zamiast podpisu modułu (jeśli taki podpis został zdefiniowany).' }, + sortOrder: { name: 'Sort_order', detail: 'Opcjonalne. Określa typ sortowania, jakie należy wykonać, i (o ile argument jest podawany) może przybierać następujące wartości:' }, + sortBy: { name: 'Sort_by', detail: 'Opcjonalne. Jest to ciąg tekstowy wartości do posortowania. Na przykład, aby uzyskać miasto o największej sprzedaży, set_expression będzie zestaw miast, a sort_by będzie miarą sprzedaży. Lub, aby uzyskać miasto o największej liczbie ludności, set_expression będzie zestawem miast, a sort_by będzie miarą populacji. Jeśli sort_order wymaga sort_by, a sort_by zostanie pominięty, funkcja ZESTAW.MODUŁÓW zwraca #VALUE! Komunikat o błędzie.' }, + }, + }, + CUBESETCOUNT: { + description: 'Zwraca liczbę elementów zestawu.', + abstract: 'Zwraca liczbę elementów zestawu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Ustawić', detail: 'Wymagane. Jest to ciąg tekstowy będący wyrażeniem programu Microsoft Excel, którego wartością jest zestaw zdefiniowany za pomocą funkcji ZESTAW.MODUŁÓW. Argument ten może być również funkcją ZESTAW.MODUŁÓW lub odwołaniem do komórki zawierającej tę funkcję.' }, + }, + }, + CUBEVALUE: { + description: 'Zwraca zagregowaną wartość z modułu.', + abstract: 'Zwraca zagregowaną wartość z modułu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Połączenia', detail: 'Wymagane. Jest to ciąg tekstowy określający nazwę połączenia z modułem.' }, + memberExpression: { name: 'Member_expression', detail: 'Opcjonalne. Jest to ciąg tekstowy określający wyrażenie wielowymiarowe (MDX), którego wartością jest unikatowy element modułu. Ten argument może również być zestawem zdefiniowanym przy użyciu funkcji ZESTAW.MODUŁÓW. Argument wyrażenie_elementu ma zastosowanie jako wyrażenie określające część modułu, dla której funkcja ma zwrócić zagregowaną wartość. Jeśli w argumencie wyrażenie_elementu nie zostanie podana miara, program użyje domyślnej miary modułu.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/cube/pt-BR.ts new file mode 100644 index 0000000000..192f188557 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/cube/pt-BR.ts @@ -0,0 +1,128 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CUBEKPIMEMBER: { + description: 'Retorna a propriedade de um indicador chave de desempenho (KPI) e exibe o nome do KPI na célula. Um KPI é uma medida quantificável, como o lucro bruto mensal ou a rotatividade trimestral de funcionários, usada para monitorar o desempenho de uma organização.', + abstract: 'Retorna a propriedade de um indicador chave de desempenho (KPI) e exibe o nome do KPI na célula. Um KPI é uma medida quantificável, como o lucro bruto mensal ou a rotatividade trimestral de funcionários, usada para monitorar o desempenho de uma organização.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubekpimember-function', + }, + ], + functionParameter: { + connection: { name: 'Conexão', detail: 'Necessário. Uma cadeia de texto do nome da conexão com o cubo.' }, + kpiName: { name: 'Kpi_name', detail: 'Necessário. Uma cadeia de texto do nome do KPI no cubo.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Necessário. O componente KPI retornado e pode ser uma das seguintes opções:' }, + caption: { name: 'Legenda', detail: 'Opcional. Uma cadeia de texto alternativa exibida na célula em vez de kpi_name e kpi_property.' }, + }, + }, + CUBEMEMBER: { + description: 'Retorna um membro ou uma tupla a partir de um cubo. Use para validar a existência do membro ou da tupla no cubo.', + abstract: 'Retorna um membro ou uma tupla a partir de um cubo. Use para validar a existência do membro ou da tupla no cubo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubemember-function', + }, + ], + functionParameter: { + connection: { name: 'Conexão', detail: 'Necessário. Uma cadeia de texto do nome da conexão com o cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Necessário. Uma cadeia de texto de uma expressão multidimensional (MDX) que resulta em um único membro no cubo. De modo alternativo, expressão_membro pode ser uma tupla, especificada como um intervalo de células ou uma constante de matriz.' }, + caption: { name: 'Legenda', detail: 'Opcional. Uma cadeia de texto exibida na célula em vez da legenda do cubo, se uma estiver definida. Quando uma tupla é retornada, a legenda usada é aquela do último membro da tupla.' }, + }, + }, + CUBEMEMBERPROPERTY: { + description: 'A função PROPRIEDADEMEMBROCUBO , uma das funções Cubo no Excel, devolve o valor de uma propriedade membro de um cubo. Use-a para validar a existência do nome do membro no cubo e para retornar a propriedade especificada para esse membro.', + abstract: 'A função PROPRIEDADEMEMBROCUBO , uma das funções Cubo no Excel, devolve o valor de uma propriedade membro de um cubo. Use-a para validar a existência do nome do membro no cubo e para retornar a propriedade especificada para esse membro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubememberproperty-function', + }, + ], + functionParameter: { + connection: { name: 'Ligação', detail: 'Obrigatório. Uma cadeia de texto do nome da conexão com o cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Obrigatório. Uma cadeia de texto de uma expressão multidimensional (MDX) de um membro no cubo.' }, + property: { name: 'Propriedade', detail: 'Obrigatório. Uma cadeia de texto do nome da propriedade retornado ou uma referência a uma célula que contém o nome da propriedade.' }, + }, + }, + CUBERANKEDMEMBER: { + description: 'Retorna o enésimo membro, ou o membro ordenado, em um conjunto. Use para retornar um ou mais elementos em um conjunto, assim como o melhor vendedor ou os dez melhores alunos.', + abstract: 'Retorna o enésimo membro, ou o membro ordenado, em um conjunto. Use para retornar um ou mais elementos em um conjunto, assim como o melhor vendedor ou os dez melhores alunos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cuberankedmember-function', + }, + ], + functionParameter: { + connection: { name: 'Ligação', detail: 'Obrigatório. Uma cadeia de texto do nome da conexão com o cubo.' }, + setExpression: { name: 'Set_expression', detail: 'Obrigatório. Uma cadeia de texto de uma expressão de um conjunto, como "{[Item1].children}". Expressão_conjunto também pode ser a função CONJUNTOCUBO ou uma referência a uma célula que contém a função CONJUNTOCUBO.' }, + rank: { name: 'Classificação', detail: 'Obrigatório. Um valor inteiro que especifica o valor superior a retornar. Se a classificação for um valor 1, ela retornará o valor superior, se for um valor 2, retornará o segundo valor mais superior, e assim por diante. Para retornar os cinco valores superiores, use a função MEMBROCLASSIFICADOCUBO cinco vezes, especificando uma classificação diferente, de 1 a 5, por vez.' }, + caption: { name: 'Legenda', detail: 'Opcional. Uma cadeia de texto exibida na célula em vez da legenda do cubo, se uma estiver definida.' }, + }, + }, + CUBESET: { + description: 'Define um conjunto calculado de membros ou tuplas enviando uma expressão do conjunto para o cubo no servidor, que cria o conjunto e o retorna para o Microsoft Excel.', + abstract: 'Define um conjunto calculado de membros ou tuplas enviando uma expressão do conjunto para o cubo no servidor, que cria o conjunto e o retorna para o Microsoft Excel.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubeset-function', + }, + ], + functionParameter: { + connection: { name: 'Conexão', detail: 'Necessário. Uma cadeia de texto do nome da conexão com o cubo.' }, + setExpression: { name: 'Set_expression', detail: 'Necessário. Uma cadeia de texto de uma expressão de um conjunto que resulta em um conjunto de membros ou tuplas. Expressão_conjunto também pode ser uma referência de célula para um intervalo do Excel que contém um ou mais membros, tuplas ou conjuntos incluídos no conjunto.' }, + caption: { name: 'Legenda', detail: 'Opcional. Uma cadeia de texto exibida na célula ao invés da legenda do cubo, se houver uma definida.' }, + sortOrder: { name: 'Sort_order', detail: 'Opcional. O tipo de classificação, se houver, a ser executada e pode corresponder a uma das seguintes opções:' }, + sortBy: { name: 'Sort_by', detail: 'Opcional. Uma cadeia de texto do valor pelo qual classificar. Por exemplo, para obter a cidade com as vendas mais altas, set_expression seria um conjunto de cidades, e sort_by seria a medida de vendas. Ou, para obter a cidade com a maior população, set_expression seria um conjunto de cidades, e sort_by seria a medida populacional. Se sort_order exigir sort_by e sort_by for omitido, o CUBESET retornará o #VALUE! mensagem de erro.' }, + }, + }, + CUBESETCOUNT: { + description: 'Retorna o número de itens em um conjunto.', + abstract: 'Retorna o número de itens em um conjunto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubesetcount-function', + }, + ], + functionParameter: { + set: { name: 'Definir', detail: 'Necessário. Uma cadeia de texto de uma expressão do Microsoft Excel que resulta em um conjunto definido pela função CONJUNTOCUBO. Conjunto também pode ser a função CONJUNTOCUBO ou uma referência a uma célula que contém a função CONJUNTOCUBO.' }, + }, + }, + CUBEVALUE: { + description: 'Retorna um valor agregado do cubo.', + abstract: 'Retorna um valor agregado do cubo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cubevalue-function', + }, + ], + functionParameter: { + connection: { name: 'Conexão', detail: 'Necessário. Uma cadeia de texto do nome da conexão com o cubo.' }, + memberExpression: { name: 'Member_expression', detail: 'Opcional. Uma cadeia de texto de uma expressão multidimensional (MDX) que resulta em um membro ou em uma tupla no cubo. De maneira alternativa, expressão_membro pode ser um conjunto definido com a função CONJUNTOCUBO. Use expressão_membro como um slicer para definir a porção do cubo para a qual o valor agregado é retornado. Se nenhuma medida for especificada na expressão_membro, será usada a medida padrão para esse cubo.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/cube/ru-RU.ts index 4cb0899244..9043603e75 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/ru-RU.ts @@ -18,87 +18,95 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: 'Возвращает свойство ключевого показателя эффективности (KPI) и отображает имя KPI в ячейке. KPI — это количественная мера, такая как ежемесячная валовая прибыль или ежеквартальная текучесть сотрудников, используемая для мониторинга производительности организации.', - abstract: 'Возвращает свойство ключевого показателя эффективности (KPI) и отображает имя KPI в ячейке. KPI — это количественная мера, такая как ежемесячная валовая прибыль или ежеквартальная текучесть сотрудников, используемая для мониторинга производительности организации.', + description: 'Возвращает свойство ключевого показателя эффективности (КПЭ) и отображает его имя в ячейке. КПЭ представляет собой количественную величину, такую как ежемесячная валовая прибыль или ежеквартальная текучесть кадров, используемой для контроля эффективности работы организации.', + abstract: 'Возвращает свойство ключевого показателя эффективности (КПЭ) и отображает его имя в ячейке. КПЭ представляет собой количественную величину, такую как ежемесячная валовая прибыль или ежеквартальная текучесть кадров, используемой для контроля эффективности работы организации.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + kpiName: { name: 'Kpi_name', detail: 'Обязательно. Текстовая строка, представляющая имя ключевого показателя эффективности в кубе.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Обязательно. Возвращаемый компонент ключевого показателя эффективности может быть одним из следующих:' }, + caption: { name: 'Заголовок', detail: 'Дополнительные. Альтернативная текстовая строка, отображаемая в ячейке вместо значений "имя_КИП" и "свойство_КИП".' }, }, }, CUBEMEMBER: { - description: 'Возвращает элемент или кортеж из куба. Используйте для проверки существования элемента или кортежа в кубе.', - abstract: 'Возвращает элемент или кортеж из куба. Используйте для проверки существования элемента или кортежа в кубе.', + description: 'Возвращает элемент или кортеж из куба. Используется для проверки существования элемента или кортежа в кубе.', + abstract: 'Возвращает элемент или кортеж из куба. Используется для проверки существования элемента или кортежа в кубе.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + memberExpression: { name: 'Member_expression', detail: 'Обязательно. Текстовая строка, представляющая многомерное выражение, которое возвращает уникальный элемент в кубе. Аргумент "выражение_элемента" может также быть кортежем, определенным как диапазон ячеек или константа массива.' }, + caption: { name: 'Заголовок', detail: 'Дополнительные. Текстовая строка, которая отображается в ячейке вместо подписи из куба, если она определена. При возврате кортежа используется подпись для последнего элемента в кортеже.' }, }, }, CUBEMEMBERPROPERTY: { - description: 'Возвращает значение свойства элемента из куба. Используйте для проверки существования имени элемента в кубе и для возврата указанного свойства для этого элемента.', - abstract: 'Возвращает значение свойства элемента из куба. Используйте для проверки существования имени элемента в кубе и для возврата указанного свойства для этого элемента.', + description: 'Функция CUBEMEMBERPROPERTY , одна из функций Cube в Excel, возвращает значение свойства члена из куба. Используется для подтверждения того, что имя элемента внутри куба существует, и для возвращения определенного свойства для этого элемента.', + abstract: 'Функция CUBEMEMBERPROPERTY , одна из функций Cube в Excel, возвращает значение свойства члена из куба. Используется для подтверждения того, что имя элемента внутри куба существует, и для возвращения определенного свойства для этого элемента.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + memberExpression: { name: 'Member_expression', detail: 'Обязательно. Текстовая строка, представляющая многомерное выражение элемента в кубе.' }, + property: { name: 'Свойство', detail: 'Обязательно. Текстовая строка, представляющая имя возвращаемого свойства или ссылку на ячейку, которая содержит имя свойства.' }, }, }, CUBERANKEDMEMBER: { - description: 'Возвращает n-ого или ранжированного элемента в наборе. Используйте для возврата одного или нескольких элементов в наборе, таких как лучший продавец или топ-10 студентов.', - abstract: 'Возвращает n-ого или ранжированного элемента в наборе. Используйте для возврата одного или нескольких элементов в наборе, таких как лучший продавец или топ-10 студентов.', + description: 'Возвращает n-й, или ранжированный, элемент в множестве. Используется для возвращения одного или нескольких элементов в множестве, например, лучшего продавца или 10 лучших студентов.', + abstract: 'Возвращает n-й, или ранжированный, элемент в множестве. Используется для возвращения одного или нескольких элементов в множестве, например, лучшего продавца или 10 лучших студентов.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + setExpression: { name: 'Set_expression', detail: 'Обязательно. Текстовая строка, представляющая выражение множества, например "{[Item1].children}". "Выражение_множества" также может быть функцией КУБМНОЖ или ссылкой на ячейку, содержащую функцию КУБМНОЖ.' }, + rank: { name: 'Ранга', detail: 'Обязательно. Целочисленное значение, определяющее наибольшее значение, которое будет возвращено. Если "ранг" имеет значение 1, возвращается наибольшее значение, если "ранг" имеет значение 2, возвращается второе по величине значение, и т. д. Чтобы возвратить 5 наибольших значений, вызовите функцию КУБПОРЭЛЕМЕНТ пять раз, указывая каждый раз новое значение "ранг": от 1 до 5.' }, + caption: { name: 'Заголовок', detail: 'Дополнительные. Текстовая строка, которая отображается в ячейке вместо подписи из куба, если она определена.' }, }, }, CUBESET: { - description: 'Определяет вычисляемый набор элементов или кортежей, отправляя выражение набора на сервер, который создает набор, а затем возвращает этот набор в Microsoft Excel.', - abstract: 'Определяет вычисляемый набор элементов или кортежей, отправляя выражение набора на сервер, который создает набор, а затем возвращает этот набор в Microsoft Excel.', + description: 'Определяет вычисляемое множество элементов или кортежей, отправляя выражение для множества в куб на сервере, который создает множество, а затем возвращает его в Microsoft Excel.', + abstract: 'Определяет вычисляемое множество элементов или кортежей, отправляя выражение для множества в куб на сервере, который создает множество, а затем возвращает его в Microsoft Excel.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + setExpression: { name: 'Set_expression', detail: 'Обязательно. Текстовая строка, представляющая выражение множества, которая дает в результате множество элементов или кортежей. "Выражение_множества" также может быть ссылкой на диапазон Excel, содержащий один или несколько элементов, кортежей или множеств, входящих в состав множества.' }, + caption: { name: 'Заголовок', detail: 'Дополнительные. Текстовая строка, отображаемая в ячейке вместо подписи из куба, если она определена.' }, + sortOrder: { name: 'Sort_order', detail: 'Дополнительные. Тип выполняемой сортировки; возможны варианты, указанные ниже.' }, + sortBy: { name: 'Sort_by', detail: 'Дополнительные. Текстовая строка значения, по которому выполняется сортировка. Например, чтобы получить город с самым высоким уровнем продаж, set_expression будет набором городов, а sort_by — мерой продаж. Или, чтобы получить город с самым высоким населением, set_expression будет набор городов, а sort_by будет мера населения. Если sort_order требуется sort_by, а sort_by опущен, функция CUBESET возвращает #VALUE! сообщение об ошибке.' }, }, }, CUBESETCOUNT: { - description: 'Возвращает количество элементов в наборе.', - abstract: 'Возвращает количество элементов в наборе.', + description: 'Возвращает число элементов в множестве.', + abstract: 'Возвращает число элементов в множестве.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + set: { name: 'Установить', detail: 'Обязательно. Текстовая строка выражения Microsoft Excel, которая возвращает множество, определенное функцией КУБМНОЖ. Множество также может быть функцией КУБМНОЖ или ссылкой на ячейку, содержащую функцию КУБМНОЖ.' }, }, }, CUBEVALUE: { @@ -107,12 +115,12 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + connection: { name: 'Подключения', detail: 'Обязательно. Текстовая строка, представляющая имя подключения к кубу.' }, + memberExpression: { name: 'Member_expression', detail: 'Дополнительные. Текстовая строка, представляющая многомерное выражение, которое возвращает элемент или кортеж в кубе. Кроме того, "выражение_элемента" может быть множеством, определенным с помощью функции КУБМНОЖ. Используйте "выражение_элемента" в качестве среза, чтобы определить часть куба, для которой необходимо возвратить агрегированное значение. Если в аргументе "выражение_элемента" не указана мера, будет использоваться мера, заданная по умолчанию для этого куба.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/cube/sk-SK.ts index b1cd69cc1b..1db3b50a68 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/sk-SK.ts @@ -18,101 +18,109 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: 'Vracia vlastnosť kľúčového ukazovateľa výkonnosti (KPI) a zobrazí názov KPI v bunke. KPI je merateľný ukazovateľ, napríklad mesačný hrubý zisk alebo štvrťročná fluktuácia zamestnancov, ktorý sa používa na sledovanie výkonnosti organizácie.', - abstract: 'Vracia vlastnosť KPI a zobrazí názov KPI v bunke.', + description: 'Vráti vlastnosť kľúčového indikátora výkonu (KPI) a v bunke zobrazí názov KPI. Kľúčový indikátor výkonu (KPI) je kvantitatívna miera, ako napríklad hrubý mesačný zisk alebo štvrťročná fluktuácia zamestnancov, ktoré sa používajú na sledovanie výkonu organizácie.', + abstract: 'Vráti vlastnosť kľúčového indikátora výkonu (KPI) a v bunke zobrazí názov KPI. Kľúčový indikátor výkonu (KPI) je kvantitatívna miera, ako napríklad hrubý mesačný zisk alebo štvrťročná fluktuácia zamestnancov, ktoré sa používajú na sledovanie výkonu organizácie.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + kpiName: { name: 'Kpi_name', detail: 'Povinné. Predstavuje textový reťazec názvu indikátora KPI v kocke.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Povinné. Predstavuje vrátený komponent indikátora KPI a môže byť jedným z nasledovných:' }, + caption: { name: 'Titulky', detail: 'Voliteľný argument. Predstavuje alternatívny textový reťazec, ktorý sa zobrazí v bunke namiesto argumentov názov_kuv a vlastnosť_kuv.' }, }, }, CUBEMEMBER: { - description: 'Vracia člena alebo n-ticu z kocky. Použite na overenie, že člen alebo n-tica existuje v kocke.', - abstract: 'Vracia člena alebo n-ticu z kocky.', + description: 'Vráti člen alebo n-ticu kocky. Používa sa na overenie existencie člena alebo n-tice v kocke.', + abstract: 'Vráti člen alebo n-ticu kocky. Používa sa na overenie existencie člena alebo n-tice v kocke.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + memberExpression: { name: 'Member_expression', detail: 'Povinné. Predstavuje textový reťazec multidimenzionálneho výrazu (MDX), ktorý sa vyhodnocuje ako jedinečný člen v kocke. Argument členský_výraz môže byť n-tica určená ako rozsah buniek alebo pole konštánt.' }, + caption: { name: 'Titulky', detail: 'Voliteľný argument. Predstavuje textový reťazec, ktorý sa zobrazí v bunke namiesto nadpisu (ak je definovaný) z kocky. Ak je vrátená n-tica, použije sa nadpis posledného člena n-tice.' }, }, }, CUBEMEMBERPROPERTY: { - description: 'Vracia hodnotu vlastnosti člena z kocky. Použite na overenie, že názov člena existuje v kocke, a na vrátenie zadanej vlastnosti tohto člena.', - abstract: 'Vracia hodnotu vlastnosti člena z kocky.', + description: 'Funkcia CUBEMEMBERPROPERTY , jedna z funkcií kocky v Exceli, vráti hodnotu vlastnosti člena kocky. Používa sa na overenie existencie názvu člena kocky a vráti určitú vlastnosť tohto člena.', + abstract: 'Funkcia CUBEMEMBERPROPERTY , jedna z funkcií kocky v Exceli, vráti hodnotu vlastnosti člena kocky. Používa sa na overenie existencie názvu člena kocky a vráti určitú vlastnosť tohto člena.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + memberExpression: { name: 'Member_expression', detail: 'Povinné. Predstavuje textový reťazec multidimenzionálneho výrazu (MDX) člena kocky.' }, + property: { name: 'Vlastnosť', detail: 'Povinné. Predstavuje textový reťazec názvu vrátenej vlastnosti alebo referenciu na bunku obsahujúcu názov vlastnosti.' }, }, }, CUBERANKEDMEMBER: { - description: 'Vracia n-tého (zoradeného) člena v množine. Použite na vrátenie jedného alebo viacerých prvkov v množine, napríklad najlepšieho predajcu alebo top 10 študentov.', - abstract: 'Vracia n-tého (zoradeného) člena v množine.', + description: 'Vráti n-tého alebo zoradeného člena množiny. Používa sa na vrátenie jedného alebo viacerých prvkov množiny, ako napríklad najpredávanejšieho interpreta alebo 10 najlepších študentov.', + abstract: 'Vráti n-tého alebo zoradeného člena množiny. Používa sa na vrátenie jedného alebo viacerých prvkov množiny, ako napríklad najpredávanejšieho interpreta alebo 10 najlepších študentov.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + setExpression: { name: 'Set_expression', detail: 'Povinné. Predstavuje textový reťazec výrazu množiny, ako napríklad "{[Položka1].children}". Argumentom výraz_množiny môže byť aj funkcia CUBESET alebo odkaz na bunku obsahujúcu funkciu CUBESET.' }, + rank: { name: 'Pozícia', detail: 'Povinné. Predstavuje celočíselnú hodnotu určujúcu, ktorá najvyššia hodnota sa má vrátiť. Ak má argument poradie hodnotu 1, vráti sa najvyššia hodnota, ak má argument poradie hodnotu 2, vráti sa druhá najvyššia hodnota, atď. Ak chcete vrátiť prvých 5 hodnôt, použite funkciu CUBERANKEDMEMBER päťkrát a zakaždým určite odlišný argument poradie, od 1 po 5.' }, + caption: { name: 'Titulky', detail: 'Voliteľný argument. Predstavuje textový reťazec, ktorý sa zobrazí v bunke namiesto nadpisu (ak je definovaný) z kocky.' }, }, }, CUBESET: { - description: 'Definuje vypočítanú množinu členov alebo n-tíc odoslaním výrazu množiny do kocky na serveri, ktorá množinu vytvorí, a potom ju vráti do Microsoft Excelu.', - abstract: 'Definuje vypočítanú množinu členov alebo n-tíc a vráti ju do Excelu.', + description: 'Definuje vypočítavanú množinu členov alebo n-tíc odoslaním výrazu pre množinu do kocky na serveri, ktorý vytvára množinu, a potom ju odošle programu Microsoft Excel.', + abstract: 'Definuje vypočítavanú množinu členov alebo n-tíc odoslaním výrazu pre množinu do kocky na serveri, ktorý vytvára množinu, a potom ju odošle programu Microsoft Excel.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + setExpression: { name: 'Set_expression', detail: 'Povinné. Predstavuje textový reťazec výrazu množiny, ktorého výsledkom je množina členov alebo n-tíc. Argumentom výraz_množiny môže byť aj odkaz na rozsah buniek programu Excel obsahujúci jeden alebo viacero členov, n-tíc alebo množín obsiahnutých v množine.' }, + caption: { name: 'Titulky', detail: 'Voliteľný argument. Predstavuje textový reťazec, ktorý sa zobrazí v bunke namiesto nadpisu (ak je definovaný) z kocky.' }, + sortOrder: { name: 'Sort_order', detail: 'Voliteľný argument. Predstavuje druh radenia, aké sa v prípade jeho zadania vykoná, pričom môže byť jedným z nasledovných:' }, + sortBy: { name: 'Sort_by', detail: 'Voliteľný argument. Predstavuje textový reťazec hodnoty, podľa ktorej sa má zoraďovať. Ak napríklad chcete získať mesto s najvyšším predajom, set_expression by predstavovala množina miest a sort_by bola miera predaja. Ak by sme chceli získať mesto s najvyššou populáciou, set_expression by išlo o množinu miest a sort_by by bola miera počtu obyvateľov. Ak sort_order vyžaduje sort_by a sort_by nie je zadaná, funkcia CUBESET vráti #VALUE! chybové hlásenie.' }, }, }, CUBESETCOUNT: { - description: 'Vracia počet položiek v množine.', - abstract: 'Vracia počet položiek v množine.', + description: 'Vráti počet položiek v množine.', + abstract: 'Vráti počet položiek v množine.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + set: { name: 'Nastaviť', detail: 'Povinné. Predstavuje textový reťazec výrazu programu Microsoft Excel, ktorý nadobúda hodnotu množiny definovanej funkciou CUBESET. Argumentom množina môže byť aj funkcia CUBESET alebo odkaz na bunku obsahujúcu funkciu CUBESET.' }, }, }, CUBEVALUE: { - description: 'Vracia agregovanú hodnotu z kocky.', - abstract: 'Vracia agregovanú hodnotu z kocky.', + description: 'Vráti súhrnnú hodnotu kocky.', + abstract: 'Vráti súhrnnú hodnotu kocky.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + connection: { name: 'Pripojenie', detail: 'Povinné. Predstavuje textový reťazec názvu pripojenia ku kocke.' }, + memberExpression: { name: 'Member_expression', detail: 'Voliteľný argument. Predstavuje textový reťazec multidimenzionálneho výrazu (MDX), ktorý sa vyhodnocuje ako jedinečný člen alebo n-tica v kocke. Argumentom členský_výraz môže byť aj množina definovaná funkciou CUBESET. Argument členský_výraz používajte ako rozdeľovač, ktorým definujete časť kocky, ktorej agregátnu hodnotu chcete vrátiť. Ak argument členský_výraz neurčuje žiadnu mieru, použije sa predvolená miera kocky.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/cube/vi-VN.ts index 0f573aa74b..ba4b0b7b31 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/vi-VN.ts @@ -18,104 +18,111 @@ import type enUS from './en-US'; const locale: typeof enUS = { 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ý.', + description: 'Trả về thuộc tính chỉ số hiệu suất then chốt (KPI) và hiển thị tên KPI trong ô. KPI là một số đo có thể định lượng được, chẳng hạn như lãi gộp hàng tháng hoặc số lượng nhân viên luân chuyển, dùng để theo dõi hoạt động của một tổ chức.', + abstract: 'Trả về thuộc tính chỉ số hiệu suất then chốt (KPI) và hiển thị tên KPI trong ô. KPI là một số đo có thể định lượng được, chẳng hạn như lãi gộp hàng tháng hoặc số lượng nhân viên luân chuyển, dùng để theo dõi hoạt động của một tổ chức.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + kpiName: { name: 'Kpi_name', detail: 'Yêu cầu. Chuỗi văn bản của tên KPI trong khối.' }, + kpiProperty: { name: 'Kpi_property', detail: 'Yêu cầu. Cấu phần KPI được trả về và có thể là một trong các dạng sau:' }, + caption: { name: 'Chú thích', detail: 'Tùy chọn. Một chuỗi văn bản thay thế được hiển thị trong ô thay cho kpi_name và kpi_property.' }, }, }, 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.', + description: 'Trả về một phần tử hoặc một bộ từ khối. Dùng để xác thực rằng phần tử hoặc bộ tồn tại trong khối.', + abstract: 'Trả về một phần tử hoặc một bộ từ khối. Dùng để xác thực rằng phần tử hoặc bộ tồn tại trong khối.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + memberExpression: { name: 'Member_expression', detail: 'Yêu cầu. Một chuỗi văn bản biểu thức đa chiều (DMX) định trị một phần tử duy nhất trong khối. Theo cách khác, member_expression có thể là một bộ, được xác định như là một phạm vi ô hoặc một hằng số mảng.' }, + caption: { name: 'Chú thích', detail: 'Tùy chọn. Một chuỗi văn bản được hiển thị trong ô thay cho chú thích từ ô, nếu như có một chú thích được xác định từ khối. Khi một bộ được trả về, chú thích được dùng là chú thích cho phần tử cuối cùng trong bộ.' }, }, }, 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 đó.', + description: 'Hàm CUBEMEMBERPROPERTY , một trong các hàm Cube trong Excel, trả về giá trị của một thuộc tính phần tử từ một khối. Dùng để xác thực một tên phần tử tồn tại trong cube và trả về thuộc tính được chỉ định cho phần tử này.', + abstract: 'Hàm CUBEMEMBERPROPERTY , một trong các hàm Cube trong Excel, trả về giá trị của một thuộc tính phần tử từ một khối. Dùng để xác thực một tên phần tử tồn tại trong cube và trả về thuộc tính được chỉ định cho phần tử này.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + memberExpression: { name: 'Member_expression', detail: 'Yêu cầu. Chuỗi văn bản biểu thức đa chiều (MDX) của một phần tử trong một khối.' }, + property: { name: 'Tài sản', detail: 'Yêu cầu. Chuỗi văn bản tên của thuộc tính được trả về hoặc tham chiếu tới một ô có chứa tên của thuộc tính.' }, }, }, 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.', + description: 'Trả về phần tử thứ n hoặc được xếp hạng trong một tập hợp. Dùng để trả về một hoặc các thành phần trong một tập hợp, chẳng hạn như nhân viên kinh doanh đứng đầu hoặc 10 học sinh đứng đầu.', + abstract: 'Trả về phần tử thứ n hoặc được xếp hạng trong một tập hợp. Dùng để trả về một hoặc các thành phần trong một tập hợp, chẳng hạn như nhân viên kinh doanh đứng đầu hoặc 10 học sinh đứng đầu.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + setExpression: { name: 'Set_expression', detail: 'Yêu cầu. Một chuỗi văn bản của một biểu thức tập hợp, chẳng hạn như "{[Item1].children}". member_expression cũng có thể là hàm CUBESET, hoặc tham chiếu tới một ô có chứa hàm CUBESET.' }, + rank: { name: 'Xếp hạng', detail: 'Yêu cầu. Một giá trị số nguyên chỉ rõ giá trị trên cùng cần trả về. Nếu thứ hạng là giá trị 1, nó trả về giá trị cao nhất, nếu thứ hạng là giá trị 2, nó trả về giá trị cao thứ hai, v.v. Để trả về 5 giá trị hàng đầu, hãy dùng hàm CUBERANKEDMEMBER năm lần, xác định một thứ hạng khác nhau, từ 1 đến 5, mỗi lần.' }, + caption: { name: 'Chú thích', detail: 'Tùy chọn. Một chuỗi văn bản được hiển thị trong ô thay cho chú thích từ ô, nếu như có một chú thích được xác định từ khối.' }, }, }, 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.', + description: 'Xác định một tập hợp phần tử được tính hoặc bộ bằng cách gửi một biểu thức tập hợp tới khối trên máy chủ, tạo tập hợp rồi trả tập hợp đó về Microsoft Excel.', + abstract: 'Xác định một tập hợp phần tử được tính hoặc bộ bằng cách gửi một biểu thức tập hợp tới khối trên máy chủ, tạo tập hợp rồi 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + setExpression: { name: 'Set_expression', detail: 'Yêu cầu. Một chuỗi văn bản set_expression trả về kết quả là một tập hợp các phần tử hoặc các bộ. Set_expression cũng có thể là một tham chiếu ô tới một phạm vi Excel có chứa một hoặc nhiều phần tử, bộ hoặc tập hợp được bao gồm trong tập hợp đó.' }, + caption: { name: 'Chú thích', detail: 'Tùy chọn. Một chuỗi văn bản được hiển thị trong ô thay cho chú thích từ ô, nếu như có một chú thích được xác định.' }, + sortOrder: { name: 'Sort_order', detail: 'Tùy chọn. Kiểu sắp xếp, nếu có, cần thực hiện và có thể là một trong các kiểu sau đây:' }, + sortBy: { name: 'Sort_by', detail: 'Tùy chọn. Một chuỗi văn bản gồm các giá trị cần sắp xếp theo đó. Ví dụ, để có được thành phố có doanh thu lớn nhất, set_expression phải là một tập hợp các thành phố và sort_by là số đo về doanh thu. Hoặc để có được thành phố đông dân nhất, set_expression phải là một tập hợp các thành phố và sort_by là số dân. Nếu sort_order yêu cầu phải có sort_by, và sort_by được bỏ qua, thì CUBESET trả về thông báo lỗi #VALUE! .' }, }, }, 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.', + description: 'Trả về số mục trong một tập hợp.', + abstract: 'Trả về số mục trong một 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + set: { name: 'Thiết lập', detail: 'Yêu cầu. Một chuỗi văn bản của biểu thức Microsoft Excel mà biểu thức này định trị một giá trị được xác định bởi hàm CUBESET. Tập hợp cũng có thể là hàm CUBESET, hoặc tham chiếu tới một ô có chứa hàm CUBESET.' }, }, }, 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.', + description: 'Trả về một giá trị tổng hợp từ khối.', + abstract: 'Trả về một giá trị tổng hợp từ khối.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'Tham số thứ nhất' }, - number2: { name: 'number2', detail: 'Tham số thứ hai' }, + connection: { name: 'Kết nối', detail: 'Yêu cầu. Chuỗi văn bản tên của kết nối tới khối.' }, + memberExpression: { name: 'Member_expression', detail: 'Tùy chọn. Một chuỗi văn bản biểu thức đa chiều (DMX) định trị một phần tử hoặc một bộ trong khối. Hoặc theo cách khác, biểu thức phần tử có thể là một tập hợp được xác định với hàm CUBESET. Hãy dùng biểu thức phần tử như một slicer để xác định phần của khối mà giá trị tổng hợp cho nó được trả về. Nếu không có số đo nào được xác định trong biểu thức phần tử, thì sẽ dùng số đo mặc định của khối đó.' }, }, }, -} -; +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/cube/zh-CN.ts index 50fed0c145..b30a2fa9c4 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/zh-CN.ts @@ -18,19 +18,19 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: - '返回重要性能指示器 (KPI) 属性,并在单元格中显示 KPI 名称。 KPI 是一种用于监控单位绩效的可计量度量值,如每月总利润或季度员工调整。', - abstract: - '返回重要性能指示器 (KPI) 属性,并在单元格中显示 KPI 名称。 KPI 是一种用于监控单位绩效的可计量度量值,如每月总利润或季度员工调整。', + description: '返回重要性能指示器 (KPI) 属性,并在单元格中显示 KPI 名称。 KPI 是一种用于监控单位绩效的可计量度量值,如每月总利润或季度员工调整。', + abstract: '返回重要性能指示器 (KPI) 属性,并在单元格中显示 KPI 名称。 KPI 是一种用于监控单位绩效的可计量度量值,如每月总利润或季度员工调整。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubekpimember-%E5%87%BD%E6%95%B0-744608bf-2c62-42cd-b67a-a56109f4b03b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + kpiName: { name: 'Kpi_name', detail: '必填。 一个表示多维数据集的 KPI 名称的文本字符串。' }, + kpiProperty: { name: 'Kpi_property', detail: '必填。 返回的 KPI 组件,可以是以下值之一:' }, + caption: { name: '标题', detail: '选。 是显示在单元格中的可选文本字符串,而不是 kpi_name 和 kpi_property。' }, }, }, CUBEMEMBER: { @@ -39,58 +39,61 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubemember-%E5%87%BD%E6%95%B0-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + memberExpression: { name: 'Member_expression', detail: '必填。 多维表达式 (MDX) 的文本字符串,用来计算出多维数据集中的唯一成员。 此外,也可以将 member_expression 指定为单元格区域或数组常量的元组。' }, + caption: { name: '标题', detail: '选。 显示在多维数据集的单元格(而不是标题)中的文本字符串(如果定义了一个文本字符串)。 当返回元组时,所用的标题为元组中最后一个成员的文本字符串。' }, }, }, CUBEMEMBERPROPERTY: { - description: '返回多维数据集中成员属性的值。 用于验证多维数据集内是否存在某个成员名并返回此成员的指定属性。', - abstract: '返回多维数据集中成员属性的值。 用于验证多维数据集内是否存在某个成员名并返回此成员的指定属性。', + description: 'CUBEMEMBERPROPERTY 函数(Excel 中的 多维数据集函数 之一)从多维数据集返回成员属性的值。 用于验证多维数据集内是否存在某个成员名并返回此成员的指定属性。', + abstract: 'CUBEMEMBERPROPERTY 函数(Excel 中的 多维数据集函数 之一)从多维数据集返回成员属性的值。 用于验证多维数据集内是否存在某个成员名并返回此成员的指定属性。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubememberproperty-%E5%87%BD%E6%95%B0-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + memberExpression: { name: 'Member_expression', detail: '必填。 一个文本字符串,表示多维数据集中的一个成员的多维表达式 (MDX)。' }, + property: { name: '财产', detail: '必填。 一个文本字符串,表示返回的属性的名称或对包含该属性的名称的单元格的引用。' }, }, }, CUBERANKEDMEMBER: { - description: - '返回集合中的第 n 个或排在一定名次的成员。 用来返回集合中的一个或多个元素,如业绩最好的销售人员或前 10 名的学生。', - abstract: - '返回集合中的第 n 个或排在一定名次的成员。 用来返回集合中的一个或多个元素,如业绩最好的销售人员或前 10 名的学生。', + description: '返回集合中的第 n 个或排在一定名次的成员。 用来返回集合中的一个或多个元素,如业绩最好的销售人员或前 10 名的学生。', + abstract: '返回集合中的第 n 个或排在一定名次的成员。 用来返回集合中的一个或多个元素,如业绩最好的销售人员或前 10 名的学生。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cuberankedmember-%E5%87%BD%E6%95%B0-07efecde-e669-4075-b4bf-6b40df2dc4b3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + setExpression: { name: 'Set_expression', detail: '必填。 集表达式的文本字符串,例如 "{[Item1].children}"。 Set_expression 也可以是 CUBESET 函数,或者是对包含 CUBESET 函数的单元格的引用。' }, + rank: { name: '排名', detail: '必填。 用于指定要返回的最高值的整型值。 如果排名值为 1,它将返回最高值;如果排名值为 2,它将返回第二高的值,依此类推。 要返回最高的前 5 个值,请使用 5 次 CUBERANKEDMEMBER ,每一次指定从 1 到 5 的不同排名。' }, + caption: { name: '标题', detail: '选。 显示在多维数据集的单元格(而不是标题)中的文本字符串(如果定义了一个文本字符串)。' }, }, }, CUBESET: { - description: - '定义成员或元组的计算集。方法是向服务器上的多维数据集发送一个集合表达式,此表达式创建集合,并随后将该集合返回到 Microsoft Excel。', - abstract: - '定义成员或元组的计算集。方法是向服务器上的多维数据集发送一个集合表达式,此表达式创建集合,并随后将该集合返回到 Microsoft Excel。', + description: '定义成员或元组的计算集。方法是向服务器上的多维数据集发送一个集合表达式,此表达式创建集合,并随后将该集合返回到 Microsoft Excel。', + abstract: '定义成员或元组的计算集。方法是向服务器上的多维数据集发送一个集合表达式,此表达式创建集合,并随后将该集合返回到 Microsoft Excel。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubeset-%E5%87%BD%E6%95%B0-5b2146bd-62d6-4d04-9d8f-670e993ee1d9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + setExpression: { name: 'Set_expression', detail: '必填。 产生一组成员或元组的集合表达式的文本字符串。 Set_expression 也可以是对 Excel 区域的单元格引用,该区域包含一个或多个成员、元组或包含在集合中的集合。' }, + caption: { name: '标题', detail: '选。 显示在多维数据集的单元格(而不是标题)中的文本字符串(如果定义了一个文本字符串)。' }, + sortOrder: { name: 'Sort_order', detail: '选。 要执行的排序类型(如果有),可以为下列类型之一:' }, + sortBy: { name: 'Sort_by', detail: '选。 排序所依据的值的文本字符串。 例如,要获得销售量最高的城市,则 set_expression 为一组城市,sort_by 为销售量。 或者,要获得人口最多的城市,则 set_expression 为一组城市,sort_by 为人口量。 如果 sort_order 需要 sort_by,而 sort_by 被忽略,则 CUBESET 函数返回 #VALUE! 错误消息。' }, }, }, CUBESETCOUNT: { @@ -99,12 +102,11 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubesetcount-%E5%87%BD%E6%95%B0-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + set: { name: '设置', detail: '必填。 Microsoft Office Excel 表达式的文本字符串,该表达式计算出由 CUBESET 函数定义的集合。 Set 也可以是 CUBESET 函数,或者是对包含 CUBESET 函数的单元格的引用。' }, }, }, CUBEVALUE: { @@ -113,12 +115,12 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cubevalue-%E5%87%BD%E6%95%B0-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '连接', detail: '必填。 一个表示多维数据集的连接名称的文本字符串。' }, + memberExpression: { name: 'Member_expression', detail: '选。 多维表达式 (MDX) 的文本字符串,用来计算出多维数据集内的成员或元组。 另外,member_expression 可以是由 CUBESET 函数定义的集合。 使用 member_expression 作为切片器来定义要返回其汇总值的多维数据集部分。 如果 member_expression 中未指定度量值,则使用该多维数据集的默认度量值。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/cube/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/cube/zh-TW.ts index affd04e481..dfeb0da0db 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/cube/zh-TW.ts @@ -18,107 +18,109 @@ import type enUS from './en-US'; const locale: typeof enUS = { CUBEKPIMEMBER: { - description: - '傳回重要效能指示器 (KPI) 屬性,並在儲存格中顯示 KPI 名稱。 KPI 是一種用於監控單位績效的可計量度量值,例如每月總利潤或季度員工調整。 ', - abstract: - '傳回重要效能指示器 (KPI) 屬性,並在儲存格中顯示 KPI 名稱。 KPI 是一種用於監控單位績效的可計量度量值,例如每月總利潤或季度員工調整。 ', + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubekpimember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + kpiName: { name: 'Kpi_name', detail: '必須。 Cube 中 KPI 名稱的文字字串。' }, + kpiProperty: { name: 'Kpi_property', detail: '必須。 傳回的 KPI 元件,可以為下列其中一項:' }, + caption: { name: '說明', detail: '可選的。 取代 kpi_name 及 kpi_property 而顯示在儲存格中的文字字串。' }, }, }, CUBEMEMBER: { - description: '傳回多維資料集中的成員或元組。 用於驗證多維資料集內是否存在成員或元組。 ', - abstract: '傳回多維資料集中的成員或元組。 用於驗證多維資料集內是否存在成員或元組。 ', + description: '傳回 Cube 中的成員或 Tuple。 用來驗證 Cube 中有成員或 Tuple 存在。', + abstract: '傳回 Cube 中的成員或 Tuple。 用來驗證 Cube 中有成員或 Tuple 存在。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cubemember-%E5%87%BD%E6%95%B0-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubemember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + memberExpression: { name: 'Member_expression', detail: '必須。 多維度運算式 (MDX) 的文字字串,會估算出 Cube 中的唯一成員。 member_expression 也可以是指定為儲存格範圍或常數陣列的 Tuple。' }, + caption: { name: '說明', detail: '可選的。 取代 Cube 中的標題 (如果已定義) 而顯示在儲存格中的文字字串。 當傳回 Tuple 時,所使用的標題是 Tuple 中最後一個成員的標題。' }, }, }, CUBEMEMBERPROPERTY: { - description: '傳回多維資料集中成員屬性的值。 用於驗證多維資料集內是否存在某個成員名並傳回此成員的指定屬性。 ', - abstract: '傳回多維資料集中成員屬性的值。 用於驗證多維資料集內是否存在某個成員名並傳回此成員的指定屬性。 ', + description: 'CUBEMEMBERPROPERTY 函式是 Excel 中的 立方體函式 之一,會從立方體回傳成員屬性的值。 使用它來驗證成員名稱是否存在於該立方體內,並傳回此成員的指定屬性。', + abstract: 'CUBEMEMBERPROPERTY 函式是 Excel 中的 立方體函式 之一,會從立方體回傳成員屬性的值。 使用它來驗證成員名稱是否存在於該立方體內,並傳回此成員的指定屬性。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cubememberproperty-%E5%87%BD%E6%95%B0-001e57d6-b35a-49e5-abcd-05ff599e8951', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubememberproperty-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + memberExpression: { name: 'Member_expression', detail: '必須。 Cube 內成員的多維度運算式 (MDX) 文字字串。' }, + property: { name: '財產', detail: '必須。 傳回之屬性名稱的文字字串,或包含屬性名稱之儲存格的參照。' }, }, }, CUBERANKEDMEMBER: { - description: - '傳回集合中的第 n 個或排在一定名次的成員。 用來傳回集合中的一個或多個元素,如業績最好的銷售人員或前 10 名的學生。 ', - abstract: - '傳回集合中的第 n 個或排在一定名次的成員。 用來傳回集合中的一個或多個元素,如業績最好的銷售人員或前 10 名的學生。 ', + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cuberankedmember-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + setExpression: { name: 'Set_expression', detail: '必須。 這是一組運算式的文字字串,如 "{[Item1].兒童}"。 Set_expression 也可以是 CUBESET 函數,或包含 CUBESET 函數之儲存格的參照。' }, + rank: { name: '軍階', detail: '必須。 這是指定要傳回之頂端數值的整數值。 如果 rank 值是 1,會傳回頂端值;如果 rank 值是 2,則會傳回第二位頂端數值,依此類推。 若要傳回頂端的 5 個數值,請使用 CUBERANKEDMEMBER 五次,每次指定從 1 到 5 的不同排名。' }, + caption: { name: '說明', detail: '可選的。 取代 Cube 中的標題 (如果已定義) 而顯示在儲存格中的文字字串。' }, }, }, CUBESET: { - description: - '定義成員或元組的計算集。方法是向伺服器上的多維資料集傳送集合表達式,此表達式會建立集合,並隨後將該集合傳回 Microsoft Excel。 ', - abstract: - '定義成員或元組的計算集。方法是向伺服器上的多維資料集傳送集合表達式,此表達式會建立集合,並隨後將該集合傳回 Microsoft Excel。 ', + description: '將集合運算式傳送至伺服器上的 Cube,藉以定義成員或 Tuple 的已計算集合,從而建立集合,然後將該集合傳回給 Microsoft Excel。', + abstract: '將集合運算式傳送至伺服器上的 Cube,藉以定義成員或 Tuple 的已計算集合,從而建立集合,然後將該集合傳回給 Microsoft Excel。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cubeset-%E5%87%BD%E6%95%B0-5b2146bd-62d6-4d04-9d8f-670e9993ee1d9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubeset-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + setExpression: { name: 'Set_expression', detail: '必須。 會產生一組成員或 Tuple 之集合運算式的文字字串。 Set_expression 也可以是包含該集合中一個或多個成員、Tuple 或集合之 Excel 範圍的儲存格參照。' }, + caption: { name: '說明', detail: '可選的。 取代 Cube 中的標題 (如果已定義) 而顯示在儲存格中的文字字串。' }, + sortOrder: { name: 'Sort_order', detail: '可選的。 要執行的排序類型 (如果有的話),並且可以為下列其中一項:' }, + sortBy: { name: 'Sort_by', detail: '可選的。 排序依據之值的文字字串。 例如,若要計算出銷售量最高的縣市,set_expression 應為一組縣市,而 sort_by 則應為銷售量值。 或者,若要計算出人口最多的縣市,set_expression 應為一組縣市,而 sort_by 則應為人口量值。 如果 sort_order 需要 sort_by,而已省略 sort_by,則 CUBESET 會傳回 #VALUE! 錯誤訊息。' }, }, }, CUBESETCOUNT: { - description: '傳回集合中的項目數。 ', - abstract: '傳回集合中的項目數。 ', + description: '傳回集合中的項目數。', + abstract: '傳回集合中的項目數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cubesetcount-%E5%87%BD%E6%95%B0-c4c2a438-c1ff-4061-80fe-982f2d705286', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubesetcount-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + set: { name: '場景', detail: '必須。 這是 Microsoft Excel 運算式的文字字串,會估算出 CUBESET 函數所定義的集合。 Set 也可以是 CUBESET 函數,或包含 CUBESET 函數之儲存格的參照。' }, }, }, CUBEVALUE: { - description: '從多維資料集中傳回匯總值。 ', - abstract: '從多維資料集中傳回匯總值。 ', + description: '會從 Cube 傳回彙總值。', + abstract: '會從 Cube 傳回彙總值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cubevalue-%E5%87%BD%E6%95%B0-8733da24-26d1-4e34-9b3a-84a8f00dcbe0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cubevalue-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + connection: { name: '連結', detail: '必須。 連線到 Cube 之連線名稱的文字字串。' }, + memberExpression: { name: 'Member_expression', detail: '可選的。 多維度運算式 (MDX) 的文字字串,會估算出 Cube 中的成員或 Tuple。 member_expression 也可以是以 CUBESET 函數定義的集合。 使用 member_expression 做為交叉分析篩選器以定義會傳回其彙總值之 Cube 的一部分。 如果沒有在 member_expression 中指定量值,則會使用該 Cube 的預設量值。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/database/ar-SA.ts new file mode 100644 index 0000000000..e409040ca4 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/ar-SA.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'تحسب هذه الدالة متوسط القيم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تحسب هذه الدالة متوسط القيم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'هي نطاق الخلايا التي تشكل القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'يشير الحقل إلى العمود المستخدم في الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'هي نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DCOUNT: { + description: 'تقوم هذه الدالة بتعداد الخلايا التي تحتوي على أرقام في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تقوم هذه الدالة بتعداد الخلايا التي تحتوي على أرقام في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DCOUNTA: { + description: 'تقوم هذه الدالة بتعداد الخلايا غير الفارغة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تقوم هذه الدالة بتعداد الخلايا غير الفارغة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'الاختياري. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DGET: { + description: 'تستخرج هذه الدالة قيمة مفردة من أحد الأعمدة في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تستخرج هذه الدالة قيمة مفردة من أحد الأعمدة في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DMAX: { + description: 'تُرجع هذه الدالة أكبر رقم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تُرجع هذه الدالة أكبر رقم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DMIN: { + description: 'تُرجع هذه الدالة أصغر رقم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تُرجع هذه الدالة أصغر رقم في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DPRODUCT: { + description: 'تضرب هذه الدالة القيم الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + abstract: 'تضرب هذه الدالة القيم الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DSTDEV: { + description: 'تقدّر هذه الدالة الانحراف المعياري لمحتوى استناداً إلى عينة باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + abstract: 'تقدّر هذه الدالة الانحراف المعياري لمحتوى استناداً إلى عينة باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DSTDEVP: { + description: 'تحسب هذه الدالة الانحراف المعياري لمحتوى استناداً إلى المحتوى بالكامل باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + abstract: 'تحسب هذه الدالة الانحراف المعياري لمحتوى استناداً إلى المحتوى بالكامل باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DSUM: { + description: 'في قائمة أو قاعدة بيانات، يوفر DSUM مجموع الأرقام في الحقول (الأعمدة) من السجلات التي تطابق الشروط المحددة.', + abstract: 'في قائمة أو قاعدة بيانات، يوفر DSUM مجموع الأرقام في الحقول (الأعمدة) من السجلات التي تطابق الشروط المحددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. هذا هو نطاق الخلايا الذي يشكل القائمة أو قاعدة البيانات. قاعدة البيانات هي قائمة بالبيانات ذات الصلة التي تكون فيها صفوف المعلومات ذات الصلة عبارة عن سجلات ، وأعمدة البيانات هي حقول . يحتوي الصف الأول من القائمة على تسميات لكل عمود فيه.' }, + field: { name: 'field', detail: 'مطلوب. يحدد هذا العمود المستخدم في الدالة. حدد تسمية العمود المضمنة بين علامات الاقتباس المزدوجة، مثل "العمر" أو "العائد"، على سبيل المثال. بدلا من ذلك، يمكنك تحديد رقم (بدون علامات اقتباس) يمثل موضع العمود داخل القائمة: على سبيل المثال، 1 للعمود الأول، و2 للعمود الثاني، وما إلى ذلك.' }, + criteria: { name: 'criteria', detail: 'مطلوب. هذا هو نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DVAR: { + description: 'تقدّر هذه الدالة تباين محتوىً استناداً إلى عينة باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + abstract: 'تقدّر هذه الدالة تباين محتوىً استناداً إلى عينة باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, + DVARP: { + description: 'تحسب هذه الدالة تباين محتوىً استناداً إلى المحتوى بالكامل باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + abstract: 'تحسب هذه الدالة تباين محتوىً استناداً إلى المحتوى بالكامل باستخدام الأرقام الموجودة في حقل (عمود) من السجلات في قائمة أو قاعدة بيانات والتي تتوافق مع الشروط التي تحددها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'مطلوب. نطاق الخلايا الذي تتألف منه القائمة أو قاعدة البيانات. إن قاعدة البيانات عبارة عن قائمة من البيانات المرتبطة تمثل فيها صفوف المعلومات المرتبطة السجلات، وتمثل أعمدة البيانات الحقول. يحتوي الصف الأول من القائمة على تسميات لكل عمود.' }, + field: { name: 'field', detail: 'مطلوب. تشير إلى العمود الذي تستخدمه الدالة. قم بإدخال تسمية العمود مع تضمينها بين علامتي اقتباس مزدوجتين، مثل "العمر" أو "المحصول"، أو رقم (بدون علامات اقتباس) يمثل موضع العمود في القائمة: 1 للعمود الأول، و2 للعمود الثاني، وهكذا.' }, + criteria: { name: 'criteria', detail: 'مطلوب. نطاق الخلايا الذي يحتوي على الشروط التي تحددها. يمكنك استخدام أي نطاق لوسيطة المعايير، طالما أن الوسيطة تحتوي على تسمية عمود واحد على الأقل وخلية واحدة على الأقل أسفل تسمية العمود لتحديد شرط للعمود.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/database/ca-ES.ts index 58916fec78..8e95bca0a9 100644 --- a/packages/sheets-formula/src/locale/function-list/database/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/database/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/ca-es/excel/functions/daverage-function', }, ], functionParameter: { @@ -38,7 +38,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/ca-es/excel/functions/dcount-function', }, ], functionParameter: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/ca-es/excel/functions/dcounta-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/ca-es/excel/functions/dget-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/ca-es/excel/functions/dmax-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/ca-es/excel/functions/dmin-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/ca-es/excel/functions/dproduct-function', }, ], functionParameter: { @@ -128,7 +128,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/ca-es/excel/functions/dstdev-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/ca-es/excel/functions/dstdevp-function', }, ], functionParameter: { @@ -158,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/ca-es/excel/functions/dsum-function', }, ], functionParameter: { @@ -173,7 +173,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/ca-es/excel/functions/dvar-function', }, ], functionParameter: { @@ -188,7 +188,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/ca-es/excel/functions/dvarp-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/database/de-DE.ts b/packages/sheets-formula/src/locale/function-list/database/de-DE.ts new file mode 100644 index 0000000000..02f58ebf8d --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/de-DE.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'Liefert den Mittelwert aus den Werten eines Felds (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Liefert den Mittelwert aus den Werten eines Felds (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'ist der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'ist der Zellbereich, der die von Ihnen angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DCOUNT: { + description: 'Ermittelt die Anzahl der Zellen, die Zahlen enthalten, in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Ermittelt die Anzahl der Zellen, die Zahlen enthalten, in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DCOUNTA: { + description: 'Ermittelt die Anzahl nicht leerer Zellen in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entspricht.', + abstract: 'Ermittelt die Anzahl nicht leerer Zellen in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Optional. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DGET: { + description: 'Gibt einen einzelnen Wert aus einer Spalte einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + abstract: 'Gibt einen einzelnen Wert aus einer Spalte einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DMAX: { + description: 'Gibt den größten Wert in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + abstract: 'Gibt den größten Wert in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DMIN: { + description: 'Gibt den kleinsten Wert in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + abstract: 'Gibt den kleinsten Wert in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank zurück, der den von Ihnen angegebenen Bedingungen entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DPRODUCT: { + description: 'Multipliziert die Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Multipliziert die Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DSTDEV: { + description: 'Schätzt die Standardabweichung einer Grundgesamtheit auf der Grundlage einer Stichprobe, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Schätzt die Standardabweichung einer Grundgesamtheit auf der Grundlage einer Stichprobe, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DSTDEVP: { + description: 'Berechnet die Standardabweichung auf der Grundlage der Grundgesamtheit, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Berechnet die Standardabweichung auf der Grundlage der Grundgesamtheit, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DSUM: { + description: 'In einer Liste oder Datenbank stellt DSUM die Summe der Zahlen in Feldern (Spalten) von Datensätzen bereit, die den angegebenen Bedingungen entsprechen.', + abstract: 'In einer Liste oder Datenbank stellt DSUM die Summe der Zahlen in Feldern (Spalten) von Datensätzen bereit, die den angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Dies ist der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in denen Zeilen verwandter Informationen Datensätze und Datenspalten Felder sind. Die erste Zeile einer Liste enthält Bezeichnungen für jede Spalte darin.' }, + field: { name: 'field', detail: 'Erforderlich. Dies gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbezeichnung an, die in doppelte Anführungszeichen eingeschlossen ist, z. B. "Age" oder "Yield". Alternativ können Sie eine Zahl (ohne Anführungszeichen) angeben, die die Position der Spalte innerhalb der Liste darstellt: z. B. 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Dies ist der Zellbereich, der die von Ihnen angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DVAR: { + description: 'Schätzt die Varianz einer Grundgesamtheit auf der Grundlage einer Stichprobe, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Schätzt die Varianz einer Grundgesamtheit auf der Grundlage einer Stichprobe, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, + DVARP: { + description: 'Berechnet die Varianz auf der Grundlage der Grundgesamtheit, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + abstract: 'Berechnet die Varianz auf der Grundlage der Grundgesamtheit, mithilfe der Werte in einem Feld (einer Spalte) mit Datensätzen in einer Liste oder Datenbank, die den von Ihnen angegebenen Bedingungen entsprechen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Erforderlich. Der Zellbereich, aus dem die Liste oder Datenbank besteht. Eine Datenbank ist eine Liste verwandter Daten, in der Zeilen mit verwandten Informationen Datensätze und Datenspalten Felder bilden. Die erste Zeile der Liste enthält Beschriftungen für die einzelnen Spalten.' }, + field: { name: 'field', detail: 'Erforderlich. Gibt an, welche Spalte in der Funktion verwendet wird. Geben Sie die Spaltenbeschriftung zwischen Anführungszeichen ein, z. B. als "Alter" oder "Ertrag", oder eine Zahl (ohne Anführungszeichen), die die Position der Spalte in der Liste darstellt: 1 für die erste Spalte, 2 für die zweite Spalte usw.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Der Zellbereich, der die angegebenen Bedingungen enthält. Sie können jeden Bereich verwenden, der mindestens eine Spaltenbeschriftung und eine Zelle unter der Beschriftung zum Angeben der Bedingung enthält.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/en-US.ts b/packages/sheets-formula/src/locale/function-list/database/en-US.ts index 69bf03539e..8416485646 100644 --- a/packages/sheets-formula/src/locale/function-list/database/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/database/en-US.ts @@ -16,183 +16,183 @@ const locale = { DAVERAGE: { - description: 'Returns the average of selected database entries', - abstract: 'Returns the average of selected database entries', + description: 'Averages the values in a field (column) of records in a list or database that match conditions you specify.', + abstract: 'Averages the values in a field (column) of records in a list or database that match conditions you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/en-us/excel/functions/daverage-function', }, ], 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.' }, + database: { name: 'database', detail: 'is the range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'is the range of cells that contains the conditions you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, DCOUNT: { - description: 'Counts the cells that contain numbers in a database', - abstract: 'Counts the cells that contain numbers in a database', + description: 'Counts the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Counts the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/en-us/excel/functions/dcount-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as the argument includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, DCOUNTA: { - description: 'Counts nonblank cells in a database', - abstract: 'Counts nonblank cells in a database', + description: 'Counts the nonblank cells in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Counts the nonblank cells in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/en-us/excel/functions/dcounta-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Optional. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'Extracts a single value from a column of a list or database that matches conditions that you specify.', + abstract: 'Extracts a single value from a column of a list or database that matches conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/en-us/excel/functions/dget-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, DMAX: { - description: 'Returns the maximum value from selected database entries', - abstract: 'Returns the maximum value from selected database entries', + description: 'Returns the largest number in a field (column) of records in a list or database that matches conditions you that specify.', + abstract: 'Returns the largest number in a field (column) of records in a list or database that matches conditions you that specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/en-us/excel/functions/dmax-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, DMIN: { - description: 'Returns the minimum value from selected database entries', - abstract: 'Returns the minimum value from selected database entries', + description: 'Returns the smallest number in a field (column) of records in a list or database that matches conditions that you specify.', + abstract: 'Returns the smallest number in a field (column) of records in a list or database that matches conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/en-us/excel/functions/dmin-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'Multiplies the values in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Multiplies the values in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/en-us/excel/functions/dproduct-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'Estimates the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Estimates the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/en-us/excel/functions/dstdev-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'Calculates the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Calculates the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/en-us/excel/functions/dstdevp-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'In a list or database, DSUM provides the sum of the numbers in fields (columns) of records that match your specified conditions.', + abstract: 'In a list or database, DSUM provides the sum of the numbers in fields (columns) of records that match your specified conditions.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/en-us/excel/functions/dsum-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. This is the range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records , and columns of data are fields . The first row of a list contains labels for each column therein.' }, + field: { name: 'field', detail: 'Required. This specifies which column is used in the function. Specify the column label enclosed between double quotation marks, such as "Age" or "Yield," for example. Alternatively, you can specify a number (without quotation marks) that represents the position of the column within the list: e.g., 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. This is the range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, DVAR: { - description: 'Estimates variance based on a sample from selected database entries', - abstract: 'Estimates variance based on a sample from selected database entries', + description: 'Estimates the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Estimates the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/en-us/excel/functions/dvar-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, 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', + description: 'Calculates the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', + abstract: 'Calculates the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/en-us/excel/functions/dvarp-function', }, ], 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.' }, + database: { name: 'database', detail: 'Required. The range of cells that makes up the list or database. A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column.' }, + field: { name: 'field', detail: 'Required. Indicates which column is used in the function. Enter the column label enclosed between double quotation marks, such as "Age" or "Yield," or a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on.' }, + criteria: { name: 'criteria', detail: 'Required. The range of cells that contains the conditions that you specify. You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/es-ES.ts b/packages/sheets-formula/src/locale/function-list/database/es-ES.ts index 7f9506b943..563e482c7e 100644 --- a/packages/sheets-formula/src/locale/function-list/database/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/database/es-ES.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: 'Devuelve el promedio de las entradas de base de datos seleccionadas', - abstract: 'Devuelve el promedio de las entradas de base de datos seleccionadas', + description: 'Devuelve el promedio de los valores de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', + abstract: 'Devuelve el promedio de los valores de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/es-es/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'es el rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DCOUNT: { - description: 'Cuenta las celdas que contienen números en una base de datos', - abstract: 'Cuenta las celdas que contienen números en una base de datos', + description: 'Cuenta las celdas que contienen números en un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Cuenta las celdas que contienen números en un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/es-es/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. El rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento Criterios mientras este incluya por lo menos un rótulo de columna y al menos una celda debajo del rótulo de columna en la que se pueda especificar una condición de columna.' }, }, }, DCOUNTA: { - description: 'Cuenta las celdas no vacías en una base de datos', - abstract: 'Cuenta las celdas no vacías en una base de datos', + description: 'Cuenta las celdas que no están en blanco de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Cuenta las celdas que no están en blanco de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/es-es/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Opcional. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DGET: { - description: 'Extrae de una base de datos un único registro que coincide con los criterios especificados', - abstract: 'Extrae de una base de datos un único registro que coincide con los criterios especificados', + description: 'Extrae un único valor de una columna de una lista o una base de datos que cumple las condiciones especificadas.', + abstract: 'Extrae un único valor de una columna de una lista o una base de datos que cumple las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/es-es/excel/functions/dget-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DMAX: { - description: 'Devuelve el valor máximo de las entradas de base de datos seleccionadas', - abstract: 'Devuelve el valor máximo de las entradas de base de datos seleccionadas', + description: 'Devuelve el valor máximo de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', + abstract: 'Devuelve el valor máximo de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/es-es/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DMIN: { - description: 'Devuelve el valor mínimo de las entradas de base de datos seleccionadas', - abstract: 'Devuelve el valor mínimo de las entradas de base de datos seleccionadas', + description: 'Devuelve el valor mínimo de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', + abstract: 'Devuelve el valor mínimo de un campo (columna) de registros en una lista o base de datos que cumple las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/es-es/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DPRODUCT: { - description: 'Multiplica los valores en un campo particular de registros que coinciden con los criterios en una base de datos', - abstract: 'Multiplica los valores en un campo particular de registros que coinciden con los criterios en una base de datos', + description: 'Multiplica los valores de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Multiplica los valores de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/es-es/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DSTDEV: { - description: 'Estima la desviación estándar basada en una muestra de entradas de base de datos seleccionadas', - abstract: 'Estima la desviación estándar basada en una muestra de entradas de base de datos seleccionadas', + description: 'Calcula la desviación estándar de una población basándose en una muestra y usando los números de un campo (columna) de registros en una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Calcula la desviación estándar de una población basándose en una muestra y usando los números de un campo (columna) de registros en una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/es-es/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DSTDEVP: { - description: 'Calcula la desviación estándar basada en la población completa de entradas de base de datos seleccionadas', - abstract: 'Calcula la desviación estándar basada en la población completa de entradas de base de datos seleccionadas', + description: 'Calcula la desviación estándar de una población basándose en toda la población y usa los números de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Calcula la desviación estándar de una población basándose en toda la población y usa los números de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/es-es/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DSUM: { - description: 'Suma los números en la columna de campo de registros en la base de datos que coinciden con los criterios', - abstract: 'Suma los números en la columna de campo de registros en la base de datos que coinciden con los criterios', + description: 'En una lista o base de datos, DSUMA proporciona la suma de los números de los campos (columnas) de registros que cumplen las condiciones especificadas.', + abstract: 'En una lista o base de datos, DSUMA proporciona la suma de los números de los campos (columnas) de registros que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/es-es/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. Este es el rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos son campos . La primera fila de una lista contiene etiquetas para cada columna en ella.' }, + field: { name: 'campo', detail: 'Obligatorio. Esto especifica qué columna se usa en la función. Especifique el rótulo de columna entre comillas, como "Edad" o "Rendimiento", por ejemplo. Como alternativa, puede especificar un número (sin comillas) que represente la posición de la columna dentro de la lista: por ejemplo, 1 para la primera columna, 2 para la segunda, etc.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Este es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DVAR: { - description: 'Estima la varianza basada en una muestra de entradas de base de datos seleccionadas', - abstract: 'Estima la varianza basada en una muestra de entradas de base de datos seleccionadas', + description: 'Calcula la varianza de una población basándose en una muestra y usando los números de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', + abstract: 'Calcula la varianza de una población basándose en una muestra y usando los números de un campo (columna) de registros de una lista o base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/es-es/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, DVARP: { - description: 'Calcula la varianza basada en la población completa de entradas de base de datos seleccionadas', - abstract: 'Calcula la varianza basada en la población completa de entradas de base de datos seleccionadas', + description: 'Calcula la varianza de una población basándose en toda la población y usando los números de un campo (columna) de registros en una lista o una base de datos que cumplen las condiciones especificadas.', + abstract: 'Calcula la varianza de una población basándose en toda la población y usando los números de un campo (columna) de registros en una lista o una base de datos que cumplen las condiciones especificadas.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/es-es/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: 'base_datos', detail: 'El rango de celdas que compone la lista o base de datos.' }, - field: { name: 'campo', detail: 'Indica qué columna se utiliza en la función.' }, - criteria: { name: 'criterios', detail: 'El rango de celdas que contiene las condiciones que especifica.' }, + database: { name: 'base_datos', detail: 'Obligatorio. El rango de celdas que compone la lista o base de datos. Una base de datos es una lista de datos relacionados en la que las filas de información son registros y las columnas de datos, campos. La primera fila de la lista contiene los rótulos de cada columna.' }, + field: { name: 'campo', detail: 'Obligatorio. Indica qué columna se usa en la función. Escriba el rótulo de la columna entre comillas, como por ejemplo "Edad" o "Rendimiento", o un número (sin las comillas) que represente la posición de la columna en la lista: 1 para la primera columna, 2 para la segunda y así sucesivamente.' }, + criteria: { name: 'criterios', detail: 'Obligatorio. Es el rango de celdas que contiene las condiciones especificadas. Puede usar cualquier rango en el argumento criterios mientras este incluya al menos un rótulo de columna y una celda debajo del mismo en la que se pueda especificar una condición para la columna.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/database/fr-FR.ts index 60a22638e2..f9caeb24bc 100644 --- a/packages/sheets-formula/src/locale/function-list/database/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/database/fr-FR.ts @@ -14,8 +14,189 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + DAVERAGE: { + description: 'Calcule la moyenne des valeurs d’un champ (colonne) d’enregistrements dans une liste ou une base de données qui remplissent les conditions spécifiées.', + abstract: 'Calcule la moyenne des valeurs d’un champ (colonne) d’enregistrements dans une liste ou une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'est la plage de cellules qui compose la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'indique la colonne utilisée dans la fonction . Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'est la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DCOUNT: { + description: 'Compte les cellules d’un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui contiennent des nombres répondant aux conditions spécifiées.', + abstract: 'Compte les cellules d’un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui contiennent des nombres répondant aux conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions spécifiées. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois que celui-ci comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DCOUNTA: { + description: 'Compte les cellules non vides dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + abstract: 'Compte les cellules non vides dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Optionnel. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DGET: { + description: 'Extrait une seule valeur répondant aux conditions spécifiées à partir d’une colonne d’une liste ou d’une base de données.', + abstract: 'Extrait une seule valeur répondant aux conditions spécifiées à partir d’une colonne d’une liste ou d’une base de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DMAX: { + description: 'Renvoie le plus grand nombre dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + abstract: 'Renvoie le plus grand nombre dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DMIN: { + description: 'Renvoie le plus petit nombre dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + abstract: 'Renvoie le plus petit nombre dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions que vous spécifiez.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DPRODUCT: { + description: 'Multiplie les valeurs d’un champ (colonne) d’enregistrements dans une liste ou une base de données qui remplissent les conditions spécifiées.', + abstract: 'Multiplie les valeurs d’un champ (colonne) d’enregistrements dans une liste ou une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DSTDEV: { + description: 'Calcule l’écart-type standard d’une population sur la base d’un échantillon en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + abstract: 'Calcule l’écart-type standard d’une population sur la base d’un échantillon en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DSTDEVP: { + description: 'Calcule l’écart-type standard d’une population en prenant en compte toute la population et en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + abstract: 'Calcule l’écart-type standard d’une population en prenant en compte toute la population et en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DSUM: { + description: 'Dans une liste ou une base de données, DSUM fournit la somme des nombres dans les champs (colonnes) des enregistrements qui correspondent à vos conditions spécifiées.', + abstract: 'Dans une liste ou une base de données, DSUM fournit la somme des nombres dans les champs (colonnes) des enregistrements qui correspondent à vos conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Il s’agit de la plage de cellules qui compose la liste ou la base de données. Une base de données est une liste de données associées dans laquelle les lignes d’informations associées sont des enregistrements et les colonnes de données sont des champs . La première ligne d’une liste contient des étiquettes pour chaque colonne qui s’y trouve.' }, + field: { name: 'field', detail: 'Obligatoire. Cela spécifie la colonne utilisée dans la fonction . Spécifiez l’étiquette de colonne entre guillemets doubles, par exemple « Âge » ou « Rendement ». Vous pouvez également spécifier un nombre (sans guillemets) qui représente la position de la colonne dans la liste : par exemple, 1 pour la première colonne, 2 pour la deuxième colonne, etc.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Il s’agit de la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DVAR: { + description: 'Calcule la variance d’une population sur la base d’un échantillon en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + abstract: 'Calcule la variance d’une population sur la base d’un échantillon en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, + DVARP: { + description: 'Calcule la variance d’une population en prenant en compte toute la population et en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + abstract: 'Calcule la variance d’une population en prenant en compte toute la population et en utilisant les valeurs contenues dans un champ (colonne) d’enregistrements d’une liste ou d’une base de données qui remplissent les conditions spécifiées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obligatoire. Représente la plage de cellules qui constitue la liste ou la base de données. Une base de données est une liste de données liées dans laquelle les lignes d’informations liées sont des enregistrements et les colonnes de données sont des champs. La première ligne de la liste contient les étiquettes de chaque colonne.' }, + field: { name: 'field', detail: 'Obligatoire. Indique la colonne utilisée dans la fonction. Entrez l’étiquette de la colonne placée entre guillemets doubles, par exemple "Âge" ou "Rendement", ou un nombre (sans guillemets) représentant la position de la colonne dans la liste : 1 pour la première colonne, 2 pour la seconde, et ainsi de suite.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente la plage de cellules qui contient les conditions que vous spécifiez. Vous pouvez utiliser n’importe quelle plage comme argument critères, à condition toutefois qu’elle comprenne au moins une étiquette de colonne et au moins une cellule sous celle-ci dans laquelle vous spécifiez une condition pour la colonne.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/id-ID.ts b/packages/sheets-formula/src/locale/function-list/database/id-ID.ts new file mode 100644 index 0000000000..d3f286cf47 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/id-ID.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'Menghitung rata-rata nilai dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang ditentukan.', + abstract: 'Menghitung rata-rata nilai dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'adalah rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'menunjukkan kolom mana yang digunakan dalam fungsi. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'adalah rentang sel yang berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DCOUNT: { + description: 'Menghitung sel-sel yang berisi angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan syarat yang ditentukan.', + abstract: 'Menghitung sel-sel yang berisi angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan syarat yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama argumen meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DCOUNTA: { + description: 'Menghitung sel-sel yang tidak kosong dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Menghitung sel-sel yang tidak kosong dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Opsional. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DGET: { + description: 'Mengekstrak nilai tunggal dari kolom suatu daftar atau database yang cocok dengan syarat yang Anda tentukan.', + abstract: 'Mengekstrak nilai tunggal dari kolom suatu daftar atau database yang cocok dengan syarat yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DMAX: { + description: 'Mengembalikan angka terbesar dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan syarat yang ditentukan.', + abstract: 'Mengembalikan angka terbesar dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan syarat yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DMIN: { + description: 'Mengembalikan angka terkecil dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan dengan kondisi yang Anda tentukan.', + abstract: 'Mengembalikan angka terkecil dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DPRODUCT: { + description: 'Mengalikan nilai dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Mengalikan nilai dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DSTDEV: { + description: 'Memperkirakan simpangan baku populasi berdasarkan sampel dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Memperkirakan simpangan baku populasi berdasarkan sampel dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DSTDEVP: { + description: 'Menghitung simpangan baku populasi berdasarkan populasi keseluruhan dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Menghitung simpangan baku populasi berdasarkan populasi keseluruhan dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DSUM: { + description: 'Dalam daftar atau database, DSUM menyediakan jumlah angka dalam bidang (kolom) rekaman yang cocok dengan kondisi tertentu.', + abstract: 'Dalam daftar atau database, DSUM menyediakan jumlah angka dalam bidang (kolom) rekaman yang cocok dengan kondisi tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Ini adalah rentang sel yang membentuk daftar atau database. Database adalah daftar data terkait di mana baris informasi terkait adalah rekaman , dan kolom data adalah bidang . Baris pertama daftar berisi label untuk setiap kolom di dalamnya.' }, + field: { name: 'field', detail: 'Diperlukan. Ini menentukan kolom mana yang digunakan dalam fungsi. Tentukan label kolom yang diapit antara tanda kutip ganda, seperti "Usia" atau "Hasil," misalnya. Alternatifnya, Anda dapat menentukan angka (tanpa tanda kutip) yang mewakili posisi kolom dalam daftar: misalnya 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Ini adalah rentang sel yang berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DVAR: { + description: 'Memperkirakan varians populasi berdasarkan sampel dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Memperkirakan varians populasi berdasarkan sampel dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, + DVARP: { + description: 'Menghitung varians populasi berdasarkan populasi keseluruhan dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + abstract: 'Menghitung varians populasi berdasarkan populasi keseluruhan dengan menggunakan angka dalam bidang (kolom) rekaman dalam daftar atau database yang cocok dengan kondisi yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Diperlukan. Rentang sel yang membentuk daftar atau database. Database adalah daftar dari data yang terkait di mana baris-baris informasi terkait adalah rekaman, dan kolom-kolom data adalah bidang. Baris pertama daftar tersebut berisi label untuk masing-masing kolom.' }, + field: { name: 'field', detail: 'Diperlukan. Mengindikasikan kolom yang digunakan dalam fungsi tersebut. Masukkan label kolom yang dimasukkan di antara dua tanda kutip ganda, seperti "Umur" atau "Hasil," atau angka (tanpa tanda kutip) yang menyatakan posisi kolom di dalam daftar: 1 untuk kolom pertama, 2 untuk kolom kedua, dan seterusnya.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Rentang sel berisi kondisi yang Anda tentukan. Anda dapat menggunakan rentang untuk argumen kriteria, selama meliputi setidaknya satu label kolom dan setidaknya satu sel di bawah label kolom di mana Anda menentukan kondisi untuk kolom tersebut.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/it-IT.ts b/packages/sheets-formula/src/locale/function-list/database/it-IT.ts new file mode 100644 index 0000000000..30ea4e9de5 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/it-IT.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'Calcola la media dei valori di un campo (colonna) di record in un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Calcola la media dei valori di un campo (colonna) di record in un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'è l\'intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'indica la colonna usata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'è l\'intervallo di celle che contiene le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DCOUNT: { + description: 'Conta le celle che contengono numeri in un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Conta le celle che contengono numeri in un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile usare qualsiasi intervallo per l\'argomento di criteri, purché l\'argomento includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DCOUNTA: { + description: 'Conta le celle non vuote di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Conta le celle non vuote di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Opzionale. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DGET: { + description: 'Estrae un singolo valore da una colonna di un elenco o database che soddisfa le condizioni specificate.', + abstract: 'Estrae un singolo valore da una colonna di un elenco o database che soddisfa le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DMAX: { + description: 'Restituisce il numero più grande di un campo (colonna) di record di un elenco o database che soddisfa le condizioni specificate.', + abstract: 'Restituisce il numero più grande di un campo (colonna) di record di un elenco o database che soddisfa le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DMIN: { + description: 'Restituisce il numero più piccolo di un campo (colonna) di record di un elenco o database che soddisfa le condizioni specificate.', + abstract: 'Restituisce il numero più piccolo di un campo (colonna) di record di un elenco o database che soddisfa le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DPRODUCT: { + description: 'Moltiplica i valori di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Moltiplica i valori di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DSTDEV: { + description: 'Calcola la deviazione standard di una popolazione in base a un campione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Calcola la deviazione standard di una popolazione in base a un campione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DSTDEVP: { + description: 'Calcola la deviazione standard di una popolazione in base all\'intera popolazione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Calcola la deviazione standard di una popolazione in base all\'intera popolazione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DSUM: { + description: 'In un elenco o database, DB.SOMMA fornisce la somma dei numeri nei campi (colonne) dei record che corrispondono alle condizioni specificate.', + abstract: 'In un elenco o database, DB.SOMMA fornisce la somma dei numeri nei campi (colonne) dei record che corrispondono alle condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Questo è l\'intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate sono record e le colonne di dati sono campi . La prima riga di un elenco contiene le etichette per ogni colonna contenuta.' }, + field: { name: 'field', detail: 'Obbligatorio. Specifica quale colonna viene usata nella funzione. Specificare l\'etichetta di colonna racchiusa tra virgolette doppie, ad esempio "Età" o "Rendimento". In alternativa, è possibile specificare un numero, senza virgolette, che rappresenta la posizione della colonna all\'interno dell\'elenco, ad esempio 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Questo è l\'intervallo di celle che contiene le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DVAR: { + description: 'Calcola la varianza di una popolazione sulla base di un campione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + abstract: 'Calcola la varianza di una popolazione sulla base di un campione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano le condizioni specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, + DVARP: { + description: 'Calcola la varianza di una popolazione sulla base dell\'intera popolazione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano i criteri specificati.', + abstract: 'Calcola la varianza di una popolazione sulla base dell\'intera popolazione utilizzando i numeri di un campo (colonna) di record di un elenco o database che soddisfano i criteri specificati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obbligatorio. Intervallo di celle che costituisce l\'elenco o il database. Un database è un elenco di dati correlati in cui le righe di informazioni correlate costituiscono i record e le colonne di dati i campi. La prima riga dell\'elenco contiene le etichette relative a ciascuna colonna.' }, + field: { name: 'field', detail: 'Obbligatorio. Indica quale colonna viene utilizzata nella funzione. Immettere l\'etichetta di colonna racchiusa tra virgolette doppie, quale "Età" o "Rendimento", oppure immettere un numero, senza racchiuderlo tra virgolette, che rappresenta la posizione della colonna nell\'elenco, ovvero 1 per la prima colonna, 2 per la seconda colonna e così via.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Intervallo di celle contenente le condizioni specificate. È possibile utilizzare qualsiasi intervallo per l\'argomento di criteri, purché includa almeno un\'etichetta di colonna e una cella sottostante l\'etichetta di colonna in cui specificare una condizione per la colonna.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/database/ja-JP.ts index ec6aead2ee..e66be0feec 100644 --- a/packages/sheets-formula/src/locale/function-list/database/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/database/ja-JP.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの平均値を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの平均値を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの平均値を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの平均値を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/daverage-%E9%96%A2%E6%95%B0-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/ja-jp/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: 'は、リストまたはデータベースを構成するセル範囲です。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: 'は、関数で使用される列を示します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: 'は、指定した条件を含むセルの範囲です。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DCOUNT: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの中で数値が入力されているセルの個数を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの中で数値が入力されているセルの個数を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの中で数値が入力されているセルの個数を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの中で数値が入力されているセルの個数を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dcount-%E9%96%A2%E6%95%B0-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DCOUNTA: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの中の空白でないセルの個数を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの中の空白でないセルの個数を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの中の空白でないセルの個数を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの中の空白でないセルの個数を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dcounta-%E9%96%A2%E6%95%B0-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: 'オプション。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DGET: { - description: 'リストまたはデータベースの列から、指定された条件を満たす 1 つの値を抽出します。', - abstract: 'リストまたはデータベースの列から、指定された条件を満たす 1 つの値を抽出します。', + description: 'リストまたはデータベースの列から指定された条件を満たす 1 つの値を抽出します。', + abstract: 'リストまたはデータベースの列から指定された条件を満たす 1 つの値を抽出します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dget-%E9%96%A2%E6%95%B0-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dget-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DMAX: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの最大値を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの最大値を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの最大値を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの最大値を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dmax-%E9%96%A2%E6%95%B0-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DMIN: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの最小値を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの最小値を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの最小値を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの最小値を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dmin-%E9%96%A2%E6%95%B0-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DPRODUCT: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの特定のフィールド値の積を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの特定のフィールド値の積を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの積を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードの積を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dproduct-%E9%96%A2%E6%95%B0-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DSTDEV: { - description: 'リストまたはデータベースの列を検索し、指定された条件を満たすレコードを母集団の標本と見なして、母集団に対する標準偏差を返します。', - abstract: 'リストまたはデータベースの列を検索し、指定された条件を満たすレコードを母集団の標本と見なして、母集団に対する標準偏差を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを標本と見なして、母集団の標準偏差を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを標本と見なして、母集団の標準偏差を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dstdev-%E9%96%A2%E6%95%B0-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DSTDEVP: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団全体と見なして、母集団の標準偏差を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団全体と見なして、母集団の標準偏差を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを母集団全体と見なして、母集団の標準偏差を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを母集団全体と見なして、母集団の標準偏差を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dstdevp-%E9%96%A2%E6%95%B0-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DSUM: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの合計を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードの合計を返します。', + description: 'リストまたはデータベースでは、DSUM は、指定した条件に一致するレコードのフィールド (列) 内の数値の合計を提供します。', + abstract: 'リストまたはデータベースでは、DSUM は、指定した条件に一致するレコードのフィールド (列) 内の数値の合計を提供します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dsum-%E9%96%A2%E6%95%B0-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 これは、リストまたはデータベースを構成するセル範囲です。 データベースは、関連する情報の行が レコード であり、データの列が フィールド である関連データの一覧です。 リストの最初の行には、その中の各列のラベルが含まれています。' }, + field: { name: 'フィールド', detail: '必須。 これは、関数で使用される列を指定します。 たとえば、"Age" や "Yield" などの二重引用符で囲まれた列ラベルを指定します。 または、リスト内の列の位置を表す数値 (引用符なし) を指定することもできます。たとえば、最初の列には 1 、2 番目の列には 2 などです。' }, + criteria: { name: '検索条件', detail: '必須。 これは、指定した条件を含むセル範囲です。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DVAR: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団の標本と見なして、母集団に対する分散を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団の標本と見なして、母集団に対する分散を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを標本と見なして、母集団の分散を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを標本と見なして、母集団の分散を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dvar-%E9%96%A2%E6%95%B0-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, DVARP: { - description: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団全体と見なして、母集団の分散を返します。', - abstract: 'リストまたはデータベースの指定された列を検索し、条件を満たすレコードを母集団全体と見なして、母集団の分散を返します。', + description: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを母集団全体と見なして、母集団の分散を返します。', + abstract: 'リストまたはデータベースのレコードで指定されたフィールド (列) を検索し、条件を満たすレコードを母集団全体と見なして、母集団の分散を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dvarp-%E9%96%A2%E6%95%B0-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: 'データベース', detail: 'リストまたはデータベースを構成するセル範囲を指定します。' }, - field: { name: 'フィールド', detail: '関数の中で使用する列を指定します。' }, - criteria: { name: '検索条件', detail: '指定した条件が設定されているセル範囲を指定します。' }, + database: { name: 'データベース', detail: '必須。 リストまたはデータベースを構成するセル範囲を指定します。 データベースは、行 (レコード) と列 (フィールド) にデータを関連付けたリストです。 リストの先頭の行には、各列の見出しが入力されている必要があります。' }, + field: { name: 'フィールド', detail: '必須。 関数の中で使用する列を指定します。 フィールドには、半角の二重引用符 (") で囲んだ "樹齢" や "歩どまり" などのような文字列、またはリストでの列の位置を示す引用符なしの番号 (1 番目の列を示す場合は 1、2 番目の列を示す場合は 2) を指定します。' }, + criteria: { name: '検索条件', detail: '必須。 指定した条件が設定されているセル範囲を指定します。 列見出しと検索条件を指定するセルが少なくとも 1 つずつ含まれている場合は、検索条件に任意のセル範囲を指定できます。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/database/ko-KR.ts index 46168fd02d..aafb477439 100644 --- a/packages/sheets-formula/src/locale/function-list/database/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/database/ko-KR.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: '선택한 데이터베이스 항목의 평균을 반환합니다', - abstract: '선택한 데이터베이스 항목의 평균을 반환합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 값의 평균을 계산합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 값의 평균을 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/daverage-함수-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/ko-kr/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '는 목록 또는 데이터베이스를 구성하는 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '함수에 사용되는 열을 나타냅니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '은 지정한 조건을 포함하는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DCOUNT: { - description: '데이터베이스에서 숫자가 있는 셀의 개수를 계산합니다', - abstract: '데이터베이스에서 숫자가 있는 셀의 개수를 계산합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자가 있는 셀의 개수를 계산합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자가 있는 셀의 개수를 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dcount-함수-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DCOUNTA: { - description: '데이터베이스에서 비어 있지 않은 셀의 개수를 계산합니다', - abstract: '데이터베이스에서 비어 있지 않은 셀의 개수를 계산합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 셀 중 비어 있지 않은 셀의 개수를 계산합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 셀 중 비어 있지 않은 셀의 개수를 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dcounta-함수-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '선택적. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DGET: { - description: '지정한 조건과 일치하는 단일 레코드를 데이터베이스에서 추출합니다', - abstract: '지정한 조건과 일치하는 단일 레코드를 데이터베이스에서 추출합니다', + description: '목록이나 데이터베이스의 열에서 지정한 조건에 맞는 하나의 값을 추출합니다.', + abstract: '목록이나 데이터베이스의 열에서 지정한 조건에 맞는 하나의 값을 추출합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dget-함수-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dget-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DMAX: { - description: '선택한 데이터베이스 항목에서 최대값을 반환합니다', - abstract: '선택한 데이터베이스 항목에서 최대값을 반환합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 가장 큰 값을 반환합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 가장 큰 값을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dmax-함수-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DMIN: { - description: '선택한 데이터베이스 항목에서 최소값을 반환합니다', - abstract: '선택한 데이터베이스 항목에서 최소값을 반환합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 가장 작은 값을 반환합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 가장 작은 값을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dmin-함수-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DPRODUCT: { - description: '데이터베이스에서 조건과 일치하는 레코드의 특정 필드에 있는 값을 곱합니다', - abstract: '데이터베이스에서 조건과 일치하는 레코드의 특정 필드에 있는 값을 곱합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 값을 곱합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 값을 곱합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dproduct-함수-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DSTDEV: { - description: '선택한 데이터베이스 항목의 표본을 기준으로 표준 편차를 추정합니다', - abstract: '선택한 데이터베이스 항목의 표본을 기준으로 표준 편차를 추정합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 표본을 기반으로 한 모집단의 표준 편차를 추정합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 표본을 기반으로 한 모집단의 표준 편차를 추정합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dstdev-함수-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DSTDEVP: { - description: '선택한 데이터베이스 항목의 전체 모집단을 기준으로 표준 편차를 계산합니다', - abstract: '선택한 데이터베이스 항목의 전체 모집단을 기준으로 표준 편차를 계산합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 전체 모집단을 기반으로 한 모집단의 표준 편차를 계산합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 전체 모집단을 기반으로 한 모집단의 표준 편차를 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dstdevp-함수-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DSUM: { - description: '조건과 일치하는 데이터베이스의 레코드 필드 열에 있는 숫자를 더합니다', - abstract: '조건과 일치하는 데이터베이스의 레코드 필드 열에 있는 숫자를 더합니다', + description: '목록 또는 데이터베이스에서 DSUM은 지정된 조건과 일치하는 레코드의 필드(열)에 있는 숫자의 합계를 제공합니다.', + abstract: '목록 또는 데이터베이스에서 DSUM은 지정된 조건과 일치하는 레코드의 필드(열)에 있는 숫자의 합계를 제공합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dsum-함수-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 목록 또는 데이터베이스를 구성하는 셀 범위입니다. 데이터베이스는 관련 정보의 행이 레코드 이고 데이터 열이 필드 인 관련 데이터의 목록입니다. 목록의 첫 번째 행에는 해당 열마다 레이블이 포함됩니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. 예를 들어 "Age" 또는 "Yield"와 같이 큰따옴표 사이에 묶인 열 레이블을 지정합니다. 또는 목록 내의 열 위치를 나타내는 숫자(따옴표 제외)를 지정할 수 있습니다( 예: 첫 번째 열의 경우 1 , 두 번째 열의 경우 2 등).' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 포함된 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DVAR: { - description: '선택한 데이터베이스 항목의 표본을 기준으로 분산을 추정합니다', - abstract: '선택한 데이터베이스 항목의 표본을 기준으로 분산을 추정합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 표본을 기반으로 한 모집단의 분산을 추정합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 표본을 기반으로 한 모집단의 분산을 추정합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dvar-함수-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, DVARP: { - description: '선택한 데이터베이스 항목의 전체 모집단을 기준으로 분산을 계산합니다', - abstract: '선택한 데이터베이스 항목의 전체 모집단을 기준으로 분산을 계산합니다', + description: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 전체 모집단을 기반으로 한 모집단의 분산을 계산합니다.', + abstract: '목록이나 데이터베이스의 레코드 필드(열)에서 지정한 조건에 맞는 숫자를 사용하여 전체 모집단을 기반으로 한 모집단의 분산을 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dvarp-함수-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: 'database', detail: '목록이나 데이터베이스를 구성하는 셀 범위입니다.' }, - field: { name: 'field', detail: '함수에서 사용되는 열을 나타냅니다.' }, - criteria: { name: 'criteria', detail: '지정한 조건이 포함된 셀 범위입니다.' }, + database: { name: 'database', detail: '필수. 데이터베이스나 목록으로 지정할 셀 범위입니다. 데이터베이스는 레코드(관련 정보 행)와 필드(데이터 열)로 이루어진 관련 데이터 목록입니다. 목록의 첫째 행에는 각 열의 레이블이 있습니다.' }, + field: { name: 'field', detail: '필수. 함수에 사용되는 열을 지정합니다. field 인수는 "나이" 또는 "수확량"처럼 열 레이블을 큰따옴표로 묶어 텍스트로 지정하거나 첫째 열을 1, 둘째 열을 2 등 목록 내의 열 위치를 나타내는 숫자로 지정할 수 있습니다.' }, + criteria: { name: 'criteria', detail: '필수. 지정한 조건이 있는 셀 범위입니다. 적어도 하나의 열 레이블이 있고 열 레이블 아래에 열 조건을 지정할 셀이 하나 이상 포함된 범위를 criteria 인수로 사용할 수 있습니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/database/pl-PL.ts new file mode 100644 index 0000000000..6d902e7264 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/pl-PL.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'Uśrednia wartości w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Uśrednia wartości w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'to zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'to zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DCOUNT: { + description: 'Liczy komórki zawierające liczby znajdujące się w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Liczy komórki zawierające liczby znajdujące się w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DCOUNTA: { + description: 'Liczy niepuste komórki znajdujące się w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Liczy niepuste komórki znajdujące się w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Opcjonalne. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DGET: { + description: 'Wyodrębnia z kolumny listy lub bazy danych pojedyncze wartości, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Wyodrębnia z kolumny listy lub bazy danych pojedyncze wartości, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DMAX: { + description: 'Zwraca największą liczbę w polu (kolumnie) rekordów listy lub bazy danych, która jest zgodna z warunkami określonymi przez użytkownika.', + abstract: 'Zwraca największą liczbę w polu (kolumnie) rekordów listy lub bazy danych, która jest zgodna z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DMIN: { + description: 'Zwraca najmniejszą liczbę w polu (kolumnie) rekordów listy lub bazy danych, która jest zgodna z warunkami określonymi przez użytkownika.', + abstract: 'Zwraca najmniejszą liczbę w polu (kolumnie) rekordów listy lub bazy danych, która jest zgodna z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DPRODUCT: { + description: 'Mnoży wartości w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Mnoży wartości w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DSTDEV: { + description: 'Szacuje odchylenie standardowe populacji na podstawie próbki, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Szacuje odchylenie standardowe populacji na podstawie próbki, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DSTDEVP: { + description: 'Oblicza odchylenie standardowe populacji na podstawie całej populacji, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Oblicza odchylenie standardowe populacji na podstawie całej populacji, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DSUM: { + description: 'Na liście lub w bazie danych funkcja DSUM zawiera sumę liczb w polach (kolumnach) rekordów zgodnych z określonymi warunkami.', + abstract: 'Na liście lub w bazie danych funkcja DSUM zawiera sumę liczb w polach (kolumnach) rekordów zgodnych z określonymi warunkami.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Jest to zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze informacji pokrewnych to rekordy , a kolumny danych to pola . Pierwszy wiersz listy zawiera etykiety dla każdej kolumny w tej kolumnie.' }, + field: { name: 'field', detail: 'Wymagane. Określa to, która kolumna jest używana w funkcji. Określ na przykład etykietę kolumny ujętą w podwójny cudzysłów, na przykład "Wiek" lub "Plon". Możesz również określić liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: na przykład 1 dla pierwszej kolumny, 2 dla drugiej kolumny itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Jest to zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DVAR: { + description: 'Szacuje wariancję populacji na podstawie próbki, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Szacuje wariancję populacji na podstawie próbki, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, + DVARP: { + description: 'Oblicza wariancję populacji na podstawie całej populacji, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + abstract: 'Oblicza wariancję populacji na podstawie całej populacji, używając liczb w polu (kolumnie) rekordów listy lub bazy danych, które są zgodne z warunkami określonymi przez użytkownika.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Wymagane. Zakres komórek, które tworzą listę lub bazę danych. Baza danych to lista powiązanych danych, na której wiersze pokrewnych informacji to rekordy, a kolumny danych to pola. Pierwszy wiersz listy zawiera etykiety poszczególnych kolumn.' }, + field: { name: 'field', detail: 'Wymagane. Wskazuje, która kolumna jest używana w funkcji. Należy wprowadzić etykietę kolumny umieszczoną w podwójnym cudzysłowie, na przykład "Wiek" lub "Plon", lub liczbę (bez cudzysłowów) reprezentującą pozycję kolumny na liście: 1 dla pierwszej kolumny, 2 dla drugiej itd.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Zakres komórek zawierający warunki określone przez użytkownika. Jako argumentu „kryteria” można użyć dowolnego zakresu pod warunkiem, że zawiera przynajmniej jedną etykietę kolumny i jedną komórkę poniżej etykiety, w której określa się warunek.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/database/pt-BR.ts new file mode 100644 index 0000000000..b115cccd1c --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/database/pt-BR.ts @@ -0,0 +1,202 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DAVERAGE: { + description: 'Obtém uma média dos valores em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + abstract: 'Obtém uma média dos valores em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/daverage-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'é o intervalo de células que compõe a lista ou base de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'indica que coluna é utilizada na função . Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'é o intervalo de células que contém as condições que especificar. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DCOUNT: { + description: 'Conta as células que contêm números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + abstract: 'Conta as células que contêm números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dcount-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obrigatório. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Obrigatório. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Obrigatório. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DCOUNTA: { + description: 'Conta as células não vazias em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + abstract: 'Conta as células não vazias em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dcounta-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obrigatório. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Opcional. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Obrigatório. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DGET: { + description: 'Extrai um único valor em uma coluna de uma lista ou banco de dados que coincide com as condições especificadas.', + abstract: 'Extrai um único valor em uma coluna de uma lista ou banco de dados que coincide com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dget-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DMAX: { + description: 'Retorna o maior número em um campo (coluna) de registros em uma lista ou banco de dados que coincida com as condições especificadas.', + abstract: 'Retorna o maior número em um campo (coluna) de registros em uma lista ou banco de dados que coincida com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dmax-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DMIN: { + description: 'Retorna o menor número em um campo (coluna) de registros em uma lista ou banco de dados que coincida com as condições especificadas.', + abstract: 'Retorna o menor número em um campo (coluna) de registros em uma lista ou banco de dados que coincida com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dmin-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DPRODUCT: { + description: 'Multiplica os valores em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + abstract: 'Multiplica os valores em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/dproduct-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DSTDEV: { + description: 'Estima o desvio padrão de uma população com base em uma amostra, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + abstract: 'Estima o desvio padrão de uma população com base em uma amostra, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dstdev-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DSTDEVP: { + description: 'Calcula o desvio padrão de uma população com base na população total, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + abstract: 'Calcula o desvio padrão de uma população com base na população total, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidirem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dstdevp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Obrigatório. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Obrigatório. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Obrigatório. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DSUM: { + description: 'Em uma lista ou banco de dados, o DSUM fornece a soma dos números em campos (colunas) de registros que correspondem às suas condições especificadas.', + abstract: 'Em uma lista ou banco de dados, o DSUM fornece a soma dos números em campos (colunas) de registros que correspondem às suas condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dsum-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. Esse é o intervalo de células que compõe a lista ou o banco de dados. Um banco de dados é uma lista de dados relacionados em que linhas de informações relacionadas são registros e colunas de dados são campos . A primeira linha de uma lista contém rótulos para cada coluna nela.' }, + field: { name: 'field', detail: 'Necessário. Isso especifica qual coluna é usada na função. Especifique o rótulo de coluna entre aspas duplas, como "Age" ou "Yield", por exemplo. Como alternativa, você pode especificar um número (sem aspas) que representa a posição da coluna dentro da lista: por exemplo, 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. Esse é o intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DVAR: { + description: 'Estima a variação de uma população com base em uma amostra, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + abstract: 'Estima a variação de uma população com base em uma amostra, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dvar-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, + DVARP: { + description: 'Calcula a variação de uma população com base na população total, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + abstract: 'Calcula a variação de uma população com base na população total, usando os números em um campo (coluna) de registros em uma lista ou banco de dados que coincidem com as condições especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dvarp-function', + }, + ], + functionParameter: { + database: { name: 'database', detail: 'Necessário. O intervalo de células da lista ou do banco de dados. Um banco de dados é uma lista de dados relacionados em que as linhas de informações relacionadas são os registros e as colunas de dados são os campos. A primeira linha da lista contém os rótulos de cada coluna.' }, + field: { name: 'field', detail: 'Necessário. Indica a coluna que será usada na função. Digite o rótulo da coluna entre aspas, como "Idade" ou "Rendimento", ou como um número (sem aspas) que represente a posição da coluna dentro da lista: 1 para a primeira coluna, 2 para a segunda coluna e assim por diante.' }, + criteria: { name: 'criteria', detail: 'Necessário. O intervalo de células que contém as condições especificadas. Você pode usar qualquer intervalo para o argumento de critérios, desde que ele inclua pelo menos um rótulo de coluna e pelo menos uma célula abaixo do rótulo de coluna para especificar uma condição para a coluna.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/database/ru-RU.ts index c782d8b6bf..ef9d02ba6d 100644 --- a/packages/sheets-formula/src/locale/function-list/database/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/database/ru-RU.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: 'Возвращает среднее значение выбранных записей базы данных', - abstract: 'Возвращает среднее значение выбранных записей базы данных', + description: 'Усредняет значения в поле (столбце) записей списка или базы данных, удовлетворяющие заданным условиям.', + abstract: 'Усредняет значения в поле (столбце) записей списка или базы данных, удовлетворяющие заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/ru-ru/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'это диапазон ячеек, составляющих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'указывает, какой столбец используется в функции. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'это диапазон ячеек, содержащий заданные условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DCOUNT: { - description: 'Считает ячейки, содержащие числа в базе данных', - abstract: 'Считает ячейки, содержащие числа в базе данных', + description: 'Подсчитывает количество ячеек в поле (столбце) записей списка или базы данных, которые содержат числа, удовлетворяющие заданным условиям.', + abstract: 'Подсчитывает количество ячеек в поле (столбце) записей списка или базы данных, которые содержат числа, удовлетворяющие заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DCOUNTA: { - description: 'Считает непустые ячейки в базе данных', - abstract: 'Считает непустые ячейки в базе данных', + description: 'Подсчитывает непустые ячейки в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', + abstract: 'Подсчитывает непустые ячейки в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Дополнительные. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DGET: { - description: 'Извлекает из базы данных одну запись, соответствующую заданным критериям', - abstract: 'Извлекает из базы данных одну запись, соответствующую заданным критериям', + description: 'Извлекает из столбца списка или базы данных одно значение, удовлетворяющее заданным условиям.', + abstract: 'Извлекает из столбца списка или базы данных одно значение, удовлетворяющее заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dget-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DMAX: { - description: 'Возвращает максимальное значение из выбранных записей базы данных', - abstract: 'Возвращает максимальное значение из выбранных записей базы данных', + description: 'Возвращает наибольшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.', + abstract: 'Возвращает наибольшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DMIN: { - description: 'Возвращает минимальное значение из выбранных записей базы данных', - abstract: 'Возвращает минимальное значение из выбранных записей базы данных', + description: 'Возвращает наименьшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.', + abstract: 'Возвращает наименьшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DPRODUCT: { - description: 'Умножает значения в определенном поле записей, соответствующих критериям в базе данных', - abstract: 'Умножает значения в определенном поле записей, соответствующих критериям в базе данных', + description: 'Перемножает значения в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', + abstract: 'Перемножает значения в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DSTDEV: { - description: 'Оценивает стандартное отклонение на основе выборки из выбранных записей базы данных', - abstract: 'Оценивает стандартное отклонение на основе выборки из выбранных записей базы данных', + description: 'Оценивает стандартное отклонение на основе выборки из генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', + abstract: 'Оценивает стандартное отклонение на основе выборки из генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DSTDEVP: { - description: 'Вычисляет стандартное отклонение на основе всей совокупности выбранных записей базы данных', - abstract: 'Вычисляет стандартное отклонение на основе всей совокупности выбранных записей базы данных', + description: 'Вычисляет стандартное отклонение генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', + abstract: 'Вычисляет стандартное отклонение генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DSUM: { - description: 'Складывает числа в столбце поля записей в базе данных, которые соответствуют критериям', - abstract: 'Складывает числа в столбце поля записей в базе данных, которые соответствуют критериям', + description: 'В списке или базе данных DSUM предоставляет сумму чисел в полях (столбцах) записей, соответствующих заданным условиям.', + abstract: 'В списке или базе данных DSUM предоставляет сумму чисел в полях (столбцах) записей, соответствующих заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Это диапазон ячеек, составляющих список или базу данных. База данных — это список связанных данных, в котором строки связанной информации являются записями , а столбцы данных — полями . Первая строка списка содержит метки для каждого столбца.' }, + field: { name: 'поле', detail: 'Обязательно. Это указывает, какой столбец используется в функции. Укажите метку столбца, заключенную в двойные кавычки, например "Возраст" или "Доходность". Кроме того, можно указать число (без кавычек), представляющее позицию столбца в списке: например, 1 для первого столбца, 2 для второго столбца и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Это диапазон ячеек, содержащий указанные условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DVAR: { - description: 'Оценивает дисперсию на основе выборки из выбранных записей базы данных', - abstract: 'Оценивает дисперсию на основе выборки из выбранных записей базы данных', + description: 'Оценивает дисперсию генеральной совокупности по выборке, используя отвечающие соответствующие заданным условиям числа в поле (столбце) записей списка или базы данных.', + abstract: 'Оценивает дисперсию генеральной совокупности по выборке, используя отвечающие соответствующие заданным условиям числа в поле (столбце) записей списка или базы данных.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, DVARP: { - description: 'Вычисляет дисперсию на основе всей совокупности выбранных записей базы данных', - abstract: 'Вычисляет дисперсию на основе всей совокупности выбранных записей базы данных', + description: 'Вычисляет дисперсию генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', + abstract: 'Вычисляет дисперсию генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: 'База данных', detail: 'интервал ячеек, образующих список или базу данных.' }, - field: { name: 'поле', detail: 'столбец, используемый функцией.' }, - criteria: { name: 'условия', detail: 'диапазон ячеек, который содержит задаваемые условия.' }, + database: { name: 'База данных', detail: 'Обязательно. Диапазон ячеек, образующих список или базу данных. База данных представляет собой список связанных данных, в котором строки данных являются записями, а столбцы — полями. Первая строка списка содержит заголовки всех столбцов.' }, + field: { name: 'поле', detail: 'Обязательно. Столбец, используемый функцией. Введите текст с заголовком столбца в двойных кавычках, например "Возраст" или "Урожай", или число (без кавычек), задающее положение столбца в списке: 1 — для первого столбца, 2 — для второго и т. д.' }, + criteria: { name: 'условия', detail: 'Обязательно. Диапазон ячеек, который содержит задаваемые условия. В качестве аргумента "условия" можно использовать любой диапазон, который содержит хотя бы один заголовок столбца и хотя бы одну ячейку с условием, расположенную под заголовком столбца.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/database/sk-SK.ts index 242711d9cd..02aeb2b094 100644 --- a/packages/sheets-formula/src/locale/function-list/database/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/database/sk-SK.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: 'Vracia priemer vybraných záznamov databázy', - abstract: 'Vracia priemer vybraných záznamov databázy', + description: 'Vypočíta priemer tých hodnôt poľa (stĺpca) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', + abstract: 'Vypočíta priemer tých hodnôt poľa (stĺpca) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/daverage-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/sk-sk/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'je rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'je rozsah buniek, ktorý obsahuje zadané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DCOUNT: { - description: 'Počíta bunky, ktoré obsahujú čísla v databáze', - abstract: 'Počíta bunky, ktoré obsahujú čísla v databáze', + description: 'Spočíta bunky obsahujúce čísla v poli (stĺpci) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', + abstract: 'Spočíta bunky obsahujúce čísla v poli (stĺpci) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dcount-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak argument obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DCOUNTA: { - description: 'Počíta neprázdne bunky v databáze', - abstract: 'Počíta neprázdne bunky v databáze', + description: 'Vráti počet buniek v poli (stĺpci) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', + abstract: 'Vráti počet buniek v poli (stĺpci) zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Voliteľný argument. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DGET: { - description: 'Z databázy extrahuje jeden záznam, ktorý zodpovedá zadaným kritériám', - abstract: 'Z databázy extrahuje jeden záznam, ktorý zodpovedá zadaným kritériám', + description: 'Zo stĺpca zoznamu alebo z databázy vyberie jednu hodnotu, ktorá spĺňa zadané kritériá.', + abstract: 'Zo stĺpca zoznamu alebo z databázy vyberie jednu hodnotu, ktorá spĺňa zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dget-function-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dget-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DMAX: { - description: 'Vracia maximálnu hodnotu z vybraných záznamov databázy', - abstract: 'Vracia maximálnu hodnotu z vybraných záznamov databázy', + description: 'Vráti maximálnu hodnotu v poli (stĺpci) zoznamu alebo databázy, ktorá spĺňa zadané kritériá.', + abstract: 'Vráti maximálnu hodnotu v poli (stĺpci) zoznamu alebo databázy, ktorá spĺňa zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dmax-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DMIN: { - description: 'Vracia minimálnu hodnotu z vybraných záznamov databázy', - abstract: 'Vracia minimálnu hodnotu z vybraných záznamov databázy', + description: 'Vráti minimálnu hodnotu v poli (stĺpci) zoznamu alebo databázy, ktorá spĺňa zadané kritériá.', + abstract: 'Vráti minimálnu hodnotu v poli (stĺpci) zoznamu alebo databázy, ktorá spĺňa zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dmin-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DPRODUCT: { - description: 'Násobí hodnoty v konkrétnom poli záznamov, ktoré spĺňajú kritériá v databáze', - abstract: 'Násobí hodnoty v konkrétnom poli záznamov, ktoré spĺňajú kritériá v databáze', + description: 'Vynásobí hodnoty v poli (stĺpci) položiek zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', + abstract: 'Vynásobí hodnoty v poli (stĺpci) položiek zoznamu alebo databázy, ktoré spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dproduct-function-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DSTDEV: { - description: 'Odhaduje smerodajnú odchýlku na základe vzorky vybraných záznamov databázy', - abstract: 'Odhaduje smerodajnú odchýlku na základe vzorky vybraných záznamov databázy', + description: 'Pomocou čísel vzorky, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá, odhadne smerodajnú odchýlku základného súboru.', + abstract: 'Pomocou čísel vzorky, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá, odhadne smerodajnú odchýlku základného súboru.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dstdev-function-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DSTDEVP: { - description: 'Vypočíta smerodajnú odchýlku na základe celej populácie vybraných záznamov databázy', - abstract: 'Vypočíta smerodajnú odchýlku na základe celej populácie vybraných záznamov databázy', + description: 'Vypočíta smerodajnú odchýlku základného súboru pomocou tých čísel celého základného súboru, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá.', + abstract: 'Vypočíta smerodajnú odchýlku základného súboru pomocou tých čísel celého základného súboru, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dstdevp-function-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DSUM: { - description: 'Sčíta čísla v stĺpci poľa záznamov v databáze, ktoré spĺňajú kritériá', - abstract: 'Sčíta čísla v stĺpci poľa záznamov v databáze, ktoré spĺňajú kritériá', + description: 'V zozname alebo databáze poskytuje DSUM súčet čísel v poliach (stĺpcoch) záznamov, ktoré spĺňajú zadané podmienky.', + abstract: 'V zozname alebo databáze poskytuje DSUM súčet čísel v poliach (stĺpcoch) záznamov, ktoré spĺňajú zadané podmienky.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dsum-function-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Toto je rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia . Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Táto možnosť určuje, ktorý stĺpec funkcia používa. Zadajte označenie stĺpca v úvodzovkách, napríklad "Vek" alebo "Výnos". Prípadne môžete zadať číslo (bez úvodzoviek), ktoré predstavuje pozíciu stĺpca v zozname: napríklad 1 pre prvý stĺpec, 2 pre druhý stĺpec a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Toto je rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DVAR: { - description: 'Odhaduje rozptyl na základe vzorky vybraných záznamov databázy', - abstract: 'Odhaduje rozptyl na základe vzorky vybraných záznamov databázy', + description: 'Na základe čísiel vzorky, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá, odhadne odchýlku od základného súboru.', + abstract: 'Na základe čísiel vzorky, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá, odhadne odchýlku od základného súboru.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dvar-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, DVARP: { - description: 'Vypočíta rozptyl na základe celej populácie vybraných záznamov databázy', - abstract: 'Vypočíta rozptyl na základe celej populácie vybraných záznamov databázy', + description: 'Vypočíta odchýlku od základného súboru z čísel celého základného súboru, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá.', + abstract: 'Vypočíta odchýlku od základného súboru z čísel celého základného súboru, ktoré v poli (stĺpci) položiek zoznamu alebo databázy spĺňajú zadané kritériá.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dvarp-function-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: 'databáza', detail: 'Rozsah buniek, ktorý tvorí zoznam alebo databázu.' }, - field: { name: 'pole', detail: 'Určuje, ktorý stĺpec sa použije vo funkcii.' }, - criteria: { name: 'kritériá', detail: 'Rozsah buniek, ktorý obsahuje zadané podmienky.' }, + database: { name: 'databáza', detail: 'Povinné. Rozsah buniek tvoriacich zoznam alebo databázu. Databáza je zoznam súvisiacich údajov, v ktorom riadky so súvisiacimi informáciami predstavujú záznamy a stĺpce s údajmi predstavujú polia. Prvý riadok zoznamu obsahuje označenia jednotlivých stĺpcov.' }, + field: { name: 'pole', detail: 'Povinné. Označuje, ktorý stĺpec funkcia používa. Zadajte názov stĺpca ako text v úvodzovkách, napríklad "Vek" alebo "Výnos", alebo ako číslo označujúce pozíciu stĺpca v zozname: 1 pre prvý stĺpec, 2 pre druhý stĺpec, a tak ďalej.' }, + criteria: { name: 'kritériá', detail: 'Povinné. Rozsah buniek, ktorý obsahuje dané podmienky. Pre argument kritériá môžete použiť ľubovoľný rozsah, ak obsahuje aspoň jedno označenie stĺpca a aspoň jednu bunku pod týmto označením, ktorá určuje podmienku pre stĺpec.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/database/vi-VN.ts index ede515dd28..551164d5c6 100644 --- a/packages/sheets-formula/src/locale/function-list/database/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/database/vi-VN.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { 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', + description: 'Tính trung bình các giá trị trong một trường (cột) bản ghi trong danh sách hay cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Tính trung bình các giá trị trong một trường (cột) bản ghi trong danh sách hay cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/daverage-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'sở dữ liệu là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'cho biết cột nào được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Hoa lợi" hay một số (không có dấu trích dẫn) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'là phạm vi ô có chứa các điều kiện bạn xác định. Bạn có thể dùng bất kỳ phạm vi nào cho đối số criteria, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó, mà trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Đếm số ô chứa số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Đếm số ô chứa số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dcount-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa các điều kiện mà bạn xác định. Bạn có thể dùng bất kỳ phạm vi nào cho đối số criteria, miễn là đối số đó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó, mà trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Đếm các ô không trống trong một trường (cột) của bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với những điều kiện bạn xác định.', + abstract: 'Đếm các ô không trống trong một trường (cột) của bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với những điều kiện bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dcounta-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Tùy chọn. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Trích một giá trị từ cột danh sách hay cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Trích một giá trị từ cột danh sách hay cơ sở dữ liệu khớp với các điều kiện mà bạn xác đị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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dget-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Trả về số lớn nhất trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Trả về số lớn nhất trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dmax-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Trả về số nhỏ nhất trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Trả về số nhỏ nhất trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dmin-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Nhân các giá trị trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Nhân các giá trị trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác đị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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dproduct-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Ước tính độ lệch chuẩn của một tập hợp dựa trên một mẫu bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Ước tính độ lệch chuẩn của một tập hợp dựa trên một mẫu bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dstdev-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Tính toán độ lệch chuẩn của một tập hợp dựa trên toàn bộ tập hợp đó bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Tính toán độ lệch chuẩn của một tập hợp dựa trên toàn bộ tập hợp đó bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dstdevp-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Trong danh sách hoặc cơ sở dữ liệu, DSUM cung cấp tổng số trong các trường (cột) bản ghi khớp với các điều kiện đã xác định của bạn.', + abstract: 'Trong danh sách hoặc cơ sở dữ liệu, DSUM cung cấp tổng số trong các trường (cột) bản ghi khớp với các điều kiện đã xác định của bạn.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dsum-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Đây là phạm vi ô tạo thành danh sách hoặc cơ sở dữ liệu. Cơ sở dữ liệu là danh sách các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và cột dữ liệu là các trường . Hàng đầu tiên của danh sách chứa nhãn cho mỗi cột trong đó.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Điều này chỉ rõ cột nào được dùng trong hàm. Xác định nhãn cột nằm giữa dấu ngoặc kép, chẳng hạn như ví dụ như "Tuổi" hoặc "Hoa lợi". Ngoài ra, bạn có thể chỉ định một số (không có dấu ngoặc kép) thể hiện vị trí của cột trong danh sách: ví dụ: 1 cho cột đầu tiên, 2 cho cột thứ hai, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Đây là phạm vi ô có chứa các điều kiện mà bạn chỉ định. Bạn có thể dùng bất kỳ phạm vi nào cho đối số criteria, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó, mà trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Ước tính phương sai của một tập hợp dựa trên một mẫu bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Ước tính phương sai của một tập hợp dựa trên một mẫu bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dvar-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, 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', + description: 'Tính toán phương sai của một tập hợp dựa trên toàn bộ tập hợp đó bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', + abstract: 'Tính toán phương sai của một tập hợp dựa trên toàn bộ tập hợp đó bằng cách dùng các số trong một trường (cột) bản ghi trong danh sách hoặc cơ sở dữ liệu khớp với các điều kiện mà bạn xác định.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dvarp-function', }, ], 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õ.' }, + database: { name: 'cơ sở dữ liệu', detail: 'Yêu cầu. Phạm vi ô tạo thành danh sách hay cơ sở dữ liệu. Cơ sở dữ liệu là một danh sách chứa các dữ liệu liên quan, trong đó các hàng thông tin liên quan là các bản ghi và các cột dữ liệu là các trường. Hàng đầu tiên của danh sách có chứa nhãn cho mỗi cột.' }, + field: { name: 'cánh đồng', detail: 'Yêu cầu. Chỉ rõ cột được dùng trong hàm. Hãy nhập nhãn cột đặt trong dấu ngoặc kép, ví dụ như "Tuổi" hoặc "Lợi tức" hay một số (không có dấu ngoặc kép) thể hiện vị trí cột trong danh sách: 1 cho cột đầu tiên, 2 cho cột thứ 2, v.v.' }, + criteria: { name: 'tiêu chuẩn', detail: 'Yêu cầu. Phạm vi ô có chứa điều kiện mà bạn xác định. Bạn có thể sử dụng bất kỳ phạm vi nào cho đối số tiêu chí, miễn là nó có chứa ít nhất một nhãn cột và ít nhất một ô bên dưới nhãn cột đó trong đó bạn xác định điều kiện cho cột đó.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/database/zh-CN.ts index 8f8c48cfe1..d34962184b 100644 --- a/packages/sheets-formula/src/locale/function-list/database/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/database/zh-CN.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: '返回所选数据库条目的平均值', - abstract: '返回所选数据库条目的平均值', + description: '对列表或数据库中满足指定条件的记录字段(列)中的数值求平均值。', + abstract: '对列表或数据库中满足指定条件的记录字段(列)中的数值求平均值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/daverage-%E5%87%BD%E6%95%B0-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/zh-cn/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '是构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '指示函数中使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '是包含指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DCOUNT: { - description: '计算数据库中包含数字的单元格的数量', - abstract: '计算数据库中包含数字的单元格的数量', + description: '返回列表或数据库中满足指定条件的记录字段(列)中包含数字的单元格的个数。', + abstract: '返回列表或数据库中满足指定条件的记录字段(列)中包含数字的单元格的个数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dcount-%E5%87%BD%E6%95%B0-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此参数包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DCOUNTA: { - description: '计算数据库中非空单元格的数量', - abstract: '计算数据库中非空单元格的数量', + description: '返回列表或数据库中满足指定条件的记录字段(列)中的非空单元格的个数。', + abstract: '返回列表或数据库中满足指定条件的记录字段(列)中的非空单元格的个数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dcounta-%E5%87%BD%E6%95%B0-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '选。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DGET: { - description: '从数据库提取符合指定条件的单个记录', - abstract: '从数据库提取符合指定条件的单个记录', + description: '从列表或数据库的列中提取符合指定条件的单个值。', + abstract: '从列表或数据库的列中提取符合指定条件的单个值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dget-%E5%87%BD%E6%95%B0-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dget-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DMAX: { - description: '返回所选数据库条目的最大值', - abstract: '返回所选数据库条目的最大值', + description: '返回列表或数据库中满足指定条件的记录字段(列)中的最大数字。', + abstract: '返回列表或数据库中满足指定条件的记录字段(列)中的最大数字。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dmax-%E5%87%BD%E6%95%B0-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DMIN: { - description: '返回所选数据库条目的最小值', - abstract: '返回所选数据库条目的最小值', + description: '返回列表或数据库中满足指定条件的记录字段(列)中的最小数字。', + abstract: '返回列表或数据库中满足指定条件的记录字段(列)中的最小数字。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dmin-%E5%87%BD%E6%95%B0-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DPRODUCT: { - description: '将数据库中符合条件的记录的特定字段中的值相乘', - abstract: '将数据库中符合条件的记录的特定字段中的值相乘', + description: '返回列表或数据库中满足指定条件的记录字段(列)中的数值的乘积。', + abstract: '返回列表或数据库中满足指定条件的记录字段(列)中的数值的乘积。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dproduct-%E5%87%BD%E6%95%B0-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DSTDEV: { - description: '基于所选数据库条目的样本估算标准偏差', - abstract: '基于所选数据库条目的样本估算标准偏差', + description: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为一个样本估算出的总体标准偏差。', + abstract: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为一个样本估算出的总体标准偏差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dstdev-%E5%87%BD%E6%95%B0-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DSTDEVP: { - description: '基于所选数据库条目的样本总体计算标准偏差', - abstract: '基于所选数据库条目的样本总体计算标准偏差', + description: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为样本总体计算出的总体标准偏差。', + abstract: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为样本总体计算出的总体标准偏差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dstdevp-%E5%87%BD%E6%95%B0-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DSUM: { - description: '对数据库中符合条件的记录的字段列中的数字求和', - abstract: '对数据库中符合条件的记录的字段列中的数字求和', + description: '在列表或数据库中,DSUM 提供字段 (列) 与指定条件匹配的记录中的数字之和。', + abstract: '在列表或数据库中,DSUM 提供字段 (列) 与指定条件匹配的记录中的数字之和。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dsum-%E5%87%BD%E6%95%B0-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 这是构成列表或数据库的单元格区域。 数据库是相关数据的列表,其中相关信息行是 记录 ,数据列是 字段 。 列表的第一行包含其中每一列的标签。' }, + field: { name: '字段', detail: '必填。 这将指定函数中使用的列。 指定用双引号括起来的列标签,例如“Age”或“Yield”。 或者,可以指定一个不带引号的数字 (,) 表示列在列表中的位置:例如, 1 表示第一列, 2 表示第二列,等等。' }, + criteria: { name: '条件', detail: '必填。 这是包含指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DVAR: { - description: '基于所选数据库条目的样本估算方差', - abstract: '基于所选数据库条目的样本估算方差', + description: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为一个样本估算出的总体方差。', + abstract: '返回利用列表或数据库中满足指定条件的记录字段(列)中的数字作为一个样本估算出的总体方差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dvar-%E5%87%BD%E6%95%B0-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, DVARP: { - description: '基于所选数据库条目的样本总体计算方差', - abstract: '基于所选数据库条目的样本总体计算方差', + description: '通过使用列表或数据库中满足指定条件的记录字段(列)中的数字计算样本总体的样本总体方差。', + abstract: '通过使用列表或数据库中满足指定条件的记录字段(列)中的数字计算样本总体的样本总体方差。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dvarp-%E5%87%BD%E6%95%B0-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: '数据库', detail: '构成列表或数据库的单元格区域。' }, - field: { name: '字段', detail: '指定函数所使用的列。' }, - criteria: { name: '条件', detail: '包含指定条件的单元格区域。' }, + database: { name: '数据库', detail: '必填。 构成列表或数据库的单元格区域。 数据库是包含一组相关数据的列表,其中包含相关信息的行为记录,而包含数据的列为字段。 列表的第一行包含每一列的标签。' }, + field: { name: '字段', detail: '必填。 指定函数所使用的列。 输入两端带双引号的列标签,如 "使用年数" 或 "产量";或是代表列表中列位置的数字(不带引号):1 表示第一列,2 表示第二列,依此类推。' }, + criteria: { name: '条件', detail: '必填。 包含所指定条件的单元格区域。 可以为参数 criteria 指定任意区域,只要此区域包含至少一个列标签,并且列标签下至少有一个在其中为列指定条件的单元格。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/database/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/database/zh-TW.ts index 35787b7ff4..ca477e84b5 100644 --- a/packages/sheets-formula/src/locale/function-list/database/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/database/zh-TW.ts @@ -18,183 +18,183 @@ import type enUS from './en-US'; const locale: typeof enUS = { DAVERAGE: { - description: '傳回所選資料庫條目的平均值', - abstract: '傳回所選資料庫條目的平均值', + description: '計算出清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的平均數值。', + abstract: '計算出清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的平均數值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/daverage-%E5%87%BD%E6%95%B0-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee', + url: 'https://support.microsoft.com/zh-tw/excel/functions/daverage-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '是指組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '表示函式中使用的欄位。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '是包含你指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DCOUNT: { - description: '計算資料庫中包含數字的儲存格的數量', - abstract: '計算資料庫中包含數字的儲存格的數量', + description: '計算清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件之含有數值的儲存格。', + abstract: '計算清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件之含有數值的儲存格。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dcount-%E5%87%BD%E6%95%B0-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dcount-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但引數之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DCOUNTA: { - description: '計算資料庫中非空儲存格的數量', - abstract: '計算資料庫中非空儲存格的數量', + description: '計算清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的非空白儲存格。', + abstract: '計算清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的非空白儲存格。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dcounta-%E5%87%BD%E6%95%B0-00232a6d-5a66-4a01-a25b-c1653fda1244', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dcounta-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '可選的。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DGET: { - description: '從資料庫提取符合指定條件的單一記錄', - abstract: '從資料庫擷取符合指定條件的單一記錄', + description: '擷取清單或資料庫中欄內符合指定條件的單一值。', + abstract: '擷取清單或資料庫中欄內符合指定條件的單一值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dget-%E5%87%BD%E6%95%B0-455568bf-4eef-45f7-90f0-ec250d00892e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dget-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DMAX: { - description: '傳回所選資料庫項目的最大值', - abstract: '傳回所選資料庫項目的最大值', + description: '傳回清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的最大值。', + abstract: '傳回清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的最大值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dmax-%E5%87%BD%E6%95%B0-f4e8209d-8958-4c3d-a1ee-6351665d41c2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dmax-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DMIN: { - description: '傳回所選資料庫條目的最小值', - abstract: '傳回所選資料庫條目的最小值', + description: '傳回清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的最小值。', + abstract: '傳回清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的最小值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dmin-%E5%87%BD%E6%95%B0-4ae6f1d9-1f26-40f1-a783-6dc3680192a3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dmin-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DPRODUCT: { - description: '將資料庫中符合條件的記錄的特定欄位中的值相乘', - abstract: '將資料庫中符合條件的記錄的特定欄位中的值相乘', + description: '將清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的值相乘。', + abstract: '將清單或資料庫的記錄欄位 (欄) 中,符合您所指定條件的值相乘。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dproduct-%E5%87%BD%E6%95%B0-4f96b13e-d49c-47a7-b769-22f6d017cb31', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dproduct-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DSTDEV: { - description: '基於所選資料庫條目的樣本估算標準差', - abstract: '基於所選資料庫條目的樣本估算標準差', + description: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據範例估算母體的標準差。', + abstract: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據範例估算母體的標準差。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dstdev-%E5%87%BD%E6%95%B0-026b8c73-616d-4b5e-b072-241871c4ab96', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dstdev-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DSTDEVP: { - description: '基於所選資料庫條目的樣本總體計算標準差', - abstract: '基於所選資料庫條目的樣本總體計算標準差', + description: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據整個母體來計算母體的標準差。', + abstract: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據整個母體來計算母體的標準差。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dstdevp-%E5%87%BD%E6%95%B0-04b78995-da03-4813-bbd9-d74fd0f5d94b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dstdevp-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DSUM: { - description: '對資料庫中符合條件的記錄的欄位列中的數字求和', - abstract: '資料庫中符合條件的記錄的欄位列中的數字求和', + description: '在清單或資料庫中,DSUM 提供欄位 (欄位) 符合你指定條件的紀錄數字總和。', + abstract: '在清單或資料庫中,DSUM 提供欄位 (欄位) 符合你指定條件的紀錄數字總和。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dsum-%E5%87%BD%E6%95%B0-53181285-0c4b-4f5a-aaa3-529a322be41b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dsum-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是一個相關資料的清單,其中相關資訊的列是 記錄 ,資料的欄位是 欄位 。 清單的第一列包含該列的標籤。' }, + field: { name: '欄位', detail: '必須。 這會指定函數中使用哪一欄。 例如,請指定雙引號包圍的欄位標籤,例如「年齡」或「讓出」。 或者,你也可以指定一個不加引號的 (,) 代表該欄在列表中的位置:例如,第一欄用 1 ,第二列用 2 ,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是包含你指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DVAR: { - description: '基於所選資料庫項目的樣本估算變異數', - abstract: '基於所選資料庫條目的樣本估算變異數', + description: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據範例估算母體的變異數。', + abstract: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據範例估算母體的變異數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dvar-%E5%87%BD%E6%;95%B0-d6747ca9-99c7-48bb-996e-9d7af00f3ed1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dvar-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, DVARP: { - description: '基於所選資料庫項目的樣本總體計算變異數', - abstract: '基於所選資料庫條目的樣本總體計算變異數', + description: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據整個母體計算母體的變異數。', + abstract: '使用清單或資料庫的記錄欄位 (欄) 中符合指定條件的數字,根據整個母體計算母體的變異數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dvarp-%E5%87%BD%E6%95%B0-eb0ba387-9cb7-45c8-81e9-0394912502fc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dvarp-function', }, ], functionParameter: { - database: { name: '資料庫', detail: '組成清單或資料庫的儲存格範圍。' }, - field: { name: '欄位', detail: '指出函數中所使用的欄。' }, - criteria: { name: '條件', detail: '含有指定條件的儲存格範圍。' }, + database: { name: '資料庫', detail: '必須。 這是組成清單或資料庫的儲存格範圍。 資料庫是相關資料的清單,其中相關資訊列為記錄,資料欄則為欄位。 清單的第一列會包含每一個資料欄的標籤。' }, + field: { name: '欄位', detail: '必須。 指出函數中所使用的資料欄。 輸入以雙引號括住的欄標籤,如 "樹齡" 或 "收益",或是代表欄在清單中所在位置的號碼 (無雙引號),如 1 代表第一欄,2 代表第二欄,依此類推。' }, + criteria: { name: '條件', detail: '必須。 這是含有您指定條件的儲存格範圍。 您可以使用任何的範圍做為準則引數,但範圍之中至少需含有一個欄標籤,而欄標籤之下至少需有一個儲存格,以指定該欄的準則。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/date/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/date/ar-SA.ts new file mode 100644 index 0000000000..587d86cf3a --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/ar-SA.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'تقوم الدالة DATE بإرجاع الرقم التسلسلي المتتالي الذي يمثل تاريخاً معيناً.', + abstract: 'تقوم الدالة DATE بإرجاع الرقم التسلسلي المتتالي الذي يمثل تاريخاً معيناً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'يمكن أن تتكون قيمة الوسيطة year من رقم واحد إلى أربعة أرقام. يفسر Excel الوسيطة year وفق نظام التاريخ الذي يستخدمه جهازك. يستخدم Univer نظام التاريخ 1900 افتراضياً، أي أن التاريخ الأول هو 1 يناير 1900.' }, + month: { name: 'month', detail: 'عدد صحيح موجب أو سالب يمثل شهر السنة من 1 إلى 12 (يناير إلى ديسمبر).' }, + day: { name: 'day', detail: 'عدد صحيح موجب أو سالب يمثل يوم الشهر من 1 إلى 31.' }, + }, + }, + DATEDIF: { + description: 'تحسب هذه الدالة عدد الأيام، أو الأشهر أو السنوات بين تاريخين.', + abstract: 'تحسب هذه الدالة عدد الأيام، أو الأشهر أو السنوات بين تاريخين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'تاريخ يمثل التاريخ الأول أو تاريخ البدء لفترة معينة. يمكن إدخال التواريخ كسلاسل نصية داخل علامات اقتباس (مثلاً، "30/1/2001")، أو كأرقام تسلسلية (مثلاً، 36921 الذي يمثل 30 يناير 2001، إذا كنت تستخدم نظام تاريخ 1900)، أو كنتائج صيغ أو دالات أخرى (مثلاً، DATEVALUE("2001/1/30")‎).' }, + endDate: { name: 'end_date', detail: 'تاريخ يمثّل آخر تاريخ، أو تاريخ الانتهاء، في الفترة الزمنية.' }, + unit: { name: 'Unit', detail: 'نوع المعلومات التي تريد إرجاعها، حيث: الوحدة****إرجاع " Y "عدد السنوات الكاملة في الفترة." M "عدد الأشهر المكتملة في الفترة." D "عدد الأيام في الفترة." MD "الفرق بين الأيام في start_date end_date. يتم تجاهل الأشهر والسنوات في التواريخ. الهامه: لا نوصي باستخدام الوسيطة "MD"، حيث توجد قيود معروفة عليها. راجع قسم المشكلات المعروفة أدناه." YM "الفرق بين الأشهر في start_date end_date. يتم تجاهل أيام وسنوات التواريخ" YD "الفرق بين أيام start_date end_date. يتم تجاهل السنوات في التواريخ.' }, + }, + }, + DATEVALUE: { + description: 'تحول الدالة DATEVALUE التاريخ المخزن كنص إلى رقم تسلسلي يتعرف عليه Excel كتاريخ. على سبيل المثال، تقوم الصيغة ‎ =DATEVALUE("1/1/2008")‎ بإرجاع 39448، وهو الرقم التسلسلي للتاريخ 1/1/2008. تذكر أنه على الرغم من ذلك، فقد يؤدي إعداد تاريخ النظام على الكمبيوتر لديك إلى الحصول على نتائج للدالة DATEVALUE تختلف عن نتيجة هذا المثال', + abstract: 'تحول الدالة DATEVALUE التاريخ المخزن كنص إلى رقم تسلسلي يتعرف عليه Excel كتاريخ. على سبيل المثال، تقوم الصيغة ‎ =DATEVALUE("1/1/2008")‎ بإرجاع 39448، وهو الرقم التسلسلي للتاريخ 1/1/2008. تذكر أنه على الرغم من ذلك، فقد يؤدي إعداد تاريخ النظام على الكمبيوتر لديك إلى الحصول على نتائج للدالة DATEVALUE تختلف عن نتيجة هذا المثال', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'مطلوب. وهي النص الذي يمثل تاريخاً بتنسيق تاريخ لـ Excel أو مرجعاً للخلية التي تحتوي على نص يمثل تاريخاً بتنسيق تاريخ لـ Excel. على سبيل المثال، يعد التاريخ "30/1/2008" أو "30 - يناير - 2008" عبارة عن سلسلة نصية موجودة داخل علامتي اقتباس وتمثل تاريخاً. باستخدام نظام التاريخ الافتراضي في Microsoft Excel for Windows، يجب أن تمثل الوسيطة date_text تاريخا بين 1 يناير 1900 و31 ديسمبر 9999. ترجع الدالة DATEVALUE #VALUE! قيمة الخطأ إذا كانت قيمة الوسيطة date_text تقع خارج هذا النطاق. إذا تم حذف جزء السنة من الوسيطة date_text ، تستخدم الدالة DATEVALUE السنة الحالية من الساعة المضمنة في الكمبيوتر. يتم تجاهل معلومات الوقت في الوسيطة date_text .' }, + }, + }, + DAY: { + description: 'تُرجع هذه الدالة يوم تاريخ ما ممثلاً برقم تسلسلي. ويكون اليوم عدداً صحيحاً يتراوح بين 1 و31.', + abstract: 'تُرجع هذه الدالة يوم تاريخ ما ممثلاً برقم تسلسلي. ويكون اليوم عدداً صحيحاً يتراوح بين 1 و31.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. تاريخ اليوم الذي تحاول العثور عليه. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص .' }, + }, + }, + DAYS: { + description: 'تُرجع عدد الأيام بين تاريخين.', + abstract: 'تُرجع عدد الأيام بين تاريخين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'مطلوب. وتُعد كل من الوسيطتين Start_date وEnd_date التاريخين اللذين تريد معرفة عدد الأيام بينهما.' }, + startDate: { name: 'start_date', detail: 'مطلوب. وتُعد كل من الوسيطتين Start_date وEnd_date التاريخين اللذين تريد معرفة عدد الأيام بينهما.' }, + }, + }, + DAYS360: { + description: 'تُرجع الدالة DAYS360 عدد الأيام بين تاريخين استناداً إلى سنة من 360 يوماً (اثنا عشر شهراً يتألف كلٌ منها من 30 يوماً)، تُستخدم في بعض الحسابات الخاصة بالمحاسبة. استخدم هذه الدالة للمساعدة في حساب الدفعات إذا كان نظام المحاسبة يستند إلى 12 شهراً و30 يوماً في الشهر.', + abstract: 'تُرجع الدالة DAYS360 عدد الأيام بين تاريخين استناداً إلى سنة من 360 يوماً (اثنا عشر شهراً يتألف كلٌ منها من 30 يوماً)، تُستخدم في بعض الحسابات الخاصة بالمحاسبة. استخدم هذه الدالة للمساعدة في حساب الدفعات إذا كان نظام المحاسبة يستند إلى 12 شهراً و30 يوماً في الشهر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'start_date وend_date هما التاريخان اللذان تريد معرفة عدد الأيام بينهما.' }, + endDate: { name: 'end_date', detail: 'start_date وend_date هما التاريخان اللذان تريد معرفة عدد الأيام بينهما.' }, + method: { name: 'method', detail: 'قيمة منطقية تحدد ما إذا كان يجب استخدام الطريقة الأمريكية أو الأوروبية في الحساب.' }, + }, + }, + EDATE: { + description: 'تُرجع الرقم التسلسلي الذي يمثل التاريخ وهو عدد الأشهر المشار إليه قبل تاريخ (start_date) محدد أو بعده. استخدم EDATE لحساب تواريخ الاستحقاق أو تواريخ استحقاق الدفع التي تقع في اليوم نفسه من شهر تاريخ الإصدار.', + abstract: 'تُرجع الرقم التسلسلي الذي يمثل التاريخ وهو عدد الأشهر المشار إليه قبل تاريخ (start_date) محدد أو بعده. استخدم EDATE لحساب تواريخ الاستحقاق أو تواريخ استحقاق الدفع التي تقع في اليوم نفسه من شهر تاريخ الإصدار.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'مطلوب. تاريخ يمثل تاريخ البدء. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص .' }, + months: { name: 'months', detail: 'مطلوب. عدد الأشهر التي تسبق تاريخ_البدء أو تليه. تشير القيمة الموجبة للأشهر إلى تاريخ مستقبلي، في حين تشير القيمة السالبة إلى تاريخ سابق.' }, + }, + }, + EOMONTH: { + description: 'تُرجع هذه الدالة الرقم التسلسلي لليوم الأخير من الشهر وهو عدد الأشهر المشار إليه قبل تاريخ_البدء أو بعده. استخدم الدالة EOMONTH لحساب تواريخ التسديد أو تواريخ الاستحقاق التي تقع في اليوم الأخير من الشهر.', + abstract: 'تُرجع هذه الدالة الرقم التسلسلي لليوم الأخير من الشهر وهو عدد الأشهر المشار إليه قبل تاريخ_البدء أو بعده. استخدم الدالة EOMONTH لحساب تواريخ التسديد أو تواريخ الاستحقاق التي تقع في اليوم الأخير من الشهر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'مطلوب. تاريخ يمثل تاريخ البدء. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص .' }, + months: { name: 'months', detail: 'مطلوب. عدد الأشهر التي تسبق تاريخ_البدء أو تليه. تشير القيمة الموجبة للأشهر إلى تاريخ مستقبلي، في حين تشير القيمة السالبة إلى تاريخ سابق. ملاحظة إذا لم يكن عدد الأشهر عبارة عن رقم صحيح، فيتم اقتطاعه.' }, + }, + }, + EPOCHTODATE: { + description: 'يحوّل طابع وقت حقبة Unix بالثواني أو المللي ثانية أو الميكروثانية إلى تاريخ ووقت بالتوقيت العالمي المنسق (UTC).', + abstract: 'يحوّل طابع وقت حقبة Unix بالثواني أو المللي ثانية أو الميكروثانية إلى تاريخ ووقت بالتوقيت العالمي المنسق (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=ar', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'طابع زمني لعصر Unix، بالثواني أو المللي ثانية أو الميكروثانية.' }, + unit: { name: 'unit', detail: '[اختياري — القيمة الافتراضية 1]: وحدة الزمن التي يُعبَّر بها عن الطابع الزمني.' }, + }, + }, + HOUR: { + description: 'تُرجع هذه الدالة الساعة من قيمة وقت. وتظهر الساعة كعدد صحيح، يتراوح من 0 (12:00 ص) إلى 23 (11:00 م).', + abstract: 'تُرجع هذه الدالة الساعة من قيمة وقت. وتظهر الساعة كعدد صحيح، يتراوح من 0 (12:00 ص) إلى 23 (11:00 م).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. الوقت الذي يحتوي على الساعة التي تريد البحث عنها. يمكن إدخال الأوقات كسلاسل نصية بين علامتي اقتباس (على سبيل المثال، "6:45 م")، أو كأرقام عشرية (على سبيل المثال، 0,78125، الذي يمثل "6:45 م")، أو كنتائج صيغ أو دالات أخرى (على سبيل المثال، TIMEVALUE("6:45 م")‎).' }, + }, + }, + ISOWEEKNUM: { + description: 'تُرجع هذه الدالة رقم أسبوع ISO من العام لتاريخ محدد.', + abstract: 'تُرجع هذه الدالة رقم أسبوع ISO من العام لتاريخ محدد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'مطلوب. التاريخ هو رمز التاريخ والوقت الذي يستخدمه Excel لحساب التاريخ والوقت.' }, + }, + }, + MINUTE: { + description: 'إرجاع الدقائق من قيمة للوقت. تظهر قيمة الدقائق كعدد صحيح، يتراوح بين 0 و59.', + abstract: 'إرجاع الدقائق من قيمة للوقت. تظهر قيمة الدقائق كعدد صحيح، يتراوح بين 0 و59.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. الوقت الذي يحتوي على الدقيقة التي تريد البحث عنها. يمكن إدخال الأوقات كسلاسل نصية بين علامتي اقتباس (على سبيل المثال، "6:45 م")، أو كأرقام عشرية (على سبيل المثال، 0.78125، الذي يمثل "6:45 م")، أو كنتائج صيغ أو دالات أخرى (على سبيل المثال، ("TIMEVALUE("6:45 PM).' }, + }, + }, + MONTH: { + description: 'تُرجع هذه الدالة شهر تاريخ ما يتم تمثيله برقم تسلسلي. ويظهر الشهر كعدد صحيح، يتراوح بين 1 (يناير) و12 (ديسمبر).', + abstract: 'تُرجع هذه الدالة شهر تاريخ ما يتم تمثيله برقم تسلسلي. ويظهر الشهر كعدد صحيح، يتراوح بين 1 (يناير) و12 (ديسمبر).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. تاريخ الشهر الذي تحاول البحث عنه. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص .' }, + }, + }, + NETWORKDAYS: { + description: 'تُرجع هذه الدالة أيام العمل الكاملة بين تاريخ البدء وتاريخ الانتهاء. وتُستبعد نهايات الأسبوع وأي تواريخ أخرى تم تحديدها على أنها أيام عطلة من أيام العمل. استخدم NETWORKDAYS لحساب عوائد الموظفين المستحقة بالاستناد إلى عدد أيام العمل في فترة محددة.', + abstract: 'تُرجع هذه الدالة أيام العمل الكاملة بين تاريخ البدء وتاريخ الانتهاء. وتُستبعد نهايات الأسبوع وأي تواريخ أخرى تم تحديدها على أنها أيام عطلة من أيام العمل. استخدم NETWORKDAYS لحساب عوائد الموظفين المستحقة بالاستناد إلى عدد أيام العمل في فترة محددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'مطلوب. تاريخ يمثل تاريخ البدء.' }, + endDate: { name: 'end_date', detail: 'مطلوب. تاريخ يمثل تاريخ الانتهاء.' }, + holidays: { name: 'holidays', detail: 'الاختياري. هي نطاق اختياري يحتوي على واحد أو أكثر من التواريخ المطلوب استبعادها من تقويم العمل، مثل العطلات الرسمية الموحدة والإجازات الشخصية. يمكن أن تكون القائمة عبارة عن نطاق من الخلايا التي تحتوي على التواريخ أو ثابت صفيف من الأرقام التسلسلية التي تمثل التواريخ.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'تُرجع هذه الدالة عدد أيام العمل الكاملة بين تاريخين باستخدام المعلمات لتحديد أيام نهايات الأسبوع وعددها. وتُستبعد من أيام العمل عطلات نهاية الأسبوع وأي تواريخ أخرى تم تحديدها على أنها أيام عطلة.', + abstract: 'تُرجع هذه الدالة عدد أيام العمل الكاملة بين تاريخين باستخدام المعلمات لتحديد أيام نهايات الأسبوع وعددها. وتُستبعد من أيام العمل عطلات نهاية الأسبوع وأي تواريخ أخرى تم تحديدها على أنها أيام عطلة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'تاريخ يمثل تاريخ البدء.' }, + endDate: { name: 'end_date', detail: 'تاريخ يمثل تاريخ الانتهاء.' }, + weekend: { name: 'weekend', detail: 'رقم أو سلسلة نصية تحدد أيام عطلة نهاية الأسبوع.' }, + holidays: { name: 'holidays', detail: 'نطاق اختياري يتضمن تاريخاً واحداً أو أكثر لاستبعاده من تقويم العمل، مثل العطلات الرسمية أو العطلات المتحركة.' }, + }, + }, + NOW: { + description: 'تُرجع هذه الدالة الرقم التسلسلي للتاريخ والوقت الحاليين. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، يقوم Excel بتغيير تنسيق الخلية إلى تنسيق يتطابق مع تنسيق الوقت والتاريخ المحدد في الإعدادات الإقليمية. ويمكنك تغيير تنسيق التاريخ والوقت للخلية باستخدام الأوامر الموجودة في مجموعة رقم ضمن علامة التبويب الشريط الرئيسي على الشريط.', + abstract: 'تُرجع هذه الدالة الرقم التسلسلي للتاريخ والوقت الحاليين. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، يقوم Excel بتغيير تنسيق الخلية إلى تنسيق يتطابق مع تنسيق الوقت والتاريخ المحدد في الإعدادات الإقليمية. ويمكنك تغيير تنسيق التاريخ والوقت للخلية باستخدام الأوامر الموجودة في مجموعة رقم ضمن علامة التبويب الشريط الرئيسي على الشريط.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'تُرجع هذه الدالة الثواني من قيمة وقت. وتظهر الثانية كعدد صحيح يتراوح بين 0 و59.', + abstract: 'تُرجع هذه الدالة الثواني من قيمة وقت. وتظهر الثانية كعدد صحيح يتراوح بين 0 و59.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. الوقت الذي يحتوي على الثواني التي تريد العثور عليها. يمكن إدخال الأوقات كسلاسل نصية بين علامات اقتباس (مثلاً، "6:45 م")، أو كأرقام عشرية (مثلاً 0.78125، وهي تشير إلى "6:45 م")، أو كنتائج لصيغ أو دالات أخرى (مثلاً TIMEVALUE("6:45 PM")‎‏).' }, + }, + }, + TIME: { + description: 'تُرجع هذه الدالة الرقم العشري لوقت محدد. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، فيتم تنسيق الخلية كتاريخ.', + abstract: 'تُرجع هذه الدالة الرقم العشري لوقت محدد. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، فيتم تنسيق الخلية كتاريخ.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'مطلوب. رقم من 0 (صفر) إلى 32767 يمثل الساعة. سيتم تقسيم أي قيمة أكبر من 23 على 24، ويُعتبر الباقي قيمة الساعة. على سبيل المثال، TIME(27,0,0) = TIME(3,0,0) = .125 أو 3:00 ص.' }, + minute: { name: 'minute', detail: 'مطلوب. رقم من 0 إلى 32767 يمثل الدقيقة. سيتم تحويل أي قيمة أكبر من 59 إلى ساعات ودقائق. على سبيل المثال، TIME(0,750,0) = TIME(12,30,0) = .520833 أو 12:30 م.' }, + second: { name: 'second', detail: 'مطلوب. رقم من 0 إلى 32767 يمثل الثانية. سيتم تحويل أي قيمة أكبر من 59 إلى ساعات، ودقائق، وثوانٍ. على سبيل المثال، TIME(0,0,2000) = TIME(0,33,22) = .023148 أو 12:33:20 ص.' }, + }, + }, + TIMEVALUE: { + description: 'تُرجع هذه الدالة الرقم العشري للوقت ممثلاً بسلسلة نصية. إن الرقم العشري عبارة عن قيمة تتراوح بين 0 (صفر) و0,99988426 وتمثل الأوقات من 0:00:00 (12:00:00 ص) إلى 23:59:59 (11:59:59 م).', + abstract: 'تُرجع هذه الدالة الرقم العشري للوقت ممثلاً بسلسلة نصية. إن الرقم العشري عبارة عن قيمة تتراوح بين 0 (صفر) و0,99988426 وتمثل الأوقات من 0:00:00 (12:00:00 ص) إلى 23:59:59 (11:59:59 م).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'مطلوب. سلسلة نصية تمثل وقتاً بأي من تنسيقات الوقت الخاصة بـ Microsoft Excel؛ مثلاً، "6:45 م" و"18:45" عبارة عن سلسلتين نصيتين داخل علامات اقتباس تمثلان وقتاً.' }, + }, + }, + TO_DATE: { + description: 'يحوّل رقماً مقدماً إلى تاريخ.', + abstract: 'يحوّل رقماً مقدماً إلى تاريخ.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=ar', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'الوسيطة أو مرجع الخلية المراد تحويله إلى تاريخ. إذا كانت value رقماً أو مرجعاً إلى خلية تحتوي على قيمة رقمية، فترجع TO_DATE القيمة بعد تحويلها إلى تاريخ، باعتبارها عدد الأيام منذ 30 ديسمبر 1899. تُفسَّر القيم السالبة على أنها أيام قبل ذلك التاريخ، وتشير القيم الكسرية إلى الوقت المنقضي بعد منتصف الليل. إذا لم تكن value رقماً أو مرجعاً إلى خلية تحتوي على قيمة رقمية، فترجع TO_DATE القيمة دون تغيير.' }, + }, + }, + TODAY: { + description: 'ترجع الدالة TODAY الرقم التسلسلي للتاريخ الحالي. الرقم التسلسلي عبارة عن تعليمة برمجية للتاريخ والوقت يستخدمها Excel لحسابات التاريخ والوقت. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، يقوم Excel بتغيير تنسيق الخلية إلى تاريخ . إذا كنت تريد عرض الرقم التسلسلي، فعليك تغيير تنسيق الخلية إلى عام أو رقم .', + abstract: 'ترجع الدالة TODAY الرقم التسلسلي للتاريخ الحالي. الرقم التسلسلي عبارة عن تعليمة برمجية للتاريخ والوقت يستخدمها Excel لحسابات التاريخ والوقت. إذا كانت الخلية بالتنسيق عام قبل إدخال الدالة، يقوم Excel بتغيير تنسيق الخلية إلى تاريخ . إذا كنت تريد عرض الرقم التسلسلي، فعليك تغيير تنسيق الخلية إلى عام أو رقم .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'تُرجع هذه الدالة يوم الأسبوع المطابق لأحد التواريخ. يتم تقديم اليوم كعدد صحيح، وهو يتراوح من 1 (الأحد) إلى 7 (السبت)، بشكل افتراضي.', + abstract: 'تُرجع هذه الدالة يوم الأسبوع المطابق لأحد التواريخ. يتم تقديم اليوم كعدد صحيح، وهو يتراوح من 1 (الأحد) إلى 7 (السبت)، بشكل افتراضي.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. رقم تسلسلي يمثل تاريخ اليوم الذي تحاول البحث عنه. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص.' }, + returnType: { name: 'return_type', detail: 'الاختياري. رقم يحدد نوع القيمة المرجعة.' }, + }, + }, + WEEKNUM: { + description: 'تُرجع رقم الأسبوع لتاريخ محدد. على سبيل المثال، إن الأسبوع الذي يقع فيه التاريخ 1 يناير هو الأسبوع الأول في السنة ورقمه الأسبوع 1.', + abstract: 'تُرجع رقم الأسبوع لتاريخ محدد. على سبيل المثال، إن الأسبوع الذي يقع فيه التاريخ 1 يناير هو الأسبوع الأول في السنة ورقمه الأسبوع 1.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. تاريخ يقع ضمن الأسبوع. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص.' }, + returnType: { name: 'return_type', detail: 'الاختياري. رقم يحدد اليوم الذي يبدأ عنده الأسبوع. إن القيمة الافتراضية هي 1.' }, + }, + }, + WORKDAY: { + description: 'تُرجع رقماً يمثل تاريخاً يشير إلى عدد أيام العمل قبل تاريخ معين (تاريخ البدء) أو بعده. وتُستبعد من أيام العمل عطلات نهاية الأسبوع وأي تواريخ أخرى يتم تحديدها على أنها أيام عطلة. استخدم WORKDAY لاستبعاد عطلات نهاية الأسبوع أو أيام العطلة الرسمية عند حساب تواريخ استحقاق الفواتير أو مواعيد التسليم المتوقعة أو عدد الأيام التي تم فيها إنجاز العمل.', + abstract: 'تُرجع رقماً يمثل تاريخاً يشير إلى عدد أيام العمل قبل تاريخ معين (تاريخ البدء) أو بعده. وتُستبعد من أيام العمل عطلات نهاية الأسبوع وأي تواريخ أخرى يتم تحديدها على أنها أيام عطلة. استخدم WORKDAY لاستبعاد عطلات نهاية الأسبوع أو أيام العطلة الرسمية عند حساب تواريخ استحقاق الفواتير أو مواعيد التسليم المتوقعة أو عدد الأيام التي تم فيها إنجاز العمل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'مطلوب. تاريخ يمثل تاريخ البدء.' }, + days: { name: 'days', detail: 'مطلوب. عدد الأيام غير عطلات نهاية الأسبوع وغير أيام العطلة الرسمية الواقعة قبل تاريخ البدء start_date أو بعده. ينتج عن القيمة الموجبة للوسيطة days تاريخ مستقبلي؛ وينتج عن القيمة السالبة تاريخ ماضٍ.' }, + holidays: { name: 'holidays', detail: 'الاختياري. هي قائمة اختيارية تحتوي على واحد أو أكثر من التواريخ المطلوب استبعادها من تقويم العمل، مثل العطلات الرسمية الموحدة والإجازات الشخصية. يمكن أن تكون القائمة عبارة عن نطاق من الخلايا التي تحتوي على التواريخ أو ثابت صفيف من الأرقام التسلسلية التي تمثل التواريخ.' }, + }, + }, + WORKDAY_INTL: { + description: 'ترجع هذه الدالة الرقم التسلسلي للتاريخ قبل عدد محدد من أيام العمل أو بعده باستخدام معلمات عطلة نهاية الأسبوع المخصصة. يمكن أن تشير معلمات عطلة نهاية الأسبوع الاختيارية إلى أيام عطلة نهاية الأسبوع وعددها. لاحظ أن أيام عطلة نهاية الأسبوع وأي أيام محددة كعطلات لا تعتبر أيام عمل.', + abstract: 'ترجع هذه الدالة الرقم التسلسلي للتاريخ قبل عدد محدد من أيام العمل أو بعده باستخدام معلمات عطلة نهاية الأسبوع المخصصة. يمكن أن تشير معلمات عطلة نهاية الأسبوع الاختيارية إلى أيام عطلة نهاية الأسبوع وعددها. لاحظ أن أيام عطلة نهاية الأسبوع وأي أيام محددة كعطلات لا تعتبر أيام عمل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'مطلوب. تاريخ البدء، تم اقتطاعه إلى عدد صحيح.' }, + days: { name: 'days', detail: 'مطلوب. عدد أيام العمل قبل تاريخ البدء start_date أو بعده. ينتج عن القيمة الموجبة تاريخ مستقبلي؛ ينتج عن القيمة السالبة تاريخ سابق؛ ينتج عن القيمة الصفرية start_date المحددة بالفعل . يتم اقتطاع إزاحة اليوم إلى عدد صحيح.' }, + weekend: { name: 'weekend', detail: 'الاختياري. إذا تم استخدامه، فهذا يشير إلى أيام الأسبوع التي هي أيام عطلة نهاية الأسبوع ولا تعتبر أيام عمل. وسيطة نهاية الأسبوع هي رقم عطلة نهاية الأسبوع أو سلسلة تحدد وقت حدوث عطلات نهاية الأسبوع. تشير قيم أرقام عطلة نهاية الأسبوع إلى أيام عطلة نهاية الأسبوع كما هو موضح أدناه.' }, + holidays: { name: 'holidays', detail: 'هذه وسيطة اختيارية في نهاية بناء الجملة. يحدد مجموعة اختيارية من تاريخ واحد أو أكثر سيتم استبعاده من تقويم يوم العمل. يجب أن تكون العطلات عبارة عن نطاق خلايا يحتوي على التواريخ - أو ثابت صفيف للقيم التسلسلية التي تمثل تلك التواريخ. يمكن أن يكون ترتيب التواريخ أو القيم التسلسلية في العطلات عشوائياً.' }, + }, + }, + YEAR: { + description: 'تُرجع السنة المطابقة لتاريخ معيّن. ويتم إرجاع السنة كعدد صحيح ضمن النطاق 1900-9999.', + abstract: 'تُرجع السنة المطابقة لتاريخ معيّن. ويتم إرجاع السنة كعدد صحيح ضمن النطاق 1900-9999.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'مطلوب. تاريخ السنة الذي تريد البحث عنه. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2025,5,23) لليوم الثالث والعشرين من مايو 2025. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص.' }, + }, + }, + YEARFRAC: { + description: 'يحسب YEARFRAC كسر السنة ممثلاً بعدد الأيام الكاملة التي تقع بين تاريخين (تاريخ البدء start_date وتاريخ الانتهاء end_date ). على سبيل المثال، يمكنك استخدام YEARFRAC لتحديد نسبة الالتزامات والمنافع خلال سنة كاملة والتي تريد تعيينها لفترة معينة.', + abstract: 'يحسب YEARFRAC كسر السنة ممثلاً بعدد الأيام الكاملة التي تقع بين تاريخين (تاريخ البدء start_date وتاريخ الانتهاء end_date ). على سبيل المثال، يمكنك استخدام YEARFRAC لتحديد نسبة الالتزامات والمنافع خلال سنة كاملة والتي تريد تعيينها لفترة معينة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'تاريخ يمثل تاريخ البدء.' }, + endDate: { name: 'end_date', detail: 'تاريخ يمثل تاريخ الانتهاء.' }, + basis: { name: 'basis', detail: 'نوع أساس احتساب الأيام المراد استخدامه.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/date/ca-ES.ts index c15bda9aeb..727461956c 100644 --- a/packages/sheets-formula/src/locale/function-list/date/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/date/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/ca-es/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/ca-es/excel/functions/datedif-function', }, ], functionParameter: { startDate: { name: 'data_inicial', detail: 'Una data que representa la primera data, o data d\'inici d\'un període determinat.' }, endDate: { name: 'data_final', detail: 'Una data que representa l\'última data, o data de finalització del període.' }, - method: { name: 'mètode', detail: 'El tipus d\'informació que voleu que es retorni.' }, + unit: { name: 'Unitat', detail: 'La unitat de temps que voleu que es retorni.' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/ca-es/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/ca-es/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/ca-es/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/ca-es/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/ca-es/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/ca-es/excel/functions/eomonth-function', }, ], functionParameter: { @@ -131,17 +131,17 @@ const locale: typeof enUS = { }, }, EPOCHTODATE: { - description: 'Converteix una marca de temps d\'època Unix en segons, mil·lisegons o microsegons a una data i hora en Temps Universal Coordinat (UTC).', - abstract: 'Converteix una marca de temps d\'època Unix en segons, mil·lisegons o microsegons a una data i hora en Temps Universal Coordinat (UTC).', + description: 'Converteix una marca de temps en època d\'Unix expressada en segons, mil·lisegons o microsegons en una data i hora en temps universal coordinat (UTC).', + abstract: 'Converteix una marca de temps en època d\'Unix expressada en segons, mil·lisegons o microsegons en una data i hora en temps universal coordinat (UTC).', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=ca', }, ], functionParameter: { - timestamp: { name: 'marca_temps', detail: 'Una marca de temps d\'època Unix, en segons, mil·lisegons o microsegons.' }, - unit: { name: 'unitat', detail: 'La unitat de temps en què s\'expressa la marca de temps. 1 per defecte: \\n1 indica que la unitat de temps són segons. \\n2 indica que la unitat de temps són mil·lisegons.\\n3 indica que la unitat de temps són microsegons.' }, + timestamp: { name: 'marca_temps', detail: 'marca de temps en època d\'Unix expressada en segons, mil·lisegons o microsegons.' }, + unit: { name: 'unitat', detail: '(OPCIONAL; -1 de manera predeterminada): unitat de temps en què s\'expressa la marca de temps.' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/ca-es/excel/functions/hour-function', }, ], functionParameter: { @@ -163,7 +163,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/ca-es/excel/functions/isoweeknum-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/ca-es/excel/functions/minute-function', }, ], functionParameter: { @@ -189,7 +189,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/ca-es/excel/functions/month-function', }, ], functionParameter: { @@ -202,7 +202,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/ca-es/excel/functions/networkdays-function', }, ], functionParameter: { @@ -217,7 +217,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/ca-es/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -233,7 +233,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/ca-es/excel/functions/now-function', }, ], functionParameter: { @@ -245,7 +245,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/ca-es/excel/functions/second-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/ca-es/excel/functions/time-function', }, ], functionParameter: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/ca-es/excel/functions/timevalue-function', }, ], functionParameter: { @@ -281,16 +281,16 @@ const locale: typeof enUS = { }, }, TO_DATE: { - description: 'Converteix un número proporcionat a una data.', - abstract: 'Converteix un número proporcionat a una data.', + description: 'Converteix un número proporcionat en una data.', + abstract: 'Converteix un número proporcionat en una data.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=ca', }, ], functionParameter: { - value: { name: 'valor', detail: 'L\'argument o referència a una cel·la que es convertirà a una data.' }, + value: { name: 'valor', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/ca-es/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/ca-es/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/ca-es/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/ca-es/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/ca-es/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/ca-es/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/ca-es/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/de-DE.ts b/packages/sheets-formula/src/locale/function-list/date/de-DE.ts new file mode 100644 index 0000000000..264fb79f16 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/de-DE.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'Mit der Funktion DATUM wird die fortlaufende Zahl zurückgegeben, die ein bestimmtes Datum darstellt.', + abstract: 'Mit der Funktion DATUM wird die fortlaufende Zahl zurückgegeben, die ein bestimmtes Datum darstellt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'Der Wert des Arguments year kann ein bis vier Ziffern enthalten. Excel interpretiert year entsprechend dem auf Ihrem Computer verwendeten Datumssystem. Standardmäßig verwendet Univer das Datumssystem 1900; das erste Datum ist somit der 1. Januar 1900.' }, + month: { name: 'month', detail: 'Eine positive oder negative ganze Zahl, die den Monat des Jahres von 1 bis 12 (Januar bis Dezember) darstellt.' }, + day: { name: 'day', detail: 'Eine positive oder negative ganze Zahl, die den Tag des Monats von 1 bis 31 darstellt.' }, + }, + }, + DATEDIF: { + description: 'Berechnet die Anzahl der Tage, Monate oder Jahre zwischen zwei Datumsangaben.', + abstract: 'Berechnet die Anzahl der Tage, Monate oder Jahre zwischen zwei Datumsangaben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Ein Datum, das das erste Datum oder das Anfangsdatum eines bestimmten Zeitraums darstellt. Datumsangaben können als Textzeichenfolgen in Anführungszeichen (z. B. "2001/1/30"), als fortlaufende Zahlen (z. B. 36921, das den 30. Januar 2001 darstellt, wenn Sie das Datumssystem 1900 verwenden) oder als Ergebnisse anderer Formeln oder Funktionen (z. B. DATEVALUE("2001/1/30")) eingegeben werden.' }, + endDate: { name: 'end_date', detail: 'Ein Datum, das das letzte Datum des Zeitraums darstellt' }, + unit: { name: 'Einheit', detail: 'Der Typ der Informationen, die zurückgegeben werden sollen, wobei: Einheit****Gibt " Y "Die Anzahl der vollständigen Jahre im Zeitraum zurück." M "Die Anzahl der vollständigen Monate im Zeitraum." D "Die Anzahl der Tage im Zeitraum." MD "Der Unterschied zwischen den Tagen in start_date und end_date. Die Monate und Jahre der Datumsangaben werden ignoriert. Wichtig: Es wird davon abgeraten, das Argument "MD" zu verwenden, da es bekannte Einschränkungen gibt. Weitere Informationen finden Sie weiter unten im Abschnitt bekannte Probleme." YM "Der Unterschied zwischen den Monaten in start_date und end_date. Die Tage und Jahre der Datumsangaben werden ignoriert" YD "Der Unterschied zwischen den Tagen der start_date und end_date. Die Jahre der Datumsangaben werden ignoriert.' }, + }, + }, + DATEVALUE: { + description: 'Die DATEVALUE-Funktion konvertiert ein datum, das als Text gespeichert ist, in eine fortlaufende Zahl, die Excel als Datum erkennt. Die Formel =DATEVALUE("1/1/2008") gibt beispielsweise 39448 zurück, die fortlaufende Nummer des Datums 1/1/2008. Denken Sie jedoch daran, dass die Systemdatumseinstellung Ihres Computers dazu führen kann, dass die Ergebnisse einer DATEVALUE-Funktion von diesem Beispiel abweichen.', + abstract: 'Die DATEVALUE-Funktion konvertiert ein datum, das als Text gespeichert ist, in eine fortlaufende Zahl, die Excel als Datum erkennt. Die Formel =DATEVALUE("1/1/2008") gibt beispielsweise 39448 zurück, die fortlaufende Nummer des Datums 1/1/2008. Denken Sie jedoch daran, dass die Systemdatumseinstellung Ihres Computers dazu führen kann, dass die Ergebnisse einer DATEVALUE-Funktion von diesem Beispiel abweichen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Erforderlich. Text, der ein Datum in einem Excel-Datumsformat darstellt, oder einen Verweis auf eine Zelle, die Text enthält, der ein Datum in einem Excel-Datumsformat darstellt. Beispielsweise sind "30.01.2008" oder "30-Jan-2008" Textzeichenfolgen in Anführungszeichen, die Datumsangaben darstellen. Bei Verwendung des Standarddatumssystems in Microsoft Excel für Windows muss das argument date_text ein Datum zwischen dem 1. Januar 1900 und dem 31. Dezember 9999 darstellen. Die DATEVALUE-Funktion gibt die #VALUE! Fehlerwert, wenn der Wert des date_text Arguments außerhalb dieses Bereichs liegt. Wenn der Jahresteil des date_text Arguments ausgelassen wird, verwendet die DATEVALUE-Funktion das aktuelle Jahr der integrierten Uhr Ihres Computers. Zeitinformationen im argument date_text werden ignoriert.' }, + }, + }, + DAY: { + description: 'Gibt den Tag eines Datums als fortlaufende Zahl zurück. Der Tag wird als ganze Zahl im Bereich von 1 bis 31 ausgegeben.', + abstract: 'Gibt den Tag eines Datums als fortlaufende Zahl zurück. Der Tag wird als ganze Zahl im Bereich von 1 bis 31 ausgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Das Datum des Tages, den Sie suchen möchten. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden .' }, + }, + }, + DAYS: { + description: 'Gibt die Anzahl von Tagen zurück, die zwischen zwei Datumswerten liegen.', + abstract: 'Gibt die Anzahl von Tagen zurück, die zwischen zwei Datumswerten liegen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Erforderlich. "Ausgangsdatum" und "Zieldatum" sind die beiden Datumswerte, für die Sie die dazwischen liegenden Tage berechnen möchten.' }, + startDate: { name: 'start_date', detail: 'Erforderlich. "Ausgangsdatum" und "Zieldatum" sind die beiden Datumswerte, für die Sie die dazwischen liegenden Tage berechnen möchten.' }, + }, + }, + DAYS360: { + description: 'Mit der Funktion TAGE360 wird ausgehend von einem Jahr, das 360 Tage umfasst, die Anzahl der zwischen zwei Datumsangaben liegenden Tage berechnet. Sie können diese Funktion als Hilfe für die Berechnung von Zahlungen verwenden, wenn Ihr Buchführungssystem auf 12 Monaten mit je 30 Tagen basiert.', + abstract: 'Mit der Funktion TAGE360 wird ausgehend von einem Jahr, das 360 Tage umfasst, die Anzahl der zwischen zwei Datumsangaben liegenden Tage berechnet. Sie können diese Funktion als Hilfe für die Berechnung von Zahlungen verwenden, wenn Ihr Buchführungssystem auf 12 Monaten mit je 30 Tagen basiert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'start_date und end_date sind die zwei Daten, zwischen denen Sie die Anzahl der Tage ermitteln möchten.' }, + endDate: { name: 'end_date', detail: 'start_date und end_date sind die zwei Daten, zwischen denen Sie die Anzahl der Tage ermitteln möchten.' }, + method: { name: 'method', detail: 'Ein Wahrheitswert, der angibt, ob für die Berechnung die US-amerikanische oder die europäische Methode verwendet werden soll.' }, + }, + }, + EDATE: { + description: 'Gibt die fortlaufende Nummer zurück, die das Datum darstellt, das der angegebenen Anzahl von Monaten vor oder nach einem angegebenen Datum entspricht (die start_date). Verwenden Sie EDATE, um Fälligkeitstermine oder Fälligkeitstermine zu berechnen, die auf denselben Tag des Monats wie das Ausgabedatum fallen.', + abstract: 'Gibt die fortlaufende Nummer zurück, die das Datum darstellt, das der angegebenen Anzahl von Monaten vor oder nach einem angegebenen Datum entspricht (die start_date). Verwenden Sie EDATE, um Fälligkeitstermine oder Fälligkeitstermine zu berechnen, die auf denselben Tag des Monats wie das Ausgabedatum fallen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Erforderlich. Ein Datum, das das Ausgangsdatum angibt Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden .' }, + months: { name: 'months', detail: 'Erforderlich. Gibt an, wie viele Monate vor oder nach dem Ausgangsdatum liegen sollen. Ein positiver Wert für Monate ergibt ein in der Zukunft, ein negativer Wert ein in der Vergangenheit liegendes Datum.' }, + }, + }, + EOMONTH: { + description: 'Gibt die fortlaufende Nummer für den letzten Tag des Monats zurück, die die angegebene Anzahl von Monaten vor oder nach start_date. Verwenden Sie EOMONTH, um Fälligkeitstermine oder Fälligkeitsdaten zu berechnen, die auf den letzten Tag des Monats fallen.', + abstract: 'Gibt die fortlaufende Nummer für den letzten Tag des Monats zurück, die die angegebene Anzahl von Monaten vor oder nach start_date. Verwenden Sie EOMONTH, um Fälligkeitstermine oder Fälligkeitsdaten zu berechnen, die auf den letzten Tag des Monats fallen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Erforderlich. Ein Datum, das das Startdatum darstellt. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden .' }, + months: { name: 'months', detail: 'Erforderlich. Gibt an, wie viele Monate vor oder nach dem Ausgangsdatum liegen sollen. Ein positiver Wert für Monate ergibt ein in der Zukunft, ein negativer Wert ein in der Vergangenheit liegendes Datum. Hinweis Ist "Monate" keine ganze Zahl, werden die Nachkommastellen abgeschnitten.' }, + }, + }, + EPOCHTODATE: { + description: 'Konvertiert einen Unix-Epochenzeitstempel in Sekunden, Millisekunden oder Mikrosekunden in eine Datums- und Uhrzeitangabe in koordinierter Weltzeit (UTC).', + abstract: 'Konvertiert einen Unix-Epochenzeitstempel in Sekunden, Millisekunden oder Mikrosekunden in eine Datums- und Uhrzeitangabe in koordinierter Weltzeit (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=de', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'Ein Unix-Epochenzeitstempel in Sekunden, Millisekunden oder Mikrosekunden.' }, + unit: { name: 'unit', detail: '[OPTIONAL – standardmäßig 1]: Die Zeiteinheit, in der der Zeitstempel angegeben ist.' }, + }, + }, + HOUR: { + description: 'Gibt die Stunde einer Zeitangabe zurück. Die Stunde wird als ganze Zahl ausgegeben, die einen Wert von 0 (0 Uhr) bis 23 (23 Uhr) annehmen kann.', + abstract: 'Gibt die Stunde einer Zeitangabe zurück. Die Stunde wird als ganze Zahl ausgegeben, die einen Wert von 0 (0 Uhr) bis 23 (23 Uhr) annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Die Zeit, die die gewünschte Stunde enthält. Zeitangaben können als Textzeichenfolgen in Anführungszeichen (z. B. "18:45"), als Dezimalzahlen (z. B. 0,78125; dieser Wert stellt 18:45 Uhr dar) oder als Ergebnis anderer Formeln oder Funktionen (z. B. ZEITWERT("18:45")) eingegeben werden.' }, + }, + }, + ISOWEEKNUM: { + description: 'Gibt die Zahl der ISO-Kalenderwoche des Jahres für ein angegebenes Datum zurück.', + abstract: 'Gibt die Zahl der ISO-Kalenderwoche des Jahres für ein angegebenes Datum zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Erforderlich. Der von Excel für die Datums- und Uhrzeitberechnung verwendete Datums- und Uhrzeitcode.' }, + }, + }, + MINUTE: { + description: 'Wandelt eine fortlaufende Zahl in eine Minute um. Die Minute wird als ganze Zahl ausgegeben, die einen Wert von 0 bis 59 annehmen kann.', + abstract: 'Wandelt eine fortlaufende Zahl in eine Minute um. Die Minute wird als ganze Zahl ausgegeben, die einen Wert von 0 bis 59 annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Der Code für Datum und Zeit, den Microsoft Excel für Datums- und Zeitberechnungen verwendet. Zeitangaben können als Textzeichenfolgen in Anführungszeichen (beispielsweise "18:45"), als Dezimalzahlen (beispielsweise 0,78125; dieser Wert stellt 18:45 Uhr dar) oder als Ergebnis anderer Formeln oder Funktionen (beispielsweise ZEITWERT("18:45")) eingegeben werden.' }, + }, + }, + MONTH: { + description: 'Wandelt eine fortlaufende Zahl in einen Monat um. Der Monat wird als ganze Zahl ausgegeben, die einen Wert von 1 (Januar) bis 12 (Dezember) annehmen kann.', + abstract: 'Wandelt eine fortlaufende Zahl in einen Monat um. Der Monat wird als ganze Zahl ausgegeben, die einen Wert von 1 (Januar) bis 12 (Dezember) annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Das Datum des Monats, den Sie suchen möchten. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden .' }, + }, + }, + NETWORKDAYS: { + description: 'Gibt die Anzahl der Arbeitstage in einem Zeitintervall zurück. Nicht zu den Arbeitstagen gezählt werden Wochenenden sowie die Tage, die als Ferien (Feiertage) angegeben sind. Mit NETTOARBEITSTAGE können Sie beispielsweise die für Arbeitnehmer zu zahlenden Leistungen berechnen, die auf der zu einem bestimmten Zeitraum gehörenden Anzahl an Arbeitstagen basieren.', + abstract: 'Gibt die Anzahl der Arbeitstage in einem Zeitintervall zurück. Nicht zu den Arbeitstagen gezählt werden Wochenenden sowie die Tage, die als Ferien (Feiertage) angegeben sind. Mit NETTOARBEITSTAGE können Sie beispielsweise die für Arbeitnehmer zu zahlenden Leistungen berechnen, die auf der zu einem bestimmten Zeitraum gehörenden Anzahl an Arbeitstagen basieren.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Erforderlich. Ein Datum, das das Ausgangsdatum angibt' }, + endDate: { name: 'end_date', detail: 'Erforderlich. Ein Datum, das das Enddatum angibt' }, + holidays: { name: 'holidays', detail: 'Optional. Ein optionaler Bereich von einer oder mehreren Datumsangaben, die alle Arten von arbeitsfreien Tagen repräsentieren kann, die aus dem Arbeitskalender ausgeschlossen werden sollen, also z. B. staatliche oder regionale Feiertage und Freischichten. Bei der Liste kann es sich entweder um einen Zellbereich, der die Datumsangaben enthält, oder eine Matrixkonstante der fortlaufenden Zahlen handeln, die die Datumsangaben darstellen.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Gibt die Anzahl der ganzen Arbeitstage zwischen zwei Datumsangaben mithilfe von Parametern zurück, um anzugeben, welche und wie viele Tage Wochenenden sind. Wochenendtage und als Feiertage angegebene Tage werden nicht als Arbeitstage betrachtet.', + abstract: 'Gibt die Anzahl der ganzen Arbeitstage zwischen zwei Datumsangaben mithilfe von Parametern zurück, um anzugeben, welche und wie viele Tage Wochenenden sind. Wochenendtage und als Feiertage angegebene Tage werden nicht als Arbeitstage betrachtet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Ein Datum, das das Startdatum darstellt.' }, + endDate: { name: 'end_date', detail: 'Ein Datum, das das Enddatum darstellt.' }, + weekend: { name: 'weekend', detail: 'Eine Wochenendnummer oder Zeichenfolge, die angibt, wann Wochenenden auftreten.' }, + holidays: { name: 'holidays', detail: 'Ein optionaler Bereich mit einem oder mehreren Daten, die aus dem Arbeitskalender ausgeschlossen werden, etwa staatliche, bundesweite oder bewegliche Feiertage.' }, + }, + }, + NOW: { + description: 'Mit dieser Funktion wird die fortlaufende Zahl des aktuellen Datums und der aktuellen Uhrzeit zurückgegeben. Wenn das Zellenformat vor dem Eingeben der Funktion auf Standard gesetzt war, ändert Excel das Zellenformat so, dass es dem Datums- und Uhrzeitformat in den regionalen Einstellungen entspricht. Sie können das Datums- und Uhrzeitformat für die Zelle mithilfe der Befehle ändern, die über das Menüband auf der Registerkarte Start in der Gruppe Zahl bereitstehen.', + abstract: 'Mit dieser Funktion wird die fortlaufende Zahl des aktuellen Datums und der aktuellen Uhrzeit zurückgegeben. Wenn das Zellenformat vor dem Eingeben der Funktion auf Standard gesetzt war, ändert Excel das Zellenformat so, dass es dem Datums- und Uhrzeitformat in den regionalen Einstellungen entspricht. Sie können das Datums- und Uhrzeitformat für die Zelle mithilfe der Befehle ändern, die über das Menüband auf der Registerkarte Start in der Gruppe Zahl bereitstehen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Wandelt eine fortlaufende Zahl in eine Sekunde um. Die Sekunde wird als ganze Zahl ausgegeben, die einen Wert von 0 (Null) bis 59 annehmen kann.', + abstract: 'Wandelt eine fortlaufende Zahl in eine Sekunde um. Die Sekunde wird als ganze Zahl ausgegeben, die einen Wert von 0 (Null) bis 59 annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Die Zeitangabe, die die Sekunden enthält, nach denen Sie suchen möchten. Zeitangaben können als Textzeichenfolgen in Anführungszeichen (z. B. "18:45"), als Dezimalzahlen (z. B. 0,78125; dieser Wert stellt 18:45 Uhr dar) oder als Ergebnis anderer Formeln oder Funktionen (z. B. ZEITWERT("18:45")) eingegeben werden.' }, + }, + }, + TIME: { + description: 'Gibt die Dezimalzahl einer bestimmten Uhrzeit zurück. Wenn für das Zellenformat vor der Eingabe der Funktion die Option Allgemein festgelegt war, wird das Ergebnis als Datum formatiert.', + abstract: 'Gibt die Dezimalzahl einer bestimmten Uhrzeit zurück. Wenn für das Zellenformat vor der Eingabe der Funktion die Option Allgemein festgelegt war, wird das Ergebnis als Datum formatiert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Erforderlich. Eine Zahl von 0 (Null) bis 32767, die die Stunde angibt. Jeder Wert, der größer ist als 23, wird durch 24 geteilt und der Rest als Wert für die Stunde angenommen. Zum Beispiel ZEIT(27;0;0) = ZEIT(3;0;0) = 0,125 oder 3:00.' }, + minute: { name: 'minute', detail: 'Erforderlich. Eine Zahl von 0 bis 32767, die die Minute angibt. Jeder Wert, der größer ist als 59, wird in Stunden und Minuten umgerechnet. Zum Beispiel ZEIT(0;750;0) = ZEIT(12;30;0) = 0,520833 oder 12:30.' }, + second: { name: 'second', detail: 'Erforderlich. Eine Zahl von 0 bis 32767, die die Sekunde angibt. Jeder Wert, der größer ist als 59, wird in Stunden, Minuten und Sekunden umgerechnet. Zum Beispiel ZEIT(0;0;2000) = ZEIT(0;33;22) = 0,023148 oder 0:33:22' }, + }, + }, + TIMEVALUE: { + description: 'Wandelt eine als Text vorliegende Zeitangabe in eine fortlaufende Zahl um. Diese fortlaufende Zahl ist ein Wert im Bereich von 0 (Null) bis 0.99988426 und entspricht einer Uhrzeit von 0:00:00 (24:00:00) bis 23:59:59.', + abstract: 'Wandelt eine als Text vorliegende Zeitangabe in eine fortlaufende Zahl um. Diese fortlaufende Zahl ist ein Wert im Bereich von 0 (Null) bis 0.99988426 und entspricht einer Uhrzeit von 0:00:00 (24:00:00) bis 23:59:59.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Erforderlich. Eine Textzeichenfolge, die eine Uhrzeit in einem der Microsoft Excel-Zeitformate darstellt; Beispielsweise textzeichenfolgen "18:45 pm" und "18:45" in Anführungszeichen, die die Zeit darstellen.' }, + }, + }, + TO_DATE: { + description: 'Konvertiert eine angegebene Zahl in ein Datum.', + abstract: 'Konvertiert eine angegebene Zahl in ein Datum.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=de', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Das Argument oder der Bezug auf eine Zelle, die in ein Datum umgewandelt werden soll. Ist value eine Zahl oder ein Bezug auf eine Zelle mit einem numerischen Wert, gibt TO_DATE value als Datum zurück und interpretiert value als Anzahl der Tage seit dem 30. Dezember 1899. Negative Werte werden als Tage vor diesem Datum interpretiert, Bruchwerte geben die Uhrzeit seit Mitternacht an. Ist value keine Zahl und kein Bezug auf eine Zelle mit Zahlenwert, gibt TO_DATE value unverändert zurück.' }, + }, + }, + TODAY: { + description: 'Die TODAY-Funktion gibt die fortlaufende Nummer des aktuellen Datums zurück. Die fortlaufende Zahl ist der Datums-/Uhrzeitcode, der von Excel für Datums- und Uhrzeitberechnungen verwendet wird. Wenn das Zellformat vor der Eingabe der Funktion Allgemein war, ändert Excel das Zellenformat in Datum . Wenn Sie die Seriennummer anzeigen möchten, müssen Sie das Zellenformat in Allgemein oder Zahl ändern.', + abstract: 'Die TODAY-Funktion gibt die fortlaufende Nummer des aktuellen Datums zurück. Die fortlaufende Zahl ist der Datums-/Uhrzeitcode, der von Excel für Datums- und Uhrzeitberechnungen verwendet wird. Wenn das Zellformat vor der Eingabe der Funktion Allgemein war, ändert Excel das Zellenformat in Datum . Wenn Sie die Seriennummer anzeigen möchten, müssen Sie das Zellenformat in Allgemein oder Zahl ändern.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Wandelt eine fortlaufende Zahl in einen Wochentag um. Der Tag wird standardmäßig als ganze Zahl ausgegeben, die einen Wert von 1 (Sonntag) bis 7 (Samstag) annehmen kann.', + abstract: 'Wandelt eine fortlaufende Zahl in einen Wochentag um. Der Tag wird standardmäßig als ganze Zahl ausgegeben, die einen Wert von 1 (Sonntag) bis 7 (Samstag) annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Eine sequenzielle Zahl, die das Datum des Tages darstellt, den Sie suchen möchten. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden.' }, + returnType: { name: 'return_type', detail: 'Optional. Eine Zahl, mit der der Typ des Rückgabewerts bestimmt wird' }, + }, + }, + WEEKNUM: { + description: 'Gibt die Wochennummer eines bestimmten Datums zurück. Beispielsweise ist die Woche, die den 1. Januar enthält, die erste Woche des Jahres und woche 1 nummeriert.', + abstract: 'Gibt die Wochennummer eines bestimmten Datums zurück. Beispielsweise ist die Woche, die den 1. Januar enthält, die erste Woche des Jahres und woche 1 nummeriert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Ein Datum innerhalb der Woche. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden.' }, + returnType: { name: 'return_type', detail: 'Optional. Eine Zahl, mit der festgelegt wird, an welchem Tag eine Woche beginnt. Die Standardeinstellung ist 1.' }, + }, + }, + WORKDAY: { + description: 'Gibt die Datumsangabe als fortlaufenden Tag im Jahr zurück, vor oder nach einer bestimmten Anzahl von Arbeitstagen. Nicht zu den Arbeitstagen gezählt werden Wochenenden sowie die Tage, die als Ferien ("Freie_Tage") angegeben sind. ARBEITSTAG ermöglicht es Ihnen, Wochenenden oder Ferien auszuschließen, wenn Sie Fälligkeitstermine für Rechnungen, zu erwartende Lieferzeiten oder die Anzahl bereits verstrichener Arbeitstage berechnen möchten.', + abstract: 'Gibt die Datumsangabe als fortlaufenden Tag im Jahr zurück, vor oder nach einer bestimmten Anzahl von Arbeitstagen. Nicht zu den Arbeitstagen gezählt werden Wochenenden sowie die Tage, die als Ferien ("Freie_Tage") angegeben sind. ARBEITSTAG ermöglicht es Ihnen, Wochenenden oder Ferien auszuschließen, wenn Sie Fälligkeitstermine für Rechnungen, zu erwartende Lieferzeiten oder die Anzahl bereits verstrichener Arbeitstage berechnen möchten.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Erforderlich. Ein Datum, das das Ausgangsdatum angibt' }, + days: { name: 'days', detail: 'Erforderlich. Die Anzahl der nicht auf ein Wochenende oder auf einen Feiertag fallenden Tage vor oder nach dem "Ausgangsdatum". Ein positiver Wert für "Tage" bedeutet ein zukünftiges Datum, und ein negativer Wert ergibt ein zurückliegendes Datum.' }, + holidays: { name: 'holidays', detail: 'Optional. Eine optionale Liste einer oder mehrerer Datumsangaben, die alle Arten von arbeitsfreien Tagen repräsentieren kann, die aus dem Arbeitskalender ausgeschlossen werden sollen, beispielsweise staatliche oder regionale Feiertage und Freischichten. Bei der Liste kann es sich um einen Zellbereich, der die Datumsangaben enthält, oder um eine Matrixkonstante der fortlaufenden Zahlen handeln, die die Datumsangaben darstellen.' }, + }, + }, + WORKDAY_INTL: { + description: 'Diese Funktion gibt die fortlaufende Nummer des Datums vor oder nach einer angegebenen Anzahl von Arbeitstagen mit benutzerdefinierten Wochenendparametern zurück. Optionale Weekend-Parameter können angeben, welche und wie viele Tage Wochenenden sind. Beachten Sie, dass Wochenendtage und alle Tage, die als Feiertage angegeben sind, nicht als Arbeitstage betrachtet werden.', + abstract: 'Diese Funktion gibt die fortlaufende Nummer des Datums vor oder nach einer angegebenen Anzahl von Arbeitstagen mit benutzerdefinierten Wochenendparametern zurück. Optionale Weekend-Parameter können angeben, welche und wie viele Tage Wochenenden sind. Beachten Sie, dass Wochenendtage und alle Tage, die als Feiertage angegeben sind, nicht als Arbeitstage betrachtet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Erforderlich. Das auf eine ganze Zahl gekürzte Startdatum' }, + days: { name: 'days', detail: 'Erforderlich. Die Anzahl der Arbeitstage vor oder nach dem start_date. Ein positiver Wert ergibt ein zukünftiges Datum; ein negativer Wert ergibt ein vergangenes Datum; ein Nullwert ergibt die bereits angegebene start_date. Der Tagoffset wird auf eine ganze Zahl abgeschnitten.' }, + weekend: { name: 'weekend', detail: 'Optional. Wenn verwendet, gibt dies die Wochentage an, die Wochenenden sind und nicht als Arbeitstage gelten. Das Weekend-Argument ist eine Wochenendnummer oder eine Zeichenfolge, die angibt, wann Wochenenden auftreten. Die Werte für die Anzahl von Wochenenden geben die Wochenenden an, wie unten dargestellt.' }, + holidays: { name: 'holidays', detail: 'Dies ist ein optionales Argument am Ende der Syntax. Es gibt einen optionalen Satz von einem oder mehreren Datumsangaben an, die aus dem Arbeitstagkalender ausgeschlossen werden sollen. Feiertage müssen ein Zellbereich sein, der die Datumsangaben enthält – oder eine Arraykonstante der seriellen Werte, die diese Datumsangaben darstellen. Die Reihenfolge von Datumsangaben oder seriellen Werten in Feiertagen kann beliebig sein.' }, + }, + }, + YEAR: { + description: 'Wandelt eine fortlaufende Zahl in eine Jahreszahl um. Das Jahr wird als ganze Zahl zurückgegeben, die einen Wert von 1900 bis 9999 annehmen kann.', + abstract: 'Wandelt eine fortlaufende Zahl in eine Jahreszahl um. Das Jahr wird als ganze Zahl zurückgegeben, die einen Wert von 1900 bis 9999 annehmen kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Erforderlich. Das Datum des Jahres, das Sie suchen möchten. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Verwenden Sie beispielsweise DATE(2025,5,23) für den 23. Mai 2025. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden.' }, + }, + }, + YEARFRAC: { + description: 'BRTEILJAHRE wandelt die Anzahl der ganzen Tage zwischen Ausgangsdatum und Enddatum in Bruchteile von Jahren um. Sie können BRTEILJAHRE beispielsweise verwenden, um Laufzeiten von Forderungen oder Verbindlichkeiten besser miteinander zu vergleichen.', + abstract: 'BRTEILJAHRE wandelt die Anzahl der ganzen Tage zwischen Ausgangsdatum und Enddatum in Bruchteile von Jahren um. Sie können BRTEILJAHRE beispielsweise verwenden, um Laufzeiten von Forderungen oder Verbindlichkeiten besser miteinander zu vergleichen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Ein Datum, das das Startdatum darstellt.' }, + endDate: { name: 'end_date', detail: 'Ein Datum, das das Enddatum darstellt.' }, + basis: { name: 'basis', detail: 'Der zu verwendende Typ der Zinstageberechnung.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/en-US.ts b/packages/sheets-formula/src/locale/function-list/date/en-US.ts index b81fb9a720..42d99a53dc 100644 --- a/packages/sheets-formula/src/locale/function-list/date/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/date/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/en-us/excel/functions/date-function', }, ], functionParameter: { @@ -36,13 +36,13 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/en-us/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: 'start_date', detail: 'A date that represents the first, or starting date of a given period.' }, + startDate: { name: 'start_date', detail: 'A date that represents the first, or starting date of a given period. Dates may be entered as text strings within quotation marks (for example, "2001/1/30"), as serial numbers (for example, 36921, which represents January 30, 2001, if you\'re using the 1900 date system), or as the results of other formulas or functions (for example, DATEVALUE("2001/1/30")).' }, 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.' }, + unit: { name: 'Unit', detail: 'The type of information that you want returned, where: Unit****Returns " Y "The number of complete years in the period." M "The number of complete months in the period." D "The number of days in the period." MD "The difference between the days in start_date and end_date. The months and years of the dates are ignored. Important: We don\'t recommend using the "MD" argument, as there are known limitations with it. See the known issues section below." YM "The difference between the months in start_date and end_date. The days and years of the dates are ignored" YD "The difference between the days of start_date and end_date. The years of the dates are ignored.' }, }, }, DATEVALUE: { @@ -51,7 +51,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/en-us/excel/functions/datevalue-function', }, ], functionParameter: { @@ -64,7 +64,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/en-us/excel/functions/day-function', }, ], functionParameter: { @@ -72,17 +72,17 @@ const locale = { }, }, DAYS: { - description: 'Returns the number of days between two dates', - abstract: 'Returns the number of days between two dates', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/days-function', }, ], 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.' }, + endDate: { name: 'end_date', detail: 'Required. Start_date and End_date are the two dates between which you want to know the number of days.' }, + startDate: { name: 'start_date', detail: 'Required. Start_date and End_date are the two dates between which you want to know the number of days.' }, }, }, DAYS360: { @@ -91,7 +91,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/en-us/excel/functions/days360-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/en-us/excel/functions/edate-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/en-us/excel/functions/eomonth-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale = { ], 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: \n1 indicates the time unit is seconds. \n2 indicates the time unit is milliseconds.\n3 indicates the time unit is microseconds.' }, + unit: { name: 'unit', detail: '[OPTIONAL – 1 by default]: The unit of time in which the timestamp is expressed.' }, }, }, HOUR: { @@ -148,7 +148,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/en-us/excel/functions/hour-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/en-us/excel/functions/isoweeknum-function', }, ], functionParameter: { @@ -169,44 +169,44 @@ const locale = { }, }, MINUTE: { - description: 'Converts a serial number to a minute', - abstract: 'Converts a serial number to a minute', + description: 'Returns the minutes of a time value. The minute is given as an integer, ranging from 0 to 59.', + abstract: 'Returns the minutes of a time value. The minute is given as an integer, ranging from 0 to 59.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/en-us/excel/functions/minute-function', }, ], 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.' }, + serialNumber: { name: 'serial_number', detail: 'Required. The time that contains the minute you want to find. Times may be entered as text strings within quotation marks (for example, "6:45 PM"), as decimal numbers (for example, 0.78125, which represents 6:45 PM), or as results of other formulas or functions (for example, TIMEVALUE("6:45 PM")).' }, }, }, 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', + abstract: '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).', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/en-us/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'serial_number', detail: '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.' }, + 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. Problems can occur if dates are entered as text .' }, }, }, NETWORKDAYS: { - description: 'Returns the number of whole workdays between two dates', - abstract: 'Returns the number of whole workdays between two dates', + description: 'Returns the number of whole working days between start_date and end_date. Working days exclude weekends and any dates identified in holidays. Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days worked during a specific term.', + abstract: 'Returns the number of whole working days between start_date and end_date. Working days exclude weekends and any dates identified in holidays. Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days worked during a specific term.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/en-us/excel/functions/networkdays-function', }, ], 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' }, + startDate: { name: 'start_date', detail: 'Required. A date that represents the start date.' }, + endDate: { name: 'end_date', detail: 'Required. A date that represents the end date.' }, + holidays: { name: 'holidays', detail: 'Optional. An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. The list can be either a range of cells that contains the dates or an array constant of the serial numbers that represent the dates.' }, }, }, NETWORKDAYS_INTL: { @@ -215,7 +215,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/en-us/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -226,43 +226,43 @@ const locale = { }, }, NOW: { - description: 'Returns the serial number of the current date and time.', - abstract: 'Returns the serial number of the current date and time', + description: 'Returns the serial number of the current date and time. If the cell format was General before the function was entered, Excel changes the cell format so that it matches the date and time format of your regional settings. You can change the date and time format for the cell by using the commands in the Number group of the Home tab on the Ribbon.', + abstract: 'Returns the serial number of the current date and time. If the cell format was General before the function was entered, Excel changes the cell format so that it matches the date and time format of your regional settings. You can change the date and time format for the cell by using the commands in the Number group of the Home tab on the Ribbon.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/en-us/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: 'Converts a serial number to a second', - abstract: 'Converts a serial number to a second', + description: 'Returns the seconds of a time value. The second is given as an integer in the range 0 (zero) to 59.', + abstract: 'Returns the seconds of a time value. The second is given as an integer in the range 0 (zero) to 59.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/en-us/excel/functions/second-function', }, ], 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.' }, + serialNumber: { name: 'serial_number', detail: 'Required. The time that contains the seconds you want to find. Times may be entered as text strings within quotation marks (for example, "6:45 PM"), as decimal numbers (for example, 0.78125, which represents 6:45 PM), or as results of other formulas or functions (for example, TIMEVALUE("6:45 PM")).' }, }, }, TIME: { - description: 'Returns the serial number of a particular time.', - abstract: 'Returns the serial number of a particular time', + description: 'Returns the decimal number for a particular time. If the cell format was General before the function was entered, the result is formatted as a date.', + abstract: 'Returns the decimal number for a particular time. If the cell format was General before the function was entered, the result is formatted as a date.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/en-us/excel/functions/time-function', }, ], 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.' }, + hour: { name: 'hour', detail: 'Required. 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: 'Required. 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: 'Required. 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: { @@ -271,7 +271,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/en-us/excel/functions/timevalue-function', }, ], functionParameter: { @@ -284,11 +284,11 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=en', }, ], functionParameter: { - value: { name: 'value', detail: 'The argument or reference to a cell to be converted to a date.' }, + value: { name: 'value', detail: 'The argument or reference to a cell to be converted to a date. If value is a number or a reference to a cell containing a numeric value, TO_DATE returns value converted to a date, interpreting value as number of days since December 30, 1899. Negative values are interpreted as days before this date, and fractional values indicate time of day past midnight. If value is not a number or a reference to a cell containing a numeric value, TO_DATE returns value without modification.' }, }, }, TODAY: { @@ -297,7 +297,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/en-us/excel/functions/today-function', }, ], functionParameter: { @@ -309,7 +309,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/en-us/excel/functions/weekday-function', }, ], functionParameter: { @@ -323,7 +323,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/en-us/excel/functions/weeknum-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/en-us/excel/functions/workday-function', }, ], functionParameter: { @@ -352,7 +352,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/en-us/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -368,7 +368,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/en-us/excel/functions/year-function', }, ], functionParameter: { @@ -381,7 +381,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/en-us/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/es-ES.ts b/packages/sheets-formula/src/locale/function-list/date/es-ES.ts index 827564bdf4..578054f84a 100644 --- a/packages/sheets-formula/src/locale/function-list/date/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/date/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/es-es/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/es-es/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: 'fecha_inicial', detail: 'Una fecha que representa la primera fecha, o fecha de inicio de un período determinado.' }, - endDate: { name: 'fecha_final', detail: 'Una fecha que representa la última fecha, o fecha de finalización del período.' }, - method: { name: 'método', detail: 'El tipo de información que desea que se devuelva.' }, + startDate: { name: 'fecha_inicial', detail: 'Es una fecha que representa la primera o la fecha inicial de un período determinado. Las fechas pueden escribirse como cadenas de texto entre comillas (por ejemplo, "30/01/2001") como números de serie (por ejemplo, 36921, que representa el 30 de junio de 2001, si usa el sistema de fechas de 1900), o bien como resultado de otras fórmulas o funciones (por ejemplo FECHANUMERO("30/01/2001")).' }, + endDate: { name: 'fecha_final', detail: 'Una fecha que representa la última del período o al fecha de finalización.' }, + unit: { name: 'Unidad', detail: 'El tipo de información que desea devolver, donde: Unidad***Devuelve " Y "El número de años completos en el período." M "El número de meses completos en el período". D "El número de días del período". MD "La diferencia entre los días de start_date y end_date. Los meses y años de las fechas se pasan por alto. Importante: No se recomienda usar el argumento "MD", ya que existen limitaciones conocidas con él. Consulta la sección de problemas conocidos que viene a continuación". YM "La diferencia entre los meses de start_date y end_date. Los días y años de las fechas se pasan por alto" YD "La diferencia entre los días de start_date y end_date. Los años de las fechas se pasan por alto.' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/es-es/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/es-es/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/es-es/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/es-es/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/es-es/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/es-es/excel/functions/eomonth-function', }, ], functionParameter: { @@ -131,17 +131,17 @@ const locale: typeof enUS = { }, }, EPOCHTODATE: { - description: 'Convierte una marca de tiempo de época Unix en segundos, milisegundos o microsegundos a una fecha y hora en Tiempo Universal Coordinado (UTC).', - abstract: 'Convierte una marca de tiempo de época Unix en segundos, milisegundos o microsegundos a una fecha y hora en Tiempo Universal Coordinado (UTC).', + description: 'Convierte una marca de tiempo UNIX en segundos, milisegundos o microsegundos en un valor de fecha y hora en tiempo universal coordinado (UTC).', + abstract: 'Convierte una marca de tiempo UNIX en segundos, milisegundos o microsegundos en un valor de fecha y hora en tiempo universal coordinado (UTC).', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=es', }, ], functionParameter: { - timestamp: { name: 'marca_tiempo', detail: 'Una marca de tiempo de época Unix, en segundos, milisegundos o microsegundos.' }, - unit: { name: 'unidad', detail: 'La unidad de tiempo en la que se expresa la marca de tiempo. 1 por defecto: \\n1 indica que la unidad de tiempo son segundos. \\n2 indica que la unidad de tiempo son milisegundos.\\n3 indica que la unidad de tiempo son microsegundos.' }, + timestamp: { name: 'marca_tiempo', detail: 'EPOCHTODATE(1655908429662;2)' }, + unit: { name: 'unidad', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/es-es/excel/functions/hour-function', }, ], functionParameter: { @@ -158,66 +158,66 @@ const locale: typeof enUS = { }, }, ISOWEEKNUM: { - description: 'Devuelve el número de la semana ISO del año para una fecha determinada', - abstract: 'Devuelve el número de la semana ISO del año para una fecha determinada', + description: 'Devuelve el número de semana ISO del año para una fecha determinada.', + abstract: 'Devuelve el número de semana ISO del año para una fecha determinada.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/es-es/excel/functions/isoweeknum-function', }, ], functionParameter: { - date: { name: 'fecha', detail: 'Fecha es el código de fecha y hora utilizado por Excel para el cálculo de fecha y hora.' }, + date: { name: 'fecha', detail: 'Obligatorio. Fecha es el código de fecha-hora que Excel usa para los cálculos de fecha y hora.' }, }, }, MINUTE: { - description: 'Convierte un número de serie a un minuto', - abstract: 'Convierte un número de serie a un minuto', + description: 'Devuelve los minutos de un valor de hora. Los minutos se expresan como números enteros comprendidos entre 0 y 59.', + abstract: 'Devuelve los minutos de un valor de hora. Los minutos se expresan como números enteros comprendidos entre 0 y 59.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/es-es/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: 'número_serie', detail: 'La fecha del día que intenta encontrar. Las fechas deben introducirse usando la función DATE, o como resultados de otras fórmulas o funciones. Por ejemplo, use DATE(2008,5,23) para el día 23 de mayo de 2008.' }, + serialNumber: { name: 'número_serie', detail: 'Obligatorio. Es la hora que contiene el valor de minutos que desea buscar. Las horas pueden escribirse como cadenas de texto entre comillas (por ejemplo, "6:45 p.m."), como números decimales (por ejemplo, 0,78125, que representa las 6:45 p.m.), o bien como resultado de otras fórmulas o funciones, por ejemplo HORANUMERO("6:45 p.m.").' }, }, }, MONTH: { - description: 'Devuelve el mes de una fecha representada por un número de serie. El mes se proporciona como un entero, que va del 1 (enero) al 12 (diciembre).', - abstract: 'Convierte un número de serie a un mes', + description: 'Devuelve el mes de una fecha representada por un número de serie. El mes se expresa como número entero comprendido entre 1 (enero) y 12 (diciembre).', + abstract: 'Devuelve el mes de una fecha representada por un número de serie. El mes se expresa como número entero comprendido entre 1 (enero) y 12 (diciembre).', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/es-es/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'número_serie', detail: 'La fecha del mes que intenta encontrar. Las fechas deben introducirse usando la función DATE, o como resultados de otras fórmulas o funciones. Por ejemplo, use DATE(2008,5,23) para el día 23 de mayo de 2008.' }, + serialNumber: { name: 'número_serie', detail: 'Obligatorio. Es la fecha del mes que intenta buscar. Inserte las fechas con la función FECHA o como resultado de otras fórmulas o funciones. Por ejemplo, use FECHA(2008,5,23) para el día 23 de mayo de 2008. Puede tener problemas al escribir las fechas como texto .' }, }, }, NETWORKDAYS: { - description: 'Devuelve el número de días laborables completos entre dos fechas', - abstract: 'Devuelve el número de días laborables completos entre dos fechas', + description: 'Devuelve el número de días laborables entre fecha_inicial y fecha_final. Los días laborables no incluyen los fines de semana ni otras fechas que se identifiquen en el argumento vacaciones. Use DIAS.LAB para calcular el incremento de los beneficios acumulados de los empleados basándose en el número de días trabajados durante un período específico.', + abstract: 'Devuelve el número de días laborables entre fecha_inicial y fecha_final. Los días laborables no incluyen los fines de semana ni otras fechas que se identifiquen en el argumento vacaciones. Use DIAS.LAB para calcular el incremento de los beneficios acumulados de los empleados basándose en el número de días trabajados durante un período específico.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/es-es/excel/functions/networkdays-function', }, ], functionParameter: { - startDate: { name: 'fecha_inicial', detail: 'Una fecha que representa la fecha inicial.' }, - endDate: { name: 'fecha_final', detail: 'Una fecha que representa la fecha final.' }, - holidays: { name: 'días_festivos', detail: 'Un rango opcional de una o más fechas para excluir del calendario laboral, como días festivos estatales y federales y días festivos flotantes.' }, + startDate: { name: 'fecha_inicial', detail: 'Obligatorio. Es una fecha que representa la fecha inicial.' }, + endDate: { name: 'fecha_final', detail: 'Obligatorio. Es una fecha que representa la fecha final.' }, + holidays: { name: 'días_festivos', detail: 'Opcional. Es un rango opcional de una o varias fechas que deben excluirse del calendario laboral, como los días festivos nacionales y locales. La lista puede ser un rango de celdas que contengan las fechas o una constante de matriz de los números de serie que representen las fechas.' }, }, }, NETWORKDAYS_INTL: { - description: 'Devuelve el número de días laborables completos entre dos fechas usando parámetros para indicar cuáles y cuántos días son días de fin de semana', - abstract: 'Devuelve el número de días laborables completos entre dos fechas usando parámetros para indicar cuáles y cuántos días son días de fin de semana', + description: 'Devuelve el número de todos los días laborables entre dos fechas mediante parámetros para indicar cuáles y cuántos son días de fin de semana. Los días de fin de semana y los días que se especifiquen como días festivos no se consideran días laborables.', + abstract: 'Devuelve el número de todos los días laborables entre dos fechas mediante parámetros para indicar cuáles y cuántos son días de fin de semana. Los días de fin de semana y los días que se especifiquen como días festivos no se consideran días laborables.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/es-es/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,28 +228,28 @@ const locale: typeof enUS = { }, }, NOW: { - description: 'Devuelve el número de serie de la fecha y hora actuales.', - abstract: 'Devuelve el número de serie de la fecha y hora actuales', + description: 'Devuelve el número de serie de la fecha y hora actuales. Si el formato de celda es General antes de especificar la función, Excel cambia el formato de celda para que coincida con el formato de fecha y hora de la configuración regional. Puede cambiar el formato de fecha y hora para la celda con los comandos en el grupo Número de la pestaña Inicio de la cinta.', + abstract: 'Devuelve el número de serie de la fecha y hora actuales. Si el formato de celda es General antes de especificar la función, Excel cambia el formato de celda para que coincida con el formato de fecha y hora de la configuración regional. Puede cambiar el formato de fecha y hora para la celda con los comandos en el grupo Número de la pestaña Inicio de la cinta.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/es-es/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: 'Convierte un número de serie a un segundo', - abstract: 'Convierte un número de serie a un segundo', + description: 'Devuelve los segundos de un valor de hora. El segundo se expresa como número entero comprendido entre 0 (cero) y 59.', + abstract: 'Devuelve los segundos de un valor de hora. El segundo se expresa como número entero comprendido entre 0 (cero) y 59.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/es-es/excel/functions/second-function', }, ], functionParameter: { - serialNumber: { name: 'número_serie', detail: 'La fecha del día que intenta encontrar. Las fechas deben introducirse usando la función DATE, o como resultados de otras fórmulas o funciones. Por ejemplo, use DATE(2008,5,23) para el día 23 de mayo de 2008.' }, + serialNumber: { name: 'número_serie', detail: 'Obligatorio. Es la hora que contiene los segundos que se desea buscar. Las horas pueden escribirse como cadenas de texto entre comillas (por ejemplo, "6:45 p.m."), como números decimales (por ejemplo, 0,78125, que representa las 6:45 p.m.), o bien como resultado de otras fórmulas o funciones, por ejemplo HORANUMERO("6:45 p.m.").' }, }, }, TIME: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/es-es/excel/functions/time-function', }, ], functionParameter: { @@ -268,29 +268,29 @@ const locale: typeof enUS = { }, }, TIMEVALUE: { - description: 'Convierte una hora en forma de texto a un número de serie.', - abstract: 'Convierte una hora en forma de texto a un número de serie', + description: 'Devuelve el número decimal de la hora representada por una cadena de texto. El número decimal es un valor comprendido entre 0 (cero) y 0,99988426 que representa las horas entre 0:00:00 (12:00:00 a.m.) y 23:59:59 (11:59:59 p.m.).', + abstract: 'Devuelve el número decimal de la hora representada por una cadena de texto. El número decimal es un valor comprendido entre 0 (cero) y 0,99988426 que representa las horas entre 0:00:00 (12:00:00 a.m.) y 23:59:59 (11:59:59 p.m.).', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/es-es/excel/functions/timevalue-function', }, ], functionParameter: { - timeText: { name: 'texto_hora', detail: 'Una cadena de texto que representa una hora en cualquiera de los formatos de hora de Microsoft Excel; por ejemplo, "6:45 PM" y "18:45" cadenas de texto entre comillas que representan hora.' }, + timeText: { name: 'texto_hora', detail: 'Obligatorio. Es una cadena de texto que representa una hora en uno de los formatos de hora de Microsoft Excel, por ejemplo, las cadenas de texto entre comillas "6:45 p.m." y "18:45" representan la hora.' }, }, }, TO_DATE: { - description: 'Convierte un número proporcionado a una fecha.', - abstract: 'Convierte un número proporcionado a una fecha.', + description: 'Convierte un número en una fecha.', + abstract: 'Convierte un número en una fecha.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=es', }, ], functionParameter: { - value: { name: 'valor', detail: 'El argumento o referencia a una celda que se convertirá a una fecha.' }, + value: { name: 'valor', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/es-es/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/es-es/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/es-es/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/es-es/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/es-es/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/es-es/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/es-es/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/date/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/date/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/date/fr-FR.ts index 60a22638e2..17fe8f0903 100644 --- a/packages/sheets-formula/src/locale/function-list/date/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/date/fr-FR.ts @@ -14,8 +14,384 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + DATE: { + description: 'La fonction DATE renvoie le numéro de série séquentiel qui représente une date particulière.', + abstract: 'La fonction DATE renvoie le numéro de série séquentiel qui représente une date particulière.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'La valeur de l’argument year peut comporter de un à quatre chiffres. Excel interprète year selon le système de dates utilisé par votre ordinateur. Par défaut, Univer utilise le système de dates 1900, dont la première date est le 1er janvier 1900.' }, + month: { name: 'month', detail: 'Un entier positif ou négatif représentant le mois de l’année de 1 à 12 (janvier à décembre).' }, + day: { name: 'day', detail: 'Un entier positif ou négatif représentant le jour du mois de 1 à 31.' }, + }, + }, + DATEDIF: { + description: 'Calcule le nombre de jours, de mois ou d’années qui séparent deux dates.', + abstract: 'Calcule le nombre de jours, de mois ou d’années qui séparent deux dates.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Date qui représente la première ou la date de début d’une période donnée. Les dates doivent être entrées sous forme de chaînes de texte placées entre guillemets (par exemple, « 30/01/2001 »), comme numéros de série (par exemple, 36921, qui représente le 30 janvier 2001, si vous utilisez le calendrier depuis 1900) ou sous forme de résultat d’autres formules ou fonctions (par exemple, DATEVAL("30/01/2001")).' }, + endDate: { name: 'end_date', detail: 'Date qui représente la dernière date ou la date de fin de la période.' }, + unit: { name: 'unité', detail: 'Type d’informations que vous souhaitez renvoyer, où : Unit****Returns " Y "Le nombre d’années complètes dans la période. » M « Nombre de mois complets dans la période . » D « Nombre de jours de la période ». MD : différence entre les jours en start_date et en end_date. Les mois et les années des dates sont ignorés. Important: Nous vous déconseillons d’utiliser l’argument « MD », car il comporte des limitations connues. Consultez la section problèmes connus ci-dessous. » YM "Différence entre les mois en start_date et end_date. Les jours et les années des dates sont ignorés" YD "Différence entre les jours de start_date et end_date. Les années des dates sont ignorées.' }, + }, + }, + DATEVALUE: { + description: 'La fonction DATEVAL convertit une date stockée sous forme de texte en numéro de série reconnu par Excel comme une date. Par exemple, la formule =DATEVAL("1/1/2008") renvoie 39448, le numéro de série de la date 1/1/2008. Souvenez-vous toutefois que le paramètre de date système de votre ordinateur peut faire en sorte que les résultats d’une fonction DATEVAL diffèrent de cet exemple.', + abstract: 'La fonction DATEVAL convertit une date stockée sous forme de texte en numéro de série reconnu par Excel comme une date. Par exemple, la formule =DATEVAL("1/1/2008") renvoie 39448, le numéro de série de la date 1/1/2008. Souvenez-vous toutefois que le paramètre de date système de votre ordinateur peut faire en sorte que les résultats d’une fonction DATEVAL diffèrent de cet exemple.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Obligatoire. Texte qui correspond à une date dans un format de date Excel, ou une référence à une cellule contenant du texte qui correspond à une date dans un format de date Excel. Par exemple, « 1/30/2008 » et « 30-Jan-2008 » sont des chaînes de texte entre guillemets qui correspondent à des dates. À l’aide du système de date par défaut dans Microsoft Excel pour Windows, l’argument date_text doit représenter une date comprise entre le 1er janvier 1900 et le 31 décembre 9999. La fonction DATEVAL renvoie la valeur d’erreur #VALEUR! valeur d’erreur si la valeur de l’argument date_text est en dehors de cette plage. Si la partie année de l’argument date_text est omise, la fonction DATEVALUE utilise l’année en cours à partir de l’horloge intégrée de votre ordinateur. Les informations de temps dans l’argument date_text sont ignorées.' }, + }, + }, + DAY: { + description: 'Renvoie le jour du mois correspondant à l’argument numéro_de_série. Ce jour est représenté sous la forme d’un nombre entier compris entre 1 et 31.', + abstract: 'Renvoie le jour du mois correspondant à l’argument numéro_de_série. Ce jour est représenté sous la forme d’un nombre entier compris entre 1 et 31.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de date du jour que vous voulez rechercher. Les dates doivent être entrées à l’aide de la fonction DATE ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008,5,23) pour le 23e jour du mois de mai 2008. Certains problèmes peuvent survenir si les dates sont entrées sous forme de texte .' }, + }, + }, + DAYS: { + description: 'Renvoie le nombre de jours entre deux dates.', + abstract: 'Renvoie le nombre de jours entre deux dates.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Obligatoire. Date_début et Date_fin sont deux dates dont vous voulez connaître le nombre de jours qui les séparent.' }, + startDate: { name: 'start_date', detail: 'Obligatoire. Date_début et Date_fin sont deux dates dont vous voulez connaître le nombre de jours qui les séparent.' }, + }, + }, + DAYS360: { + description: 'La fonction JOURS360 renvoie le nombre de jours compris entre deux dates sur la base d’une année de 360 jours (12 mois de 30 jours), qui est utilisée dans certains calculs comptables. Utilisez cette fonction pour le calcul des paiements si votre système comptable est basé sur 12 mois de 30 jours.', + abstract: 'La fonction JOURS360 renvoie le nombre de jours compris entre deux dates sur la base d’une année de 360 jours (12 mois de 30 jours), qui est utilisée dans certains calculs comptables. Utilisez cette fonction pour le calcul des paiements si votre système comptable est basé sur 12 mois de 30 jours.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'start_date et end_date sont les deux dates entre lesquelles vous souhaitez connaître le nombre de jours.' }, + endDate: { name: 'end_date', detail: 'start_date et end_date sont les deux dates entre lesquelles vous souhaitez connaître le nombre de jours.' }, + method: { name: 'method', detail: 'Valeur logique indiquant si la méthode américaine ou européenne doit être utilisée pour le calcul.' }, + }, + }, + EDATE: { + description: 'Renvoie le numéro de série qui représente la date correspondant à une date spécifiée (l’argument date_départ), corrigée en plus ou en moins du nombre de mois indiqué. Utilisez la fonction MOIS.DECALER pour calculer des dates d’échéance ou de coupon tombant le même jour du mois que la date d’émission.', + abstract: 'Renvoie le numéro de série qui représente la date correspondant à une date spécifiée (l’argument date_départ), corrigée en plus ou en moins du nombre de mois indiqué. Utilisez la fonction MOIS.DECALER pour calculer des dates d’échéance ou de coupon tombant le même jour du mois que la date d’émission.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Il s’agit d’une date qui représente la date de début. Les dates doivent être entrées en utilisant la fonction DATE, ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008,5,23) pour le 23e jour du mois de mai 2008. Certains problèmes peuvent survenir si les dates sont entrées sous forme de texte .' }, + months: { name: 'months', detail: 'Obligatoire. Représente le nombre de mois avant ou après date_départ. Une valeur de mois positive donne une date future, tandis qu’une valeur négative donne une date passée.' }, + }, + }, + EOMONTH: { + description: 'Renvoie le numéro de série du dernier jour du mois précédant ou suivant date_départ du nombre de mois indiqué. Utilisez FIN.MOIS pour calculer des dates d’échéance ou des dates d’échéance tombant le dernier jour du mois.', + abstract: 'Renvoie le numéro de série du dernier jour du mois précédant ou suivant date_départ du nombre de mois indiqué. Utilisez FIN.MOIS pour calculer des dates d’échéance ou des dates d’échéance tombant le dernier jour du mois.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Il s’agit d’une date qui représente la date de début. Les dates doivent être entrées en utilisant la fonction DATE, ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008,5,23) pour le 23e jour du mois de mai 2008. Certains problèmes peuvent survenir si les dates sont entrées sous forme de texte .' }, + months: { name: 'months', detail: 'Obligatoire. Représente le nombre de mois avant ou après date_départ. Une valeur de mois positive donne une date future, tandis qu’une valeur négative donne une date passée. Remarque Si mois n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + EPOCHTODATE: { + description: 'Convertit un code temporel d\'époque Unix en secondes, millisecondes ou microsecondes en date et heure UTC (temps universel coordonné).', + abstract: 'Convertit un code temporel d\'époque Unix en secondes, millisecondes ou microsecondes en date et heure UTC (temps universel coordonné).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=fr', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'code temporel d\'epoch Unix en secondes, millisecondes ou microsecondes.' }, + unit: { name: 'unit', detail: '[FACULTATIF – 1 par défaut] : unité de temps dans laquelle le code temporel est exprimé.' }, + }, + }, + HOUR: { + description: 'Renvoie l’heure correspondant à la valeur de l’heure. L’heure est un nombre entier compris entre 0 (12:00 AM) et 23 (11:00 PM).', + abstract: 'Renvoie l’heure correspondant à la valeur de l’heure. L’heure est un nombre entier compris entre 0 (12:00 AM) et 23 (11:00 PM).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de temps contenant l’heure que vous voulez trouver. Les codes de temps peuvent être entrés sous la forme de chaînes de texte entre guillemets (par exemple, "18:45"), de caractères décimaux (par exemple, 0,78125, qui représente 18:45), ou de résultats d’autres formules ou fonctions (par exemple, TEMPSVAL("18:45")).' }, + }, + }, + ISOWEEKNUM: { + description: 'Renvoie le numéro de la semaine ISO de l’année pour une date donnée.', + abstract: 'Renvoie le numéro de la semaine ISO de l’année pour une date donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Obligatoire. Date est le code de date et d’heure utilisé par Excel pour le calcul de date et d’heure.' }, + }, + }, + MINUTE: { + description: 'Renvoie les minutes correspondant à une valeur d’heure. La minute est donnée sous la forme d’un nombre entier compris entre 0 et 59.', + abstract: 'Renvoie les minutes correspondant à une valeur d’heure. La minute est donnée sous la forme d’un nombre entier compris entre 0 et 59.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de temps contenant la minute que vous voulez trouver. Les codes de temps peuvent être entrés sous la forme de chaînes de texte entre guillemets (par exemple, "18:45"), de caractères décimaux (par exemple, 0,78125, qui représente 18:45), ou de résultats d’autres formules ou fonctions (par exemple, TEMPSVAL("18:45")).' }, + }, + }, + MONTH: { + description: 'Renvoie le mois d’une date représentée par un numéro de série. Le mois est donné sous la forme d’un nombre entier compris entre 1 (janvier) et 12 (décembre).', + abstract: 'Renvoie le mois d’une date représentée par un numéro de série. Le mois est donné sous la forme d’un nombre entier compris entre 1 (janvier) et 12 (décembre).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de date du mois que vous recherchez. Les dates doivent être entrées à l’aide de la fonction DATE ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008,5,23) pour le 23e jour du mois de mai 2008. Certains problèmes peuvent survenir si les dates sont entrées sous forme de texte .' }, + }, + }, + NETWORKDAYS: { + description: 'Renvoie le nombre de jours ouvrés entiers compris entre date_début et date_fin. Les jours ouvrés excluent les fins de semaine et toutes les dates identifiées comme étant des jours fériés. Utilisez NB.JOURS.OUVRES pour calculer les charges salariales au prorata du nombre de jours ouvrés pendant une période donnée.', + abstract: 'Renvoie le nombre de jours ouvrés entiers compris entre date_début et date_fin. Les jours ouvrés excluent les fins de semaine et toutes les dates identifiées comme étant des jours fériés. Utilisez NB.JOURS.OUVRES pour calculer les charges salariales au prorata du nombre de jours ouvrés pendant une période donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Date qui représente la date de début.' }, + endDate: { name: 'end_date', detail: 'Obligatoire. Date qui représente la date de fin.' }, + holidays: { name: 'holidays', detail: 'Optionnel. Représente une plage facultative d’une ou de plusieurs dates à exclure du calendrier des jours ouvrés, comme les jours fériés ou d’autres jours contractuellement chômés. La liste peut être soit une plage de cellules contenant les dates, soit une constante de matrice des numéros de série qui représentent les dates.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Renvoie le nombre de jours ouvrés entiers compris entre deux dates à l’aide de paramètres identifiant les jours du week-end et leur nombre. Les jours du week-end et ceux qui sont désignés comme des jours fériés ne sont pas considérés comme des jours ouvrés.', + abstract: 'Renvoie le nombre de jours ouvrés entiers compris entre deux dates à l’aide de paramètres identifiant les jours du week-end et leur nombre. Les jours du week-end et ceux qui sont désignés comme des jours fériés ne sont pas considérés comme des jours ouvrés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Date représentant la date de début.' }, + endDate: { name: 'end_date', detail: 'Date représentant la date de fin.' }, + weekend: { name: 'weekend', detail: 'Nombre ou chaîne de caractères indiquant quand les week-ends surviennent.' }, + holidays: { name: 'holidays', detail: 'Plage facultative d’une ou plusieurs dates à exclure du calendrier de travail, par exemple les jours fériés nationaux, régionaux ou mobiles.' }, + }, + }, + NOW: { + description: 'Donne le numéro de série de la date et de l’heure en cours. Si le format de cellule était Général avant l’application de la fonction, Excel modifie le format de cellule pour qu’il corresponde au format de date et heure des paramètres régionaux. Vous pouvez modifier le format de date et heure d’une cellule à l’aide des commandes du groupe Nombre de l’onglet Accueil du ruban.', + abstract: 'Donne le numéro de série de la date et de l’heure en cours. Si le format de cellule était Général avant l’application de la fonction, Excel modifie le format de cellule pour qu’il corresponde au format de date et heure des paramètres régionaux. Vous pouvez modifier le format de date et heure d’une cellule à l’aide des commandes du groupe Nombre de l’onglet Accueil du ruban.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Renvoie les secondes d’une valeur de temps. Les secondes sont représentées par un nombre entier compris entre 0 (zéro) et 59.', + abstract: 'Renvoie les secondes d’une valeur de temps. Les secondes sont représentées par un nombre entier compris entre 0 (zéro) et 59.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de temps contenant l’heure que vous voulez trouver. Les codes de temps peuvent être entrés sous la forme de chaînes de texte entre guillemets (par exemple, "18:45"), de caractères décimaux (par exemple, 0,78125, qui représente 18:45) ou de résultats d’autres formules ou fonctions (par exemple, TEMPSVAL("18:45")).' }, + }, + }, + TIME: { + description: 'Renvoie le nombre décimal d’une heure précise. Si le format de cellule était Standard avant que la fonction ne soit entrée, le résultat est mis en forme en tant que date.', + abstract: 'Renvoie le nombre décimal d’une heure précise. Si le format de cellule était Standard avant que la fonction ne soit entrée, le résultat est mis en forme en tant que date.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Obligatoire. Représente un nombre compris entre 0 (zéro) et 32767 indiquant l’heure. Toute valeur supérieure à 23 sera divisée par 24 et le reste sera traité comme la valeur horaire. Par exemple, TEMPS(27;0;0) = TEMPS(3;0;0) = 0,125 ou 03:00 (03:00 AM).' }, + minute: { name: 'minute', detail: 'Obligatoire. Représente un nombre compris entre 0 et 32767 indiquant les minutes. Toute valeur supérieure à 59 sera convertie en heures et en minutes. Par exemple, TEMPS(0;750;0) = TEMPS (12;30;0) = 0,520833 ou 12:30 (12:30 PM).' }, + second: { name: 'second', detail: 'Obligatoire. Représente un nombre compris entre 0 et 32767 indiquant les secondes. Toute valeur supérieure à 59 sera convertie en heures, minutes et secondes. Par exemple, TEMPS(0;0;2000) = TEMPS(0;33;22) = 0,023148 ou 00:33:20 (12:33:20 AM)' }, + }, + }, + TIMEVALUE: { + description: 'Renvoie le nombre décimal de l’heure représentée par une chaîne de texte. Ce nombre décimal est une valeur comprise entre 0 (zéro) et 0,99988426, qui représente l’heure, de 0:00:00 (12:00:00 AM) à 23:59:59 (11:59:59 PM).', + abstract: 'Renvoie le nombre décimal de l’heure représentée par une chaîne de texte. Ce nombre décimal est une valeur comprise entre 0 (zéro) et 0,99988426, qui représente l’heure, de 0:00:00 (12:00:00 AM) à 23:59:59 (11:59:59 PM).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Obligatoire. Représente une chaîne de texte qui indique une heure dans l’un des formats d’heure de Microsoft Excel, telle que les chaînes de texte "6:45 PM" et "18:45" entre guillemets.' }, + }, + }, + TO_DATE: { + description: 'Convertit un nombre en date.', + abstract: 'Convertit un nombre en date.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=fr', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'TO_DATE(A2)' }, + }, + }, + TODAY: { + description: 'La fonction AUJOURDHUI retourne le numéro de série de la date actuelle. Le numéro de série est le code de date et d’heure utilisé par Microsoft Excel pour les calculs de date et d’heure. Si le format de la cellule était Standard avant que la fonction ne soit entrée, Excel modifie le format de la cellule en Date . Pour afficher le numéro de série, changez le format de la cellule en Standard ou Nombre .', + abstract: 'La fonction AUJOURDHUI retourne le numéro de série de la date actuelle. Le numéro de série est le code de date et d’heure utilisé par Microsoft Excel pour les calculs de date et d’heure. Si le format de la cellule était Standard avant que la fonction ne soit entrée, Excel modifie le format de la cellule en Date . Pour afficher le numéro de série, changez le format de la cellule en Standard ou Nombre .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Renvoie le jour de la semaine correspondant à une date. Par défaut, le jour est donné sous forme d’un nombre entier compris entre 0 et 7.', + abstract: 'Renvoie le jour de la semaine correspondant à une date. Par défaut, le jour est donné sous forme d’un nombre entier compris entre 0 et 7.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente un numéro séquentiel représentant la date du jour que vous cherchez. Les dates doivent être entrées en utilisant la fonction DATE, ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008;5;23) pour le 23e jour du mois de mai 2008. Des problèmes peuvent survenir si les dates sont entrées sous forme de texte.' }, + returnType: { name: 'return_type', detail: 'Optionnel. Représente le chiffre qui détermine le type d’information que la fonction renvoie.' }, + }, + }, + WEEKNUM: { + description: 'Renvoie le numéro de semaine d’une date spécifique. Par exemple, la semaine contenant le 1er janvier est la première semaine de l’année ; elle est numérotée semaine 1.', + abstract: 'Renvoie le numéro de semaine d’une date spécifique. Par exemple, la semaine contenant le 1er janvier est la première semaine de l’année ; elle est numérotée semaine 1.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente une date de la semaine. Les dates doivent être entrées en utilisant la fonction DATE, ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008;5;23) pour le 23e jour du mois de mai 2008. Des problèmes peuvent survenir si les dates sont entrées sous forme de texte.' }, + returnType: { name: 'return_type', detail: 'Optionnel. Détermine quel jour est considéré comme le début de la semaine. La valeur par défaut est 1.' }, + }, + }, + WORKDAY: { + description: 'Renvoie un nombre qui représente une date correspondant à une date (date de début) plus ou moins le nombre de jours ouvrés spécifié. Les jours ouvrés excluent les fins de semaine et toutes les dates identifiées comme étant des jours fériés. Utilisez la fonction SERIE.JOUR.OUVRE pour exclure les fins de semaine et les jours fériés lorsque vous calculez des échéances de factures, des heures de livraisons attendues ou le nombre de jours de travail effectués.', + abstract: 'Renvoie un nombre qui représente une date correspondant à une date (date de début) plus ou moins le nombre de jours ouvrés spécifié. Les jours ouvrés excluent les fins de semaine et toutes les dates identifiées comme étant des jours fériés. Utilisez la fonction SERIE.JOUR.OUVRE pour exclure les fins de semaine et les jours fériés lorsque vous calculez des échéances de factures, des heures de livraisons attendues ou le nombre de jours de travail effectués.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Date qui représente la date de début.' }, + days: { name: 'days', detail: 'Obligatoire. Nombre de jours non hebdomadaires et non-hebdomadaires avant ou après start_date. Une valeur positive pour les jours donne une date future ; une valeur négative génère une date passée.' }, + holidays: { name: 'holidays', detail: 'Optionnel. Représente une liste facultative d\'une ou plusieurs dates à exclure du calendrier des jours de travail, comme les jours fériés ou d\'autres jours contractuellement chômés. Cette liste peut être soit une plage de cellules contenant les dates, soit une constante de matrice des numéros de série qui représentent les dates.' }, + }, + }, + WORKDAY_INTL: { + description: 'Cette fonction retourne le numéro de série de la date avant ou après un nombre spécifié de jours ouvrés avec des paramètres de week-end personnalisés. Les paramètres week-end facultatifs peuvent indiquer les jours de week-end et le nombre de jours. Notez que les jours de week-end et tous les jours spécifiés comme jours fériés ne sont pas considérés comme des jours ouvrés.', + abstract: 'Cette fonction retourne le numéro de série de la date avant ou après un nombre spécifié de jours ouvrés avec des paramètres de week-end personnalisés. Les paramètres week-end facultatifs peuvent indiquer les jours de week-end et le nombre de jours. Notez que les jours de week-end et tous les jours spécifiés comme jours fériés ne sont pas considérés comme des jours ouvrés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Date de départ, tronquée à sa partie entière.' }, + days: { name: 'days', detail: 'Obligatoire. Nombre de jours ouvrés avant ou après la date_départ. Une valeur positive donne une date future ; une valeur négative génère une date passée ; une valeur zéro produit le start_date déjà spécifié . L’offset de jour est tronqué en entier.' }, + weekend: { name: 'weekend', detail: 'Optionnel. S’il est utilisé, cela indique les jours de la semaine qui sont des jours de week-end et qui ne sont pas considérés comme des jours ouvrés. L’argument week-end est un nombre ou une chaîne de week-end qui spécifie quand les week-ends se produisent. Les valeurs du nombre de week-ends indiquent les jours du week-end comme indiqué ci-dessous.' }, + holidays: { name: 'holidays', detail: 'Il s’agit d’un argument facultatif à la fin de la syntaxe. Il spécifie un ensemble facultatif d’une ou plusieurs dates qui doivent être exclues du calendrier des jours ouvrés. Les jours fériés doivent être une plage de cellules qui contiennent les dates ou une constante de tableau des valeurs de série qui représentent ces dates. Le tri des dates ou des valeurs sérielles de l’argument jours_fériés peut être arbitraire.' }, + }, + }, + YEAR: { + description: 'Renvoie l’année correspondant à une date. L’année est renvoyée sous la forme d’un nombre entier dans la plage 1900-9999.', + abstract: 'Renvoie l’année correspondant à une date. L’année est renvoyée sous la forme d’un nombre entier dans la plage 1900-9999.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obligatoire. Représente le code de date de l’année que vous voulez trouver. Les dates doivent être entrées en utilisant la fonction DATE ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2025,5,23) pour le 23e jour de mai 2025. Des problèmes peuvent survenir si les dates sont entrées sous forme de texte.' }, + }, + }, + YEARFRAC: { + description: 'FRACTION.ANNEE calcule la fraction de l’année représentée par le nombre de jours entre deux dates (la date_ début et la date_ fin ). Par exemple, vous pouvez utiliser la fonction de feuille de calcul FRACTION.ANNEE pour déterminer la proportion des profits ou des engagements d’une année entière correspondant à un terme donné.', + abstract: 'FRACTION.ANNEE calcule la fraction de l’année représentée par le nombre de jours entre deux dates (la date_ début et la date_ fin ). Par exemple, vous pouvez utiliser la fonction de feuille de calcul FRACTION.ANNEE pour déterminer la proportion des profits ou des engagements d’une année entière correspondant à un terme donné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obligatoire. Date qui représente la date de début.' }, + endDate: { name: 'end_date', detail: 'Obligatoire. Date qui représente la date de fin.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/id-ID.ts b/packages/sheets-formula/src/locale/function-list/date/id-ID.ts new file mode 100644 index 0000000000..55ce6d2d0f --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/id-ID.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'Fungsi DATE mengembalikan nomor seri berurutan yang mewakili tanggal tertentu.', + abstract: 'Fungsi DATE mengembalikan nomor seri berurutan yang mewakili tanggal tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'Nilai argumen tahun dapat berisi satu hingga empat digit. Excel menafsirkannya sesuai sistem tanggal komputer; secara default Univer menggunakan sistem tanggal 1900.' }, + month: { name: 'month', detail: 'Bilangan bulat positif atau negatif yang mewakili bulan dalam tahun dari 1 hingga 12, Januari hingga Desember.' }, + day: { name: 'day', detail: 'Bilangan bulat positif atau negatif yang mewakili hari dalam bulan dari 1 hingga 31.' }, + }, + }, + DATEDIF: { + description: 'Menghitung jumlah hari, bulan, atau tahun di antara dua tanggal.', + abstract: 'Menghitung jumlah hari, bulan, atau tahun di antara dua tanggal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Tanggal yang menunjukkan tanggal pertama, atau tanggal mulai periode tertentu. Tanggal mungkin dimasukkan sebagai string teks di dalam tanda kutip (misalnya, "2001/1/30"), sebagai nomor seri (misalnya, 36921, yang menyatakan 30 Januari 2001, jika Anda menggunakan sistem tanggal 1900), atau seperti hasil dari rumus atau fungsi lain (misalnya, DATEVALUE("2001/1/30")).' }, + endDate: { name: 'end_date', detail: 'Tanggal yang menunjukkan tanggal terakhir, atau tanggal berakhirnya periode.' }, + unit: { name: 'Satuan', detail: 'Tipe informasi yang ingin Anda kembalikan, di mana: Unit****Mengembalikan " Y "Jumlah tahun yang lengkap dalam periode." M "Jumlah bulan lengkap dalam periode." D "Jumlah hari dalam periode." MD "Perbedaan antara hari dalam start_date dan end_date. Bulan dan tahun dari tanggal diabaikan. Penting: Kami tidak menyarankan menggunakan argumen "MD", karena ada batasan yang diketahui dengan argumen tersebut. Lihat bagian masalah yang diketahui di bawah ini." YM "Perbedaan antara bulan dalam start_date dan end_date. Hari dan tahun dari tanggal diabaikan" YD "Perbedaan antara hari-hari start_date dan end_date. Tahun dari tanggal diabaikan.' }, + }, + }, + DATEVALUE: { + description: 'Fungsi DATEVALUE mengonversi tanggal yang disimpan sebagai teks ke nomor seri yang dikenali Excel sebagai tanggal. Misalnya, rumus =DATEVALUE("1/1/2008") mengembalikan 39448, nomor seri tanggal 1/1/2008. Akan tetapi, ingatlah bahwa pengaturan tanggal sistem komputer Anda mungkin menyebabkan hasil fungsi DATEVALUE berbeda dari contoh ini.', + abstract: 'Fungsi DATEVALUE mengonversi tanggal yang disimpan sebagai teks ke nomor seri yang dikenali Excel sebagai tanggal. Misalnya, rumus =DATEVALUE("1/1/2008") mengembalikan 39448, nomor seri tanggal 1/1/2008. Akan tetapi, ingatlah bahwa pengaturan tanggal sistem komputer Anda mungkin menyebabkan hasil fungsi DATEVALUE berbeda dari contoh ini.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Diperlukan. Teks yang menyatakan tanggal dalam format tanggal Excel, atau referensi ke sel berisi teks yang menyatakan tanggal dalam format tanggal Excel. Misalnya, "1/30/2008" atau "30-Jan-2008" adalah string teks dalam tanda kutip yang menyatakan tanggal. Menggunakan sistem tanggal default di Microsoft Excel untuk Windows, argumen date_text harus menunjukkan tanggal antara 1 Januari 1900 dan 31 Desember 9999. Fungsi DATEVALUE mengembalikan nilai kesalahan #VALUE!. jika nilai argumen date_text berada di luar rentang ini. Jika bagian tahun dari argumen date_text dihilangkan, fungsi DATEVALUE menggunakan tahun saat ini dari jam bawaan komputer Anda. Informasi waktu dalam argumen date_text diabaikan.' }, + }, + }, + DAY: { + description: 'Mengembalikan tanggal, yang dinyatakan dengan nomor seri. Hari diberikan sebagai bilangan bulat dengan rentang dari 1 sampai 31.', + abstract: 'Mengembalikan tanggal, yang dinyatakan dengan nomor seri. Hari diberikan sebagai bilangan bulat dengan rentang dari 1 sampai 31.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Tanggal yang Anda coba temukan. Tanggal harus dimasukkan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Misalnya, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah dapat terjadi jika tanggal dimasukkan sebagai teks .' }, + }, + }, + DAYS: { + description: 'Mengembalikan jumlah hari antara dua tanggal.', + abstract: 'Mengembalikan jumlah hari antara dua tanggal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Diperlukan. Start_date dan End_date adalah dua tanggal yang ingin Anda ketahui jumlah hari di antara keduanya.' }, + startDate: { name: 'start_date', detail: 'Diperlukan. Start_date dan End_date adalah dua tanggal yang ingin Anda ketahui jumlah hari di antara keduanya.' }, + }, + }, + DAYS360: { + description: 'Fungsi DAYS360 mengembalikan jumlah hari antara dua tanggal berdasarkan tahun dengan 360 hari per tahun (dua belas bulan dengan 30 hari per bulan), yang digunakan dalam beberapa perhitungan akuntansi. Gunakan fungsi ini untuk membantu menghitung pembayaran jika sistem akuntansi Anda berdasarkan pada dua belas bulan dengan 30 hari per bulan.', + abstract: 'Fungsi DAYS360 mengembalikan jumlah hari antara dua tanggal berdasarkan tahun dengan 360 hari per tahun (dua belas bulan dengan 30 hari per bulan), yang digunakan dalam beberapa perhitungan akuntansi. Gunakan fungsi ini untuk membantu menghitung pembayaran jika sistem akuntansi Anda berdasarkan pada dua belas bulan dengan 30 hari per bulan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Dua tanggal yang ingin diketahui jumlah hari di antaranya.' }, + endDate: { name: 'end_date', detail: 'Dua tanggal yang ingin diketahui jumlah hari di antaranya.' }, + method: { name: 'method', detail: 'Nilai logika yang menentukan apakah menggunakan metode AS atau Eropa dalam perhitungan.' }, + }, + }, + EDATE: { + description: 'Mengembalikan nomor seri yang mewakili tanggal sejumlah bulan tertentu sebelum atau sesudah tanggal yang ditentukan (start_date). Gunakan EDATE untuk menghitung tanggal jatuh tempo yang berada pada hari yang sama dalam bulan dengan tanggal penerbitan.', + abstract: 'Mengembalikan nomor seri tanggal sejumlah bulan tertentu sebelum atau sesudah tanggal mulai.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Tanggal yang mewakili tanggal mulai. Tanggal sebaiknya dimasukkan dengan fungsi DATE atau sebagai hasil rumus atau fungsi lain.' }, + months: { name: 'months', detail: 'Jumlah bulan sebelum atau sesudah start_date. Nilai positif menghasilkan tanggal mendatang; nilai negatif menghasilkan tanggal lampau.' }, + }, + }, + EOMONTH: { + description: 'Mengembalikan nomor seri untuk hari terakhir bulan yang merupakan nomor indikasi dari bulan sebelum atau setelah start_date. Gunakan EOMONTH untuk menghitung tanggal jatuh tempo yang jatuh pada hari terakhir bulan tersebut.', + abstract: 'Mengembalikan nomor seri untuk hari terakhir bulan yang merupakan nomor indikasi dari bulan sebelum atau setelah start_date. Gunakan EOMONTH untuk menghitung tanggal jatuh tempo yang jatuh pada hari terakhir bulan tersebut.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Diperlukan. Tanggal yang mewakili tanggal mulai. Tanggal harus dimasukkan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Misalnya, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah dapat terjadi jika tanggal dimasukkan sebagai teks .' }, + months: { name: 'months', detail: 'Diperlukan. Jumlah bulan sebelum atau setelah start_date. Nilai positif untuk bulan menghasilkan tanggal masa mendatang; nilai negatif menghasilkan tanggal lampau. Catatan Jika bulan bukan bilangan bulat, maka dipotong.' }, + }, + }, + EPOCHTODATE: { + description: 'Mengonversi cap waktu epoch Unix dalam detik, milidetik, atau mikrodetik menjadi tanggal dan waktu dalam Waktu Universal Terkoordinasi (UTC).', + abstract: 'Mengonversi cap waktu epoch Unix dalam detik, milidetik, atau mikrodetik menjadi tanggal dan waktu dalam Waktu Universal Terkoordinasi (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=id', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'Cap waktu epoch Unix dalam detik, milidetik, atau mikrodetik.' }, + unit: { name: 'unit', detail: '[OPSIONAL — 1 secara default]: satuan waktu yang digunakan untuk menyatakan cap waktu.' }, + }, + }, + HOUR: { + description: 'Mengembalikan jam dari satu nilai waktu. Jam diberikan sebagai bilangan bulat, mulai dari 0 (12:00 A.M.) hingga 23 (11:00 P.M.).', + abstract: 'Mengembalikan jam dari satu nilai waktu. Jam diberikan sebagai bilangan bulat, mulai dari 0 (12:00 A.M.) hingga 23 (11:00 P.M.).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Waktu yang berisi jam yang ingin Anda temukan. Waktu bisa dimasukkan sebagai string teks dengan tanda kutip (contoh, "6:45 PM"), sebagai angka desimal (contoh, 0,78125, yang menyatakan 6:45 PM), atau sebagai hasil dari rumus atau fungsi lain (contoh, TIMEVALUE("6:45 PM")).' }, + }, + }, + ISOWEEKNUM: { + description: 'Mengembalikan jumlah angka minggu ISO dalam tahun untuk tanggal yang ditentukan.', + abstract: 'Mengembalikan jumlah angka minggu ISO dalam tahun untuk tanggal yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Diperlukan. Date adalah kode tanggal-waktu yang digunakan oleh Excel untuk perhitungan tanggal dan waktu.' }, + }, + }, + MINUTE: { + description: 'Mengembalikan menit dari nilai waktu. Menit ditentukan sebagai bilangan bulat, rentangnya antara 0 sampai 59.', + abstract: 'Mengembalikan menit dari nilai waktu. Menit ditentukan sebagai bilangan bulat, rentangnya antara 0 sampai 59.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Waktu yang memuat menit yang ingin Anda temukan. Waktu bisa dimasukkan sebagai string teks dengan tanda kutip (contoh, "6:45 PM"), sebagai angka desimal (contoh, 0,78125, yang menyatakan 6:45 PM), atau sebagai hasil dari rumus atau fungsi lain (contoh, TIMEVALUE("6:45 PM")).' }, + }, + }, + MONTH: { + description: 'Mengembalikan bulan dari sebuah tanggal yang dinyatakan oleh nomor seri. Bulan ditentukan sebagai bilangan bulat, rentangnya antara 1 (Januari) sampai 12 (Desember).', + abstract: 'Mengembalikan bulan dari sebuah tanggal yang dinyatakan oleh nomor seri. Bulan ditentukan sebagai bilangan bulat, rentangnya antara 1 (Januari) sampai 12 (Desember).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Tanggal yang ingin Anda cari bulannya. Tanggal harus dimasukkan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Misalnya, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah dapat terjadi jika tanggal dimasukkan sebagai teks .' }, + }, + }, + NETWORKDAYS: { + description: 'Mengembalikan jumlah semua hari kerja di antara start_date dan end_date. Hari kerja tidak termasuk akhir pekan dan tanggal-tanggal yang ditentukan sebagai hari libur. Gunakan NETWORKDAYS untuk menghitung tunjangan karyawan yang dibayar berdasarkan jumlah hari kerja selama masa tertentu.', + abstract: 'Mengembalikan jumlah semua hari kerja di antara start_date dan end_date. Hari kerja tidak termasuk akhir pekan dan tanggal-tanggal yang ditentukan sebagai hari libur. Gunakan NETWORKDAYS untuk menghitung tunjangan karyawan yang dibayar berdasarkan jumlah hari kerja selama masa tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Diperlukan. Tanggal yang menunjukkan tanggal mulai.' }, + endDate: { name: 'end_date', detail: 'Diperlukan. Tanggal yang menunjukkan tanggal akhir.' }, + holidays: { name: 'holidays', detail: 'Opsional. Rentang opsional yang terdiri dari satu atau lebih tanggal untuk dikecualikan dari kalender kerja, seperti hari libur nasional dan jatah cuti. Daftarnya bisa berupa rentang sel yang berisi tanggal atau konstanta array nomor seri yang menunjukkan tanggal.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Mengembalikan jumlah semua hari kerja di antara dua tanggal dengan menggunakan parameter untuk menunjukkan yang mana dan berapa hari yang merupakan akhir pekan. Hari-hari akhir pekan dan hari yang ditentukan sebagai hari libur tidak dianggap hari kerja.', + abstract: 'Mengembalikan jumlah semua hari kerja di antara dua tanggal dengan menggunakan parameter untuk menunjukkan yang mana dan berapa hari yang merupakan akhir pekan. Hari-hari akhir pekan dan hari yang ditentukan sebagai hari libur tidak dianggap hari kerja.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Tanggal yang mewakili tanggal mulai.' }, + endDate: { name: 'end_date', detail: 'Tanggal yang mewakili tanggal akhir.' }, + weekend: { name: 'weekend', detail: 'Angka atau teks yang menentukan kapan akhir pekan terjadi.' }, + holidays: { name: 'holidays', detail: 'Rentang opsional satu atau beberapa tanggal yang dikecualikan dari kalender kerja, seperti hari libur nasional, daerah, atau bergerak.' }, + }, + }, + NOW: { + description: 'Mengembalikan nomor seri tanggal dan waktu saat ini. Jika sebelum fungsi dimasukkan format selnya Umum , Excel mengubah sel format sehingga cocok dengan format tanggal dan waktu pengaturan regional Anda. Anda dapat mengubah format tanggal dan waktu dalam grup Angka di tab Beranda di Pita.', + abstract: 'Mengembalikan nomor seri tanggal dan waktu saat ini. Jika sebelum fungsi dimasukkan format selnya Umum , Excel mengubah sel format sehingga cocok dengan format tanggal dan waktu pengaturan regional Anda. Anda dapat mengubah format tanggal dan waktu dalam grup Angka di tab Beranda di Pita.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Mengembalikan detik dari satu nilai waktu. Detik diberikan sebagai bilangan bulat dalam rentang 0 (nol) sampai 59.', + abstract: 'Mengembalikan detik dari satu nilai waktu. Detik diberikan sebagai bilangan bulat dalam rentang 0 (nol) sampai 59.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Waktu yang memuat detik yang ingin Anda temukan. Waktu bisa dimasukkan sebagai string teks dengan tanda kutip (contoh, "6:45 PM"), sebagai angka desimal (contoh, 0,78125, yang menyatakan 6:45 PM), atau sebagai hasil dari rumus atau fungsi lain (contoh, TIMEVALUE("6:45 PM")).' }, + }, + }, + TIME: { + description: 'Mengembalikan angka desimal untuk waktu tertentu. Jika format sel adalah Umum sebelum fungsi dimasukkan, hasil diformat sebagai tanggal.', + abstract: 'Mengembalikan angka desimal untuk waktu tertentu. Jika format sel adalah Umum sebelum fungsi dimasukkan, hasil diformat sebagai tanggal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Diperlukan. Angka dari 0 (nol) sampai 32767 yang menyatakan jam. Nilai apa pun yang lebih besar dari 23 akan dibagi dengan 24 dan sisanya akan dianggap sebagai nilai jam. Sebagai contoh, TIME(27,0,0) = TIME(3,0,0) = 0,125 atau 3:00 AM.' }, + minute: { name: 'minute', detail: 'Diperlukan. Angka dari 0 sampai 32767 yang menyatakan menit. Nilai apa pun yang lebih besar dari 59 akan dikonversi menjadi jam dan menit. Sebagai contoh, TIME(0,750,0) = TIME(12,30,0) = 0,520833 atau 12:30 PM.' }, + second: { name: 'second', detail: 'Diperlukan. Angka dari 0 sampai 32767 yang menyatakan detik. Nilai apa pun yang lebih besar dari 59 akan dikonversi menjadi jam, menit, dan detik. Sebagai contoh, TIME(0,0,2000) = TIME(0,33,22) = 0,023148 atau 12:33:20 AM' }, + }, + }, + TIMEVALUE: { + description: 'Mengembalikan angka desimal dari waktu yang dinyatakan oleh string teks. Angka desimal adalah nilai dimulai dari 0 (nol) sampai 0,99988426, menyatakan waktu dari jam 0:00:00 (12:00:00 AM) sampai jam 23:59:59 (11:59:59 P.M.).', + abstract: 'Mengembalikan angka desimal dari waktu yang dinyatakan oleh string teks. Angka desimal adalah nilai dimulai dari 0 (nol) sampai 0,99988426, menyatakan waktu dari jam 0:00:00 (12:00:00 AM) sampai jam 23:59:59 (11:59:59 P.M.).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Diperlukan. String teks yang menyatakan waktu dalam salah satu format waktu Microsoft Excel; sebagai contoh, string teks "6:45 PM" dan "18:45" di dalam tanda kutip ganda yang menyatakan waktu.' }, + }, + }, + TO_DATE: { + description: 'Mengonversi angka yang diberikan menjadi tanggal.', + abstract: 'Mengonversi angka yang diberikan menjadi tanggal.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=id', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argumen atau referensi sel yang akan dikonversi menjadi tanggal. Jika berupa angka, nilai ditafsirkan sebagai jumlah hari sejak 30 Desember 1899; nilai negatif adalah hari sebelumnya dan pecahan menunjukkan waktu setelah tengah malam. Nilai nonnumerik dikembalikan tanpa perubahan.' }, + }, + }, + TODAY: { + description: 'Fungsi TODAY mengembalikan nomor seri tanggal saat ini. Nomor seri adalah kode tanggal-waktu yang digunakan oleh Excel untuk perhitungan tanggal dan waktu. Jika format sel adalah Umum sebelum fungsi dimasukkan, Excel mengganti format sel ke Tanggal . Jika Anda ingin melihat nomor serinya, Anda harus mengganti format sel ke Umum atau Angka .', + abstract: 'Fungsi TODAY mengembalikan nomor seri tanggal saat ini. Nomor seri adalah kode tanggal-waktu yang digunakan oleh Excel untuk perhitungan tanggal dan waktu. Jika format sel adalah Umum sebelum fungsi dimasukkan, Excel mengganti format sel ke Tanggal . Jika Anda ingin melihat nomor serinya, Anda harus mengganti format sel ke Umum atau Angka .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Mengembalikan hari yang tekait dengan sebuah tanggal. Hari diberikan sebagai bilangan bulat, yang berkisar dari 1 (Minggu) sampai 7 (Sabtu), secara default.', + abstract: 'Mengembalikan hari yang tekait dengan sebuah tanggal. Hari diberikan sebagai bilangan bulat, yang berkisar dari 1 (Minggu) sampai 7 (Sabtu), secara default.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Nomor berurutan yang menunjukkan tanggal dari hari yang akan dicari. Tanggal harus dimasukkan dengan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Contoh, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah bisa muncul jika tanggal dimasukkan sebagai teks.' }, + returnType: { name: 'return_type', detail: 'Opsional. Angka yang menentukan tipe nilai yang dikembalikan.' }, + }, + }, + WEEKNUM: { + description: 'Mengembalikan nomor minggu tanggal tertentu. Misalnya, minggu yang berisi tanggal 1 Januari adalah minggu pertama dalam setahun, dan diberi nomor minggu 1.', + abstract: 'Mengembalikan nomor minggu tanggal tertentu. Misalnya, minggu yang berisi tanggal 1 Januari adalah minggu pertama dalam setahun, dan diberi nomor minggu 1.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Tanggal dalam minggu. Tanggal harus dimasukkan dengan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Contoh, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah bisa muncul jika tanggal dimasukkan sebagai teks.' }, + returnType: { name: 'return_type', detail: 'Opsional. Angka yang menentukan pada hari apa minggu dimulai. Nilai default adalah 1.' }, + }, + }, + WORKDAY: { + description: 'Mengembalikan angka yang menyatakan tanggal yang merupakan indikasi jumlah hari kerja sebelum atau sesudah sebuah tanggal (tanggal mulai). Hari kerja tidak termasuk akhir pekan dan tanggal yang ditetapkan sebagai hari libur. Gunakan WORKDAY untuk mengecualikan akhir pekan atau hari libur ketika menghitung tanggal jatuh tempo faktur, perkiraan tanggal pengiriman, atau jumlah hari pekerjaan yang telah dilakukan.', + abstract: 'Mengembalikan angka yang menyatakan tanggal yang merupakan indikasi jumlah hari kerja sebelum atau sesudah sebuah tanggal (tanggal mulai). Hari kerja tidak termasuk akhir pekan dan tanggal yang ditetapkan sebagai hari libur. Gunakan WORKDAY untuk mengecualikan akhir pekan atau hari libur ketika menghitung tanggal jatuh tempo faktur, perkiraan tanggal pengiriman, atau jumlah hari pekerjaan yang telah dilakukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Diperlukan. Tanggal yang menunjukkan tanggal mulai.' }, + days: { name: 'days', detail: 'Diperlukan. Jumlah hari nonakhir pekan dan nonhari libur sebelum atau setelah start_date. Nilai positif untuk hari mengembalikan tanggal mendatang, nilai negatif mengembalikan tanggal lampau.' }, + holidays: { name: 'holidays', detail: 'Opsional. Daftar opsional yang terdiri dari satu atau lebih tanggal untuk dikecualikan dari kalender kerja, seperti hari libur nasional dan jatah cuti. Daftarnya bisa berupa rentang sel yang berisi tanggal atau konstanta array nomor seri yang menunjukkan tanggal.' }, + }, + }, + WORKDAY_INTL: { + description: 'Fungsi ini mengembalikan nomor seri tanggal sebelum atau sesudah jumlah hari kerja tertentu dengan parameter akhir pekan kustom. Parameter Weekend opsional dapat menunjukkan hari mana dan berapa hari yang merupakan akhir pekan. Perhatikan bahwa Hari akhir pekan dan hari apa pun yang ditentukan sebagai hari libur tidak dianggap sebagai hari kerja.', + abstract: 'Fungsi ini mengembalikan nomor seri tanggal sebelum atau sesudah jumlah hari kerja tertentu dengan parameter akhir pekan kustom. Parameter Weekend opsional dapat menunjukkan hari mana dan berapa hari yang merupakan akhir pekan. Perhatikan bahwa Hari akhir pekan dan hari apa pun yang ditentukan sebagai hari libur tidak dianggap sebagai hari kerja.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Diperlukan. Tanggal mulai, dipotong menjadi bilangan bulat.' }, + days: { name: 'days', detail: 'Diperlukan. Jumlah hari kerja sebelum atau setelah start_date. Nilai positif menghasilkan tanggal yang akan datang; nilai negatif menghasilkan tanggal sebelumnya; nilai nol menghasilkan start_date yang sudah ditentukan . Day-offset dipotok menjadi bilangan bulat.' }, + weekend: { name: 'weekend', detail: 'Opsional. Jika digunakan, ini menunjukkan hari dalam seminggu yang merupakan hari akhir pekan dan tidak dianggap hari kerja. Argumen akhir pekan adalah angka akhir pekan atau string yang menentukan kapan akhir pekan terjadi. Nilai jumlah akhir pekan menunjukkan hari akhir pekan seperti yang diperlihatkan di bawah ini.' }, + holidays: { name: 'holidays', detail: 'Ini adalah argumen opsional di akhir sintaks. Ini menentukan sekumpulan opsional dari satu atau beberapa tanggal yang akan dikecualikan dari kalender hari kerja. Hari libur harus berupa rentang sel yang berisi tanggal -- atau konstanta array dari nilai seri yang mewakili tanggal tersebut. Urutan tanggal atau nilai seri dalam hari libur dapat berubah-ubah.' }, + }, + }, + YEAR: { + description: 'Mengembalikan tahun yang terkait dengan satu tanggal. Tahun dikembalikan sebagai bilangan bulat dalam rentang 1900-9999.', + abstract: 'Mengembalikan tahun yang terkait dengan satu tanggal. Tahun dikembalikan sebagai bilangan bulat dalam rentang 1900-9999.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Diperlukan. Tanggal dari tahun yang akan dicari. Tanggal harus dimasukkan dengan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Misalnya, gunakan DATE(2025,5,23) untuk hari ke-23 Mei 2025. Masalah bisa muncul jika tanggal dimasukkan sebagai teks.' }, + }, + }, + YEARFRAC: { + description: 'YEARFRAC menghitung pecahan tahun yang dinyatakan oleh jumlah hari penuh antara dua tanggal (the start_date dan end_date ). Sebagai contoh, Anda dapat menggunakan YEARFRAC untuk mengidentifikasi proporsi tunjangan atau kewajiban pembayaran setahun dalam jangka waktu tertentu.', + abstract: 'YEARFRAC menghitung pecahan tahun yang dinyatakan oleh jumlah hari penuh antara dua tanggal (the start_date dan end_date ). Sebagai contoh, Anda dapat menggunakan YEARFRAC untuk mengidentifikasi proporsi tunjangan atau kewajiban pembayaran setahun dalam jangka waktu tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Tanggal yang mewakili tanggal mulai.' }, + endDate: { name: 'end_date', detail: 'Tanggal yang mewakili tanggal akhir.' }, + basis: { name: 'basis', detail: 'Jenis basis penghitungan hari yang akan digunakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/it-IT.ts b/packages/sheets-formula/src/locale/function-list/date/it-IT.ts new file mode 100644 index 0000000000..aafd2e8795 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/it-IT.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'La funzione DATA restituisce il numero seriale sequenziale che rappresenta una data specifica.', + abstract: 'La funzione DATA restituisce il numero seriale sequenziale che rappresenta una data specifica.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'Il valore dell\'argomento anno può contenere da una a quattro cifre. Excel lo interpreta in base al sistema di date del computer; per impostazione predefinita, Univer usa il sistema di date 1900.' }, + month: { name: 'month', detail: 'Un numero intero positivo o negativo che rappresenta il mese dell\'anno da 1 a 12, da gennaio a dicembre.' }, + day: { name: 'day', detail: 'Un numero intero positivo o negativo che rappresenta il giorno del mese da 1 a 31.' }, + }, + }, + DATEDIF: { + description: 'Calcola il numero di giorni, mesi o anni tra due date.', + abstract: 'Calcola il numero di giorni, mesi o anni tra due date.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data che rappresenta la prima o la data iniziale di un determinato periodo. Le date possono essere specificate come stringhe di testo racchiuse tra virgolette, ad esempio "30/1/2001", come numeri seriali, ad esempio 36921, che rappresenta il 30 gennaio 2001 se si usa il sistema data 1900, o come risultati di altre formule o funzioni, ad esempio DATA.VALORE("30/1/2001").' }, + endDate: { name: 'end_date', detail: 'Data che rappresenta l\'ultima data, o data finale, del periodo.' }, + unit: { name: 'Unità', detail: 'Tipo di informazioni che si desidera vengano restituite, dove: Unit****Returns " Y "Numero di anni completi nel periodo. M "Numero di mesi completi nel periodo". D "Numero di giorni nel periodo". MD "Differenza tra i giorni di start_date e end_date. Vengono ignorati i mesi e gli anni delle date. Importante: Non è consigliabile usare l\'argomento "MD", perché contiene limitazioni note. Vedere la sezione problemi noti riportata di seguito". YM "Differenza tra i mesi in start_date e end_date. I giorni e gli anni delle date vengono ignorati" YD "La differenza tra i giorni di start_date e end_date. Vengono ignorati gli anni delle date.' }, + }, + }, + DATEVALUE: { + description: 'La funzione DATA.VALORE converte una data memorizzata come testo in un numero seriale riconosciuto da Excel come data. La formula =DATA.VALORE("01/01/2008") ad esempio restituisce 39448, ovvero il numero seriale della data 01/01/2008. Tuttavia, tenere presente che in base all\'impostazione della data di sistema nel computer in uso, i risultati della funzione DATA.VALORE possono variare rispetto a questo esempio.', + abstract: 'La funzione DATA.VALORE converte una data memorizzata come testo in un numero seriale riconosciuto da Excel come data. La formula =DATA.VALORE("01/01/2008") ad esempio restituisce 39448, ovvero il numero seriale della data 01/01/2008. Tuttavia, tenere presente che in base all\'impostazione della data di sistema nel computer in uso, i risultati della funzione DATA.VALORE possono variare rispetto a questo esempio.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Obbligatorio. Testo che rappresenta una data in un formato di data di Excel oppure riferimento a una cella contenente testo che rappresenta una data in un formato di data di Excel. "30/01/2008" o "30-gen-2008" ad esempio sono stringhe di testo racchiuse tra virgolette che rappresentano date. Usando il sistema data predefinito in Microsoft Excel per Windows, l\'argomento date_text deve rappresentare una data compresa tra il 1° gennaio 1900 e il 31 dicembre 9999. La funzione DATA.VALORE restituisce il #VALUE! se il valore dell\'argomento date_text non rientra in questo intervallo. Se la parte relativa all\'anno dell\'argomento date_text viene omesso, la funzione DATA.VALORE usa l\'anno corrente dell\'orologio predefinito del computer. Le informazioni relative all\'ora nell\'argomento date_text vengono ignorate.' }, + }, + }, + DAY: { + description: 'Restituisce il giorno di una data rappresentata da un numero seriale. I giorni vengono rappresentati con numeri interi compresi tra 1 e 31.', + abstract: 'Restituisce il giorno di una data rappresentata da un numero seriale. I giorni vengono rappresentati con numeri interi compresi tra 1 e 31.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Data del giorno da trovare. Le date devono essere immesse usando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare, ad esempio, DATA(2008;5;23) per il 23 maggio 2008. Potrebbero verificarsi problemi se le date vengono immesse come testo .' }, + }, + }, + DAYS: { + description: 'Restituisce il numero di giorni compresi tra due date.', + abstract: 'Restituisce il numero di giorni compresi tra due date.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Obbligatorio. Data_inizio e data_fine sono le due date che delimitano il numero di giorni da trovare.' }, + startDate: { name: 'start_date', detail: 'Obbligatorio. Data_inizio e data_fine sono le due date che delimitano il numero di giorni da trovare.' }, + }, + }, + DAYS360: { + description: 'La funzione GIORNO360 restituisce il numero di giorni compresi tra due date sulla base di un anno di 360 giorni (dodici mesi di 30 giorni), usato in alcuni sistemi di contabilità. Usare questa funzione per facilitare il calcolo dei pagamenti qualora il sistema di contabilità si basi su 12 mesi di 30 giorni.', + abstract: 'La funzione GIORNO360 restituisce il numero di giorni compresi tra due date sulla base di un anno di 360 giorni (dodici mesi di 30 giorni), usato in alcuni sistemi di contabilità. Usare questa funzione per facilitare il calcolo dei pagamenti qualora il sistema di contabilità si basi su 12 mesi di 30 giorni.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Le due date tra le quali si desidera conoscere il numero di giorni.' }, + endDate: { name: 'end_date', detail: 'Le due date tra le quali si desidera conoscere il numero di giorni.' }, + method: { name: 'method', detail: 'Valore logico che specifica se usare il metodo statunitense o europeo nel calcolo.' }, + }, + }, + EDATE: { + description: 'Restituisce il numero seriale che rappresenta la data che cade il numero di mesi indicato prima o dopo la data specificata in data_iniziale. Utilizzare la funzione DATA.MESE per calcolare le date di scadenza che cadono nello stesso giorno del mese della data di emissione.', + abstract: 'Restituisce il numero seriale che rappresenta la data che cade il numero di mesi indicato prima o dopo la data specificata in data_iniziale. Utilizzare la funzione DATA.MESE per calcolare le date di scadenza che cadono nello stesso giorno del mese della data di emissione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obbligatorio. Data che rappresenta la data di inizio. Le date devono essere immesse usando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare, ad esempio, DATA(2008;5;23) per il 23 maggio 2008. Potrebbero verificarsi problemi se le date vengono immesse come testo .' }, + months: { name: 'months', detail: 'Obbligatorio. Numero di mesi precedenti o successivi a data_iniziale. Un valore positivo per mesi indica una data futura, mentre un valore negativo corrisponde a una data anteriore.' }, + }, + }, + EOMONTH: { + description: 'Restituisce il numero seriale dell\'ultimo giorno del mese, vale a dire il numero indicato di mesi precedenti o successivi a data_iniziale. Utilizzare la funzione FINE.MESE per calcolare le scadenze che cadono nell\'ultimo giorno del mese.', + abstract: 'Restituisce il numero seriale dell\'ultimo giorno del mese, vale a dire il numero indicato di mesi precedenti o successivi a data_iniziale. Utilizzare la funzione FINE.MESE per calcolare le scadenze che cadono nell\'ultimo giorno del mese.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obbligatorio. Data che rappresenta la data di inizio. Le date devono essere immesse usando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare, ad esempio, DATA(2008;5;23) per il 23 maggio 2008. Potrebbero verificarsi problemi se le date vengono immesse come testo .' }, + months: { name: 'months', detail: 'Obbligatorio. Numero di mesi precedenti o successivi a data_iniziale. Un valore positivo per mesi indica una data futura, mentre un valore negativo corrisponde a una data anteriore. Nota Se mesi non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + EPOCHTODATE: { + description: 'Converte un timestamp Unix epoch espresso in secondi, millisecondi o microsecondi in una data e ora nel Tempo Coordinato Universale (UTC).', + abstract: 'Converte un timestamp Unix epoch espresso in secondi, millisecondi o microsecondi in una data e ora nel Tempo Coordinato Universale (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=it', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'Timestamp Unix epoch in secondi, millisecondi o microsecondi.' }, + unit: { name: 'unit', detail: '[FACOLTATIVO — 1 per impostazione predefinita]: l\'unità di tempo in cui è espresso il timestamp.' }, + }, + }, + HOUR: { + description: 'Restituisce l\'ora di un valore di ora. L\'ora viene espressa come numero intero, compreso tra 0 (12:00) e 23 (23:00).', + abstract: 'Restituisce l\'ora di un valore di ora. L\'ora viene espressa come numero intero, compreso tra 0 (12:00) e 23 (23:00).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Orario che contiene l\'ora che si desidera trovare. Gli orari possono essere immessi come stringhe di testo racchiuse tra virgolette, ad esempio "18.45", come numeri decimali, ad esempio 0,78125 che rappresenta 18.45, oppure come risultati di altre formule o funzioni, ad esempio ORARIO.VALORE("18.45").' }, + }, + }, + ISOWEEKNUM: { + description: 'Restituisce il numero della settimana ISO dell\'anno per una data specificata.', + abstract: 'Restituisce il numero della settimana ISO dell\'anno per una data specificata.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Obbligatorio. L\'argomento data è il codice di data-ora usato da Excel per il calcolo della data e dell\'ora.' }, + }, + }, + MINUTE: { + description: 'Restituisce i minuti di un valore ora. I minuti vengono espressi con un numero intero compreso tra 0 e 59.', + abstract: 'Restituisce i minuti di un valore ora. I minuti vengono espressi con un numero intero compreso tra 0 e 59.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Orario che contiene il minuto che si desidera trovare. Gli orari possono essere immessi come stringhe di testo racchiuse tra virgolette, ad esempio "18.45", come numeri decimali, ad esempio 0,78125 che rappresenta 18.45, oppure come risultati di altre formule o funzioni, ad esempio ORARIO.VALORE("18.45").' }, + }, + }, + MONTH: { + description: 'Restituisce il mese di una data rappresentata da un numero seriale. Il mese viene espresso con un numero intero compreso tra 1, corrispondente a gennaio, e 12, corrispondente a dicembre.', + abstract: 'Restituisce il mese di una data rappresentata da un numero seriale. Il mese viene espresso con un numero intero compreso tra 1, corrispondente a gennaio, e 12, corrispondente a dicembre.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Data del mese da trovare. Le date devono essere immesse usando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare, ad esempio, DATA(2008;5;23) per il 23 maggio 2008. Potrebbero verificarsi problemi se le date vengono immesse come testo .' }, + }, + }, + NETWORKDAYS: { + description: 'Restituisce il numero di tutti i giorni lavorativi compresi tra data_iniziale e data_finale. I giorni lavorativi non comprendono i fine settimana e le festività. Utilizzare GIORNI.LAVORATIVI.TOT per calcolare le indennità dei dipendenti che vengono maturate in base al numero di giorni lavorativi compresi in un determinato periodo di tempo.', + abstract: 'Restituisce il numero di tutti i giorni lavorativi compresi tra data_iniziale e data_finale. I giorni lavorativi non comprendono i fine settimana e le festività. Utilizzare GIORNI.LAVORATIVI.TOT per calcolare le indennità dei dipendenti che vengono maturate in base al numero di giorni lavorativi compresi in un determinato periodo di tempo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obbligatorio. Data che rappresenta la data di inizio.' }, + endDate: { name: 'end_date', detail: 'Obbligatorio. Data che rappresenta la data finale.' }, + holidays: { name: 'holidays', detail: 'Opzionale. Intervallo opzionale di una o più date da escludere dal calendario lavorativo. L\'elenco può essere composto da un intervallo di celle contenenti le date o da una costante di matrice dei numeri seriali che rappresentano le date.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Restituisce il numero di tutti i giorni lavorativi compresi fra due date utilizzando parametri per indicare quali e quanti giorni sono giorni festivi. I giorni festivi e i giorni indicati come festività non sono considerati giorni lavorativi.', + abstract: 'Restituisce il numero di tutti i giorni lavorativi compresi fra due date utilizzando parametri per indicare quali e quanti giorni sono giorni festivi. I giorni festivi e i giorni indicati come festività non sono considerati giorni lavorativi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data che rappresenta la data di inizio.' }, + endDate: { name: 'end_date', detail: 'Data che rappresenta la data di fine.' }, + weekend: { name: 'weekend', detail: 'Numero o stringa che specifica quando ricorrono i fine settimana.' }, + holidays: { name: 'holidays', detail: 'Intervallo facoltativo di una o più date da escludere dal calendario lavorativo, ad esempio festività nazionali, regionali o mobili.' }, + }, + }, + NOW: { + description: 'Restituisce il numero seriale della data e dell\'ora correnti. Se prima dell\'immissione della funzione il formato di cella era Generale , verrà modificato in modo che corrisponda al formato di data e ora delle impostazioni internazionali. È possibile cambiare il formato di data e ora della cella utilizzando i comandi del gruppo Numeri nella scheda Home della barra multifunzione.', + abstract: 'Restituisce il numero seriale della data e dell\'ora correnti. Se prima dell\'immissione della funzione il formato di cella era Generale , verrà modificato in modo che corrisponda al formato di data e ora delle impostazioni internazionali. È possibile cambiare il formato di data e ora della cella utilizzando i comandi del gruppo Numeri nella scheda Home della barra multifunzione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Restituisce i secondi di un valore ora. I secondi vengono espressi con un numero intero compreso tra 0 e 59.', + abstract: 'Restituisce i secondi di un valore ora. I secondi vengono espressi con un numero intero compreso tra 0 e 59.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Orario che contiene i secondi che si desidera trovare. Gli orari possono essere immessi come stringhe di testo racchiuse tra virgolette, ad esempio "18.45", come numeri decimali, ad esempio 0,78125 che rappresenta 18.45, oppure come risultati di altre formule o funzioni, ad esempio ORARIO.VALORE("18.45").' }, + }, + }, + TIME: { + description: 'Restituisce il numero decimale di un\'ora specifica. Se prima dell\'immissione della funzione il formato di cella era Generale , il risultato viene formattato come una data.', + abstract: 'Restituisce il numero decimale di un\'ora specifica. Se prima dell\'immissione della funzione il formato di cella era Generale , il risultato viene formattato come una data.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Obbligatorio. Numero compreso tra 0 e 32767 che rappresenta l\'ora. Qualsiasi valore maggiore di 23 verrà diviso per 24 e il resto verrà considerato come il valore dell\'ora. Ad esempio, ORARIO(27;0;0) = ORARIO(3;0;0) = 0,125 o 3.00.' }, + minute: { name: 'minute', detail: 'Obbligatorio. Numero compreso tra 0 e 32767 che rappresenta i minuti. Qualsiasi valore maggiore di 59 verrà convertito in ore e minuti. Ad esempio, ORARIO(0;750;0) = ORARIO(12;30;0) = 0,520833 o 12.30.' }, + second: { name: 'second', detail: 'Obbligatorio. Numero compreso tra 0 e 32767 che rappresenta i secondi. Qualsiasi valore maggiore di 59 verrà convertito in ore, minuti e secondi. Ad esempio, ORARIO(0;0;2000) = ORARIO(0;33;22) = 0,023148 o 12.33.20.' }, + }, + }, + TIMEVALUE: { + description: 'Restituisce il numero decimale dell\'ora rappresentata da una stringa di testo. Il numero decimale è un valore compreso tra 0 e 0,99988426 indicante un\'ora tra le 0.00.00 e le 23.59.59.', + abstract: 'Restituisce il numero decimale dell\'ora rappresentata da una stringa di testo. Il numero decimale è un valore compreso tra 0 e 0,99988426 indicante un\'ora tra le 0.00.00 e le 23.59.59.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Obbligatorio. Stringa di testo che rappresenta un\'ora in uno dei formati ora disponibili in Microsoft Excel, ad esempio la stringa di testo "18.45" racchiusa tra virgolette che rappresenta l\'ora.' }, + }, + }, + TO_DATE: { + description: 'Converte un numero specificato in una data.', + abstract: 'Converte un numero specificato in una data.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=it', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argomento o riferimento a una cella da convertire in data. Se è numerico, viene interpretato come numero di giorni dal 30 dicembre 1899; i valori negativi sono giorni precedenti e le frazioni indicano l\'ora dopo la mezzanotte. I valori non numerici vengono restituiti senza modifiche.' }, + }, + }, + TODAY: { + description: 'La funzione OGGI restituisce il numero seriale della data corrente. Il numero seriale è il codice data-ora usato da Excel per il calcolo della data e dell\'ora. Se prima dell\'immissione della funzione il formato di cella era Generale , il formato passerà a Data . Se si desidera visualizzare il numero seriale, sarà necessario impostare il formato di cella su Generale o Numero .', + abstract: 'La funzione OGGI restituisce il numero seriale della data corrente. Il numero seriale è il codice data-ora usato da Excel per il calcolo della data e dell\'ora. Se prima dell\'immissione della funzione il formato di cella era Generale , il formato passerà a Data . Se si desidera visualizzare il numero seriale, sarà necessario impostare il formato di cella su Generale o Numero .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Restituisce il giorno della settimana corrispondente a una data. In base all\'impostazione predefinita, i giorni vengono espressi con un numero intero compreso tra 1, domenica, e 7, sabato.', + abstract: 'Restituisce il giorno della settimana corrispondente a una data. In base all\'impostazione predefinita, i giorni vengono espressi con un numero intero compreso tra 1, domenica, e 7, sabato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Numero sequenziale che rappresenta la data del giorno che si desidera trovare. Le date devono essere immesse utilizzando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare ad esempio DATA(2008;5;23) per il 23 maggio 2008. Possono verificarsi dei problemi se le date vengono immesse come testo.' }, + returnType: { name: 'return_type', detail: 'Opzionale. Numero che determina il tipo di valore restituito.' }, + }, + }, + WEEKNUM: { + description: 'Restituisce il numero della settimana per una data specifica. La settimana che contiene la data 1 gennaio, ad esempio, è la prima dell\'anno e il numero della settimana è 1.', + abstract: 'Restituisce il numero della settimana per una data specifica. La settimana che contiene la data 1 gennaio, ad esempio, è la prima dell\'anno e il numero della settimana è 1.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Data della settimana. Le date devono essere immesse utilizzando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare ad esempio DATA(2008;5;23) per il 23 maggio 2008. Possono verificarsi dei problemi se le date vengono immesse come testo.' }, + returnType: { name: 'return_type', detail: 'Opzionale. Numero che determina il giorno di inizio della settimana. Il valore predefinito è 1.' }, + }, + }, + WORKDAY: { + description: 'Restituisce un numero che rappresenta una data che precede o segue un\'altra data, ovvero la data iniziale, di un numero di giorni specificato. I giorni lavorativi non includono i fine settimana o le festività. Utilizzare GIORNO.LAVORATIVO per escludere i fine settimana e le festività quando si calcolano le date di scadenza delle fatture, le date di consegna previste o il numero di giornate lavorative effettuate.', + abstract: 'Restituisce un numero che rappresenta una data che precede o segue un\'altra data, ovvero la data iniziale, di un numero di giorni specificato. I giorni lavorativi non includono i fine settimana o le festività. Utilizzare GIORNO.LAVORATIVO per escludere i fine settimana e le festività quando si calcolano le date di scadenza delle fatture, le date di consegna previste o il numero di giornate lavorative effettuate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obbligatorio. Data che rappresenta la data di inizio.' }, + days: { name: 'days', detail: 'Obbligatorio. Numero dei giorni che precedono o seguono data_iniziale, esclusi i fine settimana e le festività. Un valore positivo per giorni indica una data futura, mentre un valore negativo corrisponde a una data anteriore.' }, + holidays: { name: 'holidays', detail: 'Opzionale. Elenco di una o più date da escludere dal calendario lavorativo. L\'elenco può essere composto da un intervallo di celle contenenti le date o da una costante di matrice dei numeri seriali che rappresentano le date.' }, + }, + }, + WORKDAY_INTL: { + description: 'Questa funzione restituisce il numero seriale della data precedente o successiva a un numero specificato di giorni lavorativi con parametri personalizzati per i fine settimana. I parametri facoltativi festivi possono indicare quali e quanti giorni sono giorni festivi. Si noti che i giorni festivi e i giorni specificati come festività non sono considerati giorni lavorativi.', + abstract: 'Questa funzione restituisce il numero seriale della data precedente o successiva a un numero specificato di giorni lavorativi con parametri personalizzati per i fine settimana. I parametri facoltativi festivi possono indicare quali e quanti giorni sono giorni festivi. Si noti che i giorni festivi e i giorni specificati come festività non sono considerati giorni lavorativi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obbligatorio. Data di inizio, troncata a un numero intero.' }, + days: { name: 'days', detail: 'Obbligatorio. Numero di giorni lavorativi precedenti o successivi alla data_iniziale. Un valore positivo indica una data futura; un valore negativo indica una data passata; un valore zero indica la start_date già specificata . L\'offset dei giorni viene troncato a un numero intero.' }, + weekend: { name: 'weekend', detail: 'Opzionale. Se usato, indica i giorni della settimana che sono giorni festivi e non sono considerati giorni lavorativi. L\'argomento fine settimana è un numero di festivi o una stringa che specifica quando si verificano i fine settimana. I valori numerici dei fine settimana indicano i giorni festivi come illustrato di seguito.' }, + holidays: { name: 'holidays', detail: 'Questo argomento è facoltativo alla fine della sintassi. Specifica un set facoltativo di una o più date da escludere dal calendario lavorativo. Le festività sono un intervallo di celle contenenti le date o una costante di matrice dei valori seriali che rappresentano tali date. L\'ordinamento delle date o i valori seriali delle vacanze possono essere arbitrari.' }, + }, + }, + YEAR: { + description: 'Restituisce l\'anno corrispondente a una data. Gli anni vengono restituiti come numeri interi compresi tra 1900 e 9999.', + abstract: 'Restituisce l\'anno corrispondente a una data. Gli anni vengono restituiti come numeri interi compresi tra 1900 e 9999.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obbligatorio. Data dell\'anno da trovare. Le date devono essere immesse usando la funzione DATA o devono essere il risultato di altre formule o funzioni. Ad esempio, usare DATA(2025,5,23) per il 23 maggio 2025. È possibile che si verifichino problemi se le date vengono immesse come testo.' }, + }, + }, + YEARFRAC: { + description: 'FRAZIONE.ANNO calcola la frazione dell\'anno corrispondente al numero di giorni complessivi compresi tra due date ( data_iniziale e data_finale ). Ad esempio, utilizzare la funzione del foglio di lavoro FRAZIONE.ANNO per identificare la proporzione dei benefici o delle obbligazioni di un intero anno da assegnare a un termine specifico.', + abstract: 'FRAZIONE.ANNO calcola la frazione dell\'anno corrispondente al numero di giorni complessivi compresi tra due date ( data_iniziale e data_finale ). Ad esempio, utilizzare la funzione del foglio di lavoro FRAZIONE.ANNO per identificare la proporzione dei benefici o delle obbligazioni di un intero anno da assegnare a un termine specifico.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data che rappresenta la data di inizio.' }, + endDate: { name: 'end_date', detail: 'Data che rappresenta la data di fine.' }, + basis: { name: 'basis', detail: 'Tipo di base per il conteggio dei giorni da usare.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/date/ja-JP.ts index 07a50058cd..759e1e2277 100644 --- a/packages/sheets-formula/src/locale/function-list/date/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/date/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/date-%E9%96%A2%E6%95%B0-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/ja-jp/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/datedif-%E9%96%A2%E6%95%B0-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: '開始日', detail: '指定した期間の最初の日付または開始日を表す日付。' }, + startDate: { name: '開始日', detail: '指定した期間の最初の日付または開始日を表す日付。 日付は、引用符 ("2001/1/30" など) 内のテキスト文字列として、シリアル番号 (たとえば、1900 年 1 月 30 日を表す 36921 など) として、または他の数式または関数の結果として入力できます (例: DATEVALUE("2001/1/30")。' }, endDate: { name: '終了日', detail: '期間の最後の日付または終了日を表す日付。' }, - method: { name: '単位', detail: '返される情報の種類。' }, + unit: { name: '単位', detail: '返される情報の種類。ここで: Unit****Returns " Y "期間の完全な年数。 M "期間の完了した月の数" D "期間の日数" MD "start_dateとend_dateの日数の違い。 日付の月数および年数は無視されます。 大事な: "MD" 引数には既知の制限があるため、使用することはお勧めしません。 以下の既知の問題に関するセクションを参照してください。 YM "start_dateとend_dateの月の違い。 日付の日数と年は無視されます" YD "start_date日とend_date日の違い。 日付の年数は無視されます。' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/datevalue-%E9%96%A2%E6%95%B0-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/ja-jp/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/day-%E9%96%A2%E6%95%B0-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/ja-jp/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/days-%E9%96%A2%E6%95%B0-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/ja-jp/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/days360-%E9%96%A2%E6%95%B0-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/edate-%E9%96%A2%E6%95%B0-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/eomonth-%E9%96%A2%E6%95%B0-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/ja-jp/excel/functions/eomonth-function', }, ], functionParameter: { @@ -136,12 +136,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/13193461?hl=ja&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=ja', }, ], functionParameter: { - timestamp: { name: 'タイムスタンプ', detail: 'Unix エポック タイムスタンプ(秒、ミリ秒、またはマイクロ秒)。' }, - unit: { name: '時間の単位', detail: 'タイムスタンプを表示する時間の単位。デフォルト値は 1: \n1 は時間単位が秒であることを示します。\n2 は時間単位がミリ秒であることを示します。\n3 は時間単位がマイクロ秒であることを示します。' }, + timestamp: { name: 'タイムスタンプ', detail: 'EPOCHTODATE(1655908429662,2)' }, + unit: { name: '時間の単位', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hour-%E9%96%A2%E6%95%B0-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hour-function', }, ], functionParameter: { @@ -163,52 +163,52 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/isoweeknum-%E9%96%A2%E6%95%B0-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/isoweeknum-function', }, ], functionParameter: { - date: { name: '日付', detail: 'で日付や時刻の計算に使用されるコードのことです。' }, + date: { name: '日付', detail: '必須。 日付とは、Excel で日付や時刻の計算に使用されるコードのことです。' }, }, }, MINUTE: { - description: 'シリアル値を時刻の分に変換します。', - abstract: 'シリアル値を時刻の分に変換します。', + description: '時刻の分を返します。 戻り値は 0 (分) ~ 59 (分) の範囲の整数となります。', + abstract: '時刻の分を返します。 戻り値は 0 (分) ~ 59 (分) の範囲の整数となります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/minute-%E9%96%A2%E6%95%B0-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/ja-jp/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: 'シリアル値', detail: '検索する日付を指定します。 日付は、DATE 関数を使って入力するか、他の数式または他の関数の結果を指定します。 たとえば、2008 年 5 月 23 日を入力する場合は、DATE(2008,5,23) を使用します。' }, + serialNumber: { name: 'シリアル値', detail: '必須。 検索する分が含まれている時刻を指定します。 時刻には、半角の二重引用符 (") で囲んだ文字列 ("6:45 PM" など)、小数 (6:45 PM を表す 0.78125)、または他の数式や関数の結果 (TIMEVALUE("6:45 PM") など) を指定します。' }, }, }, MONTH: { - description: 'シリアル値を月に変換します。', - abstract: 'シリアル値を月に変換します。', + description: 'データに含まれる月をシリアル値で返します。 戻り値は 1 (月) ~ 12 (月) の範囲の整数となります。', + abstract: 'データに含まれる月をシリアル値で返します。 戻り値は 1 (月) ~ 12 (月) の範囲の整数となります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/month-%E9%96%A2%E6%95%B0-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'シリアル値', detail: '検索する月の日付を指定します。 日付は、DATE 関数を使って入力するか、他の数式または他の関数の結果として指定します。 たとえば、2008 年 5 月 23 日を入力する場合は、DATE(2008,5,23) を使用します。' }, + serialNumber: { name: 'シリアル値', detail: '必須。 検索する月の日付を指定します。 日付は、DATE 関数を使って入力するか、他の数式または他の関数の結果として指定します。 たとえば、2008 年 5 月 23 日を入力する場合は、DATE(2008,5,23) を使用します。 日付を文字列として入力 した場合、エラーが発生することがあります。' }, }, }, NETWORKDAYS: { - description: '開始日と終了日を指定して、その期間内の稼動日の日数を返します。', - abstract: '開始日と終了日を指定して、その期間内の稼動日の日数を返します。', + description: '開始日から終了日までの期間に含まれる稼動日の日数を返します。 稼働日とは、土曜、日曜、および指定された休日を除く日のことです。 この関数は、特定期間内の稼動日数を基準にして従業員の給与を計算するときに使用します。', + abstract: '開始日から終了日までの期間に含まれる稼動日の日数を返します。 稼働日とは、土曜、日曜、および指定された休日を除く日のことです。 この関数は、特定期間内の稼動日数を基準にして従業員の給与を計算するときに使用します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/networkdays-%E9%96%A2%E6%95%B0-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/networkdays-function', }, ], functionParameter: { - startDate: { name: '開始日', detail: '起算日を表す日付を指定します。' }, - endDate: { name: '終了日', detail: '対象期間の最終日を表す日付を指定します。' }, - holidays: { name: '休日', detail: '国民の祝日や変動休日など、稼働日数の計算から除外する日付のリストを指定します。' }, + startDate: { name: '開始日', detail: '必須。 起算日を表す日付を指定します。' }, + endDate: { name: '終了日', detail: '必須。 対象期間の最終日を表す日付を指定します。' }, + holidays: { name: '休日', detail: 'オプション。 国民の祝日や変動休日など、稼働日数の計算から除外する日付のリストを指定します。 日付を含む一連のセルか、日付を示すシリアル値の配列定数で指定できます。' }, }, }, NETWORKDAYS_INTL: { @@ -217,7 +217,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/networkdays-intl-%E9%96%A2%E6%95%B0-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/ja-jp/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,43 +228,43 @@ const locale: typeof enUS = { }, }, NOW: { - description: '現在の日付と時刻に対応するシリアル値を返します。', - abstract: '現在の日付と時刻に対応するシリアル値を返します', + description: '現在の日付と時刻に対応するシリアル値を返します。 関数が入力される前に、セルの表示形式が [ 標準 ] であった場合、セルの書式は、地域の設定の日付と時刻の書式に合わせて変更されます。 リボンの [ ホーム ] タブにある [ 数値 ] のコマンドを使用して、セルの日付と時刻の書式を変更できます。', + abstract: '現在の日付と時刻に対応するシリアル値を返します。 関数が入力される前に、セルの表示形式が [ 標準 ] であった場合、セルの書式は、地域の設定の日付と時刻の書式に合わせて変更されます。 リボンの [ ホーム ] タブにある [ 数値 ] のコマンドを使用して、セルの日付と時刻の書式を変更できます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/now-%E9%96%A2%E6%95%B0-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/ja-jp/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: 'シリアル値を時刻の秒に変換します。', - abstract: 'シリアル値を時刻の秒に変換します。', + description: '時刻の秒を返します。 戻り値は 0 (秒) ~ 59 (秒) の範囲の整数となります。', + abstract: '時刻の秒を返します。 戻り値は 0 (秒) ~ 59 (秒) の範囲の整数となります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/second-%E9%96%A2%E6%95%B0-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/second-function', }, ], functionParameter: { - serialNumber: { name: 'シリアル値', detail: '検索する日付を指定します。 日付は、DATE 関数を使って入力するか、他の数式または他の関数の結果を指定します。 たとえば、2008 年 5 月 23 日を入力する場合は、DATE(2008,5,23) を使用します。' }, + serialNumber: { name: 'シリアル値', detail: '必須。 検索する秒が含まれている時刻を指定します。 時刻には、半角の二重引用符 (") で囲んだ文字列 ("6:45 PM" など)、小数 (6:45 PM を表す 0.78125)、または他の数式や関数の結果 (TIMEVALUE("6:45 PM") など) を指定します。' }, }, }, TIME: { - description: '指定した時刻に対応するシリアル値を返します。', - abstract: '指定した時刻に対応するシリアル値を返します', + description: '指定した時刻に対応する小数を返します。 この関数を挿入する前のセルの表示形式が [ 標準 ] であった場合、結果は日付形式になります。', + abstract: '指定した時刻に対応する小数を返します。 この関数を挿入する前のセルの表示形式が [ 標準 ] であった場合、結果は日付形式になります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/time-%E9%96%A2%E6%95%B0-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/ja-jp/excel/functions/time-function', }, ], 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: '2 番目を表す 0 から 32767 までの数値。 59 を超える値は、時間、分、秒に変換されます。 たとえば、TIME(0,0,2000) = TIME(0,33,22) = .023148 または 12:33:20 AM。' }, + 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: '必須。 2 番目を表す 0 から 32767 までの数値。 59 を超える値は、時間、分、秒に変換されます。 たとえば、TIME(0,0,2000) = TIME(0,33,22) = .023148 または 12:33:20 AM' }, }, }, TIMEVALUE: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/timevalue-%E9%96%A2%E6%95%B0-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/ja-jp/excel/functions/timevalue-function', }, ], functionParameter: { @@ -286,11 +286,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3094239?hl=ja&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=ja', }, ], functionParameter: { - value: { name: '値', detail: '日付に変換する引数またはセルへの参照です。' }, + value: { name: '値', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/today-%E9%96%A2%E6%95%B0-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/weekday-%E9%96%A2%E6%95%B0-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/weeknum-%E9%96%A2%E6%95%B0-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/ja-jp/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/workday-%E9%96%A2%E6%95%B0-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/ja-jp/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/workday-intl-%E9%96%A2%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/year-%E9%96%A2%E6%95%B0-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/yearfrac-%E9%96%A2%E6%95%B0-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/date/ko-KR.ts index e86bb2ed0a..c2a106dd45 100644 --- a/packages/sheets-formula/src/locale/function-list/date/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/date/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/date-함수-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/ko-kr/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/datedif-함수-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: 'start_date', detail: '지정된 기간의 첫 번째 또는 시작 날짜를 나타내는 날짜입니다.' }, - endDate: { name: 'end_date', detail: '기간의 마지막 또는 종료 날짜를 나타내는 날짜입니다.' }, - method: { name: 'method', detail: '반환하려는 정보의 유형입니다.' }, + startDate: { name: 'start_date', detail: '특정 기간의 첫 번째 날짜 또는 시작 날짜를 나타내는 날짜입니다. 날짜는 따옴표로 묶인 텍스트 문자열(예: "2001-01-30"), 일련 번호(예: 1900 날짜 체계를 사용할 경우 2001년 1월 30일을 나타내는 값인 36921), 다른 수식 또는 함수의 결과(예: DATEVALUE("2001-01-30"))로 입력할 수 있습니다.' }, + endDate: { name: 'end_date', detail: '기간의 마지막 날짜나 종료 날짜를 나타내는 날짜입니다.' }, + unit: { name: 'Unit', detail: '반환하려는 정보의 유형입니다. 여기서: Unit****Returns " Y "기간의 완료 연도 수입니다." M "기간의 완료 월 수입니다." D "기간의 일 수입니다." MD "start_date 일과 end_date 간의 차이입니다. 두 날짜의 월이나 연도는 무시됩니다. 중요: 알려진 제한 사항이 있으므로 "MD" 인수를 사용하지 않는 것이 좋습니다. 아래의 알려진 문제 섹션을 참조하세요." YM "start_date 월과 end_date 간의 차이입니다. 날짜의 일과 연도는 무시됩니다" YD "start_date 일과 end_date 사이의 차이입니다. 두 날짜의 연도는 무시됩니다.' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/datevalue-함수-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/ko-kr/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/day-함수-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/ko-kr/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/days-함수-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/ko-kr/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/days360-함수-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/edate-함수-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/eomonth-함수-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/ko-kr/excel/functions/eomonth-function', }, ], functionParameter: { @@ -131,17 +131,17 @@ const locale: typeof enUS = { }, }, EPOCHTODATE: { - description: 'Unix epoch 타임스탬프(초, 밀리초 또는 마이크로초)를 UTC(협정 세계시)의 날짜/시간으로 변환합니다.', - abstract: 'Unix epoch 타임스탬프(초, 밀리초 또는 마이크로초)를 UTC(협정 세계시)의 날짜/시간으로 변환합니다.', + description: '초, 밀리초 또는 마이크로초 단위의 Unix epoch 타임스탬프를 협정 세계시(UTC) 기준의 날짜 및 시간으로 변환합니다.', + abstract: '초, 밀리초 또는 마이크로초 단위의 Unix epoch 타임스탬프를 협정 세계시(UTC) 기준의 날짜 및 시간으로 변환합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/13193461?hl=ko&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=ko', }, ], functionParameter: { - timestamp: { name: 'timestamp', detail: '초, 밀리초 또는 마이크로초 단위의 Unix epoch 타임스탬프입니다.' }, - unit: { name: 'unit', detail: '타임스탬프가 표현되는 시간 단위입니다. 기본값은 1입니다: \n1은 시간 단위가 초임을 나타냅니다. \n2는 시간 단위가 밀리초임을 나타냅니다.\n3은 시간 단위가 마이크로초임을 나타냅니다.' }, + timestamp: { name: 'timestamp', detail: 'EPOCHTODATE(1655908429662,2)' }, + unit: { name: 'unit', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/hour-함수-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hour-function', }, ], functionParameter: { @@ -158,42 +158,42 @@ const locale: typeof enUS = { }, }, ISOWEEKNUM: { - description: '지정된 날짜의 연도의 ISO 주 번호를 반환합니다', - abstract: '지정된 날짜의 연도의 ISO 주 번호를 반환합니다', + description: '지정된 날짜의 연도에 해당하는 ISO 주 번호를 반환합니다.', + abstract: '지정된 날짜의 연도에 해당하는 ISO 주 번호를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/isoweeknum-함수-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/isoweeknum-function', }, ], functionParameter: { - date: { name: 'date', detail: '날짜는 Excel에서 날짜 및 시간 계산에 사용하는 날짜-시간 코드입니다.' }, + date: { name: 'date', detail: '필수. 날짜는 날짜 및 시간 계산을 위해 Excel에서 사용하는 날짜-시간 코드입니다.' }, }, }, MINUTE: { - description: '일련 번호를 분으로 변환합니다', - abstract: '일련 번호를 분으로 변환합니다', + description: '시간 값의 분을 반환합니다. 분은 0에서 59 사이의 정수로 표시됩니다.', + abstract: '시간 값의 분을 반환합니다. 분은 0에서 59 사이의 정수로 표시됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/minute-함수-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/ko-kr/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: 'serial_number', detail: '찾으려는 분의 날짜입니다. 날짜는 DATE 함수를 사용하여 입력하거나 다른 수식 또는 함수의 결과로 입력해야 합니다. 예를 들어, 2008년 5월 23일에는 DATE(2008,5,23)을 사용합니다.' }, + serialNumber: { name: 'serial_number', detail: '필수. 분을 계산할 시간 값입니다. 따옴표로 묶은 텍스트 문자열(예: "6:45 PM"), 10진수(6:45 PM을 나타내는 0.78125) 또는 다른 수식이나 함수의 결과(예: TIMEVALUE("6:45 PM"))를 입력할 수 있습니다.' }, }, }, MONTH: { - description: '일련 번호로 나타낸 날짜의 월을 반환합니다. 월은 1(1월)에서 12(12월) 사이의 정수로 지정됩니다.', - abstract: '일련 번호를 월로 변환합니다', + description: '일련 번호가 나타내는 날짜의 월을 반환합니다. 월은 1(1월)에서 12(12월) 사이의 정수로 표시됩니다.', + abstract: '일련 번호가 나타내는 날짜의 월을 반환합니다. 월은 1(1월)에서 12(12월) 사이의 정수로 표시됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/month-함수-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'serial_number', detail: '찾으려는 월의 날짜입니다. 날짜는 DATE 함수를 사용하여 입력하거나 다른 수식 또는 함수의 결과로 입력해야 합니다. 예를 들어, 2008년 5월 23일에는 DATE(2008,5,23)을 사용합니다.' }, + serialNumber: { name: 'serial_number', detail: '필수. 월을 구할 날짜입니다. 날짜는 DATE 함수를 사용하거나 다른 수식 또는 함수의 결과로 입력해야 합니다. 예를 들어 2008년 5월 23일에 대해서는 DATE(2008,5,23)을 사용합니다. 날짜를 텍스트로 입력 하면 문제가 발생할 수 있습니다.' }, }, }, NETWORKDAYS: { @@ -202,7 +202,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/networkdays-함수-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/networkdays-function', }, ], functionParameter: { @@ -217,7 +217,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/networkdays-intl-함수-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/ko-kr/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,28 +228,28 @@ const locale: typeof enUS = { }, }, NOW: { - description: '현재 날짜 및 시간의 일련 번호를 반환합니다.', - abstract: '현재 날짜 및 시간의 일련 번호를 반환합니다', + description: '현재 날짜와 시간의 일련 번호를 반환합니다. 함수를 입력하기 전 셀 형식이 일반 인 경우 셀 형식이 국가별 설정의 날짜 및 시간 형식과 일치하도록 변경됩니다. 리본 메뉴의 홈 탭에 있는 표시 형식 그룹의 명령을 사용하여 셀의 날짜 및 시간 형식을 변경할 수 있습니다.', + abstract: '현재 날짜와 시간의 일련 번호를 반환합니다. 함수를 입력하기 전 셀 형식이 일반 인 경우 셀 형식이 국가별 설정의 날짜 및 시간 형식과 일치하도록 변경됩니다. 리본 메뉴의 홈 탭에 있는 표시 형식 그룹의 명령을 사용하여 셀의 날짜 및 시간 형식을 변경할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/now-함수-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/ko-kr/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: '일련 번호를 초로 변환합니다', - abstract: '일련 번호를 초로 변환합니다', + description: '시간 값의 초를 반환합니다. 초는 0에서 59 사이의 정수로 제공됩니다.', + abstract: '시간 값의 초를 반환합니다. 초는 0에서 59 사이의 정수로 제공됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/second-함수-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/second-function', }, ], functionParameter: { - serialNumber: { name: 'serial_number', detail: '찾으려는 초의 날짜입니다. 날짜는 DATE 함수를 사용하여 입력하거나 다른 수식 또는 함수의 결과로 입력해야 합니다. 예를 들어, 2008년 5월 23일에는 DATE(2008,5,23)을 사용합니다.' }, + serialNumber: { name: 'serial_number', detail: '필수. 초를 계산할 시간 값입니다. 따옴표로 묶은 텍스트 문자열(예: "6:45 PM"), 10진수(6:45 PM을 나타내는 0.78125) 또는 다른 수식이나 함수의 결과(예: TIMEVALUE("6:45 PM"))를 입력할 수 있습니다.' }, }, }, TIME: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/time-함수-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/ko-kr/excel/functions/time-function', }, ], functionParameter: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/timevalue-함수-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/ko-kr/excel/functions/timevalue-function', }, ], functionParameter: { @@ -281,16 +281,16 @@ const locale: typeof enUS = { }, }, TO_DATE: { - description: '제공된 숫자를 날짜로 변환합니다.', - abstract: '제공된 숫자를 날짜로 변환합니다.', + description: '입력된 숫자를 날짜로 변환합니다.', + abstract: '입력된 숫자를 날짜로 변환합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3094239?hl=ko&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=ko', }, ], functionParameter: { - value: { name: 'value', detail: '날짜로 변환할 인수 또는 셀에 대한 참조입니다.' }, + value: { name: 'value', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/today-함수-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/weekday-함수-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/weeknum-함수-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/ko-kr/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/workday-함수-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/ko-kr/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/workday-intl-함수-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/year-함수-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/yearfrac-함수-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/date/pl-PL.ts new file mode 100644 index 0000000000..d7b1e7920d --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/pl-PL.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'Funkcja DATA zwraca kolejną liczbę porządkową reprezentującą konkretną datę.', + abstract: 'Funkcja DATA zwraca kolejną liczbę porządkową reprezentującą konkretną datę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'Wartość argumentu year może zawierać od jednej do czterech cyfr. Excel interpretuje year zgodnie z systemem dat używanym przez komputer. Domyślnie Univer używa systemu dat 1900, w którym pierwszą datą jest 1 stycznia 1900 r.' }, + month: { name: 'month', detail: 'Dodatnia lub ujemna liczba całkowita oznaczająca miesiąc roku od 1 do 12 (od stycznia do grudnia).' }, + day: { name: 'day', detail: 'Dodatnia lub ujemna liczba całkowita oznaczająca dzień miesiąca od 1 do 31.' }, + }, + }, + DATEDIF: { + description: 'Oblicza liczbę dni, miesięcy lub lat między dwiema datami.', + abstract: 'Oblicza liczbę dni, miesięcy lub lat między dwiema datami.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data reprezentująca pierwszą lub początkową datę danego okresu. Daty mogą być wprowadzane jako ciąg tekstowy w cudzysłowie (na przykład "2001-1-30"), jako numery kolejne (na przykład wartość 36921 reprezentuje datę 30 stycznia 2001, jeśli używasz systemu daty 1900) lub jako wynik innych formuł bądź funkcji (na przykład DATA.WARTOŚĆ("2001-1-30")).' }, + endDate: { name: 'end_date', detail: '— data reprezentująca ostatnią lub końcową datę okresu.' }, + unit: { name: 'Jednostka', detail: 'Typ informacji, które mają zostać zwrócone, gdzie: Jednostka****Zwraca " Y "Liczba pełnych lat w okresie". M "Liczba pełnych miesięcy w okresie". D "Liczba dni w okresie". MD "Różnica między dniami w start_date a end_date. Miesiące i lata dat są ignorowane. Ważne: Nie zalecamy używania argumentu "MD", ponieważ istnieją znane ograniczenia. Zobacz sekcję znanych problemów poniżej". YM "Różnica między miesiącami w start_date a end_date. Dni i lata dat są ignorowane" YD "Różnica między dniami start_date a end_date. Lata dat są ignorowane.' }, + }, + }, + DATEVALUE: { + description: 'Funkcja DATA.WARTOŚĆ konwertuje datę zapisaną jako tekst na liczbę kolejną rozpoznawaną przez program Excel jako data. Na przykład formuła =DATA.WARTOŚĆ("1 sty 2008") zwraca wartość 39448, czyli liczbę kolejną oznaczającą datę 1 stycznia 2008 r. Jednak wyniki funkcji DATA.WARTOŚĆ w konkretnym systemie mogą być inne niż w tym przykładzie ze względu na ustawienie daty używane w systemie komputera.', + abstract: 'Funkcja DATA.WARTOŚĆ konwertuje datę zapisaną jako tekst na liczbę kolejną rozpoznawaną przez program Excel jako data. Na przykład formuła =DATA.WARTOŚĆ("1 sty 2008") zwraca wartość 39448, czyli liczbę kolejną oznaczającą datę 1 stycznia 2008 r. Jednak wyniki funkcji DATA.WARTOŚĆ w konkretnym systemie mogą być inne niż w tym przykładzie ze względu na ustawienie daty używane w systemie komputera.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Wymagane. Tekst reprezentujący datę w formacie daty programu Excel lub odwołanie do komórki zawierającej tekst określający datę w formacie daty programu Excel. Na przykład "2008-01-30" i "30 sty 2008" są ciągami tekstowymi w cudzysłowach reprezentującymi daty. W domyślnym systemie daty w programie Microsoft Excel dla systemu Windows argument date_text musi odzwierciedlać datę między 1 stycznia 1900 a 31 grudnia 9999. Funkcja DATA.WARTOŚĆ zwraca #VALUE! jeśli wartość argumentu date_text jest spoza tego zakresu. Jeśli część roku argumentu date_text zostanie pominięta, funkcja DATA.WARTOŚĆ użyje bieżącego roku z wbudowanego zegara komputera. Informacje o godzinie w argurze date_text są ignorowane.' }, + }, + }, + DAY: { + description: 'Zwraca dzień daty reprezentowanej przez argument liczba_kolejna. Dzień jest wyświetlany jako liczba całkowita z zakresu od 1 do 31.', + abstract: 'Zwraca dzień daty reprezentowanej przez argument liczba_kolejna. Dzień jest wyświetlany jako liczba całkowita z zakresu od 1 do 31.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Data poszukiwanego dnia. Daty powinny być wprowadzane przy użyciu funkcji DATA lub jako wynik innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst , mogą wystąpić problemy.' }, + }, + }, + DAYS: { + description: 'Zwraca liczbę dni między dwiema datami.', + abstract: 'Zwraca liczbę dni między dwiema datami.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Wymagane. Data_początkowa i data_końcowa to dwie daty, między którymi ma zostać ustalona liczba dni.' }, + startDate: { name: 'start_date', detail: 'Wymagane. Data_początkowa i data_końcowa to dwie daty, między którymi ma zostać ustalona liczba dni.' }, + }, + }, + DAYS360: { + description: 'Funkcja DNI.360 zwraca liczbę dni między dwiema datami na podstawie roku 360-dniowego (dwanaście 30-dniowych miesięcy), który jest używany w pewnych obliczeniach księgowych. Ta funkcja ułatwia obliczanie płatności, jeśli system księgowania jest oparty na dwunastu 30-dniowych miesiącach.', + abstract: 'Funkcja DNI.360 zwraca liczbę dni między dwiema datami na podstawie roku 360-dniowego (dwanaście 30-dniowych miesięcy), który jest używany w pewnych obliczeniach księgowych. Ta funkcja ułatwia obliczanie płatności, jeśli system księgowania jest oparty na dwunastu 30-dniowych miesiącach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'start_date i end_date to dwie daty, między którymi chcesz poznać liczbę dni.' }, + endDate: { name: 'end_date', detail: 'start_date i end_date to dwie daty, między którymi chcesz poznać liczbę dni.' }, + method: { name: 'method', detail: 'Wartość logiczna określająca, czy w obliczeniu ma zostać użyta metoda amerykańska czy europejska.' }, + }, + }, + EDATE: { + description: 'Zwraca liczbę kolejną, odpowiadającą dacie przypadającej określoną liczbę miesięcy przed lub po wskazanej dacie (data_początkowa). Funkcja NR.SER.DATY umożliwia obliczanie dat spłaty lub dat należnej płatności, przypadających na ten sam dzień miesiąca, co data emisji.', + abstract: 'Zwraca liczbę kolejną, odpowiadającą dacie przypadającej określoną liczbę miesięcy przed lub po wskazanej dacie (data_początkowa). Funkcja NR.SER.DATY umożliwia obliczanie dat spłaty lub dat należnej płatności, przypadających na ten sam dzień miesiąca, co data emisji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Wymagane. Data reprezentująca datę początkową. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst , mogą wystąpić problemy.' }, + months: { name: 'months', detail: 'Wymagane. Liczba miesięcy przed datą określoną argumentem data_początkowa lub po tej dacie. Dodatnia wartość argumentu „miesiące” oznacza datę przyszłą, ujemna oznacza datę przeszłą.' }, + }, + }, + EOMONTH: { + description: 'Zwraca liczbę kolejną daty ostatniego dnia miesiąca, następującego określoną liczbę miesięcy przed lub po dacie określonej argumentem data_początkowa. Funkcja NR.SER.OST.DN.MIES umożliwia obliczanie dat spłaty lub dat należnej płatności, wypadających ostatniego dnia miesiąca.', + abstract: 'Zwraca liczbę kolejną daty ostatniego dnia miesiąca, następującego określoną liczbę miesięcy przed lub po dacie określonej argumentem data_początkowa. Funkcja NR.SER.OST.DN.MIES umożliwia obliczanie dat spłaty lub dat należnej płatności, wypadających ostatniego dnia miesiąca.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Wymagane. Data reprezentująca datę początkową. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst , mogą wystąpić problemy.' }, + months: { name: 'months', detail: 'Wymagane. Liczba miesięcy przed datą określoną argumentem data_początkowa lub po tej dacie. Dodatnia wartość argumentu „miesiące” oznacza datę przyszłą, ujemna oznacza datę przeszłą. Uwaga Jeśli argument miesiące nie jest liczbą całkowitą, jego wartość zostanie obcięta do liczby całkowitej.' }, + }, + }, + EPOCHTODATE: { + description: 'Konwertuje znacznik czasu epoki Unix w sekundach, milisekundach lub mikrosekundach na datę i godzinę w uniwersalnym czasie koordynowanym (UTC).', + abstract: 'Konwertuje znacznik czasu epoki Unix w sekundach, milisekundach lub mikrosekundach na datę i godzinę w uniwersalnym czasie koordynowanym (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=pl', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'Znacznik czasu epoki Unix w sekundach, milisekundach lub mikrosekundach.' }, + unit: { name: 'unit', detail: '[OPCJONALNE — domyślnie 1]: Jednostka czasu, w której wyrażono znacznik czasu.' }, + }, + }, + HOUR: { + description: 'Zwraca godzinę wartości czasu. Godzina jest podawana jako liczba całkowita z zakresu od 0 (północ) do 23 (11:00 wieczór).', + abstract: 'Zwraca godzinę wartości czasu. Godzina jest podawana jako liczba całkowita z zakresu od 0 (północ) do 23 (11:00 wieczór).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Czas zawierający godzinę, którą należy znaleźć. Czas może być wprowadzany jako ciąg tekstowy w cudzysłowie (na przykład "18:45"), jako liczba w systemie dziesiętnym (na przykład jako wartość 0,78125 reprezentująca godzinę 18:45) lub jako wynik innych formuł lub funkcji (na przykład CZAS.WARTOŚĆ("6:45 PM")).' }, + }, + }, + ISOWEEKNUM: { + description: 'Zwraca numer tygodnia ISO w roku dla określonej daty.', + abstract: 'Zwraca numer tygodnia ISO w roku dla określonej daty.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Wymagane. Data to kod daty i godziny używany przez program Excel do obliczania daty i godziny.' }, + }, + }, + MINUTE: { + description: 'Zwraca minuty jako wartość czasu. Minuta jest podawana jako liczba całkowita z zakresu od 0 do 59.', + abstract: 'Zwraca minuty jako wartość czasu. Minuta jest podawana jako liczba całkowita z zakresu od 0 do 59.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Czas zawierający minutę, którą należy znaleźć. Czas można wprowadzić jako ciąg tekstowy w cudzysłowie, na przykład "6:45 PM", jako liczbę w systemie dziesiętnym, na przykład jako wartość 0,78125 reprezentującą czas 6:45 PM, lub jako wynik innych formuł lub funkcji, na przykład CZAS.WARTOŚĆ("6:45 PM").' }, + }, + }, + MONTH: { + description: 'Zwraca miesiąc daty reprezentowanej przez kolejną liczbę. Miesiąc jest podawany w postaci liczby całkowitej z zakresu od 1 (styczeń) to 12 (grudzień).', + abstract: 'Zwraca miesiąc daty reprezentowanej przez kolejną liczbę. Miesiąc jest podawany w postaci liczby całkowitej z zakresu od 1 (styczeń) to 12 (grudzień).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Data poszukiwanego miesiąca. Daty powinny być wprowadzane przy użyciu funkcji DATA lub jako wynik innych formuł bądź funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst , mogą wystąpić problemy.' }, + }, + }, + NETWORKDAYS: { + description: 'Zwraca liczbę pełnych dni roboczych pomiędzy data_początkowa i data_końcowa. Dni robocze nie zawierają dni końca tygodnia (weekendów) oraz dat oznaczonych jako święta. Funkcję DNI.ROBOCZE należy stosować do obliczania zarobków pracowników, wynikających z łącznej liczby dni przepracowanych w określonym czasie.', + abstract: 'Zwraca liczbę pełnych dni roboczych pomiędzy data_początkowa i data_końcowa. Dni robocze nie zawierają dni końca tygodnia (weekendów) oraz dat oznaczonych jako święta. Funkcję DNI.ROBOCZE należy stosować do obliczania zarobków pracowników, wynikających z łącznej liczby dni przepracowanych w określonym czasie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Wymagane. Data reprezentująca datę początkową.' }, + endDate: { name: 'end_date', detail: 'Wymagane. Data reprezentująca datę końcową.' }, + holidays: { name: 'holidays', detail: 'Opcjonalne. Opcjonalny zakres jednej lub kilku dat, takich jak święta państwowe i kościelne oraz święta ruchome, które są wykluczane z kalendarza dni roboczych. Lista może być zarówno zakresem komórek, które zawierają daty, jak i stałą tablicową zawierającą liczby kolejne reprezentujące daty.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Zwraca liczbę dni roboczych między dwiema datami zgodnie z parametrami określającymi dni stanowiące dni weekendowe oraz liczbę dni weekendowych. Dni weekendowe i dni określone jako święta nie są uznawane za dni robocze.', + abstract: 'Zwraca liczbę dni roboczych między dwiema datami zgodnie z parametrami określającymi dni stanowiące dni weekendowe oraz liczbę dni weekendowych. Dni weekendowe i dni określone jako święta nie są uznawane za dni robocze.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data reprezentująca datę początkową.' }, + endDate: { name: 'end_date', detail: 'Data reprezentująca datę końcową.' }, + weekend: { name: 'weekend', detail: 'Numer weekendu lub ciąg tekstowy określający, kiedy przypadają weekendy.' }, + holidays: { name: 'holidays', detail: 'Opcjonalny zakres jednej lub kilku dat wykluczanych z kalendarza pracy, takich jak święta państwowe, federalne i ruchome.' }, + }, + }, + NOW: { + description: 'Zwraca liczbę kolejną bieżącej daty i godziny. Jeśli przed wprowadzeniem formuły był używany format komórek Ogólne , program Excel zmieni format komórek na format daty i godziny określony w ustawieniach regionalnych. Format daty i godziny dla komórki można zmienić za pomocą poleceń z grupy Liczba karty Narzędzia główne na Wstążce.', + abstract: 'Zwraca liczbę kolejną bieżącej daty i godziny. Jeśli przed wprowadzeniem formuły był używany format komórek Ogólne , program Excel zmieni format komórek na format daty i godziny określony w ustawieniach regionalnych. Format daty i godziny dla komórki można zmienić za pomocą poleceń z grupy Liczba karty Narzędzia główne na Wstążce.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Zwraca sekundy wartości czasu. Sekunda jest podawana jako liczba całkowita z zakresu od 0 do 59.', + abstract: 'Zwraca sekundy wartości czasu. Sekunda jest podawana jako liczba całkowita z zakresu od 0 do 59.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Czas zawierający szukane sekundy. Czas może być wprowadzany jako ciąg tekstowy w cudzysłowie (na przykład "18:45"), jako liczba dziesiętna (na przykład 0,78125, co reprezentuje czas 18:45) lub jako wynik innych formuł lub funkcji (na przykład CZAS.WARTOŚĆ("18:45")).' }, + }, + }, + TIME: { + description: 'Zwraca określony czas jako liczbę dziesiętną. Jeśli komórka miała format Ogólny przed wprowadzeniem funkcji, to wynik zostanie sformatowany jako data.', + abstract: 'Zwraca określony czas jako liczbę dziesiętną. Jeśli komórka miała format Ogólny przed wprowadzeniem funkcji, to wynik zostanie sformatowany jako data.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Wymagane. Liczba z zakresu od 0 (zero) do 32767 reprezentująca godzinę. Każda wartość większa niż 23 zostanie podzielona przez 24, a reszta będzie traktowana jako wartość godziny. Na przykład funkcja CZAS(27;0;0) = CZAS(3;0;0) = 0,125 czyli 3:00.' }, + minute: { name: 'minute', detail: 'Wymagane. Liczba z zakresu od 0 do 32767 reprezentująca minuty. Każda wartość większa niż 59 zostanie przekonwertowana na godziny i minuty. Na przykład funkcja CZAS(0;750;0) = CZAS(12;30;0) = 0,520833 czyli 12:30.' }, + second: { name: 'second', detail: 'Wymagane. Liczba z zakresu od 0 do 32767 reprezentująca sekundy. Każda wartość większa niż 59 zostanie przekonwertowana na godziny, minuty i sekundy. Na przykład funkcja CZAS(0;0;2000) = CZAS(0;33;22) = 0,023148 czyli 0:33:20' }, + }, + }, + TIMEVALUE: { + description: 'Zwraca liczbę dziesiętną czasu reprezentowanego przez ciąg tekstowy. Liczba dziesiętna to wartość z zakresu od 0 do 0,99988426, reprezentująca czas od 0:00:00 (12:00:00 AM) do 23:59:59 (11:59:59 PM).', + abstract: 'Zwraca liczbę dziesiętną czasu reprezentowanego przez ciąg tekstowy. Liczba dziesiętna to wartość z zakresu od 0 do 0,99988426, reprezentująca czas od 0:00:00 (12:00:00 AM) do 23:59:59 (11:59:59 PM).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Wymagane. Ciąg tekstowy, który reprezentuje czas w jednym z formatów używanych przez program Microsoft Excel, na przykład ciągi tekstowe "6:45 PM" i "18:45", umieszczone między znakami cudzysłowu, reprezentują czas.' }, + }, + }, + TO_DATE: { + description: 'Konwertuje podaną liczbę na datę.', + abstract: 'Konwertuje podaną liczbę na datę.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=pl', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument lub odwołanie do komórki, które ma zostać przekonwertowane na datę. Jeśli value jest liczbą lub odwołaniem do komórki zawierającej wartość liczbową, TO_DATE zwraca value jako datę, interpretując ją jako liczbę dni od 30 grudnia 1899 r. Wartości ujemne oznaczają dni przed tą datą, a wartości ułamkowe — porę dnia po północy. Jeśli value nie jest liczbą ani odwołaniem do komórki z wartością liczbową, TO_DATE zwraca value bez zmian.' }, + }, + }, + TODAY: { + description: 'Funkcja DZIŚ zwraca liczbę kolejną bieżącej daty. Liczba kolejna to kod daty-czasu używany przez program Microsoft Excel do obliczeń daty i czasu. Jeśli komórka miała format Ogólny przed wprowadzeniem tej funkcji, wynik jest formatowany jako Data . Jeśli ma być wyświetlana liczba kolejna, należy zmienić format komórki na Ogólny lub Liczba .', + abstract: 'Funkcja DZIŚ zwraca liczbę kolejną bieżącej daty. Liczba kolejna to kod daty-czasu używany przez program Microsoft Excel do obliczeń daty i czasu. Jeśli komórka miała format Ogólny przed wprowadzeniem tej funkcji, wynik jest formatowany jako Data . Jeśli ma być wyświetlana liczba kolejna, należy zmienić format komórki na Ogólny lub Liczba .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Zwraca dzień tygodnia odpowiadający dacie. Dzień jest wyrażony jako liczba całkowita z przedziału od 1 (niedziela) do 7 (sobota).', + abstract: 'Zwraca dzień tygodnia odpowiadający dacie. Dzień jest wyrażony jako liczba całkowita z przedziału od 1 (niedziela) do 7 (sobota).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Liczba kolejna reprezentująca datę poszukiwanego dnia. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst, mogą wystąpić problemy.' }, + returnType: { name: 'return_type', detail: 'Opcjonalne. Liczba, która określa typ zwracanej wartości.' }, + }, + }, + WEEKNUM: { + description: 'Zwraca numer tygodnia określonej daty. Na przykład tydzień zawierający 1 stycznia jest pierwszym tygodniem roku i otrzymuje numer 1.', + abstract: 'Zwraca numer tygodnia określonej daty. Na przykład tydzień zawierający 1 stycznia jest pierwszym tygodniem roku i otrzymuje numer 1.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Data określająca dzień tygodnia. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst, mogą wystąpić problemy.' }, + returnType: { name: 'return_type', detail: 'Opcjonalne. Liczba wyznaczająca dzień, od którego zaczyna się tydzień. Wartością domyślną jest 1.' }, + }, + }, + WORKDAY: { + description: 'Zwraca liczbę reprezentującą datę, którą wyznacza się poprzez odliczenie od pewnej daty początkowej określonej liczby dni roboczych w przód lub w tył. Dni robocze to wszystkie dni oprócz sobót, niedziel i świąt. Funkcja DZIEŃ.ROBOCZY jest przydatna, jeśli obliczając daty faktur, oczekiwanych dostaw i liczby przepracowanych dni, należy wykluczyć dni weekendowe i święta.', + abstract: 'Zwraca liczbę reprezentującą datę, którą wyznacza się poprzez odliczenie od pewnej daty początkowej określonej liczby dni roboczych w przód lub w tył. Dni robocze to wszystkie dni oprócz sobót, niedziel i świąt. Funkcja DZIEŃ.ROBOCZY jest przydatna, jeśli obliczając daty faktur, oczekiwanych dostaw i liczby przepracowanych dni, należy wykluczyć dni weekendowe i święta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Wymagane. Data reprezentująca datę początkową.' }, + days: { name: 'days', detail: 'Wymagane. Liczba dni niebędących sobotą, niedzielą ani świętem poprzedzających datę początkową lub następujących po niej. Wartość dodatnia oznacza datę przyszłą, a wartość ujemna — przeszłą.' }, + holidays: { name: 'holidays', detail: 'Opcjonalne. Opcjonalna lista dat, które mają być wykluczone z kalendarza roboczego, na przykład świąt państwowych lub dni urlopowych. Lista może być określana albo przez zakres komórek zawierających daty, albo przez stałą tablicową zawierającą liczby kolejne reprezentujące daty.' }, + }, + }, + WORKDAY_INTL: { + description: 'Ta funkcja zwraca liczbę kolejną daty przed określoną liczbą dni roboczych lub po tej liczbie z niestandardowymi parametrami weekendowymi. Opcjonalne parametry weekendowe mogą wskazywać dni weekendowe oraz liczbę dni weekendowych. Należy pamiętać, że dni weekendowe i dni określone jako święta nie są traktowane jako dni robocze.', + abstract: 'Ta funkcja zwraca liczbę kolejną daty przed określoną liczbą dni roboczych lub po tej liczbie z niestandardowymi parametrami weekendowymi. Opcjonalne parametry weekendowe mogą wskazywać dni weekendowe oraz liczbę dni weekendowych. Należy pamiętać, że dni weekendowe i dni określone jako święta nie są traktowane jako dni robocze.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Wymagane. Data początkowa zaokrąglona do liczby całkowitej.' }, + days: { name: 'days', detail: 'Wymagane. Liczba dni roboczych przed datą data_początkowa lub po niej. Wartość dodatnia daje datę przyszłą; wartość ujemna oznacza datę przeszłą; wartość zerowa daje już określoną start_date. Przesunięcie dnia jest obcinane do liczby całkowitej.' }, + weekend: { name: 'weekend', detail: 'Opcjonalne. Jeśli jest używana, oznacza to dni tygodnia będące dniami weekendowymi, które nie są traktowane jako dni robocze. Argument "weekend" jest liczbą lub ciągiem określającym, kiedy przypadają weekendy. Wartości liczbowe w weekendy oznaczają dni weekendowe, jak pokazano poniżej.' }, + holidays: { name: 'holidays', detail: 'Jest to argument opcjonalny na końcu składni. Określa opcjonalny zestaw dat, które mają zostać wykluczone z kalendarza dnia roboczego. Święta powinny być zakresem komórek zawierającym daty lub stałą tablicową wartości kolejnych reprezentujących te daty. Kolejność dat lub wartości kolejnych świąt może być dowolna.' }, + }, + }, + YEAR: { + description: 'Zwraca rok odpowiadający dacie. Rok ten jest zwracany jako liczba całkowita z przedziału od 1900 do 9999.', + abstract: 'Zwraca rok odpowiadający dacie. Rok ten jest zwracany jako liczba całkowita z przedziału od 1900 do 9999.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Wymagane. Data poszukiwanego roku. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2025 należy użyć funkcji DATA(2025;5;23). Jeśli daty są wprowadzane jako tekst, mogą wystąpić problemy.' }, + }, + }, + YEARFRAC: { + description: 'CZĘŚĆ.ROKU oblicza część roku przedstawioną jako liczba całych dni między dwoma datami (reprezentowanymi przez argumenty data_początkowa i data_końcowa ). Na przykład funkcji CZĘŚĆ.ROKU możesz użyć do identyfikacji proporcji zysków całorocznych lub obligacji do przypisania wybranym terminom.', + abstract: 'CZĘŚĆ.ROKU oblicza część roku przedstawioną jako liczba całych dni między dwoma datami (reprezentowanymi przez argumenty data_początkowa i data_końcowa ). Na przykład funkcji CZĘŚĆ.ROKU możesz użyć do identyfikacji proporcji zysków całorocznych lub obligacji do przypisania wybranym terminom.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Data reprezentująca datę początkową.' }, + endDate: { name: 'end_date', detail: 'Data reprezentująca datę końcową.' }, + basis: { name: 'basis', detail: 'Typ podstawy naliczania dni, który ma zostać użyty.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/date/pt-BR.ts new file mode 100644 index 0000000000..e3abce144b --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/date/pt-BR.ts @@ -0,0 +1,397 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + DATE: { + description: 'A função DATA retorna o número de série sequencial que representa uma determinada data.', + abstract: 'A função DATA retorna o número de série sequencial que representa uma determinada data.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/date-function', + }, + ], + functionParameter: { + year: { name: 'year', detail: 'O valor do argumento ano pode conter de um a quatro dígitos. O Excel interpreta-o de acordo com o sistema de datas usado pelo computador; por padrão, o Univer usa o sistema de datas de 1900.' }, + month: { name: 'month', detail: 'Um inteiro positivo ou negativo que representa o mês do ano, de 1 a 12 (janeiro a dezembro).' }, + day: { name: 'day', detail: 'Um inteiro positivo ou negativo que representa o dia do mês, de 1 a 31.' }, + }, + }, + DATEDIF: { + description: 'Calcula o número de dias, meses ou anos entre duas datas.', + abstract: 'Calcula o número de dias, meses ou anos entre duas datas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/datedif-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Uma data que representa a primeira ou a data de início de um determinado período. As datas podem ser inseridas como cadeias de texto entre aspas (por exemplo, "30/1/2001"), como números de série (por exemplo, 36921, que representa 30 de janeiro de 2001, se você estiver usando o sistema de data 1900) ou como resultado de outras fórmulas ou funções (por exemplo, DATA.VALOR("30/1/2001")).' }, + endDate: { name: 'end_date', detail: 'Uma data que representa a última data, ou final, do período.' }, + unit: { name: 'Unidade', detail: 'O tipo de informação que pretende que sejam devolvidas, em que: Unidade****Devolve " Y "O número de anos completos no período.". M "O número de meses completos no período." D "O número de dias no período." MD : a diferença entre os dias em start_date e end_date. Os meses e os anos das datas são ignorados. Importante: Não recomendamos a utilização do argumento "MD", uma vez que existem limitações conhecidas com o mesmo. Veja a secção de problemas conhecidos abaixo." YM "A diferença entre os meses em start_date e end_date. Os dias e anos das datas são ignorados" YD "A diferença entre os dias de start_date e end_date. Os anos das datas são ignorados.' }, + }, + }, + DATEVALUE: { + description: 'A função DATA.VALOR converte uma data armazenada como texto em um número de série que o Excel reconhece como data. Por exemplo, a fórmula =DATA.VALOR("1/1/2008") retorna 39448, o número de série da data 1/1/2008. Lembre-se, no entanto,de que a configuração de sistema de data de seu computador pode fazer com que os resultados da função DATA.VALOR difiram deste exemplo.', + abstract: 'A função DATA.VALOR converte uma data armazenada como texto em um número de série que o Excel reconhece como data. Por exemplo, a fórmula =DATA.VALOR("1/1/2008") retorna 39448, o número de série da data 1/1/2008. Lembre-se, no entanto,de que a configuração de sistema de data de seu computador pode fazer com que os resultados da função DATA.VALOR difiram deste exemplo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/datevalue-function', + }, + ], + functionParameter: { + dateText: { name: 'date_text', detail: 'Obrigatório. Texto que representa uma data em um formato de data do Excel ou uma referência a uma célula que contém texto representando uma data em um formato de data do Excel. Por exemplo "1/30/2008" ou "30-Jan-2008" são cadeias de texto entre aspas que representam datas. Utilizando o sistema de datas predefinido no Microsoft Excel para Windows, o argumento date_text tem de representar uma data entre 1 de janeiro de 1900 e 31 de dezembro de 9999. A função DATA.VALOR retornará o valor de erro #VALOR! se o valor do argumento date_text estiver fora deste intervalo. Se a parte do ano do argumento date_text for omitida, a função DATA.VALOR utiliza o ano atual do relógio incorporado do computador. As informações de tempo no argumento date_text são ignoradas.' }, + }, + }, + DAY: { + description: 'Retorna o dia de uma data representado por um número de série. O dia é dado como um inteiro que varia de 1 a 31.', + abstract: 'Retorna o dia de uma data representado por um número de série. O dia é dado como um inteiro que varia de 1 a 31.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/day-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. A data do dia que você está tentando encontrar. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto .' }, + }, + }, + DAYS: { + description: 'Retorna o número de dias entre duas datas', + abstract: 'Retorna o número de dias entre duas datas', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/days-function', + }, + ], + functionParameter: { + endDate: { name: 'end_date', detail: 'Necessário. Data_inicial e Data_final são as duas datas entre as quais você deseja saber o número de dias.' }, + startDate: { name: 'start_date', detail: 'Necessário. Data_inicial e Data_final são as duas datas entre as quais você deseja saber o número de dias.' }, + }, + }, + DAYS360: { + description: 'A função DIAS360 retorna o número de dias entre duas datas com base em um ano de 360 dias (doze meses de 30 dias). Use essa função para ajudar no cálculo de pagamentos, se o seu sistema contábil estiver baseado em doze meses de 30 dias.', + abstract: 'A função DIAS360 retorna o número de dias entre duas datas com base em um ano de 360 dias (doze meses de 30 dias). Use essa função para ajudar no cálculo de pagamentos, se o seu sistema contábil estiver baseado em doze meses de 30 dias.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/days360-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'As duas datas entre as quais você deseja saber o número de dias.' }, + endDate: { name: 'end_date', detail: 'As duas datas entre as quais você deseja saber o número de dias.' }, + method: { name: 'method', detail: 'Um valor lógico que especifica se o cálculo deve usar o método dos EUA ou o europeu.' }, + }, + }, + EDATE: { + description: 'Retorna um número de série de data que é o número de meses indicado antes ou depois de data_inicial. Use DATAM para calcular datas de liquidação ou datas de vencimento que caem no mesmo dia do mês da data de emissão.', + abstract: 'Retorna um número de série de data que é o número de meses indicado antes ou depois de data_inicial. Use DATAM para calcular datas de liquidação ou datas de vencimento que caem no mesmo dia do mês da data de emissão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/edate-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Necessário. Uma data que representa a data inicial. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto .' }, + months: { name: 'months', detail: 'Necessário. O número de meses antes ou depois de data_inicial. Um valor positivo para meses gera uma data futura; um valor negativo gera uma data passada.' }, + }, + }, + EOMONTH: { + description: 'Retorna o número de série para o último dia do mês que é o número indicado de meses antes ou depois de data_inicial. Use FIMMÊS para calcular as datas de vencimento que caem no último dia do mês.', + abstract: 'Retorna o número de série para o último dia do mês que é o número indicado de meses antes ou depois de data_inicial. Use FIMMÊS para calcular as datas de vencimento que caem no último dia do mês.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/eomonth-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Necessário. Uma data que representa a data inicial. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto .' }, + months: { name: 'months', detail: 'Necessário. O número de meses antes ou depois de data_inicial. Um valor positivo para meses gera uma data futura; um valor negativo gera uma data passada. Observação Se meses não for um número inteiro, será truncado.' }, + }, + }, + EPOCHTODATE: { + description: 'Converte um carimbo de data e hora da época Unix em segundos, milissegundos ou microssegundos em uma data e hora no Tempo Universal Coordenado (UTC).', + abstract: 'Converte um carimbo de data e hora da época Unix em segundos, milissegundos ou microssegundos em uma data e hora no Tempo Universal Coordenado (UTC).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/13193461?hl=pt-BR', + }, + ], + functionParameter: { + timestamp: { name: 'timestamp', detail: 'Um carimbo de data e hora da época Unix, em segundos, milissegundos ou microssegundos.' }, + unit: { name: 'unit', detail: '[OPCIONAL — 1 por padrão]: a unidade de tempo em que o carimbo de data e hora é expresso.' }, + }, + }, + HOUR: { + description: 'Retorna a hora de um valor de tempo. A hora é retornada como um inteiro, variando de 0 (12:00 A.M.) a 23 (11:00 P.M.).', + abstract: 'Retorna a hora de um valor de tempo. A hora é retornada como um inteiro, variando de 0 (12:00 A.M.) a 23 (11:00 P.M.).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hour-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Necessário. O horário que contém a hora que você deseja encontrar. Os horários podem ser inseridos como cadeias de texto entre aspas (por exemplo, "6:45 PM"), como números decimais (por exemplo, 0,78125, que representa 6:45 PM) ou como resultados de outras fórmulas ou funções (por exemplo, VALOR.TEMPO("6:45 PM")).' }, + }, + }, + ISOWEEKNUM: { + description: 'Retorna o número da semana ISO do ano para uma determinada data.', + abstract: 'Retorna o número da semana ISO do ano para uma determinada data.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/isoweeknum-function', + }, + ], + functionParameter: { + date: { name: 'date', detail: 'Obrigatório. A data é o código de data-hora usado pelo Excel para cálculos de data e hora.' }, + }, + }, + MINUTE: { + description: 'Retorna os minutos de um valor de tempo. O minuto é dado como um número inteiro, que vai de 0 a 59.', + abstract: 'Retorna os minutos de um valor de tempo. O minuto é dado como um número inteiro, que vai de 0 a 59.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/minute-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. O horário que contém o minuto que você deseja encontrar. Os horários podem ser inseridos como cadeias de texto entre aspas (por exemplo, "6:45 PM"), como números decimais (por exemplo, 0,78125, que representa 6:45 PM) ou como resultados de outras fórmulas ou funções (por exemplo, VALOR.TEMPO("6:45 PM")).' }, + }, + }, + MONTH: { + description: 'Retorna o mês de uma data representado por um número de série. O mês é fornecido como um inteiro, variando de 1 (janeiro) a 12 (dezembro).', + abstract: 'Retorna o mês de uma data representado por um número de série. O mês é fornecido como um inteiro, variando de 1 (janeiro) a 12 (dezembro).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/month-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. A data do mês que você está tentando encontrar. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto .' }, + }, + }, + NETWORKDAYS: { + description: 'Retorna o número de dias úteis inteiros entre data_inicial e data_final. Os dias úteis excluem os fins de semana e quaisquer datas identificadas em feriados. Use DIATRABALHOTOTAL para calcular os benefícios aos empregados que recebem com base no número de dias trabalhados durante um período específico.', + abstract: 'Retorna o número de dias úteis inteiros entre data_inicial e data_final. Os dias úteis excluem os fins de semana e quaisquer datas identificadas em feriados. Use DIATRABALHOTOTAL para calcular os benefícios aos empregados que recebem com base no número de dias trabalhados durante um período específico.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/networkdays-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obrigatório. Uma data que representa a data inicial.' }, + endDate: { name: 'end_date', detail: 'Obrigatório. A data que representa a data final.' }, + holidays: { name: 'holidays', detail: 'Opcional. Um intervalo opcional de uma ou mais datas a serem excluídas do calendário de dias de trabalho, como feriados estaduais e federais, e feriados móveis. A lista pode ser um intervalo de células que contém as datas ou uma constante de matriz dos números de série que representam as datas.' }, + }, + }, + NETWORKDAYS_INTL: { + description: 'Retorna o número de dias úteis inteiros entre duas datas usando parâmetros para indicar quais e quantos dias são dias de fim de semana. Dias de fim de semana e quaisquer dias especificados como feriados não são considerados como dias úteis.', + abstract: 'Retorna o número de dias úteis inteiros entre duas datas usando parâmetros para indicar quais e quantos dias são dias de fim de semana. Dias de fim de semana e quaisquer dias especificados como feriados não são considerados como dias úteis.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/networkdays-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Uma data que representa a data inicial.' }, + endDate: { name: 'end_date', detail: 'Uma data que representa a data final.' }, + weekend: { name: 'weekend', detail: 'Um número ou texto que especifica quando ocorrem os fins de semana.' }, + holidays: { name: 'holidays', detail: 'Um intervalo opcional de uma ou mais datas a excluir do calendário de trabalho, como feriados nacionais, estaduais ou móveis.' }, + }, + }, + NOW: { + description: 'Retorna o número de série da data e da hora atual. Se o formato da célula era Geral antes de a função ter sido inserida, o Excel transformará o formato dessa célula para que ele corresponda ao mesmo formato de data e hora de suas configurações regionais. Você pode alterar o formato de data e hora da célula usando os comandos no grupo Número da guia Página Inicial , na Faixa de Opções.', + abstract: 'Retorna o número de série da data e da hora atual. Se o formato da célula era Geral antes de a função ter sido inserida, o Excel transformará o formato dessa célula para que ele corresponda ao mesmo formato de data e hora de suas configurações regionais. Você pode alterar o formato de data e hora da célula usando os comandos no grupo Número da guia Página Inicial , na Faixa de Opções.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/now-function', + }, + ], + functionParameter: { + }, + }, + SECOND: { + description: 'Retorna os segundos de um valor de hora. O segundo é fornecido como um inteiro no intervalo de 0 (zero) a 59.', + abstract: 'Retorna os segundos de um valor de hora. O segundo é fornecido como um inteiro no intervalo de 0 (zero) a 59.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. A hora que contém os segundos que você deseja localizar. Horas podem ser inseridas como cadeias de texto entre aspas duplas (por exemplo, "6:45 PM"), como números decimais (por exemplo, 0,78125, que representa 6:45 PM) ou como resultado de outras fórmulas e funções (por exemplo, VALOR.TEMPO("6:45 PM")).' }, + }, + }, + TIME: { + description: 'Retorna o número decimal para uma determinada hora. Se o formato da célula era Geral antes de a função ser inserida, o resultado será formatado como uma data.', + abstract: 'Retorna o número decimal para uma determinada hora. Se o formato da célula era Geral antes de a função ser inserida, o resultado será formatado como uma data.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/time-function', + }, + ], + functionParameter: { + hour: { name: 'hour', detail: 'Necessário. Um número de 0 (zero) a 32767 que representa a hora. Qualquer valor maior que 23 será dividido por 24 e o restante será tratado como o valor de hora. Por exemplo, TEMPO(27;0;0) = TEMPO(3;0;0) = ,125 ou 3:00 AM.' }, + minute: { name: 'minute', detail: 'Necessário. Um número de 0 a 32767 que representa o minuto. Qualquer valor maior que 59 será convertido em horas e minutos. Por exemplo, TEMPO(0;750;0) = TEMPO(12;30;0) = ,520833 ou 12:30 PM.' }, + second: { name: 'second', detail: 'Necessário. Um número de 0 a 32767 que representa o segundo. Qualquer valor maior que 59 será convertido em horas e minutos. Por exemplo, TEMPO(0;0;2000) = TEMPO(0;33;22) = ,023148 ou 12:33:20 AM' }, + }, + }, + TIMEVALUE: { + description: 'Retorna o número decimal da hora representada por uma cadeia de texto. O número decimal é um valor que varia de 0 (zero) a 0,99988426 e que representa as horas entre 0:00:00 (12:00:00 AM) e 23:59:59 (11:59:59 PM).', + abstract: 'Retorna o número decimal da hora representada por uma cadeia de texto. O número decimal é um valor que varia de 0 (zero) a 0,99988426 e que representa as horas entre 0:00:00 (12:00:00 AM) e 23:59:59 (11:59:59 PM).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/timevalue-function', + }, + ], + functionParameter: { + timeText: { name: 'time_text', detail: 'Obrigatório. Uma cadeia de texto que representa uma hora em qualquer um dos formatos de hora do Microsoft Excel, por exemplo, as cadeias de texto entre aspas "6:45 PM" e "18:45" representam hora.' }, + }, + }, + TO_DATE: { + description: 'Converte um número fornecido em uma data.', + abstract: 'Converte um número fornecido em uma data.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3094239?hl=pt-BR', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O argumento ou referência de célula a converter em data. Se for um número, será interpretado como a quantidade de dias desde 30 de dezembro de 1899; valores negativos são dias anteriores e valores fracionários representam a hora após a meia-noite. Valores não numéricos são retornados sem alteração.' }, + }, + }, + TODAY: { + description: 'A função HOJE devolve o número de série da data atual. O número de série é o código de data/hora usado pelo Excel para cálculos de data e hora. Se o formato da célula era Geral antes de a função ser inserida, o Excel irá transformar o formato da célula em Data . Se quiser exibir o número de série, será necessário alterar o formato das células para Geral ou Número .', + abstract: 'A função HOJE devolve o número de série da data atual. O número de série é o código de data/hora usado pelo Excel para cálculos de data e hora. Se o formato da célula era Geral antes de a função ser inserida, o Excel irá transformar o formato da célula em Data . Se quiser exibir o número de série, será necessário alterar o formato das células para Geral ou Número .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/today-function', + }, + ], + functionParameter: { + }, + }, + WEEKDAY: { + description: 'Retorna o dia da semana correspondente a uma data. O dia é dado como um inteiro, variando de 1 (domingo) a 7 (sábado), por padrão.', + abstract: 'Retorna o dia da semana correspondente a uma data. O dia é dado como um inteiro, variando de 1 (domingo) a 7 (sábado), por padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/weekday-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. Um número sequencial que representa a data do dia que você está tentando encontrar. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto.' }, + returnType: { name: 'return_type', detail: 'Opcional. Um número que determina o tipo do valor retornado.' }, + }, + }, + WEEKNUM: { + description: 'Retorna o número da semana de uma data específica. Por exemplo, a semana que contém 1 de janeiro é a primeira semana do ano e é numerada semana 1.', + abstract: 'Retorna o número da semana de uma data específica. Por exemplo, a semana que contém 1 de janeiro é a primeira semana do ano e é numerada semana 1.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/weeknum-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Necessário. Uma data na semana. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto.' }, + returnType: { name: 'return_type', detail: 'Opcional. É um número que determina em que dia a semana começa. O valor padrão é 1.' }, + }, + }, + WORKDAY: { + description: 'Retorna um número que representa uma data que é o número indicado de dias úteis antes ou após uma data (a data inicial). Os dias úteis excluem fins de semana e quaisquer datas identificadas como feriados. Use DIATRABALHO para excluir os fins de semana ou feriados ao calcular as datas de vencimento de fatura, horas de entrega esperadas ou o número de dias de trabalho executado.', + abstract: 'Retorna um número que representa uma data que é o número indicado de dias úteis antes ou após uma data (a data inicial). Os dias úteis excluem fins de semana e quaisquer datas identificadas como feriados. Use DIATRABALHO para excluir os fins de semana ou feriados ao calcular as datas de vencimento de fatura, horas de entrega esperadas ou o número de dias de trabalho executado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/workday-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Obrigatório. Uma data que representa a data inicial.' }, + days: { name: 'days', detail: 'Obrigatório. O número de dias úteis antes ou depois de data_inicial. Um valor positivo para gera uma data futura; um valor negativo gera uma data passada.' }, + holidays: { name: 'holidays', detail: 'Opcional. Uma lista opcional com uma ou mais datas a serem excluídas do calendário de trabalho, como feriados estaduais, federais e flutuantes. A lista pode ser um intervalo de células que contém as datas ou uma constante de matriz dos números de série que representam as datas.' }, + }, + }, + WORKDAY_INTL: { + description: 'Essa função retorna o número de série da data antes ou depois de um número especificado de dias úteis com parâmetros personalizados de fim de semana. Parâmetros opcionais de fim de semana podem indicar quais e quantos dias são dias de fim de semana. Observe que os dias de fim de semana e todos os dias especificados como feriados não são considerados como dias úteis.', + abstract: 'Essa função retorna o número de série da data antes ou depois de um número especificado de dias úteis com parâmetros personalizados de fim de semana. Parâmetros opcionais de fim de semana podem indicar quais e quantos dias são dias de fim de semana. Observe que os dias de fim de semana e todos os dias especificados como feriados não são considerados como dias úteis.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/workday-intl-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Necessário. A data de início, truncada para que apareça como um número inteiro.' }, + days: { name: 'days', detail: 'Necessário. O número de dias úteis antes ou depois de data_inicial. Um valor positivo gera uma data futura; um valor negativo gera uma data passada; um valor zero gera o start_date já especificado . O deslocamento do dia é truncado para um inteiro.' }, + weekend: { name: 'weekend', detail: 'Opcional. Se usado, isso indica os dias da semana que são dias de fim de semana e não são considerados dias úteis. O argumento do fim de semana é um número ou cadeia de caracteres de fim de semana que especifica quando os fins de semana ocorrem. Os valores do número do fim de semana indicam dias de fim de semana, conforme mostrado abaixo.' }, + holidays: { name: 'holidays', detail: 'Esse é um argumento opcional no final da sintaxe. Ele especifica um conjunto opcional de uma ou mais datas que devem ser excluídas do calendário do dia útil. Feriados devem ser um intervalo de células que contêm as datas -- ou uma constante de matriz dos valores serial que representam essas datas. A ordem de datas ou valores consecutivos em feriados podem ser arbitrários.' }, + }, + }, + YEAR: { + description: 'Retorna o ano correspondente a uma data. O ano é retornado como um inteiro no intervalo de 1900-9999.', + abstract: 'Retorna o ano correspondente a uma data. O ano é retornado como um inteiro no intervalo de 1900-9999.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/year-function', + }, + ], + functionParameter: { + serialNumber: { name: 'serial_number', detail: 'Obrigatório. A data do ano que você deseja encontrar. As datas devem ser inseridas com a função DATA ou como resultados de outras fórmulas ou funções. Por exemplo, utilize DATA(2025;5;23) para o dia 23 de maio de 2025. Poderão ocorrer problemas se as datas forem inseridas como texto.' }, + }, + }, + YEARFRAC: { + description: 'FRAÇÃOANO calcula a fração do ano representada pelo número de dias inteiros entre duas datas (a data_inicial e a data_final ). Por exemplo, você pode usar o FRAÇÃOANO para identificar a proporção dos benefícios de um ano inteiro, ou obrigações a serem atribuídas a um termo específico.', + abstract: 'FRAÇÃOANO calcula a fração do ano representada pelo número de dias inteiros entre duas datas (a data_inicial e a data_final ). Por exemplo, você pode usar o FRAÇÃOANO para identificar a proporção dos benefícios de um ano inteiro, ou obrigações a serem atribuídas a um termo específico.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/yearfrac-function', + }, + ], + functionParameter: { + startDate: { name: 'start_date', detail: 'Uma data que representa a data inicial.' }, + endDate: { name: 'end_date', detail: 'Uma data que representa a data final.' }, + basis: { name: 'basis', detail: 'O tipo de base de contagem de dias a ser usado.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/date/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/date/ru-RU.ts index 1e8872c02c..ee084ea97e 100644 --- a/packages/sheets-formula/src/locale/function-list/date/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/date/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%B0%D1%82%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B0%D1%82%D0%B0-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/ru-ru/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%80%D0%B0%D0%B7%D0%BD%D0%B4%D0%B0%D1%82-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: 'начальная дата', detail: 'Дата, представляющая первую или начальную дату заданного периода.' }, + startDate: { name: 'начальная дата', detail: 'Дата, представляющая первую или начальную дату заданного периода. Даты можно вводить в виде текстовых строк в кавычках (например, "30.1.2001"), в виде порядковых номеров (например, 36921 представляет 30 января 2001 г., если используется система дат 1900) или как результаты вычисления других формул или функций (например ДАТАЗНАЧ("30.1.2001")).' }, endDate: { name: 'конечная дата', detail: 'Дата окончания периода.' }, - method: { name: 'тип', detail: 'Тип возвращаемых сведений.' }, + unit: { name: 'единица', detail: 'Тип возвращаемых сведений, где: Unit***Return " Y "Количество полных лет в периоде. M "Количество завершенных месяцев в периоде". D "Количество дней в периоде". MD "Разница между днями в start_date и end_date. Месяцы и годы дат не учитываются. Важно: Мы не рекомендуем использовать аргумент MD, так как к нему существуют известные ограничения. См. раздел известных проблем ниже. YM "Разница между месяцами в start_date и end_date. Дни и годы дат игнорируются" YD "Разница между днями start_date и end_date. Годы дат не учитываются.' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B0%D1%82%D0%B0%D0%B7%D0%BD%D0%B0%D1%87-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/ru-ru/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D0%BD%D1%8C-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/ru-ru/excel/functions/day-function', }, ], functionParameter: { @@ -74,17 +74,17 @@ const locale: typeof enUS = { }, }, DAYS: { - description: 'Возвращает количество дней между двумя датами', - abstract: 'Возвращает количество дней между двумя датами', + description: 'Возвращает количество дней между двумя датами.', + abstract: 'Возвращает количество дней между двумя датами.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%BD%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BD%D0%B8-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/ru-ru/excel/functions/days-function', }, ], functionParameter: { - endDate: { name: 'конечная дата', detail: 'Начальная дата и конечная дата — две даты, количество дней между которыми необходимо вычислить.' }, - startDate: { name: 'начальная дата', detail: 'Начальная дата и конечная дата — две даты, количество дней между которыми необходимо вычислить.' }, + endDate: { name: 'конечная дата', detail: 'Обязательно. Нач_дата и кон_дата — две даты, количество дней между которыми необходимо вычислить.' }, + startDate: { name: 'начальная дата', detail: 'Обязательно. Нач_дата и кон_дата — две даты, количество дней между которыми необходимо вычислить.' }, }, }, DAYS360: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BD%D0%B5%D0%B9360-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B0%D1%82%D0%B0%D0%BC%D0%B5%D1%81-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%BD%D0%BC%D0%B5%D1%81%D1%8F%D1%86%D0%B0-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/ru-ru/excel/functions/eomonth-function', }, ], functionParameter: { @@ -140,8 +140,8 @@ const locale: typeof enUS = { }, ], functionParameter: { - timestamp: { name: 'временная метка', detail: 'Unix-время в секундах, миллисекундах или микросекундах.' }, - unit: { name: 'единица', detail: 'Eдиница измерения времени во временной метке (значение по умолчанию: 1): \n1 - секунды. \n2 - миллисекунды.\n3 - микросекунды' }, + timestamp: { name: 'временная метка', detail: 'EPOCHTODATE(1655908429662,2)' }, + unit: { name: 'единица', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B0%D1%81-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hour-function', }, ], functionParameter: { @@ -163,7 +163,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/isoweeknum-function', }, ], functionParameter: { @@ -171,53 +171,53 @@ const locale: typeof enUS = { }, }, MINUTE: { - description: 'Возвращает минуты, соответствующие аргументу время в числовом формате', - abstract: 'Возвращает минуты, соответствующие аргументу время в числовом формате', + description: 'Возвращает минуты, соответствующие аргументу время_в_числовом_формате. Минуты определяются как целое число в интервале от 0 до 59.', + abstract: 'Возвращает минуты, соответствующие аргументу время_в_числовом_формате. Минуты определяются как целое число в интервале от 0 до 59.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%BD%D1%83%D1%82%D1%8B-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/ru-ru/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: 'дата в числовом формате', detail: 'Дата, которую необходимо найти. Даты вводятся с использованием функции ДАТА или как результат других формул и функций. Например, для указания даты 23 мая 2008 года следует воспользоваться выражением ДАТА(2008;5;23)' }, + serialNumber: { name: 'дата в числовом формате', detail: 'Обязательно. Время, для которого требуется выделить минуты. Время может быть задано текстовой строкой в кавычках (например, "18:45"), десятичным числом (например, значение 0,78125 соответствует 18:45) или результатом других формул или функций (например, ВРЕМЗНАЧ("18:45")).' }, }, }, MONTH: { - description: 'Возвращает месяц для даты, заданной в числовом формате. Месяц возвращается как целое число в диапазоне от 1 (январь) до 12 (декабрь)', - abstract: 'Возвращает месяц для даты, заданной в числовом формате', + description: 'Возвращает месяц для даты, заданной в числовом формате. Месяц возвращается как целое число в диапазоне от 1 (январь) до 12 (декабрь).', + abstract: 'Возвращает месяц для даты, заданной в числовом формате. Месяц возвращается как целое число в диапазоне от 1 (январь) до 12 (декабрь).', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%B5%D1%81%D1%8F%D1%86-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B5%D1%81%D1%8F%D1%86-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'дата в числовом формате', detail: 'Дата месяца, который необходимо найти. Дата должна быть введена с использованием функции ДАТА либо как результат других формул или функций. Например, для указания даты 23 мая 2008 года следует воспользоваться выражением ДАТА(2008;5;23).' }, + serialNumber: { name: 'дата в числовом формате', detail: 'Обязательно. Дата месяца, который необходимо найти. Дата должна быть введена с использованием функции ДАТА либо как результат других формул или функций. Например, для указания даты 23 мая 2008 года следует воспользоваться выражением ДАТА(2008;5;23). Если даты вводятся как текст, это может привести к возникновению проблем .' }, }, }, NETWORKDAYS: { - description: 'Возвращает количество рабочих дней между датами "начальная дата" и "конечная дата"', - abstract: 'Возвращает количество рабочих дней между датами "начальная дата" и "конечная дата"', + description: 'Возвращает количество рабочих дней между датами "нач_дата" и "кон_дата". Праздники и выходные в это число не включаются. Функцию ЧИСТРАБДНИ можно использовать для вычисления заработной платы работника на основе количества дней, отработанных в указанный период.', + abstract: 'Возвращает количество рабочих дней между датами "нач_дата" и "кон_дата". Праздники и выходные в это число не включаются. Функцию ЧИСТРАБДНИ можно использовать для вычисления заработной платы работника на основе количества дней, отработанных в указанный период.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D0%B8%D1%81%D1%82%D1%80%D0%B0%D0%B1%D0%B4%D0%BD%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D1%82%D1%80%D0%B0%D0%B1%D0%B4%D0%BD%D0%B8-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/networkdays-function', }, ], functionParameter: { - startDate: { name: 'начальная дата', detail: 'Начальная дата.' }, - endDate: { name: 'конечная дата', detail: 'Конечная дата.' }, - holidays: { name: 'праздники', detail: 'Список из одной или нескольких дат, которые требуется исключить из рабочего календаря, например государственные праздники. Список может представлять собой диапазон ячеек, содержащих даты, или константу массива, содержащую числа, которые представляют даты.' }, + startDate: { name: 'начальная дата', detail: 'Обязательно. Начальная дата.' }, + endDate: { name: 'конечная дата', detail: 'Обязательно. Конечная дата.' }, + holidays: { name: 'праздники', detail: 'Дополнительные. Список из одной или нескольких дат, которые требуется исключить из рабочего календаря, например государственные праздники. Список может представлять собой диапазон ячеек, содержащих даты, или константу массива, содержащую числа, которые представляют даты.' }, }, }, NETWORKDAYS_INTL: { - description: 'Возвращает количество рабочих дней между двумя датами с использованием параметров, определяющих, сколько в неделе выходных и какие дни являются выходными. Выходные и любые праздники не считаются рабочими днями', + description: 'Возвращает количество рабочих дней между двумя датами с использованием параметров, определяющих, сколько в неделе выходных и какие дни являются выходными. Выходные и любые праздники не считаются рабочими днями.', abstract: 'Возвращает количество рабочих дней между двумя датами с использованием параметров, определяющих, сколько в неделе выходных и какие дни являются выходными. Выходные и любые праздники не считаются рабочими днями.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D1%82%D1%80%D0%B0%D0%B1%D0%B4%D0%BD%D0%B8-%D0%BC%D0%B5%D0%B6%D0%B4-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/ru-ru/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,28 +228,28 @@ const locale: typeof enUS = { }, }, NOW: { - description: 'Возвращает текущую дату и время в числовом формате', - abstract: 'Возвращает текущую дату и время в числовом формате', + description: 'Возвращает текущую дату и время в числовом формате. Если до ввода этой функции для ячейки был задан формат Общий , он будет изменен на формат даты и времени, соответствующий региональным параметрам. Формат даты и времени для ячейки можно изменить с помощью команд на вкладке ленты Главная в группе Число .', + abstract: 'Возвращает текущую дату и время в числовом формате. Если до ввода этой функции для ячейки был задан формат Общий , он будет изменен на формат даты и времени, соответствующий региональным параметрам. Формат даты и времени для ячейки можно изменить с помощью команд на вкладке ленты Главная в группе Число .', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D0%B4%D0%B0%D1%82%D0%B0-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/ru-ru/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: 'Возвращает секунды, соответствующие аргументу время в числовом формате', - abstract: 'Возвращает секунды, соответствующие аргументу время в числовом формате', + description: 'Возвращает секунды, соответствующие аргументу время_в_числовом_формате. Секунды определяются как целое число в интервале от 0 до 59.', + abstract: 'Возвращает секунды, соответствующие аргументу время_в_числовом_формате. Секунды определяются как целое число в интервале от 0 до 59.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%B5%D0%BA%D1%83%D0%BD%D0%B4%D1%8B-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/second-function', }, ], functionParameter: { - serialNumber: { name: 'дата в числовом формате', detail: 'Дата, которую необходимо найти. Даты вводятся с использованием функции ДАТА или как результат других формул и функций. Например, для указания даты 23 мая 2008 года следует воспользоваться выражением ДАТА(2008;5;23)' }, + serialNumber: { name: 'дата в числовом формате', detail: 'Обязательно. Время, для которого требуется выделить секунды. Время может быть задано текстовой строкой в кавычках (например, "18:45"), десятичным числом (например, значение 0,78125 соответствует 18:45) или являться результатом других формул или функций (например, ВРЕМЗНАЧ("18:45")).' }, }, }, TIME: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%80%D0%B5%D0%BC%D1%8F-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/ru-ru/excel/functions/time-function', }, ], functionParameter: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%80%D0%B5%D0%BC%D0%B7%D0%BD%D0%B0%D1%87-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/ru-ru/excel/functions/timevalue-function', }, ], functionParameter: { @@ -281,16 +281,16 @@ const locale: typeof enUS = { }, }, TO_DATE: { - description: 'Преобразует число в значение даты', - abstract: 'Преобразует число в значение даты', + description: 'Преобразует число в значение даты.', + abstract: 'Преобразует число в значение даты.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3094239?hl=ru&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=ru', }, ], functionParameter: { - value: { name: 'значение', detail: 'Число, которое необходимо преобразовать в дату, или ссылка на ячейку, содержащую такое число' }, + value: { name: 'значение', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%B5%D0%B3%D0%BE%D0%B4%D0%BD%D1%8F-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D0%BD%D1%8C%D0%BD%D0%B5%D0%B4-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D0%BC%D0%BD%D0%B5%D0%B4%D0%B5%D0%BB%D0%B8-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/ru-ru/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%B1%D0%B4%D0%B5%D0%BD%D1%8C-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/ru-ru/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%B1%D0%B4%D0%B5%D0%BD%D1%8C-%D0%BC%D0%B5%D0%B6%D0%B4-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%BE%D0%B4-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D0%BB%D1%8F%D0%B3%D0%BE%D0%B4%D0%B0-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/date/sk-SK.ts index f5d0075e3c..c4c9e12923 100644 --- a/packages/sheets-formula/src/locale/function-list/date/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/date/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/date-function-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/sk-sk/excel/functions/date-function', }, ], functionParameter: { @@ -41,13 +41,13 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/datedif-function-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: 'začiatočný_dátum', detail: 'Dátum, ktorý predstavuje prvý, alebo začiatočný dátum obdobia.' }, - endDate: { name: 'koncový_dátum', detail: 'Dátum, ktorý predstavuje posledný, alebo koncový dátum obdobia.' }, - method: { name: 'metóda', detail: 'Typ informácie, ktorú chcete vrátiť.' }, + startDate: { name: 'začiatočný_dátum', detail: 'Dátum, ktorý predstavuje prvý alebo počiatočný dátum daného obdobia. Dátumy možno zadať ako textové reťazce v úvodzovkách (napríklad "30.1.2001"), ako poradové čísla (napríklad 36921, čo predstavuje 30. január 2001, ak používate kalendárny systém 1900) alebo ako výsledok iných vzorcov alebo funkcií (napríklad DATEVALUE("30.1.2001")).' }, + endDate: { name: 'koncový_dátum', detail: 'Dátum, ktorý predstavuje koncový dátum príslušného obdobia.' }, + unit: { name: 'jednotka', detail: 'Typ informácie, ktorá sa má vrátiť, kde: Jednotka****Vráti" Y "Počet celých rokov v príslušnom období." M "Počet celých mesiacov v príslušnom období." D "Počet dní v príslušnom období." MD: " Rozdiel medzi dňami v start_date a end_date. Mesiace a roky dátumov sa ignorujú. Dôležité: Z dôvodu známych obmedzení argumentu "MD" neodporúčame jeho použitie. Pozrite si nižšie časť o známych problémoch." YM "Rozdiel medzi mesiacmi v start_date a end_date. Dni a roky dátumov sa ignorujú" YD "Rozdiel medzi dňami start_date a end_date. Roky dátumov sa ignorujú.' }, }, }, DATEVALUE: { @@ -56,7 +56,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/datevalue-function-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/sk-sk/excel/functions/datevalue-function', }, ], functionParameter: { @@ -72,7 +72,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/day-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/sk-sk/excel/functions/day-function', }, ], functionParameter: { @@ -80,17 +80,17 @@ const locale: typeof enUS = { }, }, DAYS: { - description: 'Vracia počet dní medzi dvoma dátumami', - abstract: 'Vracia počet dní medzi dvoma dátumami', + description: 'Vráti počet dní medzi dvomi dátumami.', + abstract: 'Vráti počet dní medzi dvomi dátumami.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/sk-sk/excel/functions/days-function', }, ], functionParameter: { - endDate: { name: 'koncový_dátum', detail: 'Start_date a end_date sú dva dátumy, medzi ktorými chcete zistiť počet dní.' }, - startDate: { name: 'začiatočný_dátum', detail: 'Start_date a end_date sú dva dátumy, medzi ktorými chcete zistiť počet dní.' }, + endDate: { name: 'koncový_dátum', detail: 'Povinné. Počiatočný_dátum a koncový_dátum sú dva dátumy, medzi ktorými chcete spočítať počet dní.' }, + startDate: { name: 'začiatočný_dátum', detail: 'Povinné. Počiatočný_dátum a koncový_dátum sú dva dátumy, medzi ktorými chcete spočítať počet dní.' }, }, }, DAYS360: { @@ -99,7 +99,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/days360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/days360-function', }, ], functionParameter: { @@ -114,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/edate-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/edate-function', }, ], functionParameter: { @@ -128,7 +128,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/eomonth-function-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/sk-sk/excel/functions/eomonth-function', }, ], functionParameter: { @@ -142,7 +142,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/13193461?hl=en', + url: 'https://support.google.com/docs/answer/13193461?hl=sk', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hour-function-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hour-function', }, ], functionParameter: { @@ -172,7 +172,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/isoweeknum-function-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/isoweeknum-function', }, ], functionParameter: { @@ -180,29 +180,29 @@ const locale: typeof enUS = { }, }, MINUTE: { - description: 'Konvertuje sériové číslo na minútu', - abstract: 'Konvertuje sériové číslo na minútu', + description: 'Vráti minúty časovej hodnoty. Minúta je daná ako celé číslo z intervalu od 0 do 59.', + abstract: 'Vráti minúty časovej hodnoty. Minúta je daná ako celé číslo z intervalu od 0 do 59.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/minute-function-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/sk-sk/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: 'sériové_číslo', detail: 'Dátum, pre ktorý chcete nájsť minútu. Dátumy zadávajte pomocou funkcie DATE alebo ako výsledky iných vzorcov či funkcií. Napríklad použite DATE(2008,5,23) pre 23. máj 2008.' }, + serialNumber: { name: 'sériové_číslo', detail: 'Povinné. Časový údaj obsahujúci minútu, ktorú chcete nájsť. Čas možno zadať ako textový reťazec v úvodzovkách (napríklad "18:45"), ako desatinné číslo (napríklad 0,78125, čo zodpovedá času 18:45) alebo ako výsledok iných vzorcov alebo funkcií (napríklad TIMEVALUE("18:45")).' }, }, }, MONTH: { - description: 'Vracia mesiac dátumu reprezentovaného sériovým číslom. Mesiac je celé číslo od 1 (január) do 12 (december).', - abstract: 'Konvertuje sériové číslo na mesiac', + description: 'Vráti mesiac dátumu, ktorý je vyjadrený poradovým číslom. Mesiac je daný ako celé číslo z intervalu od 1 (január) do 12 (december).', + abstract: 'Vráti mesiac dátumu, ktorý je vyjadrený poradovým číslom. Mesiac je daný ako celé číslo z intervalu od 1 (január) do 12 (december).', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/month-function-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: 'sériové_číslo', detail: 'Dátum, pre ktorý chcete nájsť mesiac. Dátumy zadávajte pomocou funkcie DATE alebo ako výsledky iných vzorcov či funkcií. Napríklad použite DATE(2008,5,23) pre 23. máj 2008.' }, + serialNumber: { name: 'sériové_číslo', detail: 'Povinné. Dátum v mesiaci, ktorý sa pokúšate nájsť. Dátumy by sa mali zadávať pomocou funkcie DATE alebo ako výsledok iných vzorcov alebo funkcií. Pre 23. Ak zadáte dátum ako text, môžu sa vyskytnúť problémy.' }, }, }, NETWORKDAYS: { @@ -211,7 +211,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/networkdays-function', }, ], functionParameter: { @@ -221,12 +221,12 @@ const locale: typeof enUS = { }, }, NETWORKDAYS_INTL: { - description: 'Vracia počet celých pracovných dní medzi dvoma dátumami s parametrami, ktoré určujú, ktoré a koľko dní sú víkendové', - abstract: 'Vracia počet celých pracovných dní medzi dvoma dátumami s parametrami, ktoré určujú, ktoré a koľko dní sú víkendové', + description: 'Vráti počet celých pracovných dní medzi dvoma dátumami s použitím parametrov určujúcich, ktoré dni sú víkendové a koľko ich je. Víkendové dni a dni určené ako sviatky sa nepovažujú za pracovné dni.', + abstract: 'Vráti počet celých pracovných dní medzi dvoma dátumami s použitím parametrov určujúcich, ktoré dni sú víkendové a koľko ich je. Víkendové dni a dni určené ako sviatky sa nepovažujú za pracovné dni.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/networkdays-intl-function-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/sk-sk/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -237,27 +237,28 @@ const locale: typeof enUS = { }, }, NOW: { - description: 'Vracia sériové číslo aktuálneho dátumu a času.', - abstract: 'Vracia sériové číslo aktuálneho dátumu a času', + description: 'Vráti poradové číslo aktuálneho dátumu a času. Ak bola bunka pred zadaním funkcie nastavená na formát Všeobecné , program Excel zmení formát bunky na ten formát dátumu a času, ktorý je v počítači zadaný v rámci miestnych nastavení pre dátum a čas. Formát dátumu a času pre bunku môžete zmeniť pomocou príkazov v skupine Číslo na karte Domov na páse s nástrojmi.', + abstract: 'Vráti poradové číslo aktuálneho dátumu a času. Ak bola bunka pred zadaním funkcie nastavená na formát Všeobecné , program Excel zmení formát bunky na ten formát dátumu a času, ktorý je v počítači zadaný v rámci miestnych nastavení pre dátum a čas. Formát dátumu a času pre bunku môžete zmeniť pomocou príkazov v skupine Číslo na karte Domov na páse s nástrojmi.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46', - }, - ], - functionParameter: {}, - }, - SECOND: { - description: 'Konvertuje sériové číslo na sekundu', - abstract: 'Konvertuje sériové číslo na sekundu', - links: [ - { - title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/second-function-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/now-function', }, ], functionParameter: { - serialNumber: { name: 'sériové_číslo', detail: 'Dátum, pre ktorý chcete nájsť sekundu. Dátumy zadávajte pomocou funkcie DATE alebo ako výsledky iných vzorcov či funkcií. Napríklad použite DATE(2008,5,23) pre 23. máj 2008.' }, + }, + }, + SECOND: { + description: 'Vracia sekundy časovej hodnoty. Sekunda je daná ako celé číslo z intervalu od 0 (nuly) do 59.', + abstract: 'Vracia sekundy časovej hodnoty. Sekunda je daná ako celé číslo z intervalu od 0 (nuly) do 59.', + links: [ + { + title: 'Inštrukcia', + url: 'https://support.microsoft.com/sk-sk/excel/functions/second-function', + }, + ], + functionParameter: { + serialNumber: { name: 'sériové_číslo', detail: 'Povinné. Časový údaj obsahujúci sekundu, ktorú chcete vyhľadať. Čas možno zadať ako textový reťazec v úvodzovkách (napríklad "18:45"), ako desatinné číslo (napríklad 0,78125, čo predstavuje čas 18:45) alebo ako výsledok iných vzorcov alebo funkcií (napríklad TIMEVALUE("18:45")).' }, }, }, TIME: { @@ -266,7 +267,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/time-function-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/sk-sk/excel/functions/time-function', }, ], functionParameter: { @@ -290,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/timevalue-function-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/sk-sk/excel/functions/timevalue-function', }, ], functionParameter: { @@ -303,7 +304,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3094239?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=sk', }, ], functionParameter: { @@ -316,7 +317,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/today-function-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/today-function', }, ], functionParameter: {}, @@ -327,7 +328,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/weekday-function-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/weekday-function', }, ], functionParameter: { @@ -341,7 +342,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/weeknum-function-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/sk-sk/excel/functions/weeknum-function', }, ], functionParameter: { @@ -355,7 +356,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/sk-sk/excel/functions/workday-function', }, ], functionParameter: { @@ -370,7 +371,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/workday-intl-function-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -386,7 +387,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/year-function-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/year-function', }, ], functionParameter: { @@ -399,7 +400,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/yearfrac-function-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/date/vi-VN.ts index 461bd06a2c..cc18c5c6fc 100644 --- a/packages/sheets-formula/src/locale/function-list/date/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/date/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/date-function', }, ], functionParameter: { @@ -47,13 +47,13 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/datedif-function', }, ], 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.' }, + 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. Ngày tháng có thể được nhập ở dạng chuỗi văn bản trong dấu ngoặc kép (ví dụ, "30/1/2001" ), dưới dạng số sê-ri (ví dụ, 36921, biểu thị cho ngày 30 tháng 1 năm 2001, nếu bạn đang sử dụng hệ thống ngày tháng 1900), hoặc là kết quả của các công thức hoặc hàm khác (ví dụ, hàm DATEVALUE("30/1/2001")).' }, 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ề.' }, + unit: { name: 'Unit', detail: 'Kiểu thông tin mà bạn muốn trả về, trong đó: Unit****Returns " Y "Số năm hoàn thành trong kỳ." M "Số tháng hoàn tất trong kỳ." D "Số ngày trong khoảng thời gian." MD "Sự khác biệt giữa các ngày trong start_date và end_date. Đã bỏ qua tháng và năm của ngày. Quan trọng: Chúng tôi khuyên bạn không nên sử dụng tham đối "MD", vì có những giới hạn đã biết kèm theo. Hãy xem phần sự cố đã biết bên dưới." YM "Sự khác biệt giữa các tháng trong start_date và end_date. Ngày và năm của ngày được bỏ qua" YD "Sự khác biệt giữa các ngày trong ngày start_date ngày end_date. Đã bỏ qua năm của ngày.' }, }, }, DATEVALUE: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/datevalue-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/day-function', }, ], functionParameter: { @@ -94,7 +94,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/days-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/days360-function', }, ], functionParameter: { @@ -123,7 +123,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/edate-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/eomonth-function', }, ], functionParameter: { @@ -163,12 +163,12 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/13193461?hl=vi&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=vi', }, ], 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: \n1 cho biết đơn vị thời gian là giây. \n2 cho biết đơn vị thời gian là mili giây.\n3 cho biết đơn vị thời gian là micrô giây.' }, + timestamp: { name: 'dấu thời gian', detail: 'EPOCHTODATE(1655908429662,2)' }, + unit: { name: 'đơn vị thời gian', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -177,7 +177,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hour-function', }, ], functionParameter: { @@ -193,27 +193,24 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/isoweeknum-function', }, ], 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ờ.' }, + date: { name: 'Ngày', detail: 'Yêu cầu. 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', + description: 'Trả về phút của một giá trị thời gian. Phút được trả về dưới dạng số nguyên, trong phạm vi từ 0 tới 59.', + abstract: 'Trả về phút của một giá trị thời gian. Phút được trả về dưới dạng số nguyên, trong phạm vi từ 0 tới 59.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/minute-function', }, ], 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.', - }, + serialNumber: { name: 'Số sê-ri ngày', detail: 'Yêu cầu. Thời gian có chứa phút mà bạn muốn tìm. Thời gian có thể được nhập vào dưới dạng chuỗi văn bản đặt trong dấu ngoặc kép, (ví dụ "6:45 CH"), dạng số thập phân (ví dụ 0,78125, biểu thị cho 6:45 CH) hoặc dạng kết quả của các công thức hoặc hàm khác (ví dụ TIMEVALUE("6:45 CH")).' }, }, }, MONTH: { @@ -222,7 +219,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/month-function', }, ], functionParameter: { @@ -238,7 +235,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/networkdays-function', }, ], functionParameter: { @@ -248,12 +245,12 @@ const locale: typeof enUS = { }, }, 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.', + 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. Ngày cuối tuần và bất kỳ ngày nào được chỉ rõ là ngày lễ sẽ không được coi là ngày làm việc.', + 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. Ngày cuối tuần và bất kỳ ngày nào được chỉ rõ là ngày lễ sẽ không được coi là ngày làm việc.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -264,12 +261,12 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Trả về số sê-ri của ngày và thời gian hiện tại. Nếu trước khi bạn nhập hàm vào ô, định dạng ô là Chung , thì Excel thay đổi định dạng ô để khớp với định dạng ngày và thời gian trong thiết đặt vùng của bạn. Bạn có thể thay đổi định dạng ngày và thời gian cho ô bằng các lệnh trong nhóm Số của tab Trang đầu trên Ribbon.', + abstract: 'Trả về số sê-ri của ngày và thời gian hiện tại. Nếu trước khi bạn nhập hàm vào ô, định dạng ô là Chung , thì Excel thay đổi định dạng ô để khớp với định dạng ngày và thời gian trong thiết đặt vùng của bạn. Bạn có thể thay đổi định dạng ngày và thời gian cho ô bằng các lệnh trong nhóm Số của tab Trang đầu trên Ribbon.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/now-function', }, ], functionParameter: { @@ -281,7 +278,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/second-function', }, ], functionParameter: { @@ -297,7 +294,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/time-function', }, ], functionParameter: { @@ -312,7 +309,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/timevalue-function', }, ], functionParameter: { @@ -328,11 +325,11 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3094239?hl=vi&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=vi', }, ], 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.' }, + value: { name: 'giá trị', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -341,7 +338,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/today-function', }, ], functionParameter: {}, @@ -352,7 +349,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/weekday-function', }, ], functionParameter: { @@ -366,7 +363,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/weeknum-function', }, ], functionParameter: { @@ -380,7 +377,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/workday-function', }, ], functionParameter: { @@ -404,7 +401,7 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.microsoft.com/vi-vn/office/workday-intl-%E5%87%BD%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/vi-vn/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -420,7 +417,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/year-function', }, ], functionParameter: { @@ -436,7 +433,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/date/zh-CN.ts index 6eebf4fe59..99fdb8ea31 100644 --- a/packages/sheets-formula/src/locale/function-list/date/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/date/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/date-%E5%87%BD%E6%95%B0-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/zh-cn/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/datedif-%E5%87%BD%E6%95%B0-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: '开始日期', detail: '表示给定时间段的第一个或开始日期的日期。' }, + startDate: { name: '开始日期', detail: '表示给定时间段的第一个或开始日期的日期。 日期值有多种输入方式:带引号的文本字符串(例如 "2001/1/30")、序列号(例如 36921,在商用 1900 日期系统时表示 2001 年 1 月 30 日)或其他公式或函数的结果(例如 DATEVALUE("2001/1/30"))。' }, endDate: { name: '结束日期', detail: '用于表示时间段的最后一个(即结束)日期的日期。' }, - method: { name: '信息类型', detail: '要返回的信息类型。' }, + unit: { name: 'Unit', detail: '要返回的信息类型,其中: Unit****返回 “ Y ”期间内的完整年数。” M “期间内的完整月数。 D “时间段中的天数”。 MD “start_date和end_date中的天数差异。 忽略日期中的月份和年份。 重要: 我们不建议使用“MD”参数,因为存在已知的限制。 请参阅下面的已知问题部分。” YM “start_date和end_date月份之间的差异。 忽略日期的天数和年份“ YD ”start_date和end_date的天数之差。 忽略日期中的年份。' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/datevalue-%E5%87%BD%E6%95%B0-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/zh-cn/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/day-%E5%87%BD%E6%95%B0-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/zh-cn/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/days-%E5%87%BD%E6%95%B0-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/zh-cn/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/days360-%E5%87%BD%E6%95%B0-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/edate-%E5%87%BD%E6%95%B0-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/eomonth-%E5%87%BD%E6%95%B0-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/zh-cn/excel/functions/eomonth-function', }, ], functionParameter: { @@ -131,93 +131,93 @@ const locale: typeof enUS = { }, }, EPOCHTODATE: { - description: '将 Unix 纪元时间戳(以秒、毫秒或微秒为单位)转换为世界协调时间 (UTC) 的日期时间', - abstract: '将 Unix 纪元时间戳(以秒、毫秒或微秒为单位)转换为世界协调时间 (UTC) 的日期时间', + description: '将 Unix 纪元时间戳(以秒、毫秒或微秒为单位)转换为世界协调时间 (UTC) 的日期时间。', + abstract: '将 Unix 纪元时间戳(以秒、毫秒或微秒为单位)转换为世界协调时间 (UTC) 的日期时间。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hans', }, ], functionParameter: { - timestamp: { name: '时间戳', detail: 'Unix 纪元时间戳(以秒、毫秒或微秒为单位)。' }, - unit: { name: '时间单位', detail: '表示时间戳的时间单位。默认情况为 1: \n1 表示时间单位是秒。\n2 表示时间单位是毫秒。\n3 表示时间单位是微秒。' }, + timestamp: { name: '时间戳', detail: ':Unix 纪元时间戳(以秒、毫秒或微秒为单位)。' }, + unit: { name: '时间单位', detail: '[可选:默认情况为 – 1 ]:表示时间戳的时间单位。' }, }, }, HOUR: { - description: '将序列号转换为小时', - abstract: '将序列号转换为小时', + description: '返回时间值的小时数。 小时数是介于 0 (12:00 A.M.) 到 23 (11:00 P.M.) 之间的整数。', + abstract: '返回时间值的小时数。 小时数是介于 0 (12:00 A.M.) 到 23 (11:00 P.M.) 之间的整数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hour-%E5%87%BD%E6%95%B0-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hour-function', }, ], functionParameter: { - serialNumber: { name: '日期序列号', detail: '要查找的日期。 应使用 DATE 函数输入日期,或者将日期作为其他公式或函数的结果输入。 例如,使用函数 DATE(2008,5,23) 输入 2008 年 5 月 23 日。' }, + serialNumber: { name: '日期序列号', detail: '必填。 时间值,其中包含要查找的小时数。 时间值有多种输入方式:带引号的文本字符串(例如 "6:45 PM")、十进制数(例如 0.78125 表示 6:45 PM)或其他公式或函数的结果(例如 TIMEVALUE("6:45 PM"))。' }, }, }, ISOWEEKNUM: { - description: '返回给定日期在全年中的 ISO 周数', - abstract: '返回给定日期在全年中的 ISO 周数', + description: '返回给定日期在全年中的 ISO 周数。', + abstract: '返回给定日期在全年中的 ISO 周数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/isoweeknum-%E5%87%BD%E6%95%B0-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/isoweeknum-function', }, ], functionParameter: { - date: { name: '日期', detail: '用于日期和时间计算的日期时间代码。' }, + date: { name: '日期', detail: '必填。 Date 是 Excel 用于日期和时间计算的日期时间代码。' }, }, }, MINUTE: { - description: '将序列号转换为分钟', - abstract: '将序列号转换为分钟', + description: '返回时间值中的分钟。 分钟是一个介于 0 到 59 之间的整数。', + abstract: '返回时间值中的分钟。 分钟是一个介于 0 到 59 之间的整数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/minute-%E5%87%BD%E6%95%B0-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/zh-cn/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: '日期序列号', detail: '要查找的日期。 应使用 DATE 函数输入日期,或者将日期作为其他公式或函数的结果输入。 例如,使用函数 DATE(2008,5,23) 输入 2008 年 5 月 23 日。' }, + serialNumber: { name: '日期序列号', detail: '必填。 一个时间值,其中包含要查找的分钟。 时间值有多种输入方式:带引号的文本字符串(例如 "6:45 PM")、十进制数(例如 0.78125 表示 6:45 PM)或其他公式或函数的结果(例如 TIMEVALUE("6:45 PM"))。' }, }, }, MONTH: { description: '返回日期(以序列数表示)中的月份。 月份是介于 1(一月)到 12(十二月)之间的整数。', - abstract: '将序列号转换为月', + abstract: '返回日期(以序列数表示)中的月份。 月份是介于 1(一月)到 12(十二月)之间的整数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/month-%E5%87%BD%E6%95%B0-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: '日期序列号', detail: '要查找的月份的日期。 应使用 DATE 函数输入日期,或者将日期作为其他公式或函数的结果输入。 例如,使用函数 DATE(2008,5,23) 输入 2008 年 5 月 23 日。' }, + serialNumber: { name: '日期序列号', detail: '必填。 要查找的月份的日期。 应使用 DATE 函数输入日期,或者将日期作为其他公式或函数的结果输入。 例如,使用函数 DATE(2008,5,23) 输入 2008 年 5 月 23 日。 如果 日期以文本形式输入 ,则会出现问题。' }, }, }, NETWORKDAYS: { - description: '返回两个日期间的完整工作日的天数', - abstract: '返回两个日期间的完整工作日的天数', + description: '返回参数 start_date 和 end_date 之间完整的工作日数值。 工作日不包括周末和专门指定的假期。 可以使用函数 NETWORKDAYS,根据某一特定时期内雇员的工作天数,计算其应计的报酬。', + abstract: '返回参数 start_date 和 end_date 之间完整的工作日数值。 工作日不包括周末和专门指定的假期。 可以使用函数 NETWORKDAYS,根据某一特定时期内雇员的工作天数,计算其应计的报酬。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/networkdays-%E5%87%BD%E6%95%B0-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/networkdays-function', }, ], functionParameter: { - startDate: { name: '开始日期', detail: '一个代表开始日期的日期。' }, - endDate: { name: '终止日期', detail: '一个代表终止日期的日期。' }, - holidays: { name: '假期', detail: '不在工作日历中的一个或多个日期所构成的可选区域。' }, + startDate: { name: '开始日期', detail: '必填。 一个代表开始日期的日期。' }, + endDate: { name: '终止日期', detail: '必填。 一个代表终止日期的日期。' }, + holidays: { name: '假期', detail: '选。 不在工作日历中的一个或多个日期所构成的可选区域,例如:省/市/自治区和国家/地区的法定假日以及其他非法定假日。 该列表可以是包含日期的单元格区域,或是表示日期的序列号的数组常量。' }, }, }, NETWORKDAYS_INTL: { - description: '返回两个日期之间的完整工作日的天数(使用参数指明周末有几天并指明是哪几天)', - abstract: '返回两个日期之间的完整工作日的天数(使用参数指明周末有几天并指明是哪几天)', + description: '返回两个日期之间的所有工作日数,使用参数指示哪些天是周末,以及有多少天是周末。 周末和任何指定为假期的日期不被视为工作日。', + abstract: '返回两个日期之间的所有工作日数,使用参数指示哪些天是周末,以及有多少天是周末。 周末和任何指定为假期的日期不被视为工作日。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/networkdays-intl-%E5%87%BD%E6%95%B0-a9b26239-4f20-46a1-9ab8-4e925bfd5e28', + url: 'https://support.microsoft.com/zh-cn/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,12 +228,12 @@ const locale: typeof enUS = { }, }, NOW: { - description: '返回当前日期和时间的序列号。', - abstract: '返回当前日期和时间的序列号', + description: '返回当前日期和时间的序列号。 如果在输入该函数前,单元格格式为 “常规” ,Excel 会更改单元格格式,使其与区域设置的日期和时间格式匹配。 可以在功能区 “开始” 选项卡上的 “数字” 组中使用命令来更改日期和时间格式。', + abstract: '返回当前日期和时间的序列号。 如果在输入该函数前,单元格格式为 “常规” ,Excel 会更改单元格格式,使其与区域设置的日期和时间格式匹配。 可以在功能区 “开始” 选项卡上的 “数字” 组中使用命令来更改日期和时间格式。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/now-%E5%87%BD%E6%95%B0-3337fd29-145a-4347-b2e6-20c904739c46', + url: 'https://support.microsoft.com/zh-cn/excel/functions/now-function', }, ], functionParameter: { @@ -245,7 +245,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/second-%E5%87%BD%E6%95%B0-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/second-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/time-%E5%87%BD%E6%95%B0-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/zh-cn/excel/functions/time-function', }, ], functionParameter: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/timevalue-%E5%87%BD%E6%95%B0-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/zh-cn/excel/functions/timevalue-function', }, ], functionParameter: { @@ -281,16 +281,16 @@ const locale: typeof enUS = { }, }, TO_DATE: { - description: '将提供的数字转换为日期', - abstract: '将提供的数字转换为日期', + description: '将提供的数字转换为日期。', + abstract: '将提供的数字转换为日期。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3094239?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=zh-Hans', }, ], functionParameter: { - value: { name: '值', detail: '要转换为日期的参数或其单元格引用。' }, + value: { name: '值', detail: 'TO_DATE(A2)' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/today-%E5%87%BD%E6%95%B0-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/weekday-%E5%87%BD%E6%95%B0-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/weeknum-%E5%87%BD%E6%95%B0-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/zh-cn/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/workday-%E5%87%BD%E6%95%B0-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/zh-cn/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/workday-intl-%E5%87%BD%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/year-%E5%87%BD%E6%95%B0-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/yearfrac-%E5%87%BD%E6%95%B0-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/date/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/date/zh-TW.ts index b7b2b1e20f..a7fe632d9a 100644 --- a/packages/sheets-formula/src/locale/function-list/date/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/date/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/date-%E5%87%BD%E6%95%B0-e36c0c8c-4104-49da-ab83-82328b832349', + url: 'https://support.microsoft.com/zh-tw/excel/functions/date-function', }, ], functionParameter: { @@ -38,13 +38,13 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/datedif-%E5%87%BD%E6%95%B0-25dba1a4-2812-480b-84dd-8b32a451b35c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/datedif-function', }, ], functionParameter: { - startDate: { name: '開始日期', detail: '代表指定期間的第一個或開始日期的日期。' }, - endDate: { name: '結束日期', detail: '代表期間最後一個或結束日期的日期。' }, - method: { name: '資訊類型', detail: '要傳回的資訊類型' }, + startDate: { name: '開始日期', detail: '代表某一時期的第一個或起始日期的日期。 日期可以以引號內的文字字串輸入,例如「2001/1/30」 () ,序號 (例如36921(代表2001年1月30日),如果你使用1900日期系統) ,也可以作為其他公式或函式的結果,例如DATEVALUE (「2001/1/30」) ) (。' }, + endDate: { name: '結束日期', detail: '代表該時期的最後或結束日期的日期。' }, + unit: { name: 'Unit', detail: '您希望回傳的資訊類型,其中: 單位****回傳 「 Y 」「該期間的完整年數。」 M 「該期間內的完整月份數。」 D 「該期間的天數。」 MD:「 start_date和end_date天的差別。 日期中的月和年都會被忽略。 重要: 我們不建議使用「多元醫學博士」這個論點,因為已知有其限制。 請參考下方已知問題章節。」 YM 「start_date月和end_date月的差異。 日期的日期和年份被忽略」「 YD 」start_date日與end_date日的差異。 日期中的年會被忽略。' }, }, }, DATEVALUE: { @@ -53,7 +53,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/datevalue-%E5%87%BD%E6%95%B0-df8b07d4-7761-4a93-bc33-b7471bbff252', + url: 'https://support.microsoft.com/zh-tw/excel/functions/datevalue-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/day-%E5%87%BD%E6%95%B0-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101', + url: 'https://support.microsoft.com/zh-tw/excel/functions/day-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/days-%E5%87%BD%E6%95%B0-57740535-d549-4395-8728-0f07bff0b9df', + url: 'https://support.microsoft.com/zh-tw/excel/functions/days-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/days360-%E5%87%BD%E6%95%B0-b9a509fd-49ef-407e-94df-0cbda5718c2a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/days360-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/edate-%E5%87%BD%E6%95%B0-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/edate-function', }, ], functionParameter: { @@ -122,7 +122,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/eomonth-%E5%87%BD%E6%95%B0-7314ffa1-2bc9-4005-9d66-f49db127d628', + url: 'https://support.microsoft.com/zh-tw/excel/functions/eomonth-function', }, ], functionParameter: { @@ -131,17 +131,17 @@ const locale: typeof enUS = { }, }, EPOCHTODATE: { - description: '將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式', - abstract: '將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式', + description: '將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式。', + abstract: '將 Unix Epoch 紀元時間戳記 (以秒、毫秒或微秒為單位) 轉換為世界標準時間 (UTC) 的日期時間格式。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hant&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/13193461?hl=zh-Hant', }, ], functionParameter: { - timestamp: { name: '時間戳記', detail: '以秒、毫秒或微秒為單位的 Unix Epoch 紀元時間戳記。' }, - unit: { name: '時間單位', detail: '時間戳記的表示單位。預設值是 1: \n1 表示以秒為單位。\n2 表示以毫秒為單位。\n3 表示以微秒為單位。' }, + timestamp: { name: '時間戳記', detail: 'EPOCHTODATE(1655908429662,2)' }, + unit: { name: '時間單位', detail: 'EPOCHTODATE(1655906710)' }, }, }, HOUR: { @@ -150,7 +150,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hour-%E5%87%BD%E6%95%B0-a3afa879-86cb-4339-b1b5-2dd2d7310ac7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hour-function', }, ], functionParameter: { @@ -163,7 +163,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/isoweeknum-%E5%87%BD%E6%95%B0-1c2d0afe-d25b-4ab1-8894-8d0520e90e0e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/isoweeknum-function', }, ], functionParameter: { @@ -171,53 +171,53 @@ const locale: typeof enUS = { }, }, MINUTE: { - description: '將序號轉換為分鐘', - abstract: '將序號轉換為分鐘', + description: '傳回時間值的分鐘數。 分鐘必須以整數指定,範圍從 0 到 59。', + abstract: '傳回時間值的分鐘數。 分鐘必須以整數指定,範圍從 0 到 59。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/minute-%E5%87%BD%E6%95%B0-af728df0-05c4-4b07-9eed-a84801a60589', + url: 'https://support.microsoft.com/zh-tw/excel/functions/minute-function', }, ], functionParameter: { - serialNumber: { name: '日期序號', detail: '要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 ' }, + serialNumber: { name: '日期序號', detail: '必須。 這是包含要尋找之分鐘的時間。 時間可以在引號之內以文字字串輸入 (例如,"6:45 PM"),或以小數輸入 (例如 0.78125,表示 6:45 PM),也能夠以其他公式或函數的結果輸入 (例如,TIMEVALUE("6:45 PM"))。' }, }, }, MONTH: { - description: '傳回日期(以序列數表示)中的月份。 月份是介於 1(一月)到 12(十二月)之間的整數。 ', - abstract: '將序號轉換為月', + description: '傳回以序號代表的日期月份。 月份數必須以整數指定,範圍從 1 (1 月) 到 12 (12 月)。', + abstract: '傳回以序號代表的日期月份。 月份數必須以整數指定,範圍從 1 (1 月) 到 12 (12 月)。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/month-%E5%87%BD%E6%95%B0-579a2881-199b-48b2-ab90-ddba0eba86e8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/month-function', }, ], functionParameter: { - serialNumber: { name: '日期序號', detail: '要找的月份的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 ' }, + serialNumber: { name: '日期序號', detail: '必須。 這是您要嘗試尋找的月份日期。 日期應該使用 DATE 函數來輸入,或是從其他公式或函數導出。 例如,使用 DATE(2008,5,23) 表示 2008 年 5 月 23 日。 如果 以文字格式輸入日期 ,則可能發生問題。' }, }, }, NETWORKDAYS: { - description: '傳回兩個日期間的完整工作日的天數', - abstract: '返回兩個日期間的完整工作日的天數', + description: '傳回 start_date 與 end_date 間的全部工作日數。 工作天不包括週末與任何假日。 使用 NETWORKDAYS,根據某段期間內的工作天數來計算員工累積的酬勞。', + abstract: '傳回 start_date 與 end_date 間的全部工作日數。 工作天不包括週末與任何假日。 使用 NETWORKDAYS,根據某段期間內的工作天數來計算員工累積的酬勞。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/networkdays-%E5%87%BD%E6%95%B0-48e717bf-a7a3-495f-969e-5005e3eb18e7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/networkdays-function', }, ], functionParameter: { - startDate: { name: '開始日期', detail: '代表開始日期的日期。' }, - endDate: { name: '結束日期', detail: '代表結束日期的日期。' }, - holidays: { name: '假日', detail: '要從工作行事曆中排除之一個或多個日期的選擇性範圍。' }, + startDate: { name: '開始日期', detail: '必須。 這是代表開始日期的日期。' }, + endDate: { name: '結束日期', detail: '必須。 這是代表結束日期的日期。' }, + holidays: { name: '假日', detail: '可選的。 這是要從工作行事曆中排除之一個或多個日期的選擇性範圍,例如州假日和聯邦假日以及彈性假日。 此清單可以是包含日期的儲存格範圍,或是代表日期之序列值的陣列常數。' }, }, }, NETWORKDAYS_INTL: { - description: '傳回兩個日期之間的完整工作日的天數(使用參數指明週末有幾天並指明是哪幾天)', - abstract: '傳回兩個日期之間的完整工作日的天數(使用參數指明週末有幾天並指明是哪幾天)', + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/networkdays-intl-function', }, ], functionParameter: { @@ -228,28 +228,28 @@ const locale: typeof enUS = { }, }, NOW: { - description: '傳回目前日期和時間的序號。 ', - abstract: '傳回目前日期和時間的序號', + description: '傳回目前日期和時間的序列值。 如果在輸入函數之前,儲存格格式為 [通用格式] ,則 Excel 會將儲存格格式變更為符合地區選項的日期與時間格式。 您可以使用功能區上 [常用] 索引標籤 [數值] 群組中的命令來變更儲存格的日期和時間格式。', + abstract: '傳回目前日期和時間的序列值。 如果在輸入函數之前,儲存格格式為 [通用格式] ,則 Excel 會將儲存格格式變更為符合地區選項的日期與時間格式。 您可以使用功能區上 [常用] 索引標籤 [數值] 群組中的命令來變更儲存格的日期和時間格式。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/now-%E5%87%BD%E6%95%B0-3337fd29-145a-4347-b2e6-2​​0c904739c46', + url: 'https://support.microsoft.com/zh-tw/excel/functions/now-function', }, ], functionParameter: { }, }, SECOND: { - description: '將序號轉換為秒', - abstract: '將序號轉換為秒', + description: '傳回時間值的秒數。 秒是介於 0 (零) 到 59 之間的整數。', + abstract: '傳回時間值的秒數。 秒是介於 0 (零) 到 59 之間的整數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/second-%E5%87%BD%E6%95%B0-740d1cfc-553c-4099-b668-80eaa24e8af1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/second-function', }, ], functionParameter: { - serialNumber: { name: '日期序號', detail: '要找的日期。 應使用 DATE 函數輸入日期,或將日期輸入為其他公式或函數的結果。 例如,使用函數 DATE(2008,5,23) 輸入 2008 年 5 月 23 日。 ' }, + serialNumber: { name: '日期序號', detail: '必須。 這是包含要尋找之秒鐘的時間。 時間可以在引號之內以文字字串輸入 (例如,"6:45 PM"),或以小數輸入 (例如 0.78125,表示 6:45 PM),也能夠以其他公式或函數的結果輸入 (例如,TIMEVALUE("6:45 PM"))。' }, }, }, TIME: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/time-%E5%87%BD%E6%95%B0-9a5aff99-8f7d-4611-845e-747d0b8d5457', + url: 'https://support.microsoft.com/zh-tw/excel/functions/time-function', }, ], functionParameter: { @@ -273,7 +273,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/timevalue-%E5%87%BD%E6%95%B0-0b615c12-33d8-4431-bf3d-f3eb6d186645', + url: 'https://support.microsoft.com/zh-tw/excel/functions/timevalue-function', }, ], functionParameter: { @@ -281,16 +281,16 @@ const locale: typeof enUS = { }, }, TO_DATE: { - description: '將指定數字轉換成日期', - abstract: '將指定數字轉換成日期', + description: '將指定數字轉換成日期。', + abstract: '將指定數字轉換成日期。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3094239?hl=zh-Hant&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3094239?hl=zh-Hant', }, ], functionParameter: { - value: { name: '值', detail: '要轉換成日期的引數或儲存格參照。' }, + value: { name: '值', detail: '要轉換成日期的引數或儲存格參照。 日期 IF 值 is a number or a reference to a cell containing a numeric value, TO_DATE returns 值 converted to a date, 解讀中… 值 as number of days since 30 December, Negative values are interpreted as days before this date, and fractional values indicate time of day past midnight. IF 值 is not a number or a reference to a cell containing a numeric value, TO_DATE returns 值 without modification.' }, }, }, TODAY: { @@ -299,7 +299,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/today-%E5%87%BD%E6%95%B0-5eb3078d-a82c-4736-8930-2f51a028fdd9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/today-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/weekday-%E5%87%BD%E6%95%B0-60e44483-2ed1-439f-8bd0-e404c190949a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/weekday-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/weeknum-%E5%87%BD%E6%95%B0-e5c43a03-b4ab-426c-b411-b18c13c75340', + url: 'https://support.microsoft.com/zh-tw/excel/functions/weeknum-function', }, ], functionParameter: { @@ -339,7 +339,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/workday-%E5%87%BD%E6%95%B0-f764a5b7-05fc-4494-9486-60d494efbf33', + url: 'https://support.microsoft.com/zh-tw/excel/functions/workday-function', }, ], functionParameter: { @@ -354,7 +354,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/workday-intl-%E5%87%BD%E6%95%B0-a378391c-9ba7-4678-8a39-39611a9bf81d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/workday-intl-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/year-%E5%87%BD%E6%95%B0-c64f017a-1354-490d-981f-578e8ec8d3b9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/year-function', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/yearfrac-%E5%87%BD%E6%95%B0-3844141e-c76d-4143-82b6-208454ddc6a8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/yearfrac-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/engineering/ar-SA.ts new file mode 100644 index 0000000000..c0e1cfe64f --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/ar-SA.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'تُرجع الدالة Bessel المُعدلة، والتي تكافئ الدالة Bessel التي يتم تقييمها إلى وسيطات تخيلية تماماً.', + abstract: 'تُرجع الدالة Bessel المُعدلة، والتي تكافئ الدالة Bessel التي يتم تقييمها إلى وسيطات تخيلية تماماً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + n: { name: 'N', detail: 'مطلوبة. وهي ترتيب الدالة Bessel. إذا لم تكن n عدداً صحيحاً، فإنه يتم اقتطاعها.' }, + }, + }, + BESSELJ: { + description: 'تُرجع الدالة Bessel.', + abstract: 'تُرجع الدالة Bessel.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + n: { name: 'N', detail: 'مطلوبة. وهي ترتيب الدالة Bessel. إذا لم تكن n عدداً صحيحاً، فإنه يتم اقتطاعها.' }, + }, + }, + BESSELK: { + description: 'تُرجع الدالة Bessel المُعدلة، والتي تكافئ دالات Bessel التي يتم تقييمها إلى وسيطات تخيلية تماماً.', + abstract: 'تُرجع الدالة Bessel المُعدلة، والتي تكافئ دالات Bessel التي يتم تقييمها إلى وسيطات تخيلية تماماً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + n: { name: 'N', detail: 'مطلوبة. وهي ترتيب الدالة. إذا لم تكن n عدداً صحيحاً، فإنه يتم اقتطاعها.' }, + }, + }, + BESSELY: { + description: 'تُرجع الدالة Bessel، التي تسمى أيضاً الدالة Weber أو الدالة Neumann.', + abstract: 'تُرجع الدالة Bessel، التي تسمى أيضاً الدالة Weber أو الدالة Neumann.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + n: { name: 'N', detail: 'مطلوبة. وهي ترتيب الدالة. إذا لم تكن n عدداً صحيحاً، فإنه يتم اقتطاعها.' }, + }, + }, + BIN2DEC: { + description: 'تحويل رقم ثنائي إلى رقم عشري.', + abstract: 'تحويل رقم ثنائي إلى رقم عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي الرقم الثنائي الذي ترغب في تحويله. لا يمكن أن تحتوي الوسيطة Number على أكثر من 10 أحرف (10 بت). إن بت العلامة هو بت الرقم الأكثر أهمية. أما وحدات البت التسع المتبقية، فهي تشير إلى وحدات بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + }, + }, + BIN2HEX: { + description: 'تقوم بتحويل رقم ثنائي إلى رقم سداسي عشري.', + abstract: 'تقوم بتحويل رقم ثنائي إلى رقم سداسي عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي الرقم الثنائي الذي ترغب في تحويله. لا يمكن أن تحتوي الوسيطة Number على أكثر من 10 أحرف (10 بت). إن بت العلامة هو بت الرقم الأكثر أهمية. أما وحدات البت التسع المتبقية، فهي تشير إلى وحدات بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. وهي عدد الأحرف المراد استخدامها. إذا تم إهمال قيمة places، فإن BIN2HEX تستخدم الحد الأدنى لعدد الأحرف الضرورية. ويفيد تعيين قيمة places في ترك مساحات كافية للقيم المرجعة ذات الأصفار البادئة (0).' }, + }, + }, + BIN2OCT: { + description: 'تقوم بتحويل رقم ثنائي إلى رقم ثماني.', + abstract: 'تقوم بتحويل رقم ثنائي إلى رقم ثماني.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي الرقم الثنائي الذي ترغب في تحويله. لا يمكن أن تحتوي الوسيطة Number على أكثر من 10 أحرف (10 بت). إن بت العلامة هو بت الرقم الأكثر أهمية. أما وحدات البت التسع المتبقية، فهي تشير إلى وحدات بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. وهي عدد الأحرف المراد استخدامها. إذا تم إهمال قيمة places، فإن BIN2OCT تستخدم الحد الأدنى لعدد الأحرف الضرورية. ويفيد تعيين قيمة places في ترك مساحات كافية للقيم المرجعة ذات الأصفار البادئة (0).' }, + }, + }, + BITAND: { + description: 'ترجع البت And لرقمين.', + abstract: 'ترجع البت And لرقمين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. يجب أن تكون في شكل عشري وأكبر من أو تساوي 0.' }, + number2: { name: 'number2', detail: 'مطلوب. يجب أن تكون في شكل عشري وأكبر من أو تساوي 0.' }, + }, + }, + BITLSHIFT: { + description: 'تُرجع رقماً تمت إزاحته إلى اليسار بمقدار العدد المحدد من أرقام البت.', + abstract: 'تُرجع رقماً تمت إزاحته إلى اليسار بمقدار العدد المحدد من أرقام البت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. يجب أن يكون الرقم عددا صحيحا أكبر من أو يساوي 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'مطلوب. يجب أن يكون Shift_amount عددا صحيحا.' }, + }, + }, + BITOR: { + description: 'تُرجع هذه الدالة البت \'OR\' لرقمين.', + abstract: 'تُرجع هذه الدالة البت \'OR\' لرقمين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. يجب أن تكون في شكل عشري وأكبر من أو تساوي 0.' }, + number2: { name: 'number2', detail: 'مطلوب. يجب أن تكون في شكل عشري وأكبر من أو تساوي 0.' }, + }, + }, + BITRSHIFT: { + description: 'تُرجع هذه الدالة رقماً تمت إزاحته إلى اليمين بمقدار عدد محدد من البت.', + abstract: 'تُرجع هذه الدالة رقماً تمت إزاحته إلى اليمين بمقدار عدد محدد من البت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. يجب أن يكون عددا صحيحا أكبر من أو يساوي 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'مطلوب. يجب أن يكون عددا صحيحا.' }, + }, + }, + BITXOR: { + description: 'تُرجع هذه الدالة البت \'XOR\' لرقمين.', + abstract: 'تُرجع هذه الدالة البت \'XOR\' لرقمين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. يجب أن يكون أكبر من أو يساوي 0.' }, + number2: { name: 'number2', detail: 'مطلوب. يجب أن يكون أكبر من أو يساوي 0.' }, + }, + }, + COMPLEX: { + description: 'تحويل المعاملات الحقيقية والتخيلية إلى عدد مركب بالشكل x + yi أو x + yj.', + abstract: 'تحويل المعاملات الحقيقية والتخيلية إلى عدد مركب بالشكل x + yi أو x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'مطلوب. المعامل الحقيقي للعدد المركب.' }, + iNum: { name: 'i_num', detail: 'مطلوب. المعامل التخيلي للعدد المركب.' }, + suffix: { name: 'suffix', detail: 'الاختياري. لاحقة المكون التخيلي للعدد المركب. إذا تم حذف الوسيطة Suffix، فيتم افتراض أنها "i".' }, + }, + }, + CONVERT: { + description: 'تقوم بتحويل رقم من أحد أنظمة القياس إلى نظام آخر. على سبيل المثال، بإمكان CONVERT ترجمة جدول للمسافات بالميل إلى جدول للمسافات بالكيلومتر.', + abstract: 'تقوم بتحويل رقم من أحد أنظمة القياس إلى نظام آخر. على سبيل المثال، بإمكان CONVERT ترجمة جدول للمسافات بالميل إلى جدول للمسافات بالكيلومتر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'القيمة بوحدات from_unit المراد تحويلها.' }, + fromUnit: { name: 'from_unit', detail: 'وحدات القيمة number.' }, + toUnit: { name: 'to_unit', detail: 'وحدات النتيجة.' }, + }, + }, + DEC2BIN: { + description: 'تحويل رقم عشري إلى رقم ثنائي.', + abstract: 'تحويل رقم عشري إلى رقم ثنائي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم العشري الصحيح الذي ترغب في تحويله. إذا كان الرقم سالباً، فيتم تجاهل قيم المنازل الصحيحة وتُرجع الدالة DEC2BIN رقماً ثنائياً يتألف من 10 أحرف (10 بت) حيث تكون بت الإشارة وحدة البت الأكثر أهمية. وتشير وحدات البت التسع المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. عدد الأحرف التي سيتم استخدامها. في حالة حذف المنازل، تستخدم DEC2BIN أقل عدد ممكن من الأحرف الضرورية. وتُعد الوسيطة Places مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + DEC2HEX: { + description: 'تحويل رقم عشري إلى رقم سداسي عشري.', + abstract: 'تحويل رقم عشري إلى رقم سداسي عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم العشري الصحيح الذي ترغب في تحويله. إذا كان الرقم سالباً، فيتم تجاهل المنازل العشرية وترجع DEC2HEX رقماً سداسياً عشرياً يتألف من 10 أحرف (40 بت) حيث يكون بت الإشارة وحدة البت الأكثر أهمية. وتشير وحدات البت التسع والثلاثون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. عدد الأحرف التي سيتم استخدامها. في حالة حذف المنازل، تستخدم DEC2HEX أقل عدد ممكن من الأحرف الضرورية. وتُعد وسيطة المنازل مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + DEC2OCT: { + description: 'تحويل رقم عشري إلى رقم ثماني.', + abstract: 'تحويل رقم عشري إلى رقم ثماني.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم العشري الصحيح الذي ترغب في تحويله. إذا كان الرقم سالباً، فيتم تجاهل المنازل العشرية وترجع DEC2OCT رقماً ثمانياً يتألف من 10 أحرف (30 بت) حيث يكون بت الإشارة وحدة البت الأكثر أهمية. وتشير وحدات البت التسع والعشرون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. عدد الأحرف التي سيتم استخدامها. في حالة حذف المنازل، تستخدم DEC2OCT أقل عدد ممكن من الأحرف الضرورية. وتُعد الوسيطة Places مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + DELTA: { + description: 'اختبار المساواة بين قيمتين. تُرجع هذه الدالة 1 إذا كانت قيمة number1 = ‏number2، وتُرجع 0 خلاف ذلك. استخدم هذه الدالة لتصفية مجموعة من القيم. على سبيل المثال، يمكنك حساب عدد الأزواج المتساوية عبر جمع دالات DELTA متعددة. تعرف هذه الدالة أيضاً باسم Kronecker Delta.', + abstract: 'اختبار المساواة بين قيمتين. تُرجع هذه الدالة 1 إذا كانت قيمة number1 = ‏number2، وتُرجع 0 خلاف ذلك. استخدم هذه الدالة لتصفية مجموعة من القيم. على سبيل المثال، يمكنك حساب عدد الأزواج المتساوية عبر جمع دالات DELTA متعددة. تعرف هذه الدالة أيضاً باسم Kronecker Delta.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. الرقم الأول.' }, + number2: { name: 'number2', detail: 'الاختياري. الرقم الثاني. إذا تم حذف الوسيطة number2، فسيتم افتراض أن قيمتها تساوي الصفر.' }, + }, + }, + ERF: { + description: 'تُرجع دالة الخطأ المتكاملة بين الحد_الأدنى والحد_الأعلى.', + abstract: 'تُرجع دالة الخطأ المتكاملة بين الحد_الأدنى والحد_الأعلى.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'مطلوب. الحد الأدنى لتكامل ERF.' }, + upperLimit: { name: 'upper_limit', detail: 'الاختياري. الحد الأعلى لتكامل ERF. في حال حذف هذه الوسيطة، تحقق الدالة ERF تكاملاً بين الصفر والحد_الأدنى.' }, + }, + }, + ERF_PRECISE: { + description: 'تُرجع دالة الخطأ.', + abstract: 'تُرجع دالة الخطأ.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. الحد الأدنى لتكامل ERF.PRECISE.' }, + }, + }, + ERFC: { + description: 'تُرجع دالة ERF المتممة المتكاملة بين x وما لا نهاية.', + abstract: 'تُرجع دالة ERF المتممة المتكاملة بين x وما لا نهاية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. الحد الأدنى لتكامل ERFC.' }, + }, + }, + ERFC_PRECISE: { + description: 'تُرجع دالة ERF المتممة المتكاملة بين x وما لا نهاية.', + abstract: 'تُرجع دالة ERF المتممة المتكاملة بين x وما لا نهاية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. الحد الأدنى لتكامل ERFC.PRECISE.' }, + }, + }, + GESTEP: { + description: 'تُرجع هذه الدالة 1 إذا كان الرقم ≥ الخطوة، وتُرجع 0 (صفر) خلاف ذلك. استخدم هذه الدالة لتصفية مجموعة من القيم. على سبيل المثال، يمكنك عبر جمع عدد من دالات GESTEP حساب عدد القيم التي تتجاوز العتبة.', + abstract: 'تُرجع هذه الدالة 1 إذا كان الرقم ≥ الخطوة، وتُرجع 0 (صفر) خلاف ذلك. استخدم هذه الدالة لتصفية مجموعة من القيم. على سبيل المثال، يمكنك عبر جمع عدد من دالات GESTEP حساب عدد القيم التي تتجاوز العتبة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. القيمة المراد اختبارها مقارنة بالخطوة.' }, + step: { name: 'step', detail: 'الاختياري. قيمة العتبة. إذا حذفت قيمة الخطوة، فتستخدم GESTEP الصفر.' }, + }, + }, + HEX2BIN: { + description: 'تحويل رقم سداسي عشري إلى رقم ثنائي.', + abstract: 'تحويل رقم سداسي عشري إلى رقم ثنائي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم السداسي العشري الذي ترغب في تحويله. لا يمكن أن يحتوي الرقم على أكثر من 10 أحرف. إن بت الرقم الأكثر أهمية هو بت الإشارة (البت الأربعون من اليسار). وتشير وحدات البت التسع المتبقية إلى بت الحجم. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'اختياري. عدد الأحرف التي سيتم استخدامها. في حال حذف المنازل، تستخدم الدالة HEX2BIN أقل عدد ممكن من الأحرف الضرورية. وتُعد وسيطة عدد المنازل مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + HEX2DEC: { + description: 'تحويل رقم سداسي عشري إلى رقم عشري.', + abstract: 'تحويل رقم سداسي عشري إلى رقم عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم السداسي العشري الذي ترغب في تحويله. لا يمكن أن يحتوي الرقم على أكثر من 10 أحرف (40 بت). إن بت الرقم الأكثر أهمية هو بت الإشارة. وتشير وحدات البت التسع والثلاثون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + }, + }, + HEX2OCT: { + description: 'تحويل رقم سداسي عشري إلى رقم ثماني.', + abstract: 'تحويل رقم سداسي عشري إلى رقم ثماني.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم السداسي العشري الذي ترغب في تحويله. لا يمكن أن يحتوي الرقم على أكثر من 10 أحرف. إن بت الرقم الأكثر أهمية هو بت الإشارة. وتشير وحدات البت التسع والثلاثون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'اختياري. عدد الأحرف التي سيتم استخدامها. وفي حالة حذف المنازل، تستخدم الدالة HEX2OCT أقل عدد ممكن من الأحرف الضرورية. وتُعد وسيطة المنازل مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + IMABS: { + description: 'إرجاع القيمة المطلقة (المُعامل) لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع القيمة المطلقة (المُعامل) لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب القيمة المطلقة له.' }, + }, + }, + IMAGINARY: { + description: 'إرجاع المُعامل التخيلي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع المُعامل التخيلي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب المُعامل التخيلي له.' }, + }, + }, + IMARGUMENT: { + description: 'ترجع الوسيطة (theta)، وهي زاوية يتم التعبير عنها بالتقدير الدائري، بحيث:', + abstract: 'ترجع الوسيطة (theta)، وهي زاوية يتم التعبير عنها بالتقدير الدائري، بحيث:', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. رقم مركب تريد الوسيطة له .' }, + }, + }, + IMCONJUGATE: { + description: 'إرجاع المرافق المركب لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع المرافق المركب لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب المرافق له.' }, + }, + }, + IMCOS: { + description: 'إرجاع جيب تمام عدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع جيب تمام عدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب جيب التمام له.' }, + }, + }, + IMCOSH: { + description: 'تُرجع هذه الدالة جيب التمام الزائدي لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة جيب التمام الزائدي لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد جيب التمام الزائدي له.' }, + }, + }, + IMCOT: { + description: 'تُرجع هذه الدالة ظل التمام لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة ظل التمام لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'عدد مركب تريد حساب ظل التمام له.' }, + }, + }, + IMCOTH: { + description: 'ترجع الدالة IMCOTH ظل التمام الزائدي للعدد المركب المحدد. على سبيل المثال، ترجع للعدد المركب "x+yi" القيمة "coth(x+yi)".', + abstract: 'ترجع الدالة IMCOTH ظل التمام الزائدي للعدد المركب المحدد. على سبيل المثال، ترجع للعدد المركب "x+yi" القيمة "coth(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=ar', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'العدد المركب الذي تريد حساب ظل التمام الزائدي له. يمكن أن يكون ناتج الدالة COMPLEX أو عدداً حقيقياً يُفسَّر كعدد مركب جزؤه التخيلي يساوي 0، أو سلسلة بالتنسيق “x+yi” حيث x وy رقميان.' }, + }, + }, + IMCSC: { + description: 'تُرجع هذه الدالة قاطع التمام لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة قاطع التمام لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد أن يكون آمنا له.' }, + }, + }, + IMCSCH: { + description: 'إرجاع التمام الزائدي لعدد مركب بتنسيق نص x+yi أو x+yj.', + abstract: 'إرجاع التمام الزائدي لعدد مركب بتنسيق نص x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد أن يكون آمنا للفرط.' }, + }, + }, + IMDIV: { + description: 'إرجاع حاصل قسمة عددين مركبين بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع حاصل قسمة عددين مركبين بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'مطلوب. الكسر المركب أو المقسوم المركب.' }, + inumber2: { name: 'inumber2', detail: 'مطلوب. المقام المركب أو عامل القسمة المركب.' }, + }, + }, + IMEXP: { + description: 'إرجاع أس عدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع أس عدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب الأس له.' }, + }, + }, + IMLN: { + description: 'إرجاع اللوغاريتم الطبيعي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع اللوغاريتم الطبيعي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب اللوغاريتم الطبيعي له.' }, + }, + }, + IMLOG: { + description: 'ترجع الدالة IMLOG لوغاريتم عدد مركب للأساس المحدد.', + abstract: 'ترجع الدالة IMLOG لوغاريتم عدد مركب للأساس المحدد.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=ar', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'قيمة الإدخال لدالة اللوغاريتم. يمكن كتابة العدد كعدد عادي، مثل 1، ليُفسَّر كعدد حقيقي، أو كنص بين علامتي اقتباس لتحديد المعاملين الحقيقي والتخيلي.' }, + base: { name: 'base', detail: 'الأساس المستخدم لحساب اللوغاريتم. يجب أن يكون عدداً حقيقياً موجباً.' }, + }, + }, + IMLOG10: { + description: 'إرجاع اللوغاريتم المشترك (الأساس 10) لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع اللوغاريتم المشترك (الأساس 10) لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب الذي تريد إيجاد اللوغاريتم المشترك الخاص به.' }, + }, + }, + IMLOG2: { + description: 'إرجاع اللوغاريتم ذي الأساس 2 لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع اللوغاريتم ذي الأساس 2 لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب اللوغاريتم ذي الأساس 2 له.' }, + }, + }, + IMPOWER: { + description: 'إرجاع عدد مركب بالتنسيق النصي x + yi أو x + yj مرفوعاً إلى أس.', + abstract: 'إرجاع عدد مركب بالتنسيق النصي x + yi أو x + yj مرفوعاً إلى أس.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد رفعه إلى أس.' }, + number: { name: 'number', detail: 'مطلوبة. الأس المراد رفع العدد المركب إليه.' }, + }, + }, + IMPRODUCT: { + description: 'إرجاع ناتج من 1 إلى 255 عدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع ناتج من 1 إلى 255 عدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'من 1 إلى 255 عدداً مركباً لضربها.' }, + inumber2: { name: 'inumber2', detail: 'من 1 إلى 255 عدداً مركباً لضربها.' }, + }, + }, + IMREAL: { + description: 'إرجاع المُعامل الحقيقي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع المُعامل الحقيقي لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب المُعامل الحقيقي له.' }, + }, + }, + IMSEC: { + description: 'تُرجع هذه الدالة قاطع المنحنى لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة قاطع المنحنى لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد من أجله أن يكون قاطعا.' }, + }, + }, + IMSECH: { + description: 'تُرجع هذه الدالة قاطع المنحنى الزائدي لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة قاطع المنحنى الزائدي لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد أن يكون قاطع الثواني الزائدي له.' }, + }, + }, + IMSIN: { + description: 'إرجاع جيب الزاوية لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع جيب الزاوية لعدد مركب بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. العدد المركب المراد حساب جيب الزاوية له.' }, + }, + }, + IMSINH: { + description: 'ترجع الدالة IMSINH جيب الزاوية الزائدي لعدد مركب بتنسيق نص x+yi أو x+yj.', + abstract: 'ترجع الدالة IMSINH جيب الزاوية الزائدي لعدد مركب بتنسيق نص x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد جيب الزاوية الزائدي له.' }, + }, + }, + IMSQRT: { + description: 'ترجع الجذر التربيعي لعدد مركب.', + abstract: 'ترجع الجذر التربيعي لعدد مركب.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'عدد مركب تريد حساب جذره التربيعي.' }, + }, + }, + IMSUB: { + description: 'إرجاع الفرق بين عددين مركبين بالتنسيق النصي x + yi or x + yj.', + abstract: 'إرجاع الفرق بين عددين مركبين بالتنسيق النصي x + yi or x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'مطلوب. العدد المركب الذي يتم طرح inumber2 منه.' }, + inumber2: { name: 'inumber2', detail: 'مطلوب. العدد المركب الذي يتم طرحه من inumber1.' }, + }, + }, + IMSUM: { + description: 'إرجاع مجموع عددين مركبين أو أكثر بالتنسيق النصي x + yi أو x + yj.', + abstract: 'إرجاع مجموع عددين مركبين أو أكثر بالتنسيق النصي x + yi أو x + yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'من 1 إلى 255 عدداً مركباً لجمعها.' }, + inumber2: { name: 'inumber2', detail: 'من 1 إلى 255 عدداً مركباً لجمعها.' }, + }, + }, + IMTAN: { + description: 'تُرجع هذه الدالة المماس لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + abstract: 'تُرجع هذه الدالة المماس لعدد مركب بالتنسيق النصي x+yi أو x+yj.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'مطلوب. عدد مركب تريد ظل الزاوية له.' }, + }, + }, + IMTANH: { + description: 'ترجع الدالة IMTANH الظل الزائدي للعدد المركب المحدد. على سبيل المثال، ترجع للعدد المركب "x+yi" القيمة "tanh(x+yi)".', + abstract: 'ترجع الدالة IMTANH الظل الزائدي للعدد المركب المحدد. على سبيل المثال، ترجع للعدد المركب "x+yi" القيمة "tanh(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=ar', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'العدد المركب الذي تريد حساب ظله الزائدي. يمكن أن يكون ناتج الدالة COMPLEX أو عدداً حقيقياً يُفسَّر كعدد مركب جزؤه التخيلي يساوي 0، أو سلسلة بالتنسيق “x+yi” حيث x وy رقميان.' }, + }, + }, + OCT2BIN: { + description: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم ثنائي.', + abstract: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم ثنائي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الثماني الذي ترغب في تحويله. يجب ألا تحتوي الوسيطة Number على أكثر من 10 أحرف. ويُعتبر بت الإشارة في الرقم أكثر وحدات البت أهمية. وتشير وحدات البت التسع والعشرون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. عدد الأحرف التي سيتم استخدامها. وفي حال تم حذف الوسيطة places، تستخدم الدالة OCT2BIN أقل عدد ممكن من الأحرف الضرورية. وتُعد الوسيطة places مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, + OCT2DEC: { + description: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم عشري.', + abstract: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم عشري.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الثماني الذي ترغب في تحويله. يجب ألا يحتوي الرقم على أكثر من 10 أحرف ثمانية (30 بت). يُعتبر بت الإشارة أكثر وحدات البت أهمية في الرقم. وتشير وحدات البت التسع والعشرون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + }, + }, + OCT2HEX: { + description: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم سداسي عشري.', + abstract: 'تقوم هذه الدالة بتحويل رقم ثماني إلى رقم سداسي عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الثماني الذي ترغب في تحويله. يجب ألا يحتوي الرقم على أكثر من 10 أحرف ثمانية (30 بت). يُعتبر بت الإشارة أكثر وحدات البت أهمية في الرقم. وتشير وحدات البت التسع والعشرون المتبقية إلى بت المقدار. ويتم تمثيل الأرقام السالبة باستخدام علامة المتمم الثنائي.' }, + places: { name: 'places', detail: 'الاختياري. عدد الأحرف التي سيتم استخدامها. في حالة حذف الوسيطة places، تستخدم الدالة OCT2HEX أقل عدد ممكن من الأحرف الضرورية. وتُعد الوسيطة places مفيدة لترك مساحة للقيمة المرجعة بأصفار بادئة (0).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/engineering/ca-ES.ts index ac37235e9b..c2864a86b4 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/ca-es/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/ca-es/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/ca-es/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/ca-es/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/ca-es/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/ca-es/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/ca-es/excel/functions/bin2oct-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/ca-es/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/ca-es/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/ca-es/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/ca-es/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/ca-es/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/ca-es/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/ca-es/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/ca-es/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/ca-es/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/ca-es/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/ca-es/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/ca-es/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/ca-es/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/ca-es/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/ca-es/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/ca-es/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/ca-es/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/ca-es/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/ca-es/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/ca-es/excel/functions/imabs-function', }, ], functionParameter: { @@ -397,7 +397,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/ca-es/excel/functions/imaginary-function', }, ], functionParameter: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/ca-es/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/ca-es/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/ca-es/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/ca-es/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/ca-es/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: 'Retorna la cotangent hiperbòlica d\'un nombre complex', - abstract: 'Retorna la cotangent hiperbòlica d\'un nombre complex', + description: 'La funció IMCOTH torna la cotangent hiperbòlica del nombre complex determinat. Per exemple, un nombre complex determinat "x+yi" torna "coth(x+yi)".', + abstract: 'La funció IMCOTH torna la cotangent hiperbòlica del nombre complex determinat. Per exemple, un nombre complex determinat "x+yi" torna "coth(x+yi)".', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=ca', }, ], functionParameter: { - inumber: { name: 'núm_imaginari', detail: 'Un nombre complex del qual voleu obtenir la cotangent hiperbòlica.' }, + inumber: { name: 'núm_imaginari', detail: 'Nombre complex de què es vol calcular la cotangent hiperbòlica. Pot ser el resultat de la funció COMPLEX, un nombre real interpretat com a nombre complex amb parts imaginàries iguals a 0 o una cadena amb el format "x+yi" on "x" i "y" són valors numèrics.' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/ca-es/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/ca-es/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/ca-es/excel/functions/imdiv-function', }, ], functionParameter: { @@ -528,7 +528,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/ca-es/excel/functions/imexp-function', }, ], functionParameter: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/ca-es/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: 'Retorna el logaritme d\'un nombre complex per a una base especificada', - abstract: 'Retorna el logaritme d\'un nombre complex per a una base especificada', + description: 'La funció IMLOG torna el logaritme d\'un nombre complex amb una base especificada.', + abstract: 'La funció IMLOG torna el logaritme d\'un nombre complex amb una base especificada.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=ca', }, ], functionParameter: { - inumber: { name: 'núm_imaginari', detail: 'Un nombre complex el logaritme del qual a una base específica s\'ha de calcular.' }, - base: { name: 'base', detail: 'La base que es fa servir en calcular el logaritme.' }, + inumber: { name: 'núm_imaginari', detail: 'Valor d\'entrada de la funció logarítmica. El nombre es pot escriure sense format, per exemple, 1, per interpretar-lo com un nombre real. El nombre es pot escriure com a text citat per especificar tant el coeficient real com el complex.' }, + base: { name: 'base', detail: 'Base que cal utilitzar en calcular el logaritme. Ha de ser un nombre real positiu.' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/ca-es/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/ca-es/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/ca-es/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/ca-es/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/ca-es/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/ca-es/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/ca-es/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: 'Retorna la tangent hiperbòlica d\'un nombre complex', - abstract: 'Retorna la tangent hiperbòlica d\'un nombre complex', + description: 'La funció IMTANH torna la tangent hiperbòlica del nombre complex determinat. Per exemple, un nombre complex determinat "x+yi" torna "tanh(x+yi)".', + abstract: 'La funció IMTANH torna la tangent hiperbòlica del nombre complex determinat. Per exemple, un nombre complex determinat "x+yi" torna "tanh(x+yi)".', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=ca', }, ], functionParameter: { - inumber: { name: 'núm_imaginari', detail: 'Un nombre complex del qual voleu obtenir la tangent hiperbòlica.' }, + inumber: { name: 'núm_imaginari', detail: 'El nombre complex per al qual es vol calcular la tangent hiperbòlica. Pot ser el resultat de la funció COMPLEX, un nombre real interpretat com a nombre complex amb parts imaginàries iguals a 0 o una cadena amb el format "x+yi" on x i y són valors numèrics.' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/ca-es/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/ca-es/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/ca-es/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/de-DE.ts b/packages/sheets-formula/src/locale/function-list/engineering/de-DE.ts new file mode 100644 index 0000000000..bc1e66db16 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/de-DE.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'Gibt die modifizierte Besselfunktion In(x) zurück, die der für rein imaginäre Argumente ausgewerteten Besselfunktion Jn entspricht.', + abstract: 'Gibt die modifizierte Besselfunktion In(x) zurück, die der für rein imaginäre Argumente ausgewerteten Besselfunktion Jn entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + n: { name: 'N', detail: 'Erforderlich. Die Ordnung der Besselfunktion. Ist "n" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + BESSELJ: { + description: 'Gibt die Besselfunktion Jn(x) zurück.', + abstract: 'Gibt die Besselfunktion Jn(x) zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + n: { name: 'N', detail: 'Erforderlich. Die Ordnung der Besselfunktion. Ist "n" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + BESSELK: { + description: 'Gibt die modifizierte Besselfunktion Kn(x) zurück, die den für rein imaginäre Argumente ausgewerteten Besselfunktionen Jn und Yn entspricht.', + abstract: 'Gibt die modifizierte Besselfunktion Kn(x) zurück, die den für rein imaginäre Argumente ausgewerteten Besselfunktionen Jn und Yn entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + n: { name: 'N', detail: 'Erforderlich. Die Ordnung der Funktion. Ist "n" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + BESSELY: { + description: 'Gibt die Besselfunktion Yn(x) zurück, die auch als Webersche Funktion oder Neumannsche Funktion bezeichnet wird.', + abstract: 'Gibt die Besselfunktion Yn(x) zurück, die auch als Webersche Funktion oder Neumannsche Funktion bezeichnet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + n: { name: 'N', detail: 'Erforderlich. Die Ordnung der Funktion. Ist "n" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + BIN2DEC: { + description: 'Wandelt eine binäre Zahl (Dualzahl) in eine dezimale Zahl um.', + abstract: 'Wandelt eine binäre Zahl (Dualzahl) in eine dezimale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die binäre Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen (10 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 9 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + }, + }, + BIN2HEX: { + description: 'Wandelt eine binäre Zahl (Dualzahl) in eine hexadezimale Zahl um.', + abstract: 'Wandelt eine binäre Zahl (Dualzahl) in eine hexadezimale Zahl um.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die binäre Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen (10 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 9 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet BIN2HEX die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + BIN2OCT: { + description: 'Wandelt eine binäre Zahl (Dualzahl) in eine oktale Zahl um.', + abstract: 'Wandelt eine binäre Zahl (Dualzahl) in eine oktale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die binäre Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen (10 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 9 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet BIN2OCT die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + BITAND: { + description: 'Gibt ein bitweises UND zweier Zahlen zurück.', + abstract: 'Gibt ein bitweises UND zweier Zahlen zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Muss in dezimaler Form vorliegen und größer gleich 0 sein.' }, + number2: { name: 'number2', detail: 'Erforderlich. Muss in dezimaler Form vorliegen und größer gleich 0 sein.' }, + }, + }, + BITLSHIFT: { + description: 'Gibt die Zahl zurück, die sich ergibt, nachdem die angegebene Zahl um die angegebene Anzahl von Bits nach links verschoben wurde.', + abstract: 'Gibt die Zahl zurück, die sich ergibt, nachdem die angegebene Zahl um die angegebene Anzahl von Bits nach links verschoben wurde.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. "Zahl" muss eine ganze Zahl sein, die größer gleich 0 ist.' }, + shiftAmount: { name: 'shift_amount', detail: 'Erforderlich. "Verschiebebetrag" muss eine ganze Zahl sein.' }, + }, + }, + BITOR: { + description: 'Gibt ein bitweises ODER zweier Zahlen zurück.', + abstract: 'Gibt ein bitweises ODER zweier Zahlen zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Muss in dezimaler Form vorliegen und größer gleich 0 sein.' }, + number2: { name: 'number2', detail: 'Erforderlich. Muss in dezimaler Form vorliegen und größer gleich 0 sein.' }, + }, + }, + BITRSHIFT: { + description: 'Gibt die Zahl zurück, die sich ergibt, nachdem die angegebene Zahl um die angegebene Anzahl von Bits nach rechts verschoben wurde.', + abstract: 'Gibt die Zahl zurück, die sich ergibt, nachdem die angegebene Zahl um die angegebene Anzahl von Bits nach rechts verschoben wurde.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Muss eine ganze Zahl sein, die größer gleich 0 ist.' }, + shiftAmount: { name: 'shift_amount', detail: 'Erforderlich. Muss eine ganze Zahl sein.' }, + }, + }, + BITXOR: { + description: 'Gibt ein bitweises XODER zweier Zahlen zurück.', + abstract: 'Gibt ein bitweises XODER zweier Zahlen zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Muss größer gleich 0 sein.' }, + number2: { name: 'number2', detail: 'Erforderlich. Muss größer gleich 0 sein.' }, + }, + }, + COMPLEX: { + description: 'Wandelt den Real- und Imaginärteil in eine komplexe Zahl um (x + yi oder x + yj).', + abstract: 'Wandelt den Real- und Imaginärteil in eine komplexe Zahl um (x + yi oder x + yj).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Erforderlich. Der Realteil der komplexen Zahl.' }, + iNum: { name: 'i_num', detail: 'Erforderlich. Der Imaginärteil der komplexen Zahl.' }, + suffix: { name: 'suffix', detail: 'Optional. Der Buchstabe, der für die imaginäre Einheit der komplexen Zahl verwendet werden soll. Fehlt das Argument "Suffix", wird es als "i" angenommen.' }, + }, + }, + CONVERT: { + description: 'Wandelt eine Zahl aus einem Maßsystem in ein anderes um. Beispielsweise kann UMWANDELN eine Tabelle mit Entfernungen in Meilen in eine Tabelle mit Entfernungen in Kilometern umwandeln.', + abstract: 'Wandelt eine Zahl aus einem Maßsystem in ein anderes um. Beispielsweise kann UMWANDELN eine Tabelle mit Entfernungen in Meilen in eine Tabelle mit Entfernungen in Kilometern umwandeln.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Der Wert in from_unit, der umgewandelt werden soll.' }, + fromUnit: { name: 'from_unit', detail: 'Die Einheit für number.' }, + toUnit: { name: 'to_unit', detail: 'Die Einheit für das Ergebnis.' }, + }, + }, + DEC2BIN: { + description: 'Wandelt eine dezimale Zahl in eine binäre Zahl (Dualzahl) um.', + abstract: 'Wandelt eine dezimale Zahl in eine binäre Zahl (Dualzahl) um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die dezimale ganzzahlige Zahl, die Sie konvertieren möchten. Wenn number negativ ist, werden gültige Ortswerte ignoriert, und DEC2BIN gibt eine 10-stellige Binärzahl (10 Bit) zurück, bei der das wichtigste Bit das Vorzeichenbit ist. Die verbleibenden 9 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet DEC2BIN die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + DEC2HEX: { + description: 'Wandelt eine dezimale Zahl in eine hexadezimale Zahl um.', + abstract: 'Wandelt eine dezimale Zahl in eine hexadezimale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die dezimale ganzzahlige Zahl, die Sie konvertieren möchten. Wenn number negativ ist, werden Orte ignoriert, und DEC2HEX gibt eine hexadezimale Zahl mit 10 Zeichen (40 Bit) zurück, bei der das signifikanteste Bit das Vorzeichenbit ist. Die verbleibenden 39 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet DEC2HEX die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + DEC2OCT: { + description: 'Wandelt eine dezimale Zahl in eine oktale Zahl um.', + abstract: 'Wandelt eine dezimale Zahl in eine oktale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die dezimale ganzzahlige Zahl, die Sie konvertieren möchten. Wenn number negativ ist, werden Orte ignoriert, und DEC2OCT gibt eine 10-stellige (30-Bit)-Oktalzahl zurück, bei der das wichtigste Bit das Vorzeichenbit ist. Die verbleibenden 29 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Fehlt das Argument "Stellen", verwendet DEZINOKT nicht mehr Zeichen, als unbedingt erforderlich sind. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + DELTA: { + description: 'Testet, ob zwei Werte gleich sind. Gibt 1 zurück, wenn Zahl1 = Zahl2; gibt andernfalls 0 zurück. Mit dieser Funktion können Sie eine Gruppe von Werten filtern. Wenn Sie beispielsweise mehrere DELTA-Funktionen addieren, berechnen Sie die Anzahl der gleichen Paare. Diese Funktion wird auch als Kronecker Delta-Funktion bezeichnet.', + abstract: 'Testet, ob zwei Werte gleich sind. Gibt 1 zurück, wenn Zahl1 = Zahl2; gibt andernfalls 0 zurück. Mit dieser Funktion können Sie eine Gruppe von Werten filtern. Wenn Sie beispielsweise mehrere DELTA-Funktionen addieren, berechnen Sie die Anzahl der gleichen Paare. Diese Funktion wird auch als Kronecker Delta-Funktion bezeichnet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Die erste Zahl.' }, + number2: { name: 'number2', detail: 'Optional. Die zweite Zahl. Fehlt das Argument "Zahl2", wird es als 0 angenommen.' }, + }, + }, + ERF: { + description: 'Gibt die Gauß\'sche Fehlerfunktion zurück.', + abstract: 'Gibt die Gauß\'sche Fehlerfunktion zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Erforderlich. Die untere Grenze für die Integration in GAUSSFEHLER.' }, + upperLimit: { name: 'upper_limit', detail: 'Optional. Die obere Grenze für die Integration in GAUSSFEHLER. Fehlt dieses Argument, integriert GAUSSFEHLER von 0 (Null) bis "Untere_Grenze".' }, + }, + }, + ERF_PRECISE: { + description: 'Gibt die Fehlerfunktion zurück.', + abstract: 'Gibt die Fehlerfunktion zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Die untere Grenze für die Integration in GAUSSF.GENAU.' }, + }, + }, + ERFC: { + description: 'Gibt das Komplement zur Funktion GAUSSFEHLER integriert zwischen x und Unendlichkeit zurück', + abstract: 'Gibt das Komplement zur Funktion GAUSSFEHLER integriert zwischen x und Unendlichkeit zurück', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Die untere Grenze für die Integration in GAUSSFKOMPL.' }, + }, + }, + ERFC_PRECISE: { + description: 'Gibt das Komplement zur Funktion GAUSSFEHLER integriert zwischen x und Unendlichkeit zurück', + abstract: 'Gibt das Komplement zur Funktion GAUSSFEHLER integriert zwischen x und Unendlichkeit zurück', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Die untere Grenze für die Integration in GAUSSFKOMPL.GENAU.' }, + }, + }, + GESTEP: { + description: 'Gibt den Wert 1 zurück, wenn Zahl ≥ Schritt gilt; andernfalls gibt sie 0 (Null) zurück. Mit dieser Funktion können Sie eine Gruppe von Werten filtern. Beispielsweise können Sie durch Aufsummieren mehrerer GGANZZAHL-Funktionen berechnen, wie viele Werte größer sind als ein Schwellenwert.', + abstract: 'Gibt den Wert 1 zurück, wenn Zahl ≥ Schritt gilt; andernfalls gibt sie 0 (Null) zurück. Mit dieser Funktion können Sie eine Gruppe von Werten filtern. Beispielsweise können Sie durch Aufsummieren mehrerer GGANZZAHL-Funktionen berechnen, wie viele Werte größer sind als ein Schwellenwert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der gegen "Schritt" geprüft werden soll.' }, + step: { name: 'step', detail: 'Optional. Der Schwellenwert. Wenn Sie für "Schritt" keinen Wert angeben, arbeitet GGANZZAHL mit 0.' }, + }, + }, + HEX2BIN: { + description: 'Wandelt eine hexadezimale Zahl in eine Binärzahl um.', + abstract: 'Wandelt eine hexadezimale Zahl in eine Binärzahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die hexadezimale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit (40. Bit von rechts). Die verbleibenden 9 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet HEX2BIN die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + HEX2DEC: { + description: 'Wandelt eine hexadezimale Zahl in eine dezimale Zahl um.', + abstract: 'Wandelt eine hexadezimale Zahl in eine dezimale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die hexadezimale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen (40 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 39 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + }, + }, + HEX2OCT: { + description: 'Wandelt eine hexadezimale Zahl in eine Oktalzahl um.', + abstract: 'Wandelt eine hexadezimale Zahl in eine Oktalzahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die hexadezimale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 39 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet HEX2OCT die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + IMABS: { + description: 'Gibt den Absolutwert (Modul) einer komplexen Zahl zurück. Akzeptiert werden Zeichenfolgen der Form x + yi oder x + yj.', + abstract: 'Gibt den Absolutwert (Modul) einer komplexen Zahl zurück. Akzeptiert werden Zeichenfolgen der Form x + yi oder x + yj.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Absolutwert Sie berechnen möchten.' }, + }, + }, + IMAGINARY: { + description: 'Gibt den Imaginärteil einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj vorliegt.', + abstract: 'Gibt den Imaginärteil einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj vorliegt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Imaginärteil Sie ermitteln möchten.' }, + }, + }, + IMARGUMENT: { + description: 'Gibt das Argument (Theta) zurück, ein im Bogenmaß ausgedrückter Winkel, sodass:', + abstract: 'Gibt das Argument (Theta) zurück, ein im Bogenmaß ausgedrückter Winkel, sodass:', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Eine komplexe Zahl, für die das Argument soll.' }, + }, + }, + IMCONJUGATE: { + description: 'Gibt die konjugiert komplexe Zahl zu einer komplexen Zahl zurück, wobei die komplexe Zahl als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt die konjugiert komplexe Zahl zu einer komplexen Zahl zurück, wobei die komplexe Zahl als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren konjugierte komplexe Zahl Sie erzeugen möchten' }, + }, + }, + IMCOS: { + description: 'Gibt den Kosinus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj vorliegt.', + abstract: 'Gibt den Kosinus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj vorliegt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Kosinus Sie berechnen möchten' }, + }, + }, + IMCOSH: { + description: 'Gibt den hyperbolischen Kosinus einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den hyperbolischen Kosinus einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren hyperbolischen Kosinus Sie berechnen möchten.' }, + }, + }, + IMCOT: { + description: 'Gibt den Kotangens einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den Kotangens einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Eine komplexe Zahl, deren Kotangens Sie berechnen möchten.' }, + }, + }, + IMCOTH: { + description: 'Die Funktion IMCOTH gibt den hyperbolischen Kotangens der angegebenen komplexen Zahl zurück. Beispielsweise gibt die komplexe Zahl „x+yi“ den Wert „coth(x+yi)“ zurück.', + abstract: 'Die Funktion IMCOTH gibt den hyperbolischen Kotangens der angegebenen komplexen Zahl zurück. Beispielsweise gibt die komplexe Zahl „x+yi“ den Wert „coth(x+yi)“ zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=de', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Die komplexe Zahl, deren hyperbolischen Kotangens Sie berechnen möchten. Dies kann das Ergebnis der Funktion COMPLEX, eine als komplexe Zahl mit dem Imaginärteil 0 interpretierte reelle Zahl oder eine Zeichenfolge im Format „x+yi“ sein, wobei x und y Zahlen sind.' }, + }, + }, + IMCSC: { + description: 'Gibt den Kosekans einer komplexen Zahl im Textformat "x+yi" oder "x+yj" zurück.', + abstract: 'Gibt den Kosekans einer komplexen Zahl im Textformat "x+yi" oder "x+yj" zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Kosekans Sie berechnen möchten' }, + }, + }, + IMCSCH: { + description: 'Gibt den hyperbolischen Koseant einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den hyperbolischen Koseant einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren hyperbolischen Kosekans Sie berechnen möchten' }, + }, + }, + IMDIV: { + description: 'Gibt den Quotient zweier komplexer Zahlen zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + abstract: 'Gibt den Quotient zweier komplexer Zahlen zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Erforderlich. Der komplexe Zähler oder Dividend' }, + inumber2: { name: 'inumber2', detail: 'Erforderlich. Der komplexe Nenner oder Divisor' }, + }, + }, + IMEXP: { + description: 'Gibt die algebraische Form einer in exponentieller Form vorliegenden komplexen Zahl zurück, wobei deren Exponent als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt die algebraische Form einer in exponentieller Form vorliegenden komplexen Zahl zurück, wobei deren Exponent als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, die den Exponent der in exponentieller Form vorliegenden komplexen Zahl angibt' }, + }, + }, + IMLN: { + description: 'Gibt den natürlichen Logarithmus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt den natürlichen Logarithmus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren natürlichen Logarithmus Sie berechnen möchten' }, + }, + }, + IMLOG: { + description: 'Die Funktion IMLOG gibt den Logarithmus einer komplexen Zahl zu einer angegebenen Basis zurück.', + abstract: 'Die Funktion IMLOG gibt den Logarithmus einer komplexen Zahl zu einer angegebenen Basis zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=de', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Der Eingabewert der Logarithmusfunktion. Die Zahl kann als einfache Zahl, z. B. 1, geschrieben werden und wird dann als reelle Zahl interpretiert. Sie kann auch als Text in Anführungszeichen geschrieben werden, um Real- und Imaginärteil anzugeben.' }, + base: { name: 'base', detail: 'Die Basis für die Berechnung des Logarithmus. Sie muss eine positive reelle Zahl sein.' }, + }, + }, + IMLOG10: { + description: 'Gibt den Logarithmus einer komplexen Zahl zur Basis 10 zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt den Logarithmus einer komplexen Zahl zur Basis 10 zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren gewöhnlichen (dekadischen) Logarithmus Sie berechnen möchten' }, + }, + }, + IMLOG2: { + description: 'Gibt den Logarithmus einer komplexen Zahl zur Basis 2 zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt den Logarithmus einer komplexen Zahl zur Basis 2 zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Zweierlogarithmus Sie berechnen möchten' }, + }, + }, + IMPOWER: { + description: 'Potenziert eine komplexe Zahl, die als Zeichenfolge der Form x + yi oder x + yj vorliegt, mit einer ganzen Zahl.', + abstract: 'Potenziert eine komplexe Zahl, die als Zeichenfolge der Form x + yi oder x + yj vorliegt, mit einer ganzen Zahl.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, die Sie in eine Potenz erheben möchten' }, + number: { name: 'number', detail: 'Erforderlich. Der Exponent, mit dem Sie die komplexe Zahl potenzieren möchten' }, + }, + }, + IMPRODUCT: { + description: 'Gibt das Produkt der komplexen Zahlen 1 bis 255 zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + abstract: 'Gibt das Produkt der komplexen Zahlen 1 bis 255 zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: '"Komplexe_Zahl1" ist erforderlich, die weiteren nicht. 1 bis 255 komplexe Zahlen, die multipliziert werden sollen.' }, + inumber2: { name: 'inumber2', detail: '"Komplexe_Zahl1" ist erforderlich, die weiteren nicht. 1 bis 255 komplexe Zahlen, die multipliziert werden sollen.' }, + }, + }, + IMREAL: { + description: 'Gibt den Realteil einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt den Realteil einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Realteil Sie ermitteln möchten' }, + }, + }, + IMSEC: { + description: 'Gibt den Sekans einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den Sekans einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Sekans Sie berechnen möchten' }, + }, + }, + IMSECH: { + description: 'Gibt den hyperbolischen Sekans einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den hyperbolischen Sekans einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren hyperbolischen Sekans Sie berechnen möchten' }, + }, + }, + IMSIN: { + description: 'Diese Funktion gibt den Sinus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Diese Funktion gibt den Sinus einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Sinus Sie berechnen möchten' }, + }, + }, + IMSINH: { + description: 'Die FUNKTION IMSINH gibt den hyperbolischen Sinus einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Die FUNKTION IMSINH gibt den hyperbolischen Sinus einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren hyperbolischen Sinus Sie berechnen möchten' }, + }, + }, + IMSQRT: { + description: 'Gibt die Quadratwurzel einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + abstract: 'Gibt die Quadratwurzel einer komplexen Zahl zurück, die als Zeichenfolge der Form x + yi oder x + yj eingegeben wird.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Quadratwurzel Sie berechnen möchten' }, + }, + }, + IMSUB: { + description: 'Gibt die Differenz zweier komplexer Zahlen zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + abstract: 'Gibt die Differenz zweier komplexer Zahlen zurück, die beide als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Erforderlich. Die komplexe Zahl, von der "Komplexe_Zahl2" subtrahiert werden soll.' }, + inumber2: { name: 'inumber2', detail: 'Erforderlich. Die komplexe Zahl, die von "Komplexe_Zahl1" subtrahiert werden soll.' }, + }, + }, + IMSUM: { + description: 'Gibt die Summe komplexer Zahlen zurück, die als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + abstract: 'Gibt die Summe komplexer Zahlen zurück, die als Zeichenfolgen der Form x + yi oder x + yj erwartet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Inumber1 ist erforderlich, nachfolgende Zahlen nicht. 1 bis 255 komplexe Zahlen, die addiert werden sollen.' }, + inumber2: { name: 'inumber2', detail: 'Inumber1 ist erforderlich, nachfolgende Zahlen nicht. 1 bis 255 komplexe Zahlen, die addiert werden sollen.' }, + }, + }, + IMTAN: { + description: 'Gibt den Tangens einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + abstract: 'Gibt den Tangens einer komplexen Zahl im Textformat x+yi oder x+yj zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Erforderlich. Die komplexe Zahl, deren Tangens Sie berechnen möchten' }, + }, + }, + IMTANH: { + description: 'Die Funktion IMTANH gibt den hyperbolischen Tangens der angegebenen komplexen Zahl zurück. Beispielsweise gibt die komplexe Zahl „x+yi“ den Wert „tanh(x+yi)“ zurück.', + abstract: 'Die Funktion IMTANH gibt den hyperbolischen Tangens der angegebenen komplexen Zahl zurück. Beispielsweise gibt die komplexe Zahl „x+yi“ den Wert „tanh(x+yi)“ zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=de', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Die komplexe Zahl, deren hyperbolischen Tangens Sie berechnen möchten. Dies kann das Ergebnis der Funktion COMPLEX, eine als komplexe Zahl mit dem Imaginärteil 0 interpretierte reelle Zahl oder eine Zeichenfolge im Format „x+yi“ sein, wobei x und y Zahlen sind.' }, + }, + }, + OCT2BIN: { + description: 'Wandelt eine oktale Zahl in eine binäre Zahl (Dualzahl) um.', + abstract: 'Wandelt eine oktale Zahl in eine binäre Zahl (Dualzahl) um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die oktale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 Zeichen enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 29 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet OCT2BIN die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, + OCT2DEC: { + description: 'Wandelt eine oktale Zahl in eine dezimale Zahl um.', + abstract: 'Wandelt eine oktale Zahl in eine dezimale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die oktale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 oktale Zeichen (30 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 29 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + }, + }, + OCT2HEX: { + description: 'Wandelt eine oktale Zahl in eine hexadezimale Zahl um.', + abstract: 'Wandelt eine oktale Zahl in eine hexadezimale Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die oktale Zahl, die Sie konvertieren möchten. Die Zahl darf nicht mehr als 10 oktale Zeichen (30 Bits) enthalten. Das wichtigste Bit der Zahl ist das Vorzeichenbit. Die verbleibenden 29 Bits sind Magnitude-Bits. Negative Zahlen werden mit der Komplementnotation von zwei dargestellt.' }, + places: { name: 'places', detail: 'Optional. Gibt an, wie viele Zeichen angezeigt werden sollen. Wenn Orte weggelassen werden, verwendet OCT2HEX die erforderliche Mindestanzahl von Zeichen. Das Argument Stellen ist speziell dann hilfreich, wenn der jeweilige Rückgabewert mit führenden Nullen aufgefüllt werden soll.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/en-US.ts b/packages/sheets-formula/src/locale/function-list/engineering/en-US.ts index 0a76834262..567fb9b3e0 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/en-us/excel/functions/besseli-function', }, ], functionParameter: { @@ -35,7 +35,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/en-us/excel/functions/besselj-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/en-us/excel/functions/besselk-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/en-us/excel/functions/bessely-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/en-us/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -90,7 +90,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/en-us/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -99,31 +99,31 @@ const locale = { }, }, BIN2OCT: { - description: 'Converts a binary number to octal', - abstract: 'Converts a binary number to octal', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The binary number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: 'Required. The binary number you want to convert. Number cannot contain more than 10 characters (10 bits). The most significant bit of number is the sign bit. The remaining 9 bits are magnitude bits. Negative numbers are represented using two\'s-complement notation.' }, + places: { name: 'places', detail: 'Optional. The number of characters to use. If places is omitted, BIN2OCT uses the minimum number of characters necessary. Places is useful for padding the return value with leading 0s (zeros).' }, }, }, BITAND: { - description: 'Returns a \'Bitwise And\' of two numbers', - abstract: 'Returns a \'Bitwise And\' of two numbers', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/bitand-function', }, ], 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.' }, + number1: { name: 'number1', detail: 'Required. Must be in decimal form and greater than or equal to 0.' }, + number2: { name: 'number2', detail: 'Required. Must be in decimal form and greater than or equal to 0.' }, }, }, BITLSHIFT: { @@ -132,7 +132,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/en-us/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/en-us/excel/functions/bitor-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/en-us/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -174,7 +174,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/en-us/excel/functions/bitxor-function', }, ], functionParameter: { @@ -188,7 +188,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/en-us/excel/functions/complex-function', }, ], functionParameter: { @@ -203,7 +203,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/en-us/excel/functions/convert-function', }, ], functionParameter: { @@ -218,7 +218,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/en-us/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -232,7 +232,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/en-us/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -246,7 +246,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/en-us/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -260,7 +260,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/en-us/excel/functions/delta-function', }, ], functionParameter: { @@ -274,7 +274,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/en-us/excel/functions/erf-function', }, ], functionParameter: { @@ -288,7 +288,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/en-us/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -301,7 +301,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/en-us/excel/functions/erfc-function', }, ], functionParameter: { @@ -314,7 +314,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/en-us/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/en-us/excel/functions/gestep-function', }, ], functionParameter: { @@ -341,7 +341,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/en-us/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -355,7 +355,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/en-us/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -368,7 +368,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/en-us/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -382,7 +382,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/en-us/excel/functions/imabs-function', }, ], functionParameter: { @@ -395,7 +395,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/en-us/excel/functions/imaginary-function', }, ], functionParameter: { @@ -408,7 +408,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/en-us/excel/functions/imargument-function', }, ], functionParameter: { @@ -421,7 +421,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/en-us/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -434,7 +434,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/en-us/excel/functions/imcos-function', }, ], functionParameter: { @@ -447,7 +447,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/en-us/excel/functions/imcosh-function', }, ], functionParameter: { @@ -460,7 +460,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/en-us/excel/functions/imcot-function', }, ], functionParameter: { @@ -468,16 +468,16 @@ const locale = { }, }, IMCOTH: { - description: 'Returns the hyperbolic cotangent of a complex number', - abstract: 'Returns the hyperbolic cotangent of a complex number', + description: 'The IMCOTH function returns the hyperbolic cotangent of the given complex number. For example, a given complex number "x+yi" returns "coth(x+yi)."', + abstract: 'The IMCOTH function returns the hyperbolic cotangent of the given complex number. For example, a given complex number "x+yi" returns "coth(x+yi)."', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=en', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic cotangent.' }, + inumber: { name: 'inumber', detail: 'The complex number for which you want the hyperbolic cotangent. This can be either the result of the COMPLEX function, a real number interpreted as a complex number with imaginary parts equal to 0, or a string in the format “x+yi” where x and y are numeric.' }, }, }, IMCSC: { @@ -486,7 +486,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/en-us/excel/functions/imcsc-function', }, ], functionParameter: { @@ -499,7 +499,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/en-us/excel/functions/imcsch-function', }, ], functionParameter: { @@ -507,30 +507,30 @@ const locale = { }, }, IMDIV: { - description: 'Returns the quotient of two complex numbers', - abstract: 'Returns the quotient of two complex numbers', + description: 'Returns the quotient of two complex numbers in x + yi or x + yj text format.', + abstract: 'Returns the quotient of two complex numbers in x + yi or x + yj text format.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/en-us/excel/functions/imdiv-function', }, ], functionParameter: { - inumber1: { name: 'inumber1', detail: 'The complex numerator or dividend.' }, - inumber2: { name: 'inumber2', detail: 'The complex denominator or divisor.' }, + inumber1: { name: 'inumber1', detail: 'Required. The complex numerator or dividend.' }, + inumber2: { name: 'inumber2', detail: 'Required. The complex denominator or divisor.' }, }, }, IMEXP: { - description: 'Returns the exponential of a complex number', - abstract: 'Returns the exponential of a complex number', + description: 'Returns the exponential of a complex number in x + yi or x + yj text format.', + abstract: 'Returns the exponential of a complex number in x + yi or x + yj text format.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/en-us/excel/functions/imexp-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the exponential.' }, + inumber: { name: 'inumber', detail: 'Required. A complex number for which you want the exponential.' }, }, }, IMLN: { @@ -539,7 +539,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/en-us/excel/functions/imln-function', }, ], functionParameter: { @@ -547,17 +547,17 @@ const locale = { }, }, 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', + description: 'The IMLOG function returns the logarithm of a complex number for a specified base.', + abstract: 'The IMLOG function returns the logarithm of a complex number for a specified base.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366486?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=en', }, ], 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.' }, + inumber: { name: 'inumber', detail: 'The input value of the logarithm function. The number can be written as plain numbers, e.g. 1, to be interpreted as a real number. The number can be written as quoted text in order to specify both the real and complex coefficients.' }, + base: { name: 'base', detail: 'The base to use when calculating the logarithm. Must be a positive real number.' }, }, }, IMLOG10: { @@ -566,7 +566,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/en-us/excel/functions/imlog10-function', }, ], functionParameter: { @@ -579,7 +579,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/en-us/excel/functions/imlog2-function', }, ], functionParameter: { @@ -592,7 +592,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/en-us/excel/functions/impower-function', }, ], functionParameter: { @@ -606,7 +606,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/en-us/excel/functions/improduct-function', }, ], functionParameter: { @@ -620,7 +620,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/en-us/excel/functions/imreal-function', }, ], functionParameter: { @@ -633,7 +633,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/en-us/excel/functions/imsec-function', }, ], functionParameter: { @@ -646,7 +646,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/en-us/excel/functions/imsech-function', }, ], functionParameter: { @@ -659,7 +659,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/en-us/excel/functions/imsin-function', }, ], functionParameter: { @@ -672,7 +672,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/en-us/excel/functions/imsinh-function', }, ], functionParameter: { @@ -685,7 +685,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/en-us/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -698,7 +698,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/en-us/excel/functions/imsub-function', }, ], functionParameter: { @@ -712,7 +712,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/en-us/excel/functions/imsum-function', }, ], functionParameter: { @@ -726,7 +726,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/en-us/excel/functions/imtan-function', }, ], functionParameter: { @@ -734,16 +734,16 @@ const locale = { }, }, IMTANH: { - description: 'Returns the hyperbolic tangent of a complex number', - abstract: 'Returns the hyperbolic tangent of a complex number', + description: 'The IMTANH function returns the hyperbolic tangent of the given complex number. For example, a given complex number "x+yi" returns "tanh(x+yi)."', + abstract: 'The IMTANH function returns the hyperbolic tangent of the given complex number. For example, a given complex number "x+yi" returns "tanh(x+yi)."', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=en', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic tangent.' }, + inumber: { name: 'inumber', detail: 'The complex number for which you want the hyperbolic tangent. This can be either the result of the COMPLEX function, a real number interpreted as a complex number with imaginary parts equal to 0, or a string in the format “x+yi” where x and y are numeric.' }, }, }, OCT2BIN: { @@ -752,7 +752,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/en-us/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -766,7 +766,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/en-us/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -779,7 +779,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/en-us/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/es-ES.ts b/packages/sheets-formula/src/locale/function-list/engineering/es-ES.ts index 790f1ad82a..1b119a27a9 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/es-es/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/es-es/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/es-es/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/es-es/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/es-es/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/es-es/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/es-es/excel/functions/bin2oct-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/es-es/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/es-es/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/es-es/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/es-es/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/es-es/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/es-es/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/es-es/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/es-es/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/es-es/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/es-es/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/es-es/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/es-es/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/es-es/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/es-es/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/es-es/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/es-es/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/es-es/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/es-es/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/es-es/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/es-es/excel/functions/imabs-function', }, ], functionParameter: { @@ -397,7 +397,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/es-es/excel/functions/imaginary-function', }, ], functionParameter: { @@ -405,16 +405,16 @@ const locale: typeof enUS = { }, }, IMARGUMENT: { - description: 'Devuelve el argumento theta, un ángulo expresado en radianes', - abstract: 'Devuelve el argumento theta, un ángulo expresado en radianes', + description: 'Devuelve el argumento (theta), un ángulo expresado en radianes, de tal forma que:', + abstract: 'Devuelve el argumento (theta), un ángulo expresado en radianes, de tal forma que:', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/es-es/excel/functions/imargument-function', }, ], functionParameter: { - inumber: { name: 'núm_imaginario', detail: 'Un número complejo del que desea obtener el argumento theta.' }, + inumber: { name: 'núm_imaginario', detail: 'Obligatorio. Es el número complejo cuyo argumento desea conocer.' }, }, }, IMCONJUGATE: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/es-es/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/es-es/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/es-es/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/es-es/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: 'Devuelve la cotangente hiperbólica de un número complejo', - abstract: 'Devuelve la cotangente hiperbólica de un número complejo', + description: 'La función IM.COTH devuelve la cotangente hiperbólica del número complejo especificado. Por ejemplo, un número complejo dado, como "x+yi", devuelve "coth(x+yi)".', + abstract: 'La función IM.COTH devuelve la cotangente hiperbólica del número complejo especificado. Por ejemplo, un número complejo dado, como "x+yi", devuelve "coth(x+yi)".', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=es', }, ], functionParameter: { - inumber: { name: 'núm_imaginario', detail: 'Un número complejo del que desea obtener la cotangente hiperbólica.' }, + inumber: { name: 'núm_imaginario', detail: 'Número complejo del que se desea calcular la cotangente hiperbólica. Este argumento puede ser el resultado de la función COMPLEJO, un número real (que se interpreta como un número complejo con las partes imaginarias igual a 0), o una cadena con el formato "x + yi", donde x e y son números.' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/es-es/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/es-es/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/es-es/excel/functions/imdiv-function', }, ], functionParameter: { @@ -523,16 +523,16 @@ const locale: typeof enUS = { }, }, IMEXP: { - description: 'Devuelve la exponencial de un número complejo', - abstract: 'Devuelve la exponencial de un número complejo', + description: 'Devuelve el valor exponencial de un número complejo con el formato de texto x + yi o x + yj.', + abstract: 'Devuelve el valor exponencial de un número complejo con el formato de texto x + yi o x + yj.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/es-es/excel/functions/imexp-function', }, ], functionParameter: { - inumber: { name: 'núm_imaginario', detail: 'Un número complejo del que desea obtener la exponencial.' }, + inumber: { name: 'núm_imaginario', detail: 'Obligatorio. Es el número complejo cuyo valor exponencial desea calcular.' }, }, }, IMLN: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/es-es/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: 'Devuelve el logaritmo de un número complejo para una base especificada', - abstract: 'Devuelve el logaritmo de un número complejo para una base especificada', + description: 'La función IM.LOG devuelve el logaritmo de un número complejo en la base especificada.', + abstract: 'La función IM.LOG devuelve el logaritmo de un número complejo en la base especificada.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=es', }, ], functionParameter: { - inumber: { name: 'núm_imaginario', detail: 'Un número complejo cuyo logaritmo a una base específica se debe calcular.' }, - base: { name: 'base', detail: 'La base que se usa al calcular el logaritmo.' }, + inumber: { name: 'núm_imaginario', detail: 'Valor introducido de la función de logaritmo. El número se puede introducir solo, por ejemplo, 1, y se interpretará como un número real. También se pueden introducir números entre comillas para especificar tanto los coeficientes reales como los complejos.' }, + base: { name: 'base', detail: 'Base que se va a usar para calcular el logaritmo. Debe ser un número real positivo.' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/es-es/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/es-es/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/es-es/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/es-es/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/es-es/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/es-es/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/es-es/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/es-es/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/es-es/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/es-es/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/es-es/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/es-es/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/es-es/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: 'Devuelve la tangente hiperbólica de un número complejo', - abstract: 'Devuelve la tangente hiperbólica de un número complejo', + description: 'La función IM.TANH devuelve la tangente hiperbólica del número complejo especificado. Por ejemplo, un número complejo dado, como "x+yi", devuelve "tanh(x+yi)".', + abstract: 'La función IM.TANH devuelve la tangente hiperbólica del número complejo especificado. Por ejemplo, un número complejo dado, como "x+yi", devuelve "tanh(x+yi)".', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=es', }, ], functionParameter: { - inumber: { name: 'núm_imaginario', detail: 'Un número complejo del que desea obtener la tangente hiperbólica.' }, + inumber: { name: 'núm_imaginario', detail: 'Número complejo del que se desea calcular la tangente hiperbólica. Este argumento puede ser el resultado de la función COMPLEJO, un número real (que se interpreta como un número complejo con las partes imaginarias igual a 0), o una cadena con el formato "x + yi", donde x e y son números.' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/es-es/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/es-es/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/es-es/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/engineering/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/engineering/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/engineering/fr-FR.ts index 60a22638e2..b180e5535b 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/fr-FR.ts @@ -14,8 +14,781 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + BESSELI: { + description: 'Renvoie la fonction de Bessel modifiée In(x) qui équivaut à la fonction de Bessel évaluée pour des arguments purement imaginaires.', + abstract: 'Renvoie la fonction de Bessel modifiée In(x) qui équivaut à la fonction de Bessel évaluée pour des arguments purement imaginaires.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + n: { name: 'N', detail: 'Obligatoire. Représente l’indice de la fonction de Bessel. Si n n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + BESSELJ: { + description: 'Renvoie la fonction de Bessel Jn(x).', + abstract: 'Renvoie la fonction de Bessel Jn(x).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + n: { name: 'N', detail: 'Obligatoire. Représente l’indice de la fonction de Bessel. Si n n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + BESSELK: { + description: 'Renvoie la fonction de Bessel modifiée Kn(x).', + abstract: 'Renvoie la fonction de Bessel modifiée Kn(x).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + n: { name: 'N', detail: 'Obligatoire. Représente l’indice de la fonction. Si n n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + BESSELY: { + description: 'Renvoie la fonction de Bessel Yn(x), également appelée fonction de Weber ou fonction de Neumann.', + abstract: 'Renvoie la fonction de Bessel Yn(x), également appelée fonction de Weber ou fonction de Neumann.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + n: { name: 'N', detail: 'Obligatoire. Représente l’indice de la fonction. Si n n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + BIN2DEC: { + description: 'Convertit un nombre binaire en nombre décimal.', + abstract: 'Convertit un nombre binaire en nombre décimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre binaire à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères (10 bits). Le bit de poids fort de l’argument nombre est le bit de signe. Les 9 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + }, + }, + BIN2HEX: { + description: 'Convertit un nombre binaire en nombre hexadécimal.', + abstract: 'Convertit un nombre binaire en nombre hexadécimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre binaire à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères (10 bits). Le bit de poids fort de l’argument nombre est le bit de signe. Les 9 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Optionnel. Représente le nombre de caractères à utiliser. Si l’argument nb_car est omis, BINHEX utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + BIN2OCT: { + description: 'Convertit un nombre binaire en nombre octal.', + abstract: 'Convertit un nombre binaire en nombre octal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre binaire à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères (10 bits). Le bit de poids fort de l’argument nombre est le bit de signe. Les 9 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Optionnel. Représente le nombre de caractères à utiliser. Si l’argument nb_car est omis, BINOCT utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + BITAND: { + description: 'Renvoie une opération binaire « ET » de deux nombres.', + abstract: 'Renvoie une opération binaire « ET » de deux nombres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Doit être au format décimal et supérieur ou égal à 0.' }, + number2: { name: 'number2', detail: 'Obligatoire. Doit être au format décimal et supérieur ou égal à 0.' }, + }, + }, + BITLSHIFT: { + description: 'Renvoie un nombre décalé vers la gauche du nombre de bits spécifié.', + abstract: 'Renvoie un nombre décalé vers la gauche du nombre de bits spécifié.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Doit être un entier supérieur ou égal à 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Obligatoire. Doit être un entier.' }, + }, + }, + BITOR: { + description: 'Renvoie une opération binaire « OU » de deux nombres.', + abstract: 'Renvoie une opération binaire « OU » de deux nombres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Doit être au format décimal et supérieur ou égal à 0.' }, + number2: { name: 'number2', detail: 'Obligatoire. Doit être au format décimal et supérieur ou égal à 0.' }, + }, + }, + BITRSHIFT: { + description: 'Renvoie un nombre décalé vers la droite du nombre de bits spécifié.', + abstract: 'Renvoie un nombre décalé vers la droite du nombre de bits spécifié.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Doit être un entier supérieur ou égal à 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Obligatoire. Doit être un entier.' }, + }, + }, + BITXOR: { + description: 'Renvoie une opération binaire « XOU » de deux nombres.', + abstract: 'Renvoie une opération binaire « XOU » de deux nombres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Doit être supérieur ou égal à 0.' }, + number2: { name: 'number2', detail: 'Obligatoire. Doit être supérieur ou égal à 0.' }, + }, + }, + COMPLEX: { + description: 'Cette fonction convertit des coefficients réels et imaginaires en un nombre complexe de la forme x + yi ou x + yj.', + abstract: 'Cette fonction convertit des coefficients réels et imaginaires en un nombre complexe de la forme x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Obligatoire. Représente le coefficient réel du nombre complexe.' }, + iNum: { name: 'i_num', detail: 'Obligatoire. Représente le coefficient imaginaire du nombre complexe.' }, + suffix: { name: 'suffix', detail: 'Optionnel. Représente le suffixe de la partie imaginaire du nombre complexe. Si l’argument suffixe est omis, sa valeur par défaut est « i ».' }, + }, + }, + CONVERT: { + description: 'Convertit un nombre d’une unité à une autre unité. Par exemple, la fonction CONVERT peut traduire un tableau de distances en milles en un tableau de distances exprimées en kilomètres.', + abstract: 'Convertit un nombre d’une unité à une autre unité. Par exemple, la fonction CONVERT peut traduire un tableau de distances en milles en un tableau de distances exprimées en kilomètres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'La valeur en from_unit à convertir.' }, + fromUnit: { name: 'from_unit', detail: 'L’unité de number.' }, + toUnit: { name: 'to_unit', detail: 'L’unité du résultat.' }, + }, + }, + DEC2BIN: { + description: 'Convertit un nombre décimal en nombre binaire.', + abstract: 'Convertit un nombre décimal en nombre binaire.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre entier décimal à convertir. Si nombre est négatif, les valeurs nb_car valides ne sont pas prises en compte, et DECBIN renvoie un nombre binaire de 10 caractères (10 bits), dans lequel le bit de poids fort est le bit de signe. Les 9 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Optionnel. Représente le nombre de caractères à utiliser. Si nb_car est omis, DECBIN utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + DEC2HEX: { + description: 'Convertit un nombre décimal en nombre hexadécimal.', + abstract: 'Convertit un nombre décimal en nombre hexadécimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre entier décimal à convertir. Si nombre est négatif, nb_car n’est pas pris en compte, et DECHEX renvoie un nombre hexadécimal de 10 caractères (40 bits), dans lequel le bit de poids fort est le bit de signe. Les 39 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Facultatif. Représente le nombre de caractères à utiliser. Si nb_car est omis, DECHEX utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + DEC2OCT: { + description: 'Convertit un nombre décimal en nombre octal.', + abstract: 'Convertit un nombre décimal en nombre octal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre entier décimal à convertir. Si nombre est négatif, l’argument nb_car n’est pas pris en compte, et DECOCT renvoie un nombre octal de 10 caractères (30 bits), dans lequel le bit de poids fort est le bit de signe. Les 29 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Optionnel. Représente le nombre de caractères à utiliser. Si nb_car est omis, DECOCT utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + DELTA: { + description: 'Teste l’égalité de deux nombres. Renvoie 1 si l’argument nombre1 est égal à l’argument nombre2 ; sinon, renvoie 0. Utilisez cette fonction pour filtrer un ensemble de valeurs. Ainsi, en additionnant les résultats de plusieurs fonctions DELTA, vous calculez le nombre de paires égales. Cette fonction est également connue sous le nom de fonction Delta de Kronecker.', + abstract: 'Teste l’égalité de deux nombres. Renvoie 1 si l’argument nombre1 est égal à l’argument nombre2 ; sinon, renvoie 0. Utilisez cette fonction pour filtrer un ensemble de valeurs. Ainsi, en additionnant les résultats de plusieurs fonctions DELTA, vous calculez le nombre de paires égales. Cette fonction est également connue sous le nom de fonction Delta de Kronecker.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Représente le premier nombre.' }, + number2: { name: 'number2', detail: 'Optionnel. Représente le second nombre. S’il est omis, nombre2 est supposé être égal à zéro.' }, + }, + }, + ERF: { + description: 'Renvoie la valeur de la fonction d’erreur entre limite_inf et limite_sup.', + abstract: 'Renvoie la valeur de la fonction d’erreur entre limite_inf et limite_sup.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Obligatoire. Représente la limite inférieure pour l’intégration de la fonction ERF.' }, + upperLimit: { name: 'upper_limit', detail: 'Optionnel. Représente la limite supérieure pour l’intégration de la fonction ERF. Si cette limite est omise, ERF s’intègre entre zéro et limite_inf.' }, + }, + }, + ERF_PRECISE: { + description: 'Renvoie la fonction d’erreur.', + abstract: 'Renvoie la fonction d’erreur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la limite inférieure pour l’intégration de la fonction ERF.PRECIS.' }, + }, + }, + ERFC: { + description: 'Renvoie la fonction ERF complémentaire intégrée entre x et l’infini.', + abstract: 'Renvoie la fonction ERF complémentaire intégrée entre x et l’infini.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la limite inférieure pour l’intégration de la fonction ERFC.' }, + }, + }, + ERFC_PRECISE: { + description: 'Renvoie la fonction ERF complémentaire intégrée entre x et l’infini.', + abstract: 'Renvoie la fonction ERF complémentaire intégrée entre x et l’infini.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la limite inférieure pour l’intégration de la fonction ERFC.PRECIS.' }, + }, + }, + GESTEP: { + description: 'Renvoie 1 si l’argument nombre est supérieur ou égal à l’argument seuil ou 0 (zéro) dans le cas contraire. Utilisez cette fonction pour filtrer un ensemble de valeurs. Ainsi, en additionnant les résultats de plusieurs fonctions SUP.SEUIL, vous déterminez le nombre de valeurs supérieures à un seuil.', + abstract: 'Renvoie 1 si l’argument nombre est supérieur ou égal à l’argument seuil ou 0 (zéro) dans le cas contraire. Utilisez cette fonction pour filtrer un ensemble de valeurs. Ainsi, en additionnant les résultats de plusieurs fonctions SUP.SEUIL, vous déterminez le nombre de valeurs supérieures à un seuil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à comparer à l’argument seuil.' }, + step: { name: 'step', detail: 'Optionnel. Représente la valeur seuil. Si vous n’indiquez pas de valeur pour seuil, SUP.SEUIL utilise zéro.' }, + }, + }, + HEX2BIN: { + description: 'Convertit un nombre hexadécimal en nombre binaire.', + abstract: 'Convertit un nombre hexadécimal en nombre binaire.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre hexadécimal à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères. Le bit de poids fort de nombre est le bit de signe. Les 9 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Facultatif. Représente le nombre de caractères à utiliser. Si nb_car est omis, HEXBIN utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + HEX2DEC: { + description: 'Convertit un nombre hexadécimal en nombre décimal.', + abstract: 'Convertit un nombre hexadécimal en nombre décimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre hexadécimal à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères (40 bits). Le bit poids fort de l’argument nombre est le bit de signe. Les 39 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + }, + }, + HEX2OCT: { + description: 'Convertit un nombre hexadécimal en nombre octal.', + abstract: 'Convertit un nombre hexadécimal en nombre octal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre hexadécimal à convertir. L’argument nombre ne peut pas comporter plus de 10 caractères. Le bit de poids fort de l’argument nombre est le bit de signe. Les 39 autres bits sont des bits de grandeur. Les nombres négatifs sont représentés à l’aide de la notation de complément à 2.' }, + places: { name: 'places', detail: 'Facultatif. Indique le nombre de caractères à utiliser. Si nb_car est omis, HEXOCT utilise le nombre de caractères minimal nécessaire. L’argument nb_car sert notamment à compléter la valeur renvoyée avec des zéros (0) non significatifs.' }, + }, + }, + IMABS: { + description: 'Cette fonction renvoie la valeur absolue (le module) d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie la valeur absolue (le module) d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez la valeur absolue.' }, + }, + }, + IMAGINARY: { + description: 'Cette fonction renvoie le coefficient imaginaire d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le coefficient imaginaire d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le coefficient imaginaire.' }, + }, + }, + IMARGUMENT: { + description: 'Retourne l’argument (theta), un angle exprimé en radians, de sorte que :', + abstract: 'Retourne l’argument (theta), un angle exprimé en radians, de sorte que :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Nombre complexe pour lequel vous souhaitez l’argument .' }, + }, + }, + IMCONJUGATE: { + description: 'Cette fonction renvoie le nombre complexe conjugué d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le nombre complexe conjugué d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le conjugué.' }, + }, + }, + IMCOS: { + description: 'Cette fonction renvoie le cosinus d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le cosinus d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le cosinus.' }, + }, + }, + IMCOSH: { + description: 'Renvoie le cosinus hyperbolique d’un nombre complexe au format texte x+yi ou x+yj.', + abstract: 'Renvoie le cosinus hyperbolique d’un nombre complexe au format texte x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir le cosinus hyperbolique.' }, + }, + }, + IMCOT: { + description: 'Retourne la cotangente d’un nombre complexe au format texte x+yi ou x+yj.', + abstract: 'Retourne la cotangente d’un nombre complexe au format texte x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Le nombre complexe dont vous souhaitez obtenir la cotangente.' }, + }, + }, + IMCOTH: { + description: 'La fonction IMCOTH affiche la cotangente hyperbolique du nombre complexe donné. Par exemple, le nombre complexe "x+yi" affiche "coth(x+yi)".', + abstract: 'La fonction IMCOTH affiche la cotangente hyperbolique du nombre complexe donné. Par exemple, le nombre complexe "x+yi" affiche "coth(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=fr', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Nombre complexe dont vous souhaitez afficher la cotangente hyperbolique. Cela peut être le résultat de la fonction COMPLEXE, un nombre réel interprété comme un nombre complexe avec des parties imaginaires égales à 0, ou une chaîne au format "x+yi" où x et y sont numériques.' }, + }, + }, + IMCSC: { + description: 'Retourne la cosécante d’un nombre complexe au format texte x+yi ou x+yj.', + abstract: 'Retourne la cosécante d’un nombre complexe au format texte x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir la cosécante.' }, + }, + }, + IMCSCH: { + description: 'Renvoie la cosécante hyperbolique d’un nombre complexe.', + abstract: 'Renvoie la cosécante hyperbolique d’un nombre complexe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir la cosécante hyperbolique.' }, + }, + }, + IMDIV: { + description: 'Cette fonction renvoie le quotient de deux nombres complexes en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le quotient de deux nombres complexes en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Obligatoire. Représente le nombre complexe numérateur ou dividende.' }, + inumber2: { name: 'inumber2', detail: 'Obligatoire. Représente le nombre complexe dénominateur ou diviseur.' }, + }, + }, + IMEXP: { + description: 'Cette fonction renvoie la fonction exponentielle d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie la fonction exponentielle d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez la fonction exponentielle.' }, + }, + }, + IMLN: { + description: 'Cette fonction renvoie le logarithme népérien d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le logarithme népérien d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le logarithme népérien.' }, + }, + }, + IMLOG: { + description: 'La fonction COMPLEXE.LOG affiche le logarithme d\'un nombre complexe pour une base spécifiée.', + abstract: 'La fonction COMPLEXE.LOG affiche le logarithme d\'un nombre complexe pour une base spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=fr', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Valeur d\'entrée de la fonction logarithme. Le nombre peut être écrit sous forme brute (1, par exemple) et sera alors interprété comme un nombre réel. Le nombre peut être entouré de guillemets, pour spécifier à la fois les coefficients réels et complexes.' }, + base: { name: 'base', detail: 'Base servant à calculer le logarithme. Doit être un nombre réel positif.' }, + }, + }, + IMLOG10: { + description: 'Cette fonction renvoie le logarithme en base 10 d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le logarithme en base 10 d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le logarithme.' }, + }, + }, + IMLOG2: { + description: 'Cette fonction renvoie le logarithme en base 2 d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le logarithme en base 2 d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le logarithme de base 2.' }, + }, + }, + IMPOWER: { + description: 'Cette fonction renvoie un nombre complexe en format texte x + yi ou x + yj, après l’avoir élevé à une puissance.', + abstract: 'Cette fonction renvoie un nombre complexe en format texte x + yi ou x + yj, après l’avoir élevé à une puissance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente le nombre complexe que vous voulez élever à une puissance.' }, + number: { name: 'number', detail: 'Obligatoire. Représente la puissance à laquelle vous voulez élever ce nombre complexe.' }, + }, + }, + IMPRODUCT: { + description: 'Cette fonction renvoie le produit de 1 à 255 nombres complexes au format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le produit de 1 à 255 nombres complexes au format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'nombre_complexe1 est obligatoire, mais les nombres_complexes suivants ne le sont pas. Il s’agit des nombres complexes de 1 à 255 à multiplier.' }, + inumber2: { name: 'inumber2', detail: 'nombre_complexe1 est obligatoire, mais les nombres_complexes suivants ne le sont pas. Il s’agit des nombres complexes de 1 à 255 à multiplier.' }, + }, + }, + IMREAL: { + description: 'Cette fonction renvoie le coefficient réel d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le coefficient réel d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le coefficient réel.' }, + }, + }, + IMSEC: { + description: 'Retourne la sécante d’un nombre complexe au format texte x+yi ou x+yj.', + abstract: 'Retourne la sécante d’un nombre complexe au format texte x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir la sécante.' }, + }, + }, + IMSECH: { + description: 'Renvoie la sécante hyperbolique d’un nombre complexe.', + abstract: 'Renvoie la sécante hyperbolique d’un nombre complexe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir la sécante hyperbolique.' }, + }, + }, + IMSIN: { + description: 'Cette fonction renvoie le sinus d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie le sinus d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez le sinus.' }, + }, + }, + IMSINH: { + description: 'La fonction IMSINH retourne le sinus hyperbolique d’un nombre complexe au format texte x+yi ou x+yj.', + abstract: 'La fonction IMSINH retourne le sinus hyperbolique d’un nombre complexe au format texte x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir le sinus hyperbolique.' }, + }, + }, + IMSQRT: { + description: 'Cette fonction renvoie la racine carrée d’un nombre complexe en format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie la racine carrée d’un nombre complexe en format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Représente un nombre complexe dont vous recherchez la racine carrée.' }, + }, + }, + IMSUB: { + description: 'Cette fonction renvoie la différence entre deux nombres complexes au format texte x + yi ou x + yj.', + abstract: 'Cette fonction renvoie la différence entre deux nombres complexes au format texte x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Obligatoire. Représente le nombre complexe duquel vous voulez soustraire l’argument nombre_complexe2.' }, + inumber2: { name: 'inumber2', detail: 'Obligatoire. Représente le nombre complexe à soustraire de l’argument nombre_complexe1.' }, + }, + }, + IMSUM: { + description: 'Renvoie la somme de nombres complexes.', + abstract: 'Renvoie la somme de nombres complexes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: '1 à 255 nombres complexes à additionner.' }, + inumber2: { name: 'inumber2', detail: 'Nombre complexe supplémentaire à additionner.' }, + }, + }, + IMTAN: { + description: 'Renvoie la tangente d’un nombre complexe.', + abstract: 'Renvoie la tangente d’un nombre complexe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obligatoire. Un nombre complexe pour lequel vous souhaitez obtenir la tangente.' }, + }, + }, + IMTANH: { + description: 'La fonction IMTANH affiche la tangente hyperbolique du nombre complexe donné. Par exemple, le nombre complexe "x+yi" affiche "tanh(x+yi)".', + abstract: 'La fonction IMTANH affiche la tangente hyperbolique du nombre complexe donné. Par exemple, le nombre complexe "x+yi" affiche "tanh(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=fr', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Nombre complexe dont vous souhaitez afficher la tangente hyperbolique. Cela peut être le résultat de la fonction COMPLEXE, un nombre réel interprété comme un nombre complexe avec des parties imaginaires égales à 0, ou une chaîne au format "x+yi" où x et y sont numériques.' }, + }, + }, + OCT2BIN: { + description: 'Convertit un nombre octal en nombre binaire.', + abstract: 'Convertit un nombre octal en nombre binaire.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre octal à convertir. Il ne doit pas comporter plus de 10 caractères; le bit de poids fort est le bit de signe.' }, + places: { name: 'places', detail: 'Facultatif. Représente le nombre de caractères à utiliser. S’il est omis, OCT2BIN utilise le nombre minimal nécessaire.' }, + }, + }, + OCT2DEC: { + description: 'Convertit un nombre octal en nombre décimal.', + abstract: 'Convertit un nombre octal en nombre décimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre octal à convertir. Il ne doit pas comporter plus de 10 caractères octaux; le bit de poids fort est le bit de signe.' }, + }, + }, + OCT2HEX: { + description: 'Convertit un nombre octal en nombre hexadécimal.', + abstract: 'Convertit un nombre octal en nombre hexadécimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre octal à convertir. Il ne doit pas comporter plus de 10 caractères octaux; le bit de poids fort est le bit de signe.' }, + places: { name: 'places', detail: 'Optionnel. Représente le nombre de caractères à utiliser. S’il est omis, OCT2HEX utilise le nombre minimal nécessaire.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/id-ID.ts b/packages/sheets-formula/src/locale/function-list/engineering/id-ID.ts new file mode 100644 index 0000000000..8b5b5e892f --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/id-ID.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'Mengembalikan fungsi Bessel yang dimodifikasi, yang setara dengan fungsi Bessel yang dievaluasi untuk argumen imajiner murni.', + abstract: 'Mengembalikan fungsi Bessel yang dimodifikasi, yang setara dengan fungsi Bessel yang dievaluasi untuk argumen imajiner murni.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + n: { name: 'N', detail: 'Diperlukan. Urutan fungsi Bessel. Jika n bukan bilangan bulat, maka dipotong.' }, + }, + }, + BESSELJ: { + description: 'Mengembalikan fungsi Bessel.', + abstract: 'Mengembalikan fungsi Bessel.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + n: { name: 'N', detail: 'Diperlukan. Urutan fungsi Bessel. Jika n bukan bilangan bulat, maka dipotong.' }, + }, + }, + BESSELK: { + description: 'Mengembalikan fungsi Bessel yang dimodifikasi, yang setara dengan fungsi Bessel yang dievaluasi untuk argumen imajiner murni.', + abstract: 'Mengembalikan fungsi Bessel yang dimodifikasi, yang setara dengan fungsi Bessel yang dievaluasi untuk argumen imajiner murni.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + n: { name: 'N', detail: 'Diperlukan. Urutan fungsi. Jika n bukan bilangan bulat, maka dipotong.' }, + }, + }, + BESSELY: { + description: 'Mengembalikan fungsi Bessel, yang disebut juga fungsi Weber atau fungsi Neumann.', + abstract: 'Mengembalikan fungsi Bessel, yang disebut juga fungsi Weber atau fungsi Neumann.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + n: { name: 'N', detail: 'Diperlukan. Urutan fungsi. Jika n bukan bilangan bulat, maka dipotong.' }, + }, + }, + BIN2DEC: { + description: 'Mengonversi bilangan biner ke desimal.', + abstract: 'Mengonversi bilangan biner ke desimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan biner yang ingin Anda konversi. Number tidak dapat berisi lebih dari 10 karakter (10 bit). Bit angka paling signifikan adalah bit tanda. Sisa 9 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + }, + }, + BIN2HEX: { + description: 'Mengonversi bilangan biner menjadi heksadesimal.', + abstract: 'Mengonversi bilangan biner menjadi heksadesimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Bilangan biner yang ingin Anda konversi.' }, + places: { name: 'places', detail: 'Jumlah karakter yang akan digunakan.' }, + }, + }, + BIN2OCT: { + description: 'Mengonversi bilangan biner ke oktal.', + abstract: 'Mengonversi bilangan biner ke oktal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan biner yang ingin Anda konversi. Number tidak dapat berisi lebih dari 10 karakter (10 bit). Bit angka paling signifikan adalah bit tanda. Sisa 9 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika places dihilangkan, BIN2OCT menggunakan jumlah minimum karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan jarak antar baris 0 (nol).' }, + }, + }, + BITAND: { + description: 'Mengembalikan sebuah \'AND\' dari dua angka pada tingkat bit.', + abstract: 'Mengembalikan sebuah \'AND\' dari dua angka pada tingkat bit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Harus dalam bentuk desimal yang lebih besar dari atau sama dengan 0.' }, + number2: { name: 'number2', detail: 'Diperlukan. Harus dalam bentuk desimal yang lebih besar dari atau sama dengan 0.' }, + }, + }, + BITLSHIFT: { + description: 'Mengembalikan angka yang digeser ke kiri oleh jumlah bit yang ditentukan.', + abstract: 'Mengembalikan angka yang digeser ke kiri oleh jumlah bit yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka harus berupa bilangan bulat yang lebih besar atau sama dengan 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Diperlukan. Shift_amount harus berupa bilangan bulat.' }, + }, + }, + BITOR: { + description: 'Mengembalikan sebuah \'OR\' dari dua angka pada tingkat bit.', + abstract: 'Mengembalikan sebuah \'OR\' dari dua angka pada tingkat bit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Harus dalam bentuk desimal yang lebih besar dari atau sama dengan 0.' }, + number2: { name: 'number2', detail: 'Diperlukan. Harus dalam bentuk desimal yang lebih besar dari atau sama dengan 0.' }, + }, + }, + BITRSHIFT: { + description: 'Mengembalikan nilai yang digeser ke kanan sebanyak shift_amount bit.', + abstract: 'Mengembalikan nilai yang digeser ke kanan sebanyak shift_amount bit.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angka harus berupa bilangan bulat yang lebih besar dari atau sama dengan 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Shift_amount harus berupa bilangan bulat.' }, + }, + }, + BITXOR: { + description: 'Mengembalikan sebuah \'XOR\' dari dua angka pada tingkat bit.', + abstract: 'Mengembalikan sebuah \'XOR\' dari dua angka pada tingkat bit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Harus lebih besar dari atau sama dengan 0.' }, + number2: { name: 'number2', detail: 'Diperlukan. Harus lebih besar dari atau sama dengan 0.' }, + }, + }, + COMPLEX: { + description: 'Mengonversi koefisien riil dan imajiner ke dalam bilangan kompleks dari bentuk x + yi atau x + yj.', + abstract: 'Mengonversi koefisien riil dan imajiner ke dalam bilangan kompleks dari bentuk x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Diperlukan. Koefisien riil dari bilangan kompleks tersebut.' }, + iNum: { name: 'i_num', detail: 'Diperlukan. Koefisien imajiner dari bilangan kompleks tersebut.' }, + suffix: { name: 'suffix', detail: 'Opsional. Akhiran komponen imajiner dari bilangan kompleks tersebut. Jika dihilangkan, akhiran diasumsikan sebagai "i".' }, + }, + }, + CONVERT: { + description: 'Mengonversi angka dari satu sistem pengukuran ke sistem lain. Misalnya, CONVERT dapat menerjemahkan tabel jarak dalam mil ke tabel jarak dalam kilometer.', + abstract: 'Mengonversi angka dari satu sistem pengukuran ke sistem lain. Misalnya, CONVERT dapat menerjemahkan tabel jarak dalam mil ke tabel jarak dalam kilometer.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Nilai dalam from_unit yang akan dikonversi.' }, + fromUnit: { name: 'from_unit', detail: 'Satuan untuk number.' }, + toUnit: { name: 'to_unit', detail: 'Satuan untuk hasil.' }, + }, + }, + DEC2BIN: { + description: 'Mengonversi bilangan desimal ke biner.', + abstract: 'Mengonversi bilangan desimal ke biner.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan bulat desimal yang ingin Anda konversi. Jika bilangannya negatif, nilai tempat valid diabaikan dan DEC2BIN mengembalikan bilangan biner 10 karakter (10 bit) yang bit paling signifikan adalah bit tanda. Sisa 9 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika places dihilangkan, DEC2BIN menggunakan jumlah minimal karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan awalan 0 (nol).' }, + }, + }, + DEC2HEX: { + description: 'Mengonversi bilangan desimal ke heksadesimal.', + abstract: 'Mengonversi bilangan desimal ke heksadesimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan bulat desimal yang ingin Anda konversi. Jika angkanya negatif, tempat diabaikan dan DEC2HEX mengembalikan angka heksadesimal 10 karakter (40 bit) yang bit paling signifikan adalah bit tanda. Sisa 39 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika tempat dihilangkan, DEC2HEX menggunakan jumlah minimal karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan awalan 0 (nol).' }, + }, + }, + DEC2OCT: { + description: 'Mengonversi bilangan desimal ke oktal.', + abstract: 'Mengonversi bilangan desimal ke oktal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan bulat desimal yang ingin Anda konversi. Jika bilangannya negatif, tempat diabaikan dan DEC2OCT mengembalikan bilangan oktal 10 karakter (30 bit) yang bit paling signifikan adalah bit tanda. Ke-29 bit sisanya adalah bit yang besar. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika tempat dihilangkan, DEC2OCT menggunakan jumlah minimal karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan awalan 0 (nol).' }, + }, + }, + DELTA: { + description: 'Menguji apakah dua nilai adalah sama. Mengembalikan 1 jika number1 = number2; jika tidak, mengembalikan 0. Gunakan fungsi ini untuk memfilter sekumpulan nilai. Misalnya, dengan merangkum beberapa fungsi DELTA, Anda menghitung perhitungan pasangan setara. Fungsi ini juga dikenal sebagai fungsi Kronecker Delta.', + abstract: 'Menguji apakah dua nilai adalah sama. Mengembalikan 1 jika number1 = number2; jika tidak, mengembalikan 0. Gunakan fungsi ini untuk memfilter sekumpulan nilai. Misalnya, dengan merangkum beberapa fungsi DELTA, Anda menghitung perhitungan pasangan setara. Fungsi ini juga dikenal sebagai fungsi Kronecker Delta.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Angka pertama.' }, + number2: { name: 'number2', detail: 'Opsional. Angka kedua. Jika dihilangkan, angka2 diasumsikan sebagai nol.' }, + }, + }, + ERF: { + description: 'Mengembalikan fungsi kesalahan yang terintegrasi antara lower_limit dan upper_limit.', + abstract: 'Mengembalikan fungsi kesalahan yang terintegrasi antara lower_limit dan upper_limit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Diperlukan. Batas bawah untuk mengintegrasikan ERF.' }, + upperLimit: { name: 'upper_limit', detail: 'Opsional. Batas atas untuk mengintegrasikan ERF. Jika dihilangkan, ERF berintegrasi antara nol dan lower_limit.' }, + }, + }, + ERF_PRECISE: { + description: 'Mengembalikan fungsi kesalahan.', + abstract: 'Mengembalikan fungsi kesalahan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Batas bawah untuk mengintegrasikan ERF.PRECISE.' }, + }, + }, + ERFC: { + description: 'Mengembalikan fungsi ERF komplementer yang terintegrasi antara x dan tak terhingga.', + abstract: 'Mengembalikan fungsi ERF komplementer yang terintegrasi antara x dan tak terhingga.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Batas bawah untuk mengintegrasikan ERFC.' }, + }, + }, + ERFC_PRECISE: { + description: 'Mengembalikan fungsi ERF komplementer yang terintegrasi antara x dan tak terhingga.', + abstract: 'Mengembalikan fungsi ERF komplementer yang terintegrasi antara x dan tak terhingga.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Batas bawah untuk mengintegrasikan ERFC.PRECISE.' }, + }, + }, + GESTEP: { + description: 'Mengembalikan 1 jika angka ≥ langkah; mengembalikan 0 (zero) jika sebaliknya. Gunakan fungsi ini untuk memfilter sekumpulan nilai. Misalnya, dengan menjumlahkan beberapa fungsi GESTEP, Anda menghitung jumlah nilai yang melebihi ambang batas.', + abstract: 'Mengembalikan 1 jika angka ≥ langkah; mengembalikan 0 (zero) jika sebaliknya. Gunakan fungsi ini untuk memfilter sekumpulan nilai. Misalnya, dengan menjumlahkan beberapa fungsi GESTEP, Anda menghitung jumlah nilai yang melebihi ambang batas.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai untuk diuji berdasarkan langkah.' }, + step: { name: 'step', detail: 'Opsional. Nilai ambang batas. Jika sebuah nilai untuk angka dihilangkan, GESTEP menggunakan nol.' }, + }, + }, + HEX2BIN: { + description: 'Mengonversi angka heksadesimal ke biner.', + abstract: 'Mengonversi angka heksadesimal ke biner.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka heksadesimal yang ingin dikonversi. Angka tidak boleh berisi lebih dari 10 karakter. Bit angka yang paling signifikan adalah sign bit (bit ke-40 dari kanan). Sisa 9 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika tempat dihilangkan, HEX2BIN menggunakan jumlah minimum karakter yang diperlukan. Tempat berguna untuk mengisi nilai pengembalian dengan jarak antar baris 0 (nol).' }, + }, + }, + HEX2DEC: { + description: 'Mengonversi angka heksadesimal ke desimal.', + abstract: 'Mengonversi angka heksadesimal ke desimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka heksadesimal yang ingin dikonversi. Angka tidak boleh berisi lebih dari 10 karakter (40 bit). Bit angka yang paling penting adalah bit tanda. Sisa 39 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + }, + }, + HEX2OCT: { + description: 'Mengonversi angka heksadesimal ke oktal.', + abstract: 'Mengonversi angka heksadesimal ke oktal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka heksadesimal yang ingin dikonversi. Angka tidak boleh berisi lebih dari 10 karakter. Bit angka yang paling penting adalah bit tanda. Sisa 39 bit adalah bit besaran. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika tempat dihilangkan, HEX2OCT menggunakan jumlah minimum karakter yang diperlukan. Tempat berguna untuk mengisi nilai pengembalian dengan jarak antar baris 0 (nol).' }, + }, + }, + IMABS: { + description: 'Mengembalikan nilai mutlak (modulus) bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan nilai mutlak (modulus) bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan nilai mutlaknya.' }, + }, + }, + IMAGINARY: { + description: 'Mengembalikan koefisien imajiner bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan koefisien imajiner bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan koefisien imajinernya.' }, + }, + }, + IMARGUMENT: { + description: 'Mengembalikan argumen (theta), sudut yang dinyatakan dalam radian, seperti:', + abstract: 'Mengembalikan argumen (theta), sudut yang dinyatakan dalam radian, seperti:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan untuk argumen .' }, + }, + }, + IMCONJUGATE: { + description: 'Mengembalikan konjugasi kompleks bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan konjugasi kompleks bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan konjugasinya.' }, + }, + }, + IMCOS: { + description: 'Mengembalikan kosinus bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan kosinus bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan kosinusnya.' }, + }, + }, + IMCOSH: { + description: 'Mengembalikan kosinus hiperbolik bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan kosinus hiperbolik bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan kosinus hiperboliknya.' }, + }, + }, + IMCOT: { + description: 'Mengembalikan kotangen bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan kotangen bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Bilangan kompleks yang ingin Anda cari kotangennya.' }, + }, + }, + IMCOTH: { + description: 'Fungsi IMCOTH mengembalikan kotangen hiperbolik dari bilangan kompleks yang diberikan. Misalnya, untuk bilangan kompleks "x+yi", fungsi ini mengembalikan "coth(x+yi)".', + abstract: 'Fungsi IMCOTH mengembalikan kotangen hiperbolik dari bilangan kompleks yang diberikan. Misalnya, untuk bilangan kompleks "x+yi", fungsi ini mengembalikan "coth(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=id', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Bilangan kompleks yang ingin Anda cari kotangen hiperboliknya. Nilai ini dapat berupa hasil fungsi COMPLEX, bilangan riil yang ditafsirkan sebagai bilangan kompleks dengan bagian imajiner 0, atau teks berformat “x+yi”, dengan x dan y berupa angka.' }, + }, + }, + IMCSC: { + description: 'Mengembalikan kosekan bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan kosekan bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan kosekannya.' }, + }, + }, + IMCSCH: { + description: 'Mengembalikan kosekan hiperbolik dari bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan kosekan hiperbolik dari bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan kosekan hiperboliknya.' }, + }, + }, + IMDIV: { + description: 'Mengembalikan hasil bagi dua bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan hasil bagi dua bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Diperlukan. Pembilang kompleks atau dividen.' }, + inumber2: { name: 'inumber2', detail: 'Diperlukan. Penyebut kompleks atau pembagi.' }, + }, + }, + IMEXP: { + description: 'Mengembalikan eksponensial bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan eksponensial bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang Anda inginkan ekponensialnya.' }, + }, + }, + IMLN: { + description: 'Mengembalikan logaritma natural bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan logaritma natural bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan logaritma naturalnya.' }, + }, + }, + IMLOG: { + description: 'Fungsi IMLOG mengembalikan logaritma bilangan kompleks untuk basis yang ditentukan.', + abstract: 'Fungsi IMLOG mengembalikan logaritma bilangan kompleks untuk basis yang ditentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=id', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Nilai masukan fungsi logaritma. Angka dapat ditulis sebagai angka biasa, misalnya 1, untuk ditafsirkan sebagai bilangan riil, atau sebagai teks dalam tanda kutip untuk menentukan koefisien riil dan imajiner.' }, + base: { name: 'base', detail: 'Basis yang digunakan untuk menghitung logaritma. Harus berupa bilangan riil positif.' }, + }, + }, + IMLOG10: { + description: 'Mengembalikan logaritma umum (dasar 10) bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan logaritma umum (dasar 10) bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan logaritma umumnya.' }, + }, + }, + IMLOG2: { + description: 'Mengembalikan logaritma basis 2 dari sebuah bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan logaritma basis 2 dari sebuah bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan logaritma basis 2-nya.' }, + }, + }, + IMPOWER: { + description: 'Mengembalikan bilangan kompleks dalam format teks x + yi atau x + yj yang dinaikkan menjadi pangkat.', + abstract: 'Mengembalikan bilangan kompleks dalam format teks x + yi atau x + yj yang dinaikkan menjadi pangkat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda jadikan pangkat.' }, + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda pangkatkan ke bilangan kompleks.' }, + }, + }, + IMPRODUCT: { + description: 'Mengembalikan hasil kali bilangan kompleks dari 1 sampai 255 dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan hasil kali bilangan kompleks dari 1 sampai 255 dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: '1 hingga 255 bilangan kompleks yang akan dikalikan.' }, + inumber2: { name: 'inumber2', detail: 'Bilangan kompleks berikutnya yang akan dikalikan.' }, + }, + }, + IMREAL: { + description: 'Mengembalikan koefisien riil bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan koefisien riil bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan koefisien riilnya.' }, + }, + }, + IMSEC: { + description: 'Mengembalikan sekan bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan sekan bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan sekannya.' }, + }, + }, + IMSECH: { + description: 'Mengembalikan sekan hiperbolik bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan sekan hiperbolik bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan sekan hiperboliknya.' }, + }, + }, + IMSIN: { + description: 'Mengembalikan sinus dari bilangan kompleks.', + abstract: 'Mengembalikan sinus dari bilangan kompleks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Bilangan kompleks yang ingin Anda cari sinusnya.' }, + }, + }, + IMSINH: { + description: 'Mengembalikan sinus hiperbolik dari bilangan kompleks.', + abstract: 'Mengembalikan sinus hiperbolik dari bilangan kompleks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Bilangan kompleks yang ingin Anda cari sinus hiperboliknya.' }, + }, + }, + IMSQRT: { + description: 'Mengembalikan akar kuadrat dari bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan akar kuadrat dari bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan akar kuadratnya.' }, + }, + }, + IMSUB: { + description: 'Mengembalikan selisih dari dua bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan selisih dari dua bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda kurangi dengan inumber2.' }, + inumber2: { name: 'inumber2', detail: 'Diperlukan. Bilangan kompleks untuk mengurangi inumber1.' }, + }, + }, + IMSUM: { + description: 'Mengembalikan jumlah dari dua bilangan kompleks dalam format teks x + yi atau x + yj.', + abstract: 'Mengembalikan jumlah dari dua bilangan kompleks dalam format teks x + yi atau x + yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: '1 hingga 255 bilangan kompleks yang akan dijumlahkan.' }, + inumber2: { name: 'inumber2', detail: 'Bilangan kompleks berikutnya yang akan dijumlahkan.' }, + }, + }, + IMTAN: { + description: 'Mengembalikan tangen bilangan kompleks dalam format teks x+yi atau x+yj.', + abstract: 'Mengembalikan tangen bilangan kompleks dalam format teks x+yi atau x+yj.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Diperlukan. Bilangan kompleks yang ingin Anda dapatkan tangennya.' }, + }, + }, + IMTANH: { + description: 'Fungsi IMTANH mengembalikan tangen hiperbolik dari bilangan kompleks yang diberikan. Misalnya, untuk bilangan kompleks "x+yi", fungsi ini mengembalikan "tanh(x+yi)".', + abstract: 'Fungsi IMTANH mengembalikan tangen hiperbolik dari bilangan kompleks yang diberikan. Misalnya, untuk bilangan kompleks "x+yi", fungsi ini mengembalikan "tanh(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=id', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Bilangan kompleks yang ingin Anda cari tangen hiperboliknya. Nilai ini dapat berupa hasil fungsi COMPLEX, bilangan riil yang ditafsirkan sebagai bilangan kompleks dengan bagian imajiner 0, atau teks berformat “x+yi”, dengan x dan y berupa angka.' }, + }, + }, + OCT2BIN: { + description: 'Mengonversi angka oktal ke biner.', + abstract: 'Mengonversi angka oktal ke biner.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka oktal yang ingin Anda konversikan. Angka tidak boleh berisi lebih dari 10 karakter. Bit angka paling signifikan adalah bit tanda. Ke-29 bit sisanya adalah bit yang besar. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika places dihilangkan, OCT2BIN menggunakan jumlah minimum karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan awalan 0 (nol).' }, + }, + }, + OCT2DEC: { + description: 'Mengonversi angka oktal ke desimal.', + abstract: 'Mengonversi angka oktal ke desimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka oktal yang ingin Anda konversikan. Angka tidak boleh berisi lebih dari 10 karakter oktal (30 bit). Bit angka paling signifikan adalah bit tanda. Ke-29 bit sisanya adalah bit yang besar. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + }, + }, + OCT2HEX: { + description: 'Mengonversi angka oktal ke heksadesimal.', + abstract: 'Mengonversi angka oktal ke heksadesimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka oktal yang ingin Anda konversikan. Angka tidak boleh berisi lebih dari 10 karakter oktal (30 bit). Bit angka paling signifikan adalah bit tanda. Ke-29 bit sisanya adalah bit yang besar. Angka negatif dinyatakan dengan menggunakan notasi dua pelengkap.' }, + places: { name: 'places', detail: 'Opsional. Jumlah karakter yang digunakan. Jika tempat dikosongkan, OCT2HEX menggunakan jumlah minimum karakter yang diperlukan. Places berguna untuk mengisi nilai hasil dengan awalan 0 (nol).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/it-IT.ts b/packages/sheets-formula/src/locale/function-list/engineering/it-IT.ts new file mode 100644 index 0000000000..b9b8ea99cb --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/it-IT.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'Restituisce la funzione di Bessel modificata, che equivale alla funzione di Bessel calcolata in base ad argomenti del tutto immaginari.', + abstract: 'Restituisce la funzione di Bessel modificata, che equivale alla funzione di Bessel calcolata in base ad argomenti del tutto immaginari.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + n: { name: 'N', detail: 'Obbligatorio. Ordine della funzione di Bessel. Se n non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + BESSELJ: { + description: 'Restituisce la funzione di Bessel Jn(x).', + abstract: 'Restituisce la funzione di Bessel Jn(x).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + n: { name: 'N', detail: 'Obbligatorio. Ordine della funzione di Bessel. Se n non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + BESSELK: { + description: 'Restituisce la funzione di Bessel modificata, che equivale alle funzioni di Bessel calcolate in base ad argomenti del tutto immaginari.', + abstract: 'Restituisce la funzione di Bessel modificata, che equivale alle funzioni di Bessel calcolate in base ad argomenti del tutto immaginari.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + n: { name: 'N', detail: 'Obbligatorio. Ordine della funzione. Se n non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + BESSELY: { + description: 'Restituisce la funzione di Bessel, definita anche funzione di Weber o di Neumann.', + abstract: 'Restituisce la funzione di Bessel, definita anche funzione di Weber o di Neumann.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + n: { name: 'N', detail: 'Obbligatorio. Ordine della funzione. Se n non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + BIN2DEC: { + description: 'Converte un numero binario in decimale.', + abstract: 'Converte un numero binario in decimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero binario che si desidera convertire. Num non può essere costituito da più di 10 caratteri, ovvero 10 bit. Il bit più significativo di num è il bit del segno. I rimanenti 9 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + }, + }, + BIN2HEX: { + description: 'Converte un numero binario in esadecimale.', + abstract: 'Converte un numero binario in esadecimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero binario che si desidera convertire. Num non può essere costituito da più di 10 caratteri, ovvero 10 bit. Il bit più significativo di num è il bit del segno. I rimanenti 9 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Opzionale. Numero di caratteri da utilizzare. Se cifre viene omesso, BINARIO.HEX utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere zeri iniziali al valore restituito.' }, + }, + }, + BIN2OCT: { + description: 'Converte un numero binario in ottale.', + abstract: 'Converte un numero binario in ottale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero binario che si desidera convertire. Num non può essere costituito da più di 10 caratteri, ovvero 10 bit. Il bit più significativo di num è il bit del segno. I rimanenti 9 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Opzionale. Numero di caratteri da utilizzare. Se cifre viene omesso, BINARIO.OCT utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere zeri iniziali al valore restituito.' }, + }, + }, + BITAND: { + description: 'Restituisce un confronto "AND" bit per bit di due numeri.', + abstract: 'Restituisce un confronto "AND" bit per bit di due numeri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Deve essere in formato decimale e maggiore o uguale a 0.' }, + number2: { name: 'number2', detail: 'Obbligatorio. Deve essere in formato decimale e maggiore o uguale a 0.' }, + }, + }, + BITLSHIFT: { + description: 'Restituisce un numero spostato a sinistra del numero di bit specificato.', + abstract: 'Restituisce un numero spostato a sinistra del numero di bit specificato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Deve essere un numero intero maggiore o uguale a 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Obbligatorio. Deve essere un numero intero.' }, + }, + }, + BITOR: { + description: 'Restituisce un confronto "OR" bit per bit di due numeri.', + abstract: 'Restituisce un confronto "OR" bit per bit di due numeri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Deve essere in formato decimale e maggiore o uguale a 0.' }, + number2: { name: 'number2', detail: 'Obbligatorio. Deve essere in formato decimale e maggiore o uguale a 0.' }, + }, + }, + BITRSHIFT: { + description: 'Restituisce un numero spostato a destra del numero di bit specificato.', + abstract: 'Restituisce un numero spostato a destra del numero di bit specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Deve essere un numero intero maggiore o uguale a 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Obbligatorio. Deve essere un numero intero.' }, + }, + }, + BITXOR: { + description: 'Restituisce uno \'XOR\' bit per bit di due numeri.', + abstract: 'Restituisce uno \'XOR\' bit per bit di due numeri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Deve essere maggiore di o uguale a 0.' }, + number2: { name: 'number2', detail: 'Obbligatorio. Deve essere maggiore di o uguale a 0.' }, + }, + }, + COMPLEX: { + description: 'Converte la parte reale e il coefficiente dell\'immaginario in un numero complesso di tipo x + yi o x + yj.', + abstract: 'Converte la parte reale e il coefficiente dell\'immaginario in un numero complesso di tipo x + yi o x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Obbligatorio. Parte reale del numero complesso.' }, + iNum: { name: 'i_num', detail: 'Obbligatorio. Coefficiente immaginario del numero complesso.' }, + suffix: { name: 'suffix', detail: 'Opzionale. Suffisso per la componente immaginaria del numero complesso. Se suffisso viene omesso, verrà considerato uguale a "i".' }, + }, + }, + CONVERT: { + description: 'Converte un numero da un sistema di unità di misura a un altro. Ad esempio, CONVERTI può convertire in chilometri una tabella di distanze espresse in miglia.', + abstract: 'Converte un numero da un sistema di unità di misura a un altro. Ad esempio, CONVERTI può convertire in chilometri una tabella di distanze espresse in miglia.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Valore in from_unit da convertire.' }, + fromUnit: { name: 'from_unit', detail: 'Unità di misura del numero.' }, + toUnit: { name: 'to_unit', detail: 'Unità di misura del risultato.' }, + }, + }, + DEC2BIN: { + description: 'Converte un numero decimale in binario.', + abstract: 'Converte un numero decimale in binario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. L’intero decimale da convertire. Se num è negativo, i valori di posizione validi vengono ignorati e DEC2BIN restituisce un numero binario di 10 caratteri (10 bit) in cui il bit più significativo è il bit del segno. I rimanenti 9 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Facoltativo. Numero di caratteri da utilizzare. Se cifre viene omesso, DECIMALE.BINARIO utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, + DEC2HEX: { + description: 'Converte un numero decimale in esadecimale.', + abstract: 'Converte un numero decimale in esadecimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. L’intero decimale da convertire. Se num è negativo, cifre verrà ignorato e DEC2HEX restituirà un numero esadecimale di 10 caratteri (40 bit) in cui il bit più significativo è il bit del segno. I rimanenti 39 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Opzionale. Numero di caratteri da utilizzare. Se cifre viene omesso, DECIMALE.HEX utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, + DEC2OCT: { + description: 'Converte un numero decimale in ottale.', + abstract: 'Converte un numero decimale in ottale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. L’intero decimale da convertire. Se num è negativo, le cifre verranno ignorate e DECIMALE.OCT restituirà un numero ottale (30 bit) di 10 caratteri in cui il bit più significativo è il bit sign. I rimanenti 29 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Facoltativo. Numero di caratteri da utilizzare. Se cifre viene omesso, DECIMALE.OCT utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, + DELTA: { + description: 'Verifica se due valori sono uguali. Restituisce 1 se num1 = num2, altrimenti restituisce 0. Utilizzare questa funzione per esaminare un insieme di valori. Se si sommano ad esempio più funzioni DELTA, si effettuerà il conteggio di coppie uguali. La funzione è anche nota come funzione Kronecker Delta.', + abstract: 'Verifica se due valori sono uguali. Restituisce 1 se num1 = num2, altrimenti restituisce 0. Utilizzare questa funzione per esaminare un insieme di valori. Se si sommano ad esempio più funzioni DELTA, si effettuerà il conteggio di coppie uguali. La funzione è anche nota come funzione Kronecker Delta.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo numero.' }, + number2: { name: 'number2', detail: 'Opzionale. Secondo numero. Se num2 viene omesso, verrà considerato uguale a zero.' }, + }, + }, + ERF: { + description: 'Restituisce la funzione di errore integrata tra limite_inf e limite_sup.', + abstract: 'Restituisce la funzione di errore integrata tra limite_inf e limite_sup.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Obbligatorio. Limite inferiore di integrazione per FUNZ.ERRORE.' }, + upperLimit: { name: 'upper_limit', detail: 'Opzionale. Limite superiore di integrazione per FUNZ.ERRORE. Se viene omesso, FUNZ.ERRORE effettuerà l\'integrazione tra zero e limite_inf.' }, + }, + }, + ERF_PRECISE: { + description: 'Restituisce la funzione di errore.', + abstract: 'Restituisce la funzione di errore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Limite inferiore di integrazione per FUNZ.ERRORE.PRECISA.' }, + }, + }, + ERFC: { + description: 'Restituisce la funzione FUNZ.ERRORE complementare integrata tra x e infinito.', + abstract: 'Restituisce la funzione FUNZ.ERRORE complementare integrata tra x e infinito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Limite inferiore di integrazione per FUNZ.ERRORE.COMP.' }, + }, + }, + ERFC_PRECISE: { + description: 'Restituisce la funzione FUNZ.ERRORE complementare integrata tra x e infinito.', + abstract: 'Restituisce la funzione FUNZ.ERRORE complementare integrata tra x e infinito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Limite inferiore di integrazione per FUNZ.ERRORE.COMP.PRECISA.' }, + }, + }, + GESTEP: { + description: 'Restituisce 1 se num ≥ val_soglia e 0 (zero) in caso contrario. Questa funzione consente di esaminare un insieme di valori. Sommando ad esempio più funzioni SOGLIA, è possibile effettuare il conteggio dei valori che superano una determinata soglia.', + abstract: 'Restituisce 1 se num ≥ val_soglia e 0 (zero) in caso contrario. Questa funzione consente di esaminare un insieme di valori. Sommando ad esempio più funzioni SOGLIA, è possibile effettuare il conteggio dei valori che superano una determinata soglia.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da confrontare con val_soglia.' }, + step: { name: 'step', detail: 'Opzionale. Valore di soglia. Se si omette, SOGLIA userà il valore zero.' }, + }, + }, + HEX2BIN: { + description: 'Converte un numero esadecimale in binario.', + abstract: 'Converte un numero esadecimale in binario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero esadecimale che si desidera convertire. Num non può essere costituito da più di 10 caratteri. Il bit più significativo di num è il bit del segno, ovvero il 40° bit da destra. I rimanenti 9 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Facoltativo. Numero di caratteri da utilizzare. Se cifre viene omesso, HEX.BINARIO utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, + HEX2DEC: { + description: 'Converte un numero esadecimale in decimale.', + abstract: 'Converte un numero esadecimale in decimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero esadecimale che si desidera convertire. Num non può essere costituito da più di 10 caratteri, ovvero 40 bit. Il bit più significativo di num è il bit del segno. I rimanenti 39 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + }, + }, + HEX2OCT: { + description: 'Converte un numero esadecimale in ottale.', + abstract: 'Converte un numero esadecimale in ottale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero esadecimale che si desidera convertire. Num non può essere costituito da più di 10 caratteri. Il bit più significativo di num è il bit del segno. I rimanenti 39 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Facoltativo. Numero di caratteri da utilizzare. Se cifre viene omesso, HEX.OCT utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, + IMABS: { + description: 'Restituisce il valore assoluto (modulo) di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il valore assoluto (modulo) di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il valore assoluto.' }, + }, + }, + IMAGINARY: { + description: 'Restituisce il coefficiente dell\'immaginario di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il coefficiente dell\'immaginario di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il coefficiente dell\'immaginario.' }, + }, + }, + IMARGUMENT: { + description: 'Restituisce l\'argomento ), un angolo espresso in radianti, in base al quale:', + abstract: 'Restituisce l\'argomento ), un angolo espresso in radianti, in base al quale:', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera l\'argomento .' }, + }, + }, + IMCONJUGATE: { + description: 'Restituisce il complesso coniugato di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il complesso coniugato di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il coniugato.' }, + }, + }, + IMCOS: { + description: 'Restituisce il coseno di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il coseno di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il coseno.' }, + }, + }, + IMCOSH: { + description: 'Restituisce il coseno iperbolico di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce il coseno iperbolico di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare il coseno iperbolico.' }, + }, + }, + IMCOT: { + description: 'Restituisce la cotangente di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la cotangente di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Numero complesso di cui si desidera ottenere la cotangente.' }, + }, + }, + IMCOTH: { + description: 'La funzione IMCOTH restituisce la cotangente iperbolica del numero complesso specificato. Ad esempio, per il numero complesso "x+yi" restituisce "coth(x+yi)".', + abstract: 'La funzione IMCOTH restituisce la cotangente iperbolica del numero complesso specificato. Ad esempio, per il numero complesso "x+yi" restituisce "coth(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=it', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Numero complesso di cui si desidera ottenere la cotangente iperbolica. Può essere il risultato di COMPLESSO, un numero reale interpretato come complesso con parte immaginaria 0 o testo nel formato “x+yi”, in cui x e y sono numerici.' }, + }, + }, + IMCSC: { + description: 'Restituisce la cosecante di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la cosecante di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare la cosecante.' }, + }, + }, + IMCSCH: { + description: 'Restituisce la cosecante iperbolica di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la cosecante iperbolica di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare la cosecante iperbolica.' }, + }, + }, + IMDIV: { + description: 'Restituisce il quoziente di due numeri complessi in formato testo x + yi o x + yj.', + abstract: 'Restituisce il quoziente di due numeri complessi in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Obbligatorio. Numeratore o dividendo complesso.' }, + inumber2: { name: 'inumber2', detail: 'Obbligatorio. Denominatore o divisore complesso.' }, + }, + }, + IMEXP: { + description: 'Restituisce l\'esponenziale di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce l\'esponenziale di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera l\'esponenziale.' }, + }, + }, + IMLN: { + description: 'Restituisce il logaritmo naturale di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il logaritmo naturale di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il logaritmo naturale.' }, + }, + }, + IMLOG: { + description: 'La funzione IMLOG restituisce il logaritmo di un numero complesso per una base specificata.', + abstract: 'La funzione IMLOG restituisce il logaritmo di un numero complesso per una base specificata.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=it', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Valore di input della funzione logaritmo. Può essere scritto come numero semplice, ad esempio 1, interpretato come reale, oppure come testo tra virgolette che specifichi i coefficienti reale e immaginario.' }, + base: { name: 'base', detail: 'Base da usare per calcolare il logaritmo. Deve essere un numero reale positivo.' }, + }, + }, + IMLOG10: { + description: 'Restituisce il logaritmo in base 10 di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il logaritmo in base 10 di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il logaritmo.' }, + }, + }, + IMLOG2: { + description: 'Restituisce il logaritmo in base 2 di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il logaritmo in base 2 di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il logaritmo in base 2.' }, + }, + }, + IMPOWER: { + description: 'Restituisce un numero complesso in formato testo x + yi o x + yj elevato a una potenza.', + abstract: 'Restituisce un numero complesso in formato testo x + yi o x + yj elevato a una potenza.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso che si desidera elevare a potenza.' }, + number: { name: 'number', detail: 'Obbligatorio. Potenza alla quale si desidera elevare il numero complesso.' }, + }, + }, + IMPRODUCT: { + description: 'Restituisce il prodotto di 2 fino a 255 numeri complessi in formato testo x + yi o x + yj.', + abstract: 'Restituisce il prodotto di 2 fino a 255 numeri complessi in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Da 1 a 255 numeri complessi da moltiplicare.' }, + inumber2: { name: 'inumber2', detail: 'Da 1 a 255 numeri complessi da moltiplicare.' }, + }, + }, + IMREAL: { + description: 'Restituisce la parte reale di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce la parte reale di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera la parte reale.' }, + }, + }, + IMSEC: { + description: 'Restituisce la secante di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la secante di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare la secante.' }, + }, + }, + IMSECH: { + description: 'Restituisce la secante iperbolica di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la secante iperbolica di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare la secante iperbolica.' }, + }, + }, + IMSIN: { + description: 'Restituisce il seno di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce il seno di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera il seno.' }, + }, + }, + IMSINH: { + description: 'La funzione COMP.SENH restituisce il seno iperbolico di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'La funzione COMP.SENH restituisce il seno iperbolico di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare il seno iperbolico.' }, + }, + }, + IMSQRT: { + description: 'Restituisce la radice quadrata di un numero complesso in formato testo x + yi o x + yj.', + abstract: 'Restituisce la radice quadrata di un numero complesso in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si desidera la radice quadrata.' }, + }, + }, + IMSUB: { + description: 'Restituisce la differenza tra due numeri complessi in formato testo x + yi o x + yj.', + abstract: 'Restituisce la differenza tra due numeri complessi in formato testo x + yi o x + yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Obbligatorio. Numero complesso da cui si desidera sottrarre num_comp2.' }, + inumber2: { name: 'inumber2', detail: 'Obbligatorio. Numero complesso da sottrarre da num_comp1.' }, + }, + }, + IMSUM: { + description: 'Restituisce la somma di due o più numeri complessi in formato testo x + yi o x + yj.', + abstract: 'Restituisce la somma di due o più numeri complessi in formato testo x + yi o x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Num_comp1 è obbligatorio, i numeri successivi no. Da 1 a 255 numeri complessi da addizionare.' }, + inumber2: { name: 'inumber2', detail: 'Num_comp1 è obbligatorio, i numeri successivi no. Da 1 a 255 numeri complessi da addizionare.' }, + }, + }, + IMTAN: { + description: 'Restituisce la tangente di un numero complesso in formato testo x+yi o x+yj.', + abstract: 'Restituisce la tangente di un numero complesso in formato testo x+yi o x+yj.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obbligatorio. Numero complesso del quale si vuole calcolare la tangente.' }, + }, + }, + IMTANH: { + description: 'La funzione IMTANH restituisce la tangente iperbolica del numero complesso specificato. Ad esempio, per il numero complesso "x+yi" restituisce "tanh(x+yi)".', + abstract: 'La funzione IMTANH restituisce la tangente iperbolica del numero complesso specificato. Ad esempio, per il numero complesso "x+yi" restituisce "tanh(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=it', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Numero complesso di cui si desidera ottenere la tangente iperbolica. Può essere il risultato di COMPLESSO, un numero reale interpretato come complesso con parte immaginaria 0 o testo nel formato “x+yi”, in cui x e y sono numerici.' }, + }, + }, + OCT2BIN: { + description: 'Converte un numero ottale in binario.', + abstract: 'Converte un numero ottale in binario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero ottale che si desidera convertire. Num non può essere costituito da più di 10 caratteri. Il bit più significativo di num è il bit del segno. I rimanenti 29 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Opzionale. Numero di caratteri da usare. Se cifre viene omesso, OCT.BINARIO userà il minor numero di caratteri necessario. Cifre è utile per aggiungere zeri iniziali al valore restituito.' }, + }, + }, + OCT2DEC: { + description: 'Converte un numero ottale in decimale.', + abstract: 'Converte un numero ottale in decimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero ottale che si desidera convertire. Num non può essere costituito da più di 10 caratteri ottali, ovvero 30 bit. Il bit più significativo di num è il bit del segno. I rimanenti 29 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + }, + }, + OCT2HEX: { + description: 'Converte un numero ottale in esadecimale.', + abstract: 'Converte un numero ottale in esadecimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero ottale che si desidera convertire. Num non può essere costituito da più di 10 caratteri ottali, ovvero 30 bit. Il bit più significativo di num è il bit del segno. I rimanenti 29 bit sono i bit del valore da convertire. I numeri negativi vengono rappresentati sotto forma di notazione in complemento a due.' }, + places: { name: 'places', detail: 'Facoltativo. Numero di caratteri da utilizzare. Se cifre viene omesso, OCT.HEX utilizzerà il minor numero di caratteri necessario. Cifre è utile per aggiungere gli zeri iniziali al valore restituito.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/engineering/ja-JP.ts index 1986edd838..6692a40a33 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/besseli-%E9%96%A2%E6%95%B0-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/ja-jp/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/besselj-%E9%96%A2%E6%95%B0-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/besselk-%E9%96%A2%E6%95%B0-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/ja-jp/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bessely-%E9%96%A2%E6%95%B0-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bin2dec-%E9%96%A2%E6%95%B0-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bin2hex-%E9%96%A2%E6%95%B0-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -106,12 +106,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bin2oct-%E9%96%A2%E6%95%B0-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: '2 進数', detail: '変換する 2 進数を指定します。' }, - places: { name: '桁数', detail: '使用する文字数を指定します。' }, + number: { name: '2 進数', detail: '必ず指定します。 変換する 2 進数を指定します。 数値に指定できる文字数は 10 文字 (10 ビット) までです。 数値の最上位のビットは符号を表します。 残りの 9 ビットは数値の大きさを表します。 負の数は 2 の補数を使って表します。' }, + places: { name: '桁数', detail: 'オプション。 使用する文字数を指定します。 桁数を省略すると、必要最小限の桁数で結果が返されます。 桁数は、戻り値が桁数に満たないときに 0 (ゼロ) を前に付加して桁を埋める場合に役立ちます。' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bitand-%E9%96%A2%E6%95%B0-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bitlshift-%E9%96%A2%E6%95%B0-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bitor-%E9%96%A2%E6%95%B0-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bitrshift-%E9%96%A2%E6%95%B0-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bitxor-%E9%96%A2%E6%95%B0-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/complex-%E9%96%A2%E6%95%B0-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/ja-jp/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/convert-%E9%96%A2%E6%95%B0-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dec2bin-%E9%96%A2%E6%95%B0-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dec2hex-%E9%96%A2%E6%95%B0-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dec2oct-%E9%96%A2%E6%95%B0-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/delta-%E9%96%A2%E6%95%B0-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/ja-jp/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/erf-%E9%96%A2%E6%95%B0-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/ja-jp/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/erf-precise-%E9%96%A2%E6%95%B0-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/erfc-%E9%96%A2%E6%95%B0-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/erfc-precise-%E9%96%A2%E6%95%B0-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/ja-jp/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gestep-%E9%96%A2%E6%95%B0-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hex2bin-%E9%96%A2%E6%95%B0-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hex2dec-%E9%96%A2%E6%95%B0-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hex2oct-%E9%96%A2%E6%95%B0-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imabs-%E9%96%A2%E6%95%B0-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imabs-function', }, ], functionParameter: { @@ -392,16 +392,16 @@ const locale: typeof enUS = { }, }, IMAGINARY: { - description: '指定した複素数の虚数係数を返します。', - abstract: '指定した複素数の虚数係数を返します。', + description: '文字列 "x+yi" または "x+yj" の形式で指定された複素数の虚数係数を返します。', + abstract: '文字列 "x+yi" または "x+yj" の形式で指定された複素数の虚数係数を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imaginary-%E9%96%A2%E6%95%B0-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: '複素数', detail: '虚数係数を求める複素数を指定します。' }, + inumber: { name: '複素数', detail: '必須。 虚数係数を求める複素数を指定します。' }, }, }, IMARGUMENT: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imargument-%E9%96%A2%E6%95%B0-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imconjugate-%E9%96%A2%E6%95%B0-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imcos-%E9%96%A2%E6%95%B0-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imcosh-%E9%96%A2%E6%95%B0-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imcot-%E9%96%A2%E6%95%B0-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: '複素数の双曲線余接を返します。', - abstract: '複素数の双曲線余接を返します。', + description: 'IMCOTH 関数は、指定された複素数の双曲線余接を返します。 たとえば、「x+yi」形式で複素数を指定すると「coth(x+yi)」が返されます。', + abstract: 'IMCOTH 関数は、指定された複素数の双曲線余接を返します。 たとえば、「x+yi」形式で複素数を指定すると「coth(x+yi)」が返されます。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/9366256?hl=ja&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=ja', }, ], functionParameter: { - inumber: { name: '複素数', detail: '双曲線余接を求める複素数を指定します。' }, + inumber: { name: '複素数', detail: '双曲線コタンジェントを求める複素数です。 COMPLEX 関数の結果の 0 の虚数部を持つ複素数として解釈される実数、または「x+yi」形式の文字列(x と y は数値)を指定できます。' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imcsc-%E9%96%A2%E6%95%B0-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imcsch-%E9%96%A2%E6%95%B0-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imdiv-%E9%96%A2%E6%95%B0-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imdiv-function', }, ], functionParameter: { @@ -523,16 +523,16 @@ const locale: typeof enUS = { }, }, IMEXP: { - description: '複素数のべき乗を返します。', - abstract: '複素数のべき乗を返します。', + description: '文字列 "x+yi" または "x+yj" の形式で指定された複素数のべき乗を返します。', + abstract: '文字列 "x+yi" または "x+yj" の形式で指定された複素数のべき乗を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imexp-%E9%96%A2%E6%95%B0-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imexp-function', }, ], functionParameter: { - inumber: { name: '複素数', detail: 'べき乗を求める複素数を指定します。' }, + inumber: { name: '複素数', detail: '必須。 べき乗を求める複素数を指定します。' }, }, }, IMLN: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imln-%E9%96%A2%E6%95%B0-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: '指定された値を底とする複素数の対数を返します。', - abstract: '指定された値を底とする複素数の対数を返します。', + description: 'IMLOG 関数は、指定された値を底とする複素数の対数を返します。', + abstract: 'IMLOG 関数は、指定された値を底とする複素数の対数を返します。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/9366486?hl=ja&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=ja', }, ], functionParameter: { - inumber: { name: '複素数', detail: '特定の底に対する対数を計算する必要がある複素数。' }, - base: { name: '底', detail: '対数を求めるときに使用する底です。' }, + inumber: { name: '複素数', detail: '対数関数の入力値です。 数値は、実数として解釈されるように、通常の数値(1 など)を記述できます。 数値は、文字を引用符で囲んで記述して、実数係数と複素係数の両方を指定できます。' }, + base: { name: '底', detail: '対数を求めるときに使用する底です。 正の実数を指定してください。' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imlog10-%E9%96%A2%E6%95%B0-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imlog2-%E9%96%A2%E6%95%B0-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/impower-%E9%96%A2%E6%95%B0-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/ja-jp/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/improduct-%E9%96%A2%E6%95%B0-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/ja-jp/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imreal-%E9%96%A2%E6%95%B0-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsec-%E9%96%A2%E6%95%B0-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsech-%E9%96%A2%E6%95%B0-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsin-%E9%96%A2%E6%95%B0-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsinh-%E9%96%A2%E6%95%B0-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsqrt-%E9%96%A2%E6%95%B0-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsub-%E9%96%A2%E6%95%B0-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imsum-%E9%96%A2%E6%95%B0-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/imtan-%E9%96%A2%E6%95%B0-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/ja-jp/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: '複素数の双曲線正接を返します。', - abstract: '複素数の双曲線正接を返します。', + description: 'IMTANH 関数は、指定された複素数の双曲線正接を返します。 たとえば、複素数「x+yi」を指定すると「tanh(x+yi)」が返されます。', + abstract: 'IMTANH 関数は、指定された複素数の双曲線正接を返します。 たとえば、複素数「x+yi」を指定すると「tanh(x+yi)」が返されます。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/9366655?hl=ja&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=ja', }, ], functionParameter: { - inumber: { name: '複素数', detail: '双曲線正接を求める接線を指定します。' }, + inumber: { name: '複素数', detail: '双曲線正接を求める複素数です。 COMPLEX 関数の結果、0 の虚数部を持つ複素数として解釈される実数、「x+yi」形式の文字列(x と y は数値)を指定できます。' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oct2bin-%E9%96%A2%E6%95%B0-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oct2dec-%E9%96%A2%E6%95%B0-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oct2hex-%E9%96%A2%E6%95%B0-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/engineering/ko-KR.ts index 29afd8b551..5fa58d38de 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/ko-KR.ts @@ -18,100 +18,100 @@ import type enUS from './en-US'; const locale: typeof enUS = { BESSELI: { - description: 'Returns the modified Bessel function In(x)', - abstract: 'Returns the modified Bessel function In(x)', + description: '순허수 인수를 사용하여 계산된 Bessel 함수인 수정된 Bessel 함수를 반환합니다.', + abstract: '순허수 인수를 사용하여 계산된 Bessel 함수인 수정된 Bessel 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/ko-kr/excel/functions/besseli-function', }, ], 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.' }, + x: { name: 'X', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + n: { name: 'N', detail: '필수 요소입니다. Bessel 함수의 차수입니다. n이 정수가 아니면 소수점 이하는 무시됩니다.' }, }, }, BESSELJ: { - description: 'Returns the Bessel function Jn(x)', - abstract: 'Returns the Bessel function Jn(x)', + description: 'Bessel 함수를 반환합니다.', + abstract: 'Bessel 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/besselj-function', }, ], 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.' }, + x: { name: 'X', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + n: { name: 'N', detail: '필수 요소입니다. Bessel 함수의 차수입니다. n이 정수가 아니면 소수점 이하는 무시됩니다.' }, }, }, BESSELK: { - description: 'Returns the modified Bessel function Kn(x)', - abstract: 'Returns the modified Bessel function Kn(x)', + description: '순허수 인수를 사용하여 계산된 Bessel 함수인 수정된 Bessel 함수를 반환합니다.', + abstract: '순허수 인수를 사용하여 계산된 Bessel 함수인 수정된 Bessel 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/ko-kr/excel/functions/besselk-function', }, ], 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.' }, + x: { name: 'X', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + n: { name: 'N', detail: '필수 요소입니다. 함수의 차수입니다. n이 정수가 아니면 소수점 이하는 무시됩니다.' }, }, }, BESSELY: { - description: 'Returns the Bessel function Yn(x)', - abstract: 'Returns the Bessel function Yn(x)', + description: 'Weber 함수 또는 Neumann 함수라고도 하는 Bessel 함수를 반환합니다.', + abstract: 'Weber 함수 또는 Neumann 함수라고도 하는 Bessel 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bessely-function', }, ], 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.' }, + x: { name: 'X', detail: '필수 요소입니다. 함수를 계산할 값입니다.' }, + n: { name: 'N', detail: '필수 요소입니다. 함수의 차수입니다. n이 정수가 아니면 소수점 이하는 무시됩니다.' }, }, }, BIN2DEC: { - description: 'Converts a binary number to decimal', - abstract: 'Converts a binary number to decimal', + description: '2진수를 10진수로 변환합니다.', + abstract: '2진수를 10진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bin2dec-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The binary number you want to convert.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환하려는 2진수입니다. 숫자는 10자(10비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 9 비트는 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, }, }, BIN2HEX: { - description: 'Converts a binary number to hexadecimal', - abstract: 'Converts a binary number to hexadecimal', + description: '2진수를 16진수로 변환합니다.', + abstract: '2진수를 16진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bin2hex-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The binary number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환하려는 2진수입니다. 숫자는 10자(10비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 9 비트는 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택적. 사용할 자릿수입니다. places를 생략하면 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, BIN2OCT: { - description: 'Converts a binary number to octal', - abstract: 'Converts a binary number to octal', + description: '2진수를 8진수로 변환합니다.', + abstract: '2진수를 8진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The binary number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환하려는 2진수입니다. 숫자는 10자(10비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 9 비트는 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 BIN2OCT에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bitand-function', }, ], functionParameter: { @@ -129,83 +129,83 @@ const locale: typeof enUS = { }, }, BITLSHIFT: { - description: 'Returns a value number shifted left by shift_amount bits', - abstract: 'Returns a value number shifted left by shift_amount bits', + description: '지정된 비트만큼 왼쪽으로 이동한 숫자를 반환합니다.', + abstract: '지정된 비트만큼 왼쪽으로 이동한 숫자를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bitlshift-function', }, ], 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.' }, + number: { name: 'number', detail: '필수 요소입니다. number는 0보다 크거나 같은 정수여야 합니다.' }, + shiftAmount: { name: 'shift_amount', detail: '필수. Shift_amount 정수여야 합니다.' }, }, }, BITOR: { - description: 'Returns a bitwise OR of 2 numbers', - abstract: 'Returns a bitwise OR of 2 numbers', + description: '두 숫자의 비트 단위 \'OR\'를 반환합니다.', + abstract: '두 숫자의 비트 단위 \'OR\'를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bitor-function', }, ], 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.' }, + number1: { name: 'number1', detail: '필수. 10진수 형식이어야 하며 0보다 크거나 같아야 합니다.' }, + number2: { name: 'number2', detail: '필수. 10진수 형식이어야 하며 0보다 크거나 같아야 합니다.' }, }, }, BITRSHIFT: { - description: 'Returns a value number shifted right by shift_amount bits', - abstract: 'Returns a value number shifted right by shift_amount bits', + description: '지정된 비트만큼 오른쪽으로 이동한 숫자를 반환합니다.', + abstract: '지정된 비트만큼 오른쪽으로 이동한 숫자를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bitrshift-function', }, ], 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.' }, + number: { name: 'number', detail: '필수 요소입니다. 0보다 크거나 같은 정수여야 합니다.' }, + shiftAmount: { name: 'shift_amount', detail: '필수. 정수여야 합니다.' }, }, }, BITXOR: { - description: 'Returns a bitwise \'Exclusive Or\' of two numbers', - abstract: 'Returns a bitwise \'Exclusive Or\' of two numbers', + description: '두 숫자의 비트 단위 \'XOR\'를 반환합니다.', + abstract: '두 숫자의 비트 단위 \'XOR\'를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bitxor-function', }, ], 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.' }, + number1: { name: 'number1', detail: '필수. 0보다 크거나 같아야 합니다.' }, + number2: { name: 'number2', detail: '필수. 0보다 크거나 같아야 합니다.' }, }, }, COMPLEX: { - description: 'Converts real and imaginary coefficients into a complex number', - abstract: 'Converts real and imaginary coefficients into a complex number', + description: '실수와 허수 계수를 x + yi 또는 x + yj 형태의 복소수로 변환합니다.', + abstract: '실수와 허수 계수를 x + yi 또는 x + yj 형태의 복소수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/ko-kr/excel/functions/complex-function', }, ], 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".' }, + realNum: { name: 'real_num', detail: '필수. 복소수의 실수 계수입니다.' }, + iNum: { name: 'i_num', detail: '필수. 복소수의 허수 계수입니다.' }, + suffix: { name: 'suffix', detail: '선택적. 복소수의 허수부에 표시할 접미사입니다. 생략하면 "i"가 사용됩니다.' }, }, }, CONVERT: { - description: 'Converts a number from one measurement system to another', - abstract: 'Converts a number from one measurement system to another', + description: '다른 단위 체계의 숫자로 변환합니다. 예를 들면 CONVERT 함수를 사용하여 마일 단위의 거리를 킬로미터 단위로 변환할 수 있습니다.', + abstract: '다른 단위 체계의 숫자로 변환합니다. 예를 들면 CONVERT 함수를 사용하여 마일 단위의 거리를 킬로미터 단위로 변환할 수 있습니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/convert-function', }, ], functionParameter: { @@ -215,297 +215,297 @@ const locale: typeof enUS = { }, }, DEC2BIN: { - description: 'Converts a decimal number to binary', - abstract: 'Converts a decimal number to binary', + description: '10진수를 2진수로 변환합니다.', + abstract: '10진수를 2진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dec2bin-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The decimal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 10진수 정수입니다. number가 음수이면 유효한 위치 값이 무시되고 DEC2BIN 가장 중요한 비트가 부호 비트인 10자(10비트) 이진 번호를 반환합니다. 나머지 9 비트는 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택적. 사용할 자릿수입니다. places를 생략하면 DEC2BIN에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, DEC2HEX: { - description: 'Converts a decimal number to hexadecimal', - abstract: 'Converts a decimal number to hexadecimal', + description: '10진수를 16진수로 변환합니다.', + abstract: '10진수를 16진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dec2hex-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The decimal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 10진수 정수입니다. number가 음수이면 자리가 무시되고 DEC2HEX 가장 중요한 비트가 부호 비트인 10자(40비트) 16진수를 반환합니다. 나머지 39비트 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택적. 사용할 자릿수입니다. places를 생략하면 DEC2HEX에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, DEC2OCT: { - description: 'Converts a decimal number to octal', - abstract: 'Converts a decimal number to octal', + description: '10진수를 8진수로 변환합니다.', + abstract: '10진수를 8진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dec2oct-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The decimal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 10진수 정수입니다. number가 음수이면 위치가 무시되고 DEC2OCT 가장 중요한 비트가 부호 비트인 10자(30비트) 8진수를 반환합니다. 나머지 29비트 는 진도 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 DEC2OCT에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, DELTA: { - description: 'Tests whether two values are equal', - abstract: 'Tests whether two values are equal', + description: '두 값이 같은지 여부를 검사합니다. number1 = number2이면 1을 반환하고, 그렇지 않으면 0을 반환합니다. 이 함수를 사용하면 값 집합을 필터링할 수 있습니다. 예를 들어 DELTA 함수 몇 개의 합을 구하여 값이 같은 쌍의 개수를 계산할 수 있습니다. 이 함수는 Kronecker Delta 함수라고도 합니다.', + abstract: '두 값이 같은지 여부를 검사합니다. number1 = number2이면 1을 반환하고, 그렇지 않으면 0을 반환합니다. 이 함수를 사용하면 값 집합을 필터링할 수 있습니다. 예를 들어 DELTA 함수 몇 개의 합을 구하여 값이 같은 쌍의 개수를 계산할 수 있습니다. 이 함수는 Kronecker Delta 함수라고도 합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/ko-kr/excel/functions/delta-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'The first number.' }, - number2: { name: 'number2', detail: 'The second number. If omitted, number2 is assumed to be zero.' }, + number1: { name: 'number1', detail: '필수. 첫 번째 숫자입니다.' }, + number2: { name: 'number2', detail: '선택적. 두 번째 숫자입니다. 생략하면 0으로 간주됩니다.' }, }, }, ERF: { - description: 'Returns the error function', - abstract: 'Returns the error function', + description: 'lower_limit에서 upper_limit까지 적분된 오차 함수를 반환합니다.', + abstract: 'lower_limit에서 upper_limit까지 적분된 오차 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/ko-kr/excel/functions/erf-function', }, ], 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.' }, + lowerLimit: { name: 'lower_limit', detail: '필수. ERF 적분의 하한값입니다.' }, + upperLimit: { name: 'upper_limit', detail: '선택적. ERF 적분의 상한값입니다. 생략하면 0에서 lower_limit까지 적분됩니다.' }, }, }, ERF_PRECISE: { - description: 'Returns the error function', - abstract: 'Returns the error function', + description: '오차 함수를 반환합니다.', + abstract: '오차 함수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/erf-precise-function', }, ], functionParameter: { - x: { name: 'x', detail: 'The lower bound for integrating ERF.PRECISE.' }, + x: { name: 'x', detail: '필수 요소입니다. ERF.PRECISE 적분의 하한값입니다.' }, }, }, ERFC: { - description: 'Returns the complementary error function', - abstract: 'Returns the complementary error function', + description: 'x에서 무한대까지 적분된 ERF 함수의 여값을 반환합니다.', + abstract: 'x에서 무한대까지 적분된 ERF 함수의 여값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/erfc-function', }, ], functionParameter: { - x: { name: 'x', detail: 'The lower bound for integrating ERFC.' }, + x: { name: 'x', detail: '필수 요소입니다. 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', + description: 'x에서 무한대까지 적분된 ERF 함수의 여값을 반환합니다.', + abstract: 'x에서 무한대까지 적분된 ERF 함수의 여값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/ko-kr/excel/functions/erfc-precise-function', }, ], functionParameter: { - x: { name: 'x', detail: 'The lower bound for integrating ERFC.PRECISE.' }, + x: { name: 'x', detail: '필수 요소입니다. 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', + description: 'number ≥ step이면 1을 반환하고 그렇지 않으면 0을 반환합니다. 이 함수를 사용하면 값 집합을 필터링할 수 있습니다. 예를 들어 GESTEP 함수 몇 개를 더하여 임계값을 초과하는 값의 개수를 계산합니다.', + abstract: 'number ≥ step이면 1을 반환하고 그렇지 않으면 0을 반환합니다. 이 함수를 사용하면 값 집합을 필터링할 수 있습니다. 예를 들어 GESTEP 함수 몇 개를 더하여 임계값을 초과하는 값의 개수를 계산합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gestep-function', }, ], 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.' }, + number: { name: 'number', detail: '필수 요소입니다. step과 비교할 값입니다.' }, + step: { name: 'step', detail: '선택적. 임계값입니다. 생략하면 GESTEP에서는 0이 사용됩니다.' }, }, }, HEX2BIN: { - description: 'Converts a hexadecimal number to binary', - abstract: 'Converts a hexadecimal number to binary', + description: '16진수를 2진수로 변환합니다.', + abstract: '16진수를 2진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hex2bin-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The hexadecimal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 16진수입니다. 숫자는 10자를 초과할 수 없습니다. 숫자의 가장 중요한 비트는 부호 비트(오른쪽에서 40비트)입니다. 나머지 9 비트는 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 HEX2BIN에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, HEX2DEC: { - description: 'Converts a hexadecimal number to decimal', - abstract: 'Converts a hexadecimal number to decimal', + description: '16진수를 10진수로 변환합니다.', + abstract: '16진수를 10진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hex2dec-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The hexadecimal number you want to convert.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 16진수입니다. 숫자는 10자(40비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 39비트 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, }, }, HEX2OCT: { - description: 'Converts a hexadecimal number to octal', - abstract: 'Converts a hexadecimal number to octal', + description: '16진수를 8진수로 변환합니다.', + abstract: '16진수를 8진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hex2oct-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The hexadecimal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 16진수입니다. 숫자는 10자를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 39비트 크기 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 HEX2OCT에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, IMABS: { - description: 'Returns the absolute value (modulus) of a complex number', - abstract: 'Returns the absolute value (modulus) of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 절대값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 절대값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imabs-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the absolute value.' }, + inumber: { name: 'inumber', detail: '필수. 절대값을 계산할 복소수입니다.' }, }, }, IMAGINARY: { - description: 'Returns the imaginary coefficient of a complex number', - abstract: 'Returns the imaginary coefficient of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 허수부 계수를 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 허수부 계수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the imaginary coefficient.' }, + inumber: { name: 'inumber', detail: '필수. 허수부 계수를 구할 복소수입니다.' }, }, }, IMARGUMENT: { - description: 'Returns the argument theta, an angle expressed in radians', - abstract: 'Returns the argument theta, an angle expressed in radians', + description: '다음과 같이 라디안으로 표현된 각도인 (theta) 인수를 반환합니다.', + abstract: '다음과 같이 라디안으로 표현된 각도인 (theta) 인수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imargument-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the argument theta.' }, + inumber: { name: 'inumber', detail: '필수. Theta 인수를 사용할 복소수입니다 .' }, }, }, IMCONJUGATE: { - description: 'Returns the complex conjugate of a complex number', - abstract: 'Returns the complex conjugate of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 켤레 복소수를 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 켤레 복소수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imconjugate-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the conjugate.' }, + inumber: { name: 'inumber', detail: '필수. 켤레 복소수를 구할 복소수입니다.' }, }, }, IMCOS: { - description: 'Returns the cosine of a complex number', - abstract: 'Returns the cosine of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코사인 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코사인 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imcos-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the cosine.' }, + inumber: { name: 'inumber', detail: '필수. 코사인 값을 계산할 복소수입니다.' }, }, }, IMCOSH: { - description: 'Returns the hyperbolic cosine of a complex number', - abstract: 'Returns the hyperbolic cosine of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 하이퍼볼릭 코사인 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 하이퍼볼릭 코사인 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imcosh-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic cosine.' }, + inumber: { name: 'inumber', detail: '필수. 하이퍼볼릭 코사인을 원하는 복소수입니다.' }, }, }, IMCOT: { - description: 'Returns the cotangent of a complex number', - abstract: 'Returns the cotangent of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코탄젠트 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코탄젠트 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imcot-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the cotangent.' }, + inumber: { name: 'inumber', detail: '코탄젠트를 구할 복소수입니다.' }, }, }, IMCOTH: { - description: 'Returns the hyperbolic cotangent of a complex number', - abstract: 'Returns the hyperbolic cotangent of a complex number', + description: 'IMCOTH 함수는 주어진 복소수의 쌍곡선 코탄젠트값을 반환합니다. 예를 들어 복소수 \'x+yi\'가 주어지면 \'coth(x+yi)\'가 반환됩니다.', + abstract: 'IMCOTH 함수는 주어진 복소수의 쌍곡선 코탄젠트값을 반환합니다. 예를 들어 복소수 \'x+yi\'가 주어지면 \'coth(x+yi)\'가 반환됩니다.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=ko', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic cotangent.' }, + inumber: { name: 'inumber', detail: '쌍곡선 코탄젠트를 구하려는 복소수입니다. 이는 COMPLEX 함수의 결과, 허수부가 0인 복소수로 해석되는 실수 또는 x와 y가 숫자인 \'x + yi\' 형식의 문자열일 수 있습니다.' }, }, }, IMCSC: { - description: 'Returns the cosecant of a complex number', - abstract: 'Returns the cosecant of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코시컨트 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 코시컨트 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imcsc-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the cosecant.' }, + inumber: { name: 'inumber', detail: '필수. 코시컨트를 사용할 복소수입니다.' }, }, }, IMCSCH: { - description: 'Returns the hyperbolic cosecant of a complex number', - abstract: 'Returns the hyperbolic cosecant of a complex number', + description: 'x+yi 또는 x+yj 텍스트 형식으로 복소수의 하이퍼볼릭 코시컨트를 반환합니다.', + abstract: 'x+yi 또는 x+yj 텍스트 형식으로 복소수의 하이퍼볼릭 코시컨트를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imcsch-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic cosecant.' }, + inumber: { name: 'inumber', detail: '필수. 하이퍼볼릭 코시컨트를 원하는 복소수입니다.' }, }, }, IMDIV: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imdiv-function', }, ], functionParameter: { @@ -523,270 +523,270 @@ const locale: typeof enUS = { }, }, IMEXP: { - description: 'Returns the exponential of a complex number', - abstract: 'Returns the exponential of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 지수를 계산합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 지수를 계산합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imexp-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the exponential.' }, + inumber: { name: 'inumber', detail: '필수. 지수를 계산할 복소수입니다.' }, }, }, IMLN: { - description: 'Returns the natural logarithm of a complex number', - abstract: 'Returns the natural logarithm of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 자연 로그값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 자연 로그값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imln-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the natural logarithm.' }, + inumber: { name: 'inumber', detail: '필수. 자연 로그값을 계산할 복소수입니다.' }, }, }, 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', + description: 'IMLOG 함수는 지정된 값을 밑으로 하는 복소수의 로그 값을 반환합니다.', + abstract: 'IMLOG 함수는 지정된 값을 밑으로 하는 복소수의 로그 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=ko', }, ], 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.' }, + inumber: { name: 'inumber', detail: '로그 함수의 입력값입니다. 1과 같은 일반적인 숫자를 쓸 수 있습니다(실수로 해석됨). 실계수와 복합계수를 모두 지정하기 위해 숫자를 인용된 텍스트로 쓸 수 있습니다.' }, + base: { name: 'base', detail: '대수를 계산하는 데 사용하는 밑입니다. 양의 실수여야 합니다.' }, }, }, IMLOG10: { - description: 'Returns the base-10 logarithm of a complex number', - abstract: 'Returns the base-10 logarithm of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 상용 로그값(밑이 10)을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 상용 로그값(밑이 10)을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imlog10-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the common logarithm.' }, + inumber: { name: 'inumber', detail: '필수. 상용 로그값을 계산할 복소수입니다.' }, }, }, IMLOG2: { - description: 'Returns the base-2 logarithm of a complex number', - abstract: 'Returns the base-2 logarithm of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 밑이 2인 로그값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 밑이 2인 로그값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imlog2-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the base-2 logarithm.' }, + inumber: { name: 'inumber', detail: '필수. 밑이 2인 로그값을 계산할 복소수입니다.' }, }, }, IMPOWER: { - description: 'Returns a complex number raised to an integer power', - abstract: 'Returns a complex number raised to an integer power', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 멱을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 멱을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/ko-kr/excel/functions/impower-function', }, ], 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.' }, + inumber: { name: 'inumber', detail: '필수. 멱을 계산할 복소수입니다.' }, + number: { name: 'number', detail: '필수 요소입니다. 멱의 지수입니다.' }, }, }, IMPRODUCT: { - description: 'Returns the product of from 1 to 255 complex numbers', - abstract: 'Returns the product of from 1 to 255 complex numbers', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수를 1개에서 255개까지 곱한 결과를 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수를 1개에서 255개까지 곱한 결과를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/ko-kr/excel/functions/improduct-function', }, ], functionParameter: { - inumber1: { name: 'inumber1', detail: '1 to 255 complex numbers to multiply.' }, - inumber2: { name: 'inumber2', detail: '1 to 255 complex numbers to multiply.' }, + inumber1: { name: 'inumber1', detail: 'inumber1은 필수 요소이고, 이후의 inumber는 선택 요소입니다. 곱할 복소수로, 1개에서 255개까지 지정할 수 있습니다.' }, + inumber2: { name: 'inumber2', detail: 'inumber1은 필수 요소이고, 이후의 inumber는 선택 요소입니다. 곱할 복소수로, 1개에서 255개까지 지정할 수 있습니다.' }, }, }, IMREAL: { - description: 'Returns the real coefficient of a complex number', - abstract: 'Returns the real coefficient of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 실수부 계수를 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 실수부 계수를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imreal-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the real coefficient.' }, + inumber: { name: 'inumber', detail: '필수. 실수부 계수를 계산할 복소수입니다.' }, }, }, IMSEC: { - description: 'Returns the secant of a complex number', - abstract: 'Returns the secant of a complex number', + description: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 시컨트 값을 반환합니다.', + abstract: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 시컨트 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsec-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the secant.' }, + inumber: { name: 'inumber', detail: '필수. 시컨트를 구할 복소수입니다.' }, }, }, IMSECH: { - description: 'Returns the hyperbolic secant of a complex number', - abstract: 'Returns the hyperbolic secant of a complex number', + description: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 하이퍼볼릭 시컨트 값을 반환합니다.', + abstract: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 하이퍼볼릭 시컨트 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsech-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic secant.' }, + inumber: { name: 'inumber', detail: '필수. 하이퍼볼릭 시컨트를 구할 복소수입니다.' }, }, }, IMSIN: { - description: 'Returns the sine of a complex number', - abstract: 'Returns the sine of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 사인 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 사인 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsin-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the sine.' }, + inumber: { name: 'inumber', detail: '필수. 사인 값을 계산할 복소수입니다.' }, }, }, IMSINH: { - description: 'Returns the hyperbolic sine of a complex number', - abstract: 'Returns the hyperbolic sine of a complex number', + description: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 하이퍼볼릭 사인 값을 반환합니다.', + abstract: 'x+yi 또는 x+yj 텍스트 형식인 복소수의 하이퍼볼릭 사인 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsinh-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic sine.' }, + inumber: { name: 'inumber', detail: '필수. 하이퍼볼릭 사인을 구할 복소수입니다.' }, }, }, IMSQRT: { - description: 'Returns the square root of a complex number', - abstract: 'Returns the square root of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 제곱근을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 제곱근을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsqrt-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the square root.' }, + inumber: { name: 'inumber', detail: '필수. 제곱근을 계산할 복소수입니다.' }, }, }, IMSUB: { - description: 'Returns the difference between two complex numbers', - abstract: 'Returns the difference between two complex numbers', + description: 'x + yi 또는 x + yj 텍스트 형식인 두 복소수의 차를 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 두 복소수의 차를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsub-function', }, ], functionParameter: { - inumber1: { name: 'inumber1', detail: 'inumber1.' }, - inumber2: { name: 'inumber2', detail: 'inumber2.' }, + inumber1: { name: 'inumber1', detail: '필수. 피감수인 복소수입니다.' }, + inumber2: { name: 'inumber2', detail: '필수. 감수인 복소수입니다.' }, }, }, IMSUM: { - description: 'Returns the sum of complex numbers', - abstract: 'Returns the sum of complex numbers', + description: 'x + yi 또는 x + yj 텍스트 형식인 두 개 이상의 복소수의 합을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 두 개 이상의 복소수의 합을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imsum-function', }, ], functionParameter: { - inumber1: { name: 'inumber1', detail: '1 to 255 complex numbers to add.' }, - inumber2: { name: 'inumber2', detail: '1 to 255 complex numbers to add.' }, + inumber1: { name: 'inumber1', detail: 'Inumber1이 필요하며 후속 숫자는 필요하지 않습니다. 더할 복소수로, 1개에서 255개까지 지정할 수 있습니다.' }, + inumber2: { name: 'inumber2', detail: 'Inumber1이 필요하며 후속 숫자는 필요하지 않습니다. 더할 복소수로, 1개에서 255개까지 지정할 수 있습니다.' }, }, }, IMTAN: { - description: 'Returns the tangent of a complex number', - abstract: 'Returns the tangent of a complex number', + description: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 탄젠트 값을 반환합니다.', + abstract: 'x + yi 또는 x + yj 텍스트 형식인 복소수의 탄젠트 값을 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/ko-kr/excel/functions/imtan-function', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the tangent.' }, + inumber: { name: 'inumber', detail: '필수. 탄젠트를 사용할 복소수입니다.' }, }, }, IMTANH: { - description: 'Returns the hyperbolic tangent of a complex number', - abstract: 'Returns the hyperbolic tangent of a complex number', + description: 'IMTANH 함수는 주어진 복소수의 쌍곡선 탄젠트값을 반환합니다. 예를 들어 복소수 \'x+yi\'가 주어지면 \'tanh(x+yi)\'가 반환됩니다.', + abstract: 'IMTANH 함수는 주어진 복소수의 쌍곡선 탄젠트값을 반환합니다. 예를 들어 복소수 \'x+yi\'가 주어지면 \'tanh(x+yi)\'가 반환됩니다.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=ko', }, ], functionParameter: { - inumber: { name: 'inumber', detail: 'A complex number for which you want the hyperbolic tangent.' }, + inumber: { name: 'inumber', detail: '쌍곡선 탄젠트를 구하려는 복소수입니다. 이는 COMPLEX 함수의 결과, 허수부가 0인 복소수로 해석되는 실수 또는 x와 y가 숫자인 \'x + yi\' 형식의 문자열일 수 있습니다.' }, }, }, OCT2BIN: { - description: 'Converts an octal number to binary', - abstract: 'Converts an octal number to binary', + description: '8진수를 2진수로 변환합니다.', + abstract: '8진수를 2진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oct2bin-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The octal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 8진수입니다. 숫자는 10자를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 29비트 는 진도 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 OCT2BIN에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, OCT2DEC: { - description: 'Converts an octal number to decimal', - abstract: 'Converts an octal number to decimal', + description: '8진수를 10진수로 변환합니다.', + abstract: '8진수를 10진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oct2dec-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The octal number you want to convert.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 8진수입니다. 숫자는 10 8진수(30비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 29비트 는 진도 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, }, }, OCT2HEX: { - description: 'Converts an octal number to hexadecimal', - abstract: 'Converts an octal number to hexadecimal', + description: '8진수를 16진수로 변환합니다.', + abstract: '8진수를 16진수로 변환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oct2hex-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The octal number you want to convert.' }, - places: { name: 'places', detail: 'The number of characters to use.' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 8진수입니다. 숫자는 10 8진수(30비트)를 초과할 수 없습니다. Number의 최상위 비트는 부호 비트입니다. 나머지 29비트 는 진도 비트입니다. 음수는 2의 보수 표기법으로 표시됩니다.' }, + places: { name: 'places', detail: '선택 사항입니다. 사용할 자릿수입니다. places를 생략하면 OCT2HEX에서는 필요한 최소 자릿수가 사용됩니다. places를 지정하면 반환 값의 앞부분을 0으로 채울 수 있습니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/engineering/pl-PL.ts new file mode 100644 index 0000000000..946e622f83 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/pl-PL.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'Zwraca wartość zmodyfikowanej funkcji Bessela, równoważnej funkcji Bessela dla czysto urojonych argumentów.', + abstract: 'Zwraca wartość zmodyfikowanej funkcji Bessela, równoważnej funkcji Bessela dla czysto urojonych argumentów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + n: { name: 'N', detail: 'Argument wymagany. Rząd funkcji Bessela. Jeśli n nie jest całkowite, jego wartość podlega obcięciu do liczby całkowitej.' }, + }, + }, + BESSELJ: { + description: 'Zwraca wartość funkcji Bessela.', + abstract: 'Zwraca wartość funkcji Bessela.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + n: { name: 'N', detail: 'Argument wymagany. Rząd funkcji Bessela. Jeśli n nie jest całkowite, jego wartość podlega obcięciu do liczby całkowitej.' }, + }, + }, + BESSELK: { + description: 'Zwraca wartość zmodyfikowanej funkcji Bessela, równoważną wartości funkcji Bessela dla czysto urojonych argumentów.', + abstract: 'Zwraca wartość zmodyfikowanej funkcji Bessela, równoważną wartości funkcji Bessela dla czysto urojonych argumentów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + n: { name: 'N', detail: 'Argument wymagany. Rząd funkcji. Jeśli n nie jest całkowite, jego wartość podlega obcięciu do liczby całkowitej.' }, + }, + }, + BESSELY: { + description: 'Zwraca wartość funkcji Bessela, znanej także jako funkcja Webera albo funkcja Neumanna.', + abstract: 'Zwraca wartość funkcji Bessela, znanej także jako funkcja Webera albo funkcja Neumanna.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + n: { name: 'N', detail: 'Argument wymagany. Rząd funkcji. Jeśli n nie jest całkowite, jego wartość podlega obcięciu do liczby całkowitej.' }, + }, + }, + BIN2DEC: { + description: 'Konwertuje liczby dwójkowe na dziesiętne.', + abstract: 'Konwertuje liczby dwójkowe na dziesiętne.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba dwójkowa, która ma zostać poddana konwersji. Liczba nie może zawierać więcej niż 10 znaków (10 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 9 bitów reprezentuje wielkość. Liczby ujemne przedstawia się w zapisie dopełnienia do dwóch.' }, + }, + }, + BIN2HEX: { + description: 'Konwertuje liczbę w kodzie dwójkowym na liczbę w kodzie szesnastkowym.', + abstract: 'Konwertuje liczbę w kodzie dwójkowym na liczbę w kodzie szesnastkowym.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba dwójkowa, która ma zostać poddana konwersji. Liczba nie może zawierać więcej niż 10 znaków (10 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 9 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja DWÓJK.NA.SZESN użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + BIN2OCT: { + description: 'Konwertuje liczbę w kodzie dwójkowym na liczbę w kodzie ósemkowym.', + abstract: 'Konwertuje liczbę w kodzie dwójkowym na liczbę w kodzie ósemkowym.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba dwójkowa, która ma zostać poddana konwersji. Liczba nie może zawierać więcej niż 10 znaków (10 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 9 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja DWÓJK.NA.ÓSM użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + BITAND: { + description: 'Zwraca wartość operacji bitowej ORAZ (AND) dla dwóch liczb.', + abstract: 'Zwraca wartość operacji bitowej ORAZ (AND) dla dwóch liczb.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Musi to być liczba dziesiętna większa niż lub równa 0.' }, + number2: { name: 'number2', detail: 'Wymagane. Musi to być liczba dziesiętna większa niż lub równa 0.' }, + }, + }, + BITLSHIFT: { + description: 'Zwraca liczbę przesuniętą w lewo o określoną liczbę bitów.', + abstract: 'Zwraca liczbę przesuniętą w lewo o określoną liczbę bitów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Musi to być liczba całkowita większa niż lub równa 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Wymagane. Argument wartość_przesunięcia musi być liczbą całkowitą.' }, + }, + }, + BITOR: { + description: 'Zwraca wartość operacji bitowej LUB (OR) dla dwóch liczb.', + abstract: 'Zwraca wartość operacji bitowej LUB (OR) dla dwóch liczb.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Musi to być liczba dziesiętna większa niż lub równa 0.' }, + number2: { name: 'number2', detail: 'Wymagane. Musi to być liczba dziesiętna większa niż lub równa 0.' }, + }, + }, + BITRSHIFT: { + description: 'Zwraca liczbę przesuniętą w prawo o określoną liczbę bitów.', + abstract: 'Zwraca liczbę przesuniętą w prawo o określoną liczbę bitów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Musi to być liczba całkowita większa niż lub równa 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Wymagane. Musi to być liczba całkowita.' }, + }, + }, + BITXOR: { + description: 'Zwraca wartość operacji bitowej alternatywy wykluczającej (XOR) dla dwóch liczb.', + abstract: 'Zwraca wartość operacji bitowej alternatywy wykluczającej (XOR) dla dwóch liczb.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Musi być większy lub równy 0.' }, + number2: { name: 'number2', detail: 'Wymagane. Musi być większy lub równy 0.' }, + }, + }, + COMPLEX: { + description: 'Konwertuje części rzeczywistą i urojoną na liczbę zespoloną o postaci x + yi lub x + yj.', + abstract: 'Konwertuje części rzeczywistą i urojoną na liczbę zespoloną o postaci x + yi lub x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Wymagane. Część rzeczywista liczby zespolonej.' }, + iNum: { name: 'i_num', detail: 'Wymagane. Część urojona liczby zespolonej.' }, + suffix: { name: 'suffix', detail: 'Opcjonalne. Sufiks części urojonej liczby zespolonej. Jeśli zostanie pominięty, zakłada się, że sufiksem jest „i”.' }, + }, + }, + CONVERT: { + description: 'Konwertuje liczbę z jednego systemu miar na inny. Na przykład za pomocą funkcji KONWERTUJ można przeliczyć tabelę odległości w milach na tabelę odległości w kilometrach.', + abstract: 'Konwertuje liczbę z jednego systemu miar na inny. Na przykład za pomocą funkcji KONWERTUJ można przeliczyć tabelę odległości w milach na tabelę odległości w kilometrach.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wartość w from_unit do przekonwertowania.' }, + fromUnit: { name: 'from_unit', detail: 'Jednostka dla number.' }, + toUnit: { name: 'to_unit', detail: 'Jednostka wyniku.' }, + }, + }, + DEC2BIN: { + description: 'Konwertuje liczbę dziesiętną na format binarny.', + abstract: 'Konwertuje liczbę dziesiętną na format binarny.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dziesiętna liczba całkowita, która ma zostać przekonwertowana. Jeśli liczba jest ujemna, argument „miejsca” jest ignorowany, a funkcja DZIES.NA.DWÓJK zwraca 10-znakową (10-bitów) liczbę binarną, w której najbardziej znaczący bit jest bitem znaku. Pozostałe 9 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja DZIES.NA.DWÓJK użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + DEC2HEX: { + description: 'Konwertuje liczbę dziesiętną na format szesnastkowy.', + abstract: 'Konwertuje liczbę dziesiętną na format szesnastkowy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dziesiętna liczba całkowita, która ma zostać przekonwertowana. Jeśli liczba jest ujemna, argument „miejsca” jest ignorowany, a funkcja DZIES.NA.SZESN zwraca 10-znakową (40-bitów) liczbę szesnastkową, w której najbardziej znaczący bit jest bitem znaku. Pozostałe 39 bitów reprezentuje wartość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja DZIES.NA.SZESN użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + DEC2OCT: { + description: 'Konwertuje liczbę dziesiętną na format ósemkowy.', + abstract: 'Konwertuje liczbę dziesiętną na format ósemkowy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dziesiętna liczba całkowita, która ma zostać przekonwertowana. Jeżeli liczba jest ujemna, argument „miejsca” jest ignorowany, a funkcja DZIES.NA.ÓSM zwraca 10-znakową (30-bitów) liczbę ósemkową, w której najbardziej znaczący bit jest bitem znaku. Pozostałe 29 bitów reprezentuje wartość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Argument opcjonalny. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja DZIES.NA.ÓSM użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + DELTA: { + description: 'Sprawdza, czy dwie wartości są równe. Zwraca 1, jeżeli liczba1 = liczba2 lub zwraca 0 w przeciwnym przypadku. Funkcji tej należy używać do filtrowania zbioru wartości. Na przykład, sumując kilka funkcji CZY.RÓWNE, można obliczyć liczbę par równych wartości. Ta funkcja jest również zwana funkcją delta Kroneckera.', + abstract: 'Sprawdza, czy dwie wartości są równe. Zwraca 1, jeżeli liczba1 = liczba2 lub zwraca 0 w przeciwnym przypadku. Funkcji tej należy używać do filtrowania zbioru wartości. Na przykład, sumując kilka funkcji CZY.RÓWNE, można obliczyć liczbę par równych wartości. Ta funkcja jest również zwana funkcją delta Kroneckera.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwsza z porównywanych wartości.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Druga z porównywanych wartości. Jeżeli argument liczba2 zostanie pominięty, przyjmuje się, że jest równy zero.' }, + }, + }, + ERF: { + description: 'Zwraca wartość funkcji błędu scałkowanej w przedziale dolna_granica i górna_granica.', + abstract: 'Zwraca wartość funkcji błędu scałkowanej w przedziale dolna_granica i górna_granica.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Wymagane. Dolna granica całkowania funkcji FUNKCJA.BŁ.' }, + upperLimit: { name: 'upper_limit', detail: 'Opcjonalne. Górna granica całkowania funkcji FUNKCJA.BŁ. Jeśli zostanie pominięta, funkcja FUNKCJA.BŁ będzie całkować pomiędzy wartościami zero a dolna_granica.' }, + }, + }, + ERF_PRECISE: { + description: 'Zwraca wartość funkcji błędu.', + abstract: 'Zwraca wartość funkcji błędu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Dolna granica na potrzeby całkowania funkcji FUNKCJA.BŁ.DOKŁ.' }, + }, + }, + ERFC: { + description: 'Zwraca wartość dopełniającej funkcji FUNKCJA.BŁ scałkowanej w przedziale od x do nieskończoności.', + abstract: 'Zwraca wartość dopełniającej funkcji FUNKCJA.BŁ scałkowanej w przedziale od x do nieskończoności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Dolna granica całkowania funkcji FUNKCJA.BŁ.' }, + }, + }, + ERFC_PRECISE: { + description: 'Zwraca wartość dopełniającej funkcji FUNKCJA.BŁ scałkowanej w przedziale od x do nieskończoności.', + abstract: 'Zwraca wartość dopełniającej funkcji FUNKCJA.BŁ scałkowanej w przedziale od x do nieskończoności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Dolna granica na potrzeby całkowania funkcji KOMP.FUNKCJA.BŁ.DOKŁ.' }, + }, + }, + GESTEP: { + description: 'Zwraca liczbę 1, jeśli argument liczba ≥ argument próg; w przeciwnym razie zwraca liczbę zero (0). Funkcja ta jest przydatna do filtrowania zbioru wartości. Na przykład przez zsumowanie szeregu funkcji SPRAWDŹ.PRÓG można obliczyć liczbę wartości przekraczających próg.', + abstract: 'Zwraca liczbę 1, jeśli argument liczba ≥ argument próg; w przeciwnym razie zwraca liczbę zero (0). Funkcja ta jest przydatna do filtrowania zbioru wartości. Na przykład przez zsumowanie szeregu funkcji SPRAWDŹ.PRÓG można obliczyć liczbę wartości przekraczających próg.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość, która jest sprawdzana względem progu.' }, + step: { name: 'step', detail: 'Opcjonalne. Wartość progowa. Jeśli zostanie pominięta, funkcja SPRAWDŹ.PRÓG użyje wartości zero.' }, + }, + }, + HEX2BIN: { + description: 'Konwertuje liczbę szesnastkową na liczbę binarną.', + abstract: 'Konwertuje liczbę szesnastkową na liczbę binarną.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba szesnastkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków. Najbardziej znaczący bit liczby jest bitem znaku (40 bit od prawej). Pozostałe 39 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Argument opcjonalny. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja SZESN.NA.DWÓJK użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + HEX2DEC: { + description: 'Konwertuje liczbę szesnastkową na liczbę dziesiętną.', + abstract: 'Konwertuje liczbę szesnastkową na liczbę dziesiętną.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba szesnastkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków (40 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 39 bitów reprezentuje wielkość. Liczby ujemne przedstawia się w zapisie dopełnienia do dwóch.' }, + }, + }, + HEX2OCT: { + description: 'Konwertuje liczbę szesnastkową na liczbę ósemkową.', + abstract: 'Konwertuje liczbę szesnastkową na liczbę ósemkową.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba szesnastkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków. Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 39 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Argument opcjonalny. Liczba znaków do użycia. Jeśli argument „miejsca” zostanie pominięty, funkcja SZESN.NA.ÓSM użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument „miejsca” w celu uzupełniania wyliczonej wartości poprzedzającymi 0 (zerami).' }, + }, + }, + IMABS: { + description: 'Zwraca wartość bezwzględną (moduł) liczby zespolonej, podając ją w formacie tekstowym x + yi lub x + yj.', + abstract: 'Zwraca wartość bezwzględną (moduł) liczby zespolonej, podając ją w formacie tekstowym x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy znaleźć wartość bezwzględną.' }, + }, + }, + IMAGINARY: { + description: 'Zwraca współczynnik urojony liczby zespolonej podanej w postaci w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca współczynnik urojony liczby zespolonej podanej w postaci w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć część urojoną.' }, + }, + }, + IMARGUMENT: { + description: 'Zwraca argument (theta), czyli kąt wyrażony w radianach, w następującym stopniu:', + abstract: 'Zwraca argument (theta), czyli kąt wyrażony w radianach, w następującym stopniu:', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć argument .' }, + }, + }, + IMCONJUGATE: { + description: 'Zwraca sprzężenie zespolone liczby zespolonej, podając je w postaci formatu tekstowego x + yi lub x + yj.', + abstract: 'Zwraca sprzężenie zespolone liczby zespolonej, podając je w postaci formatu tekstowego x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć liczbę sprzężoną.' }, + }, + }, + IMCOS: { + description: 'Zwraca cosinus liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca cosinus liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć cosinus.' }, + }, + }, + IMCOSH: { + description: 'Zwraca cosinus hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca cosinus hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć cosinus hiperboliczny.' }, + }, + }, + IMCOT: { + description: 'Zwraca cotangens liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca cotangens liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Liczba zespolona, której cotangens chcesz obliczyć.' }, + }, + }, + IMCOTH: { + description: 'Funkcja IMCOTH zwraca hiperboliczny kotangens podanej liczby zespolonej. Na przykład dla liczby zespolonej „x+yi” zwraca „coth(x+yi)”.', + abstract: 'Funkcja IMCOTH zwraca hiperboliczny kotangens podanej liczby zespolonej. Na przykład dla liczby zespolonej „x+yi” zwraca „coth(x+yi)”.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=pl', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Liczba zespolona, której hiperboliczny cotangens chcesz obliczyć. Może to być wynik funkcji COMPLEX, liczba rzeczywista interpretowana jako liczba zespolona z częścią urojoną równą 0 albo ciąg w formacie „x+yi”, gdzie x i y są liczbami.' }, + }, + }, + IMCSC: { + description: 'Zwraca cosecans liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca cosecans liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której ma zostać obliczony cosecans.' }, + }, + }, + IMCSCH: { + description: 'Zwraca cosecans hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca cosecans hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której ma zostać obliczony cosecans hiperboliczny.' }, + }, + }, + IMDIV: { + description: 'Zwraca iloraz dwóch liczb zespolonych w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca iloraz dwóch liczb zespolonych w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Wymagane. Zespolony licznik lub zespolona dzielna.' }, + inumber2: { name: 'inumber2', detail: 'Wymagane. Zespolony mianownik lub dzielnik.' }, + }, + }, + IMEXP: { + description: 'Zwraca wartość wykładniczą liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca wartość wykładniczą liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć wartość wykładniczą.' }, + }, + }, + IMLN: { + description: 'Zwraca logarytm naturalny liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca logarytm naturalny liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć logarytm naturalny.' }, + }, + }, + IMLOG: { + description: 'Funkcja IMLOG zwraca logarytm liczby zespolonej dla określonej podstawy.', + abstract: 'Funkcja IMLOG zwraca logarytm liczby zespolonej dla określonej podstawy.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=pl', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wartość wejściowa funkcji logarytmicznej. Liczbę można zapisać jako zwykłą liczbę, np. 1, aby była interpretowana jako liczba rzeczywista, albo jako tekst w cudzysłowie, aby określić współczynniki rzeczywisty i urojony.' }, + base: { name: 'base', detail: 'Podstawa używana do obliczania logarytmu. Musi być dodatnią liczbą rzeczywistą.' }, + }, + }, + IMLOG10: { + description: 'Zwraca wartość logarytmu zwykłego (o podstawie 10) liczby zespolonej, podając wynik w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca wartość logarytmu zwykłego (o podstawie 10) liczby zespolonej, podając wynik w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć logarytm zwykły.' }, + }, + }, + IMLOG2: { + description: 'Zwraca logarytm o podstawie 2 liczby zespolonej, podając wynik w postaci tekstowej x + yi lub x+yj.', + abstract: 'Zwraca logarytm o podstawie 2 liczby zespolonej, podając wynik w postaci tekstowej x + yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć logarytm o podstawie 2.' }, + }, + }, + IMPOWER: { + description: 'Zwraca liczbę zespoloną w postaci tekstowej x + yi lub x + yj podniesioną do potęgi.', + abstract: 'Zwraca liczbę zespoloną w postaci tekstowej x + yi lub x + yj podniesioną do potęgi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, którą należy podnieść do potęgi.' }, + number: { name: 'number', detail: 'Argument wymagany. Potęga, do której należy podnieść liczbę zespoloną.' }, + }, + }, + IMPRODUCT: { + description: 'Zwraca iloczyn od 1 do 255 liczb zespolonych, podając wynik w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca iloczyn od 1 do 255 liczb zespolonych, podając wynik w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Od 1 do 255 liczb zespolonych do pomnożenia.' }, + inumber2: { name: 'inumber2', detail: 'Kolejna liczba zespolona do pomnożenia.' }, + }, + }, + IMREAL: { + description: 'Zwraca współczynnik rzeczywisty liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca współczynnik rzeczywisty liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć część rzeczywistą.' }, + }, + }, + IMSEC: { + description: 'Zwraca secans liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca secans liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której ma zostać obliczony secans.' }, + }, + }, + IMSECH: { + description: 'Zwraca secans hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca secans hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której ma zostać obliczony secans hiperboliczny.' }, + }, + }, + IMSIN: { + description: 'Zwraca sinus liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca sinus liczby zespolonej w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć sinus.' }, + }, + }, + IMSINH: { + description: 'Funkcja SINH.LICZBY.ZESP zwraca sinus hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Funkcja SINH.LICZBY.ZESP zwraca sinus hiperboliczny liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której ma zostać obliczony sinus hiperboliczny.' }, + }, + }, + IMSQRT: { + description: 'Zwraca pierwiastek kwadratowy z liczby zespolonej, podając go w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca pierwiastek kwadratowy z liczby zespolonej, podając go w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć pierwiastek kwadratowy.' }, + }, + }, + IMSUB: { + description: 'Zwraca różnicę dwóch liczb zespolonych w postaci tekstowej x + yi lub x + yj.', + abstract: 'Zwraca różnicę dwóch liczb zespolonych w postaci tekstowej x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Wymagane. Liczba zespolona, od której należy odjąć argument liczba_zespolona2.' }, + inumber2: { name: 'inumber2', detail: 'Wymagane. Liczba zespolona, którą należy odjąć od argumentu liczba_zespolona1.' }, + }, + }, + IMSUM: { + description: 'Zwraca sumę dwóch lub więcej liczb zespolonych w formacie tekstowym x + yi lub x + yj.', + abstract: 'Zwraca sumę dwóch lub więcej liczb zespolonych w formacie tekstowym x + yi lub x + yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Od 1 do 255 liczb zespolonych do dodania.' }, + inumber2: { name: 'inumber2', detail: 'Kolejna liczba zespolona do dodania.' }, + }, + }, + IMTAN: { + description: 'Zwraca tangens liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + abstract: 'Zwraca tangens liczby zespolonej w formacie tekstowym x+yi lub x+yj.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Wymagane. Liczba zespolona, dla której należy obliczyć tangens.' }, + }, + }, + IMTANH: { + description: 'Funkcja IMTANH zwraca hiperboliczny tangens podanej liczby zespolonej. Na przykład dla liczby zespolonej „x+yi” zwraca „tanh(x+yi)”.', + abstract: 'Funkcja IMTANH zwraca hiperboliczny tangens podanej liczby zespolonej. Na przykład dla liczby zespolonej „x+yi” zwraca „tanh(x+yi)”.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=pl', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Liczba zespolona, której hiperboliczny tangens chcesz obliczyć. Może to być wynik funkcji COMPLEX, liczba rzeczywista interpretowana jako liczba zespolona z częścią urojoną równą 0 albo ciąg w formacie „x+yi”, gdzie x i y są liczbami.' }, + }, + }, + OCT2BIN: { + description: 'Konwertuje liczbę w postaci ósemkowej na liczbę w postaci dwójkowej.', + abstract: 'Konwertuje liczbę w postaci ósemkowej na liczbę w postaci dwójkowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba ósemkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków. Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 29 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument miejsca zostanie pominięty, funkcja ÓSM.NA.DWÓJK użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument miejsca w celu uzupełniania wyliczonej wartości zerami (0) wiodącymi.' }, + }, + }, + OCT2DEC: { + description: 'Konwertuje liczbę w postaci ósemkowej na liczbę w postaci dziesiętnej.', + abstract: 'Konwertuje liczbę w postaci ósemkowej na liczbę w postaci dziesiętnej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba ósemkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków (30 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 29 bitów reprezentuje wielkość. Liczby ujemne przedstawia się w zapisie dopełnienia do dwóch.' }, + }, + }, + OCT2HEX: { + description: 'Konwertuje liczby w postaci ósemkowej na liczby w postaci szesnastkowej.', + abstract: 'Konwertuje liczby w postaci ósemkowej na liczby w postaci szesnastkowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba ósemkowa, która ma zostać przekonwertowana. Liczba nie może zawierać więcej niż 10 znaków (30 bitów). Najbardziej znaczący bit liczby jest bitem znaku. Pozostałe 29 bitów reprezentuje wielkość. Liczby ujemne są reprezentowane przy użyciu zapisu z dopełnieniem do dwóch.' }, + places: { name: 'places', detail: 'Opcjonalne. Liczba znaków do użycia. Jeśli argument miejsca zostanie pominięty, funkcja ÓSM.NA.SZESN użyje najmniejszej niezbędnej liczby znaków. Wygodnie jest stosować argument miejsca w celu uzupełniania wyliczonej wartości zerami (0) wiodącymi.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/engineering/pt-BR.ts new file mode 100644 index 0000000000..179bbc1a04 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/engineering/pt-BR.ts @@ -0,0 +1,794 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + BESSELI: { + description: 'Retorna a função de Bessel modificada, que equivale à função de Bessel avaliada por argumentos puramente imaginários.', + abstract: 'Retorna a função de Bessel modificada, que equivale à função de Bessel avaliada por argumentos puramente imaginários.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/besseli-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + n: { name: 'N', detail: 'Obrigatório. A ordem da função Bessel. Se n não for um inteiro, será truncado.' }, + }, + }, + BESSELJ: { + description: 'Retorna a função de Bessel.', + abstract: 'Retorna a função de Bessel.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/besselj-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + n: { name: 'N', detail: 'Obrigatório. A ordem da função Bessel. Se n não for um inteiro, será truncado.' }, + }, + }, + BESSELK: { + description: 'Retorna a função de Bessel modificada, que equivale às funções de Bessel avaliadas por argumentos puramente imaginários.', + abstract: 'Retorna a função de Bessel modificada, que equivale às funções de Bessel avaliadas por argumentos puramente imaginários.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/besselk-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + n: { name: 'N', detail: 'Obrigatório. A ordem da função. Se n não for um inteiro, será truncado.' }, + }, + }, + BESSELY: { + description: 'Retorna a função de Bessel, também chamada de função de Weber ou de Newmann.', + abstract: 'Retorna a função de Bessel, também chamada de função de Weber ou de Newmann.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bessely-function', + }, + ], + functionParameter: { + x: { name: 'X', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + n: { name: 'N', detail: 'Obrigatório. A ordem da função. Se n não for um inteiro, será truncado.' }, + }, + }, + BIN2DEC: { + description: 'Converte um número binário em decimal.', + abstract: 'Converte um número binário em decimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bin2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número binário que você deseja converter. Núm não pode conter mais de 10 caracteres (10 bits). O bit mais significativo de núm é o bit de sinal. Os 9 bits restantes são bits de magnitude. Os números negativos são representados através da notação de complemento a dois.' }, + }, + }, + BIN2HEX: { + description: 'Converte um número binário em hexadecimal.', + abstract: 'Converte um número binário em hexadecimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bin2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número binário que você deseja converter. Núm não pode conter mais de 10 caracteres (10 bits). O bit mais significativo de núm é o bit de sinal. Os 9 bits restantes são bits de magnitude. Os números negativos são representados através da notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, BINAHEX usará o número mínimo de caracteres necessários. Casas é útil para preencher o valor de retorno com 0s (zeros) à esquerda.' }, + }, + }, + BIN2OCT: { + description: 'Converte um número binário em octal.', + abstract: 'Converte um número binário em octal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bin2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número binário que você deseja converter. Núm não pode conter mais de 10 caracteres (10 bits). O bit mais significativo de núm é o bit de sinal. Os 9 bits restantes são bits de magnitude. Os números negativos são representados através da notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, BINAOCT usará o número mínimo de caracteres necessários. Casas é útil para preencher o valor de retorno com 0s (zeros) à esquerda.' }, + }, + }, + BITAND: { + description: 'Retorna um bit \'AND\' de dois números.', + abstract: 'Retorna um bit \'AND\' de dois números.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bitand-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. Deve ser no formato de decimal e maior que ou igual a 0.' }, + number2: { name: 'number2', detail: 'Obrigatório. Deve ser no formato de decimal e maior que ou igual a 0.' }, + }, + }, + BITLSHIFT: { + description: 'Retorna um número deslocado para a esquerda em número de bits especificado.', + abstract: 'Retorna um número deslocado para a esquerda em número de bits especificado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bitlshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número deve ser um número inteiro maior que ou igual a 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Necessário. O valor_deslocamento deve ser um número inteiro.' }, + }, + }, + BITOR: { + description: 'Retorna um bit \'OU\' de dois números.', + abstract: 'Retorna um bit \'OU\' de dois números.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bitor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. Deve ser no formato de decimal e maior que ou igual a 0.' }, + number2: { name: 'number2', detail: 'Necessário. Deve ser no formato de decimal e maior que ou igual a 0.' }, + }, + }, + BITRSHIFT: { + description: 'Retorna um número deslocado para a direita em número de bits especificado.', + abstract: 'Retorna um número deslocado para a direita em número de bits especificado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bitrshift-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Deve ser um número inteiro maior que ou igual a 0.' }, + shiftAmount: { name: 'shift_amount', detail: 'Necessário. Deve ser um número inteiro.' }, + }, + }, + BITXOR: { + description: 'Retorna um bit \'XOR\' de dois números.', + abstract: 'Retorna um bit \'XOR\' de dois números.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/bitxor-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. Deve ser maior que ou igual a 0.' }, + number2: { name: 'number2', detail: 'Necessário. Deve ser maior que ou igual a 0.' }, + }, + }, + COMPLEX: { + description: 'Converte coeficientes reais e imaginários em números complexos no formato x + yi ou x + yj.', + abstract: 'Converte coeficientes reais e imaginários em números complexos no formato x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/complex-function', + }, + ], + functionParameter: { + realNum: { name: 'real_num', detail: 'Necessário. O coeficiente real do número complexo.' }, + iNum: { name: 'i_num', detail: 'Necessário. O coeficiente imaginário do número complexo.' }, + suffix: { name: 'suffix', detail: 'Opcional. O sufixo para o componente imaginário do número complexo. Se for omitido, sufixo será considerado "i".' }, + }, + }, + CONVERT: { + description: 'Converte um número de um sistema de medida para outro. Por exemplo, CONVERTER pode traduzir uma tabela de distâncias em milhas para uma tabela de distâncias em quilômetros.', + abstract: 'Converte um número de um sistema de medida para outro. Por exemplo, CONVERTER pode traduzir uma tabela de distâncias em milhas para uma tabela de distâncias em quilômetros.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/convert-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O valor em from_unit a ser convertido.' }, + fromUnit: { name: 'from_unit', detail: 'A unidade do número.' }, + toUnit: { name: 'to_unit', detail: 'A unidade do resultado.' }, + }, + }, + DEC2BIN: { + description: 'Converte um número decimal em binário.', + abstract: 'Converte um número decimal em binário.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dec2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O inteiro decimal que você deseja converter. Se núm for negativo, o valor válido de casa será ignorado e DECABIN retornará um número binário de 10 caracteres (10 bits) em que o bit mais significativo é o bit de sinal. Os 9 bits restantes são bits de magnitude. Os números negativos são representados através da notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, DECABIN usa o número mínimo de caracteres necessário. Casas é útil para preencher o valor de retorno com 0s (zeros) à esquerda.' }, + }, + }, + DEC2HEX: { + description: 'Converte um número decimal em hexadecimal.', + abstract: 'Converte um número decimal em hexadecimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dec2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O inteiro decimal que você deseja converter. Se núm for negativo, casas serão ignoradas e DECAHEX retornará um número hexadecimal de 10 caracteres (40 bits) em que o bit mais significativo é o bit de sinal. Os 39 bits restantes são bits de magnitude. Os números negativos são representados com o uso de notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a serem usados. Se casas for omitido, DECAHEX usa o número mínimo de caracteres necessário. Casas é útil para preencher o valor de retorno com 0s (zeros) à esquerda.' }, + }, + }, + DEC2OCT: { + description: 'Converte um número decimal em octal.', + abstract: 'Converte um número decimal em octal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dec2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O inteiro decimal que você deseja converter. Se núm for negativo, casas serão ignoradas e DECAOCT retornará um número octal de 10 caracteres (30 bits) em que o bit mais significativo é o bit de sinal. Os demais 29 bits são bits de magnitude. Os números negativos são representados com o uso de notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, DECAOCT usa o número mínimo de caracteres necessário. Casas é útil para preencher o valor de retorno com 0s (zeros) à esquerda.' }, + }, + }, + DELTA: { + description: 'Testa se dois valores são iguais. Retorna 1 se núm1 = núm2; caso contrário, retornará 0. Utilize esta função para filtrar um conjunto de valores. Por exemplo, somando várias funções DELTA, você pode calcular a contagem de pares iguais. Esta função também é chamada função Kronecker Delta.', + abstract: 'Testa se dois valores são iguais. Retorna 1 se núm1 = núm2; caso contrário, retornará 0. Utilize esta função para filtrar um conjunto de valores. Por exemplo, somando várias funções DELTA, você pode calcular a contagem de pares iguais. Esta função também é chamada função Kronecker Delta.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/delta-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro número.' }, + number2: { name: 'number2', detail: 'Opcional. O segundo número. Se omitido, núm2 será considerado zero.' }, + }, + }, + ERF: { + description: 'Retorna a função de erro integrada entre limite_inferior e limite_superior.', + abstract: 'Retorna a função de erro integrada entre limite_inferior e limite_superior.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/erf-function', + }, + ], + functionParameter: { + lowerLimit: { name: 'lower_limit', detail: 'Obrigatório. O limite inferior na integração de FUNERRO.' }, + upperLimit: { name: 'upper_limit', detail: 'Opcional. O limite superior na integração de FUNERRO. Se omitido, FUNERRO integrará entre zero e limite_inferior.' }, + }, + }, + ERF_PRECISE: { + description: 'Retorna a função de erro.', + abstract: 'Retorna a função de erro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/erf-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O limite inferior na integração de FUNERRO.PRECISO.' }, + }, + }, + ERFC: { + description: 'Retorna a função FUNERRO complementar integrada entre x e infinito.', + abstract: 'Retorna a função FUNERRO complementar integrada entre x e infinito.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/erfc-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O limite inferior na integração de FUNERROCOMPL.' }, + }, + }, + ERFC_PRECISE: { + description: 'Retorna a função FUNERRO complementar integrada entre x e infinito.', + abstract: 'Retorna a função FUNERRO complementar integrada entre x e infinito.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/erfc-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O limite inferior na integração de ERFC.PRECISE.' }, + }, + }, + GESTEP: { + description: 'Retorna 1 se núm ≥ passo; caso contrário, retornará 0. Use esta função para filtrar um conjunto de valores. Por exemplo, somando várias funções DEGRAU você calcula a contagem dos valores que excedem um limite.', + abstract: 'Retorna 1 se núm ≥ passo; caso contrário, retornará 0. Use esta função para filtrar um conjunto de valores. Por exemplo, somando várias funções DEGRAU você calcula a contagem dos valores que excedem um limite.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gestep-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser testado em relação a passo.' }, + step: { name: 'step', detail: 'Opcional. O valor-limite. Se você omitir o valor para passo, DEGRAU usará zero.' }, + }, + }, + HEX2BIN: { + description: 'Converte um número hexadecimal em binário.', + abstract: 'Converte um número hexadecimal em binário.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hex2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número hexadecimal que você deseja converter. Núm não pode conter mais de 10 caracteres. O bit mais significativo é o bit de sinal (40° bit da direita). Os 9 bits restantes são bits de magnitude. Os números negativos são representados através da notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, HEXABIN usará o número mínimo de caracteres necessário. Casas é útil para preencher o valor retornado com 0s (zeros) à esquerda.' }, + }, + }, + HEX2DEC: { + description: 'Converte um número hexadecimal em decimal.', + abstract: 'Converte um número hexadecimal em decimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hex2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número hexadecimal que você deseja converter. Núm não pode conter mais de 10 caracteres (40 bits). O bit mais significativo de núm é o bit de sinal. Os 39 bits restantes são bits de magnitude. Os números negativos são representados com o uso de notação de complemento a dois.' }, + }, + }, + HEX2OCT: { + description: 'Converte um número hexadecimal em octal.', + abstract: 'Converte um número hexadecimal em octal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hex2oct-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número hexadecimal que você deseja converter. Núm não pode conter mais de 10 caracteres. O bit mais significativo de núm é o bit de sinal. Os 39 bits restantes são bits de magnitude. Os números negativos são representados com o uso de notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, HEXAOCT usará o número mínimo de caracteres necessário. Casas é útil para preencher o valor retornado com 0s (zeros) à esquerda.' }, + }, + }, + IMABS: { + description: 'Retorna o valor absoluto (módulo) de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o valor absoluto (módulo) de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imabs-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual você deseja obter o valor absoluto.' }, + }, + }, + IMAGINARY: { + description: 'Retorna o coeficiente imaginário de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o coeficiente imaginário de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imaginary-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter um coeficiente imaginário.' }, + }, + }, + IMARGUMENT: { + description: 'Retorna o argumento ), um ângulo expresso em radianos, de modo que:', + abstract: 'Retorna o argumento ), um ângulo expresso em radianos, de modo que:', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imargument-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo para o qual você deseja o argumento .' }, + }, + }, + IMCONJUGATE: { + description: 'Retorna o conjugado complexo de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o conjugado complexo de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imconjugate-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja encontrar o conjugado.' }, + }, + }, + IMCOS: { + description: 'Retorna o cosseno de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o cosseno de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imcos-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o cosseno.' }, + }, + }, + IMCOSH: { + description: 'Retorna um cosseno hiperbólico de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna um cosseno hiperbólico de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imcosh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o cosseno hiperbólico.' }, + }, + }, + IMCOT: { + description: 'Retorna a cotangente de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna a cotangente de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imcot-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'O número complexo para o qual você deseja obter a cotangente.' }, + }, + }, + IMCOTH: { + description: 'A função IMCOTH retorna a cotangente hiperbólica do número complexo fornecido. Por exemplo, para o número complexo "x+yi", retorna "coth(x+yi)".', + abstract: 'A função IMCOTH retorna a cotangente hiperbólica do número complexo fornecido. Por exemplo, para o número complexo "x+yi", retorna "coth(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366256?hl=pt-BR', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'O número complexo para o qual você deseja obter a cotangente hiperbólica. Pode ser o resultado de COMPLEX, um número real interpretado como complexo com parte imaginária igual a 0 ou texto no formato “x+yi”, em que x e y são numéricos.' }, + }, + }, + IMCSC: { + description: 'Retorna a cossecante de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna a cossecante de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imcsc-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter a cossecante.' }, + }, + }, + IMCSCH: { + description: 'Devolve a cossecante hiperbólica de um número complexo no formato de texto x+yi ou x+yj.', + abstract: 'Devolve a cossecante hiperbólica de um número complexo no formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imcsch-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter a cossecante hiperbólica.' }, + }, + }, + IMDIV: { + description: 'Retorna o quociente de dois números complexos no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o quociente de dois números complexos no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imdiv-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Necessário. O numerador ou dividendo complexo.' }, + inumber2: { name: 'inumber2', detail: 'Necessário. O denominador ou divisor complexo.' }, + }, + }, + IMEXP: { + description: 'Retorna o exponencial de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o exponencial de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imexp-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o exponencial.' }, + }, + }, + IMLN: { + description: 'Retorna o logaritmo natural de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o logaritmo natural de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imln-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o logaritmo natural.' }, + }, + }, + IMLOG: { + description: 'A função IMLOG retorna o logaritmo de um número complexo para uma base especificada.', + abstract: 'A função IMLOG retorna o logaritmo de um número complexo para uma base especificada.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366486?hl=pt-BR', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'O valor de entrada da função logaritmo. Pode ser um número simples, como 1, interpretado como real, ou texto entre aspas que especifique os coeficientes real e imaginário.' }, + base: { name: 'base', detail: 'A base usada para calcular o logaritmo. Deve ser um número real positivo.' }, + }, + }, + IMLOG10: { + description: 'Retorna o logaritmo comum (base 10) de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o logaritmo comum (base 10) de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imlog10-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter o logaritmo comum.' }, + }, + }, + IMLOG2: { + description: 'Retorna o logaritmo de base 2 de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o logaritmo de base 2 de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/imlog2-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter o logaritmo de base 2.' }, + }, + }, + IMPOWER: { + description: 'Retorna o número complexo no formato de texto x + yi ou x + yj, elevado a uma potência.', + abstract: 'Retorna o número complexo no formato de texto x + yi ou x + yj, elevado a uma potência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/impower-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo que se deseja elevar a uma potência.' }, + number: { name: 'number', detail: 'Obrigatório. A potência a que se deseja elevar o número complexo.' }, + }, + }, + IMPRODUCT: { + description: 'Retorna o produto de 1 a 255 números complexos no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o produto de 1 a 255 números complexos no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/improduct-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'De 1 a 255 números complexos a multiplicar.' }, + inumber2: { name: 'inumber2', detail: 'De 1 a 255 números complexos a multiplicar.' }, + }, + }, + IMREAL: { + description: 'Retorna o coeficiente real de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o coeficiente real de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imreal-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o coeficiente real.' }, + }, + }, + IMSEC: { + description: 'Retorna a secante de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna a secante de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsec-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter a secante.' }, + }, + }, + IMSECH: { + description: 'Retorna a secante hiperbólica de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna a secante hiperbólica de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsech-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter a secante hiperbólica.' }, + }, + }, + IMSIN: { + description: 'Retorna o seno de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna o seno de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsin-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter o seno.' }, + }, + }, + IMSINH: { + description: 'A função IMSINH devolve o seno hiperbólico de um número complexo no formato de texto x+yi ou x+yj.', + abstract: 'A função IMSINH devolve o seno hiperbólico de um número complexo no formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsinh-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Obrigatório. Um número complexo do qual se deseja obter o seno hiperbólico.' }, + }, + }, + IMSQRT: { + description: 'Retorna a raiz quadrada de um número complexo no formato de texto x + yi ou x + yj.', + abstract: 'Retorna a raiz quadrada de um número complexo no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsqrt-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter a raiz quadrada.' }, + }, + }, + IMSUB: { + description: 'Retorna a diferença entre dois números complexos no formato de texto x + yi ou x + yj.', + abstract: 'Retorna a diferença entre dois números complexos no formato de texto x + yi ou x + yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsub-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'Obrigatório. O número complexo do qual se deseja subtrair inúm2.' }, + inumber2: { name: 'inumber2', detail: 'Obrigatório. O número complexo do qual se deseja subtrair de inúm1.' }, + }, + }, + IMSUM: { + description: 'Retorna a soma de dois ou mais números complexos no formato de texto x + yi ou x + yj .', + abstract: 'Retorna a soma de dois ou mais números complexos no formato de texto x + yi ou x + yj .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imsum-function', + }, + ], + functionParameter: { + inumber1: { name: 'inumber1', detail: 'De 1 a 255 números complexos a somar.' }, + inumber2: { name: 'inumber2', detail: 'De 1 a 255 números complexos a somar.' }, + }, + }, + IMTAN: { + description: 'Retorna a tangente de um número complexo em formato de texto x+yi ou x+yj.', + abstract: 'Retorna a tangente de um número complexo em formato de texto x+yi ou x+yj.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/imtan-function', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'Necessário. Um número complexo do qual se deseja obter a tangente.' }, + }, + }, + IMTANH: { + description: 'A função IMTANH retorna a tangente hiperbólica do número complexo fornecido. Por exemplo, para o número complexo "x+yi", retorna "tanh(x+yi)".', + abstract: 'A função IMTANH retorna a tangente hiperbólica do número complexo fornecido. Por exemplo, para o número complexo "x+yi", retorna "tanh(x+yi)".', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9366655?hl=pt-BR', + }, + ], + functionParameter: { + inumber: { name: 'inumber', detail: 'O número complexo para o qual você deseja obter a tangente hiperbólica. Pode ser o resultado de COMPLEX, um número real interpretado como complexo com parte imaginária igual a 0 ou texto no formato “x+yi”, em que x e y são numéricos.' }, + }, + }, + OCT2BIN: { + description: 'Converte um número octal em binário.', + abstract: 'Converte um número octal em binário.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/oct2bin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número octal que você deseja converter. O número não pode conter mais que 10 caracteres. O bit mais significativo do número é o bit de sinal. Os outros 29 bits são bits de magnitudes. Os números negativos são representados com o uso de notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, OCTABIN usará o número mínimo de caracteres necessário. Casas é útil para preencher o valor retornado com 0 (zeros) à esquerda.' }, + }, + }, + OCT2DEC: { + description: 'Converte um número octal em decimal.', + abstract: 'Converte um número octal em decimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/oct2dec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número octal que você deseja converter. Núm não pode conter mais de 10 caracteres octais (30 bits). Os bits mais significativos de núm é o bit de sinal. Os outros 29 bits são bits de magnitudes. Os números negativos são representados com o uso de notação de complemento a dois.' }, + }, + }, + OCT2HEX: { + description: 'Converte um número octal em hexadecimal.', + abstract: 'Converte um número octal em hexadecimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/oct2hex-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número octal que você deseja converter. Núm não pode conter mais de 10 caracteres octais (30 bits). Os bits mais significativos de núm é o bit de sinal. Os outros 29 bits são bits de magnitudes. Os números negativos são representados com o uso de notação de complemento a dois.' }, + places: { name: 'places', detail: 'Opcional. O número de caracteres a ser usado. Se casas for omitido, OCTAHEX usará o número mínimo de caracteres necessário. Casas é útil para preencher o valor retornado com 0 (zeros) à esquerda.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/engineering/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/engineering/ru-RU.ts index 07c4417033..a6cc47d3d9 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B5%D1%81%D1%81%D0%B5%D0%BB%D1%8C-i-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%81%D1%81%D0%B5%D0%BB%D1%8C-i-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/ru-ru/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%81%D1%81%D0%B5%D0%BB%D1%8C-j-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%81%D1%81%D0%B5%D0%BB%D1%8C-k-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/ru-ru/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%81%D1%81%D0%B5%D0%BB%D1%8C-y-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B2-%D0%B2-%D0%B4%D0%B5%D1%81-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B2-%D0%B2-%D1%88%D0%B5%D1%81%D1%82%D0%BD-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -101,17 +101,17 @@ const locale: typeof enUS = { }, }, BIN2OCT: { - description: 'Преобразует двоичное число в восьмеричное', - abstract: 'Преобразует двоичное число в восьмеричное', + description: 'Преобразует двоичное число в восьмеричное.', + abstract: 'Преобразует двоичное число в восьмеричное.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B2-%D0%B2-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: 'число', detail: 'Преобразуемое двоичное число.' }, - places: { name: 'разрядность', detail: 'Количество знаков в записи числа.' }, + number: { name: 'число', detail: 'Обязательный аргумент. Преобразуемое двоичное число. Число не должно содержать более 10 знаков (10 бит). Первый значащий бит числа является знаковым битом. Остальные 9 бит являются битами значения. Отрицательные числа представляются в дополнительных кодах.' }, + places: { name: 'разрядность', detail: 'Дополнительные. Количество знаков в записи числа. Если разрядность не указана, функция ДВ.В.ВОСЬМ использует минимальное необходимое количество знаков. Разрядность используется для дополнения возвращаемого значения ведущими нулями.' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D1%82-%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D1%82-%D0%B8-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D1%82-%D1%81%D0%B4%D0%B2%D0%B8%D0%B3%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D1%82-%D1%81%D0%B4%D0%B2%D0%B8%D0%B3%D0%BB-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D1%82-%D0%B8%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D1%82-%D0%B8%D0%BB%D0%B8-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D1%82-%D1%81%D0%B4%D0%B2%D0%B8%D0%B3%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D1%82-%D1%81%D0%B4%D0%B2%D0%B8%D0%B3%D0%BF-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D1%82-%D0%B8%D1%81%D0%BA%D0%BB%D0%B8%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D1%82-%D0%B8%D1%81%D0%BA%D0%BB%D0%B8%D0%BB%D0%B8-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%BC%D0%BF%D0%BB%D0%B5%D0%BA%D1%81%D0%BD-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/ru-ru/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%B5%D0%BE%D0%B1%D1%80-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D1%81-%D0%B2-%D0%B4%D0%B2-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D1%81-%D0%B2-%D1%88%D0%B5%D1%81%D1%82%D0%BD-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D1%81-%D0%B2-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D0%BB%D1%8C%D1%82%D0%B0-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/ru-ru/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%BE%D1%88-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/ru-ru/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D1%84%D0%BE%D1%88-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D1%84%D0%BE%D1%88-%D1%82%D0%BE%D1%87%D0%BD-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D1%84%D0%BE%D1%88-%D1%82%D0%BE%D1%87%D0%BD-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/ru-ru/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D1%80%D0%BE%D0%B3-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%88%D0%B5%D1%81%D1%82%D0%BD-%D0%B2-%D0%B4%D0%B2-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%88%D0%B5%D1%81%D1%82%D0%BD-%D0%B2-%D0%B4%D0%B5%D1%81-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%88%D0%B5%D1%81%D1%82%D0%BD-%D0%B2-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%88%D0%B5%D1%81%D1%82%D0%BD-%D0%B2-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-abs-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imabs-function', }, ], functionParameter: { @@ -392,16 +392,16 @@ const locale: typeof enUS = { }, }, IMAGINARY: { - description: 'Возвращает коэффициент при мнимой части комплексного числа', - abstract: 'Возвращает коэффициент при мнимой части комплексного числа', + description: 'Возвращает коэффициент при мнимой части комплексного числа, представленного в формате x + yi или x + yj.', + abstract: 'Возвращает коэффициент при мнимой части комплексного числа, представленного в формате x + yi или x + yj.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D1%87%D0%B0%D1%81%D1%82%D1%8C-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: 'комлексное число', detail: 'Комплексное число, для которого требуется определить коэффициент при мнимой части.' }, + inumber: { name: 'комлексное число', detail: 'Обязательно. Комплексное число, для которого требуется определить коэффициент при мнимой части.' }, }, }, IMARGUMENT: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D0%B0%D1%80%D0%B3%D1%83%D0%BC%D0%B5%D0%BD%D1%82-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-%D1%81%D0%BE%D0%BF%D1%80%D1%8F%D0%B6-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D1%81%D0%BE%D0%BF%D1%80%D1%8F%D0%B6-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-cos-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-cosh-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-cosh-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-cot-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-cot-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: 'Возвращает гиперболический котангенс заданного комплексного числа.', - abstract: 'Возвращает гиперболический котангенс заданного комплексного числа.', + description: 'Функция IMCOTH возвращает гиперболический котангенс заданного комплексного числа. Например, для заданного комплексного числа "x + yi" будет возвращено значение "coth(x + yi)".', + abstract: 'Функция IMCOTH возвращает гиперболический котангенс заданного комплексного числа. Например, для заданного комплексного числа "x + yi" будет возвращено значение "coth(x + yi)".', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/9366256?hl=ru&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=ru', }, ], functionParameter: { - inumber: { name: 'комлексное число', detail: 'Комплексное число, гиперболический котангенс которого нужно вычислить.' }, + inumber: { name: 'комлексное число', detail: 'Комплексное число, гиперболический котангенс которого нужно вычислить. Это может быть или результат функции COMPLEX, или вещественное число (комплексное число с мнимыми частями, равными 0), или строка в формате "x + yi", где x и y – числовые значения.' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-csc-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-csc-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-csch-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-csch-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D0%B4%D0%B5%D0%BB-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imdiv-function', }, ], functionParameter: { @@ -523,16 +523,16 @@ const locale: typeof enUS = { }, }, IMEXP: { - description: 'Возвращает экспоненту комплексного числа', - abstract: 'Возвращает экспоненту комплексного числа', + description: 'Возвращает экспоненту комплексного числа, представленного в текстовом формате x + yi или x + yj.', + abstract: 'Возвращает экспоненту комплексного числа, представленного в текстовом формате x + yi или x + yj.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-exp-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imexp-function', }, ], functionParameter: { - inumber: { name: 'комлексное число', detail: 'Комплексное число, для которого требуется определить экспоненту.' }, + inumber: { name: 'комлексное число', detail: 'Обязательно. Комплексное число, для которого требуется определить экспоненту.' }, }, }, IMLN: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-ln-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: 'Возвращает логарифм комплексного числа по указанному основанию', - abstract: 'Возвращает логарифм комплексного числа по указанному основанию', + description: 'Функция IMLOG возвращает логарифм комплексного числа по указанному основанию.', + abstract: 'Функция IMLOG возвращает логарифм комплексного числа по указанному основанию.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/9366486?hl=ru-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=ru', }, ], functionParameter: { - inumber: { name: 'комлексное число', detail: 'Значение логарифмической функции, которое нужно указать.' }, - base: { name: 'основание', detail: 'Основание для вычисления логарифма.' }, + inumber: { name: 'комлексное число', detail: 'Значение логарифмической функции, которое нужно указать. Чтобы введенное значение было интерпретировано как действительное число, используйте цифры (например, 1). Чтобы указать действительный и комплексный коэффициенты, запишите число в виде текста в кавычках.' }, + base: { name: 'основание', detail: 'Основание для вычисления логарифма. Значение должно быть положительным действительным числом.' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-log10-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-log2-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D1%81%D1%82%D0%B5%D0%BF%D0%B5%D0%BD%D1%8C-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/ru-ru/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D0%BF%D1%80%D0%BE%D0%B8%D0%B7%D0%B2%D0%B5%D0%B4-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/ru-ru/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D0%B2%D0%B5%D1%89-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-sec-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-sec-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-sech-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-sech-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-sinh-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-sinh-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-%D0%BA%D0%BE%D1%80%D0%B5%D0%BD%D1%8C-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D0%BA%D0%BE%D1%80%D0%B5%D0%BD%D1%8C-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D1%80%D0%B0%D0%B7%D0%BD-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-%D1%81%D1%83%D0%BC%D0%BC-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BD%D0%B8%D0%BC-tan-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BD%D0%B8%D0%BC-tan-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/ru-ru/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: 'Возвращает гиперболический тангенс комплексного числа', - abstract: 'Возвращает гиперболический тангенс комплексного числа', + description: 'Функция IMTANH возвращает гиперболический тангенс заданного комплексного числа. Например, для заданного комплексного числа "x + yi" будет возвращено значение "tanh(x + yi)".', + abstract: 'Функция IMTANH возвращает гиперболический тангенс заданного комплексного числа. Например, для заданного комплексного числа "x + yi" будет возвращено значение "tanh(x + yi)".', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/9366655?hl=ru&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=ru', }, ], functionParameter: { - inumber: { name: 'комлексное число', detail: 'Комплексное число, гиперболический тангенс которого нужно вычислить.' }, + inumber: { name: 'комлексное число', detail: 'Комплексное число, гиперболический тангенс которого нужно вычислить. Это может быть или результат функции COMPLEX, или вещественное число (комплексное число с мнимыми частями, равными 0), или строка в формате "x + yi", где x и y – числовые значения.' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-%D0%B2-%D0%B4%D0%B2-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-%D0%B2-%D0%B4%D0%B5%D1%81-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%BE%D1%81%D1%8C%D0%BC-%D0%B2-%D1%88%D0%B5%D1%81%D1%82%D0%BD-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/engineering/sk-SK.ts index 329ebb5b4b..a557675741 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/sk-sk/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/sk-sk/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -101,31 +101,31 @@ const locale: typeof enUS = { }, }, BIN2OCT: { - description: 'Konvertuje binárne číslo na oktalové', - abstract: 'Konvertuje binárne číslo na oktalové', + description: 'Skonvertuje binárne číslo na osmičkové.', + abstract: 'Skonvertuje binárne číslo na osmičkové.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: 'číslo', detail: 'Binárne číslo, ktoré chcete previesť.' }, - places: { name: 'počet_znakov', detail: 'Počet znakov, ktoré sa majú použiť.' }, + number: { name: 'číslo', detail: 'Povinné. Binárne číslo, ktoré chcete skonvertovať. Číslo nesmie obsahovať viac než 10 znakov (10 bitov). Najvýznamnejší bit čísla je bit znamienka. Zvyšných 9 bitov určuje veľkosť čísla. Záporné čísla sa vyjadrujú pomocou binárnej doplnkovej notácie.' }, + places: { name: 'počet_znakov', detail: 'Voliteľný argument. Počet znakov, ktoré sa majú použiť. Ak je tento argument vynechaný, funkcia BIN2OCT používa najmenší potrebný počet znakov. Tento argument je užitočný, ak chcete výslednú hodnotu doplniť zľava nulami.' }, }, }, BITAND: { - description: 'Vracia bitový AND dvoch čísel', - abstract: 'Vracia bitový AND dvoch čísel', + description: 'Vráti bitový operátor AND dvoch čísel.', + abstract: 'Vráti bitový operátor AND dvoch čísel.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bitand-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'Musí byť v desiatkovej forme a väčšie alebo rovné 0.' }, - number2: { name: 'číslo2', detail: 'Musí byť v desiatkovej forme a väčšie alebo rovné 0.' }, + number1: { name: 'číslo1', detail: 'Povinné. Hodnota musí byť v formáte desatinného čísla a väčšia alebo rovná 0.' }, + number2: { name: 'číslo2', detail: 'Povinné. Hodnota musí byť v formáte desatinného čísla a väčšia alebo rovná 0.' }, }, }, BITLSHIFT: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/sk-sk/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/sk-sk/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/sk-sk/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/sk-sk/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imabs-function', }, ], functionParameter: { @@ -392,16 +392,16 @@ const locale: typeof enUS = { }, }, IMAGINARY: { - description: 'Vracia imaginárny koeficient komplexného čísla', - abstract: 'Vracia imaginárny koeficient komplexného čísla', + description: 'Vráti imaginárny koeficient komplexného čísla zadaného vo formáte x + yi alebo x + yj.', + abstract: 'Vráti imaginárny koeficient komplexného čísla zadaného vo formáte x + yi alebo x + yj.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: 'komplexné_číslo', detail: 'Komplexné číslo, pre ktoré chcete imaginárny koeficient.' }, + inumber: { name: 'komplexné_číslo', detail: 'Povinné. Komplexné číslo, ktorého imaginárny koeficient chcete zistiť.' }, }, }, IMARGUMENT: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imcot-function', }, ], functionParameter: { @@ -475,7 +475,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=sk', }, ], functionParameter: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imdiv-function', }, ], functionParameter: { @@ -528,7 +528,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imexp-function', }, ], functionParameter: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imln-function', }, ], functionParameter: { @@ -554,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/9366486?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=sk', }, ], functionParameter: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/sk-sk/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/sk-sk/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/sk-sk/excel/functions/imtan-function', }, ], functionParameter: { @@ -741,7 +741,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=sk', }, ], functionParameter: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/engineering/vi-VN.ts index e717dcc5d6..313d37eab9 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -101,17 +101,17 @@ const locale: typeof enUS = { }, }, 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', + description: 'Chuyển đổi số nhị phân sang bát phân.', + abstract: 'Chuyển đổi số nhị phân sang 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bin2oct-function', }, ], 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.' }, + number: { name: 'Số nhị phân', detail: 'Bắt buộc. Số nhị phân mà bạn muốn chuyển đổi. Số không được chứa quá 10 ký tự (10 bit). Bit quan trọng nhất của số là bit dấu. 9 bit còn lại là các bit độ lớn. Các số âm được thể hiện bằng cách sử dụng ký hiệu hai thành phần.' }, + places: { name: 'Số ký tự', detail: 'chọn. Số ký tự sử dụng. Nếu bỏ qua khoảng trắng, BIN2OCT dùng số ký tự tối thiểu cần thiết. Khoảng trắng có tác dụng đệm cho giá trị trả về có số 0 (không) đằng trước.' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bitand-function', }, ], functionParameter: { @@ -128,14 +128,13 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -149,7 +148,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bitor-function', }, ], functionParameter: { @@ -163,7 +162,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -177,7 +176,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bitxor-function', }, ], functionParameter: { @@ -191,7 +190,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/complex-function', }, ], functionParameter: { @@ -206,7 +205,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/convert-function', }, ], functionParameter: { @@ -221,7 +220,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -235,7 +234,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -249,7 +248,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -263,7 +262,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/delta-function', }, ], functionParameter: { @@ -277,7 +276,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/erf-function', }, ], functionParameter: { @@ -291,7 +290,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -304,7 +303,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/erfc-function', }, ], functionParameter: { @@ -317,7 +316,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -330,7 +329,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gestep-function', }, ], functionParameter: { @@ -344,7 +343,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -358,7 +357,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -371,7 +370,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -385,7 +384,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imabs-function', }, ], functionParameter: { @@ -393,16 +392,16 @@ const locale: typeof enUS = { }, }, IMAGINARY: { - description: 'Trả về hệ số ảo của số phức', - abstract: 'Trả về hệ số ảo của số phức', + description: 'Trả về hệ số ảo của một số phức trong định dạng văn bản x + yi hoặc x + yj.', + abstract: 'Trả về hệ số ảo của một số phức trong định dạng văn bản x + yi hoặc x + yj.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: 'số phức', detail: 'Số phức mà bạn muốn tìm hệ số ảo của nó.' }, + inumber: { name: 'số phức', detail: 'Yêu cầu. Số phức mà bạn muốn tìm hệ số ảo của nó.' }, }, }, IMARGUMENT: { @@ -411,7 +410,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imargument-function', }, ], functionParameter: { @@ -424,7 +423,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -437,7 +436,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imcos-function', }, ], functionParameter: { @@ -450,7 +449,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imcosh-function', }, ], functionParameter: { @@ -463,7 +462,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imcot-function', }, ], functionParameter: { @@ -471,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: 'Trả về hyperbolic cotangent của số phức', - abstract: 'Trả về hyperbolic cotangent của số phức', + description: 'Hàm IMCOTH trả về cotang hyperbol của một số phức đã cho. Ví dụ: một số phức đã cho "x+yi" trả về "coth(x+yi)".', + abstract: 'Hàm IMCOTH trả về cotang hyperbol của một số phức đã cho. Ví dụ: một số phức đã cho "x+yi" trả về "coth(x+yi)".', links: [ { title: 'Giảng dạy', - url: 'https://support.google.com/docs/answer/9366256?hl=vi&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=vi', }, ], functionParameter: { - inumber: { name: 'số phức', detail: 'Số phức mà bạn muốn lấy hyperbolic cotangent.' }, + inumber: { name: 'số phức', detail: 'IMCOTH(4)' }, }, }, IMCSC: { @@ -489,7 +488,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imcsc-function', }, ], functionParameter: { @@ -502,7 +501,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imcsch-function', }, ], functionParameter: { @@ -515,7 +514,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imdiv-function', }, ], functionParameter: { @@ -529,7 +528,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imexp-function', }, ], functionParameter: { @@ -542,7 +541,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imln-function', }, ], functionParameter: { @@ -550,17 +549,17 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Hàm IMLOG trả về lôgarit của một số phức với cơ số xác định.', + abstract: 'Hàm IMLOG trả về lôgarit 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', + url: 'https://support.google.com/docs/answer/9366486?hl=vi', }, ], 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.' }, + inumber: { name: 'số phức', detail: 'Giá trị nhập vào của hàm lôgarit. Số này có thể được viết dưới dạng số tự nhiên, ví dụ: 1, được hiểu là số thực. Số này có thể được viết dưới dạng văn bản trích dẫn để chỉ định cả hệ số thực và hệ số phức.' }, + base: { name: 'cơ số', detail: 'Cơ số cần sử dụng khi tính lôgarit. Phải là một số thực dương.' }, }, }, IMLOG10: { @@ -569,7 +568,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imlog10-function', }, ], functionParameter: { @@ -582,21 +581,20 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imlog2-function', }, ], 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/impower-function', }, ], functionParameter: { @@ -610,7 +608,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/improduct-function', }, ], functionParameter: { @@ -624,7 +622,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imreal-function', }, ], functionParameter: { @@ -637,7 +635,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsec-function', }, ], functionParameter: { @@ -650,7 +648,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsech-function', }, ], functionParameter: { @@ -663,7 +661,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsin-function', }, ], functionParameter: { @@ -676,7 +674,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsinh-function', }, ], functionParameter: { @@ -689,7 +687,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -702,7 +700,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsub-function', }, ], functionParameter: { @@ -716,7 +714,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imsum-function', }, ], functionParameter: { @@ -730,7 +728,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/imtan-function', }, ], functionParameter: { @@ -738,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: 'Trả về tanh của số phức', - abstract: 'Trả về tanh của số phức', + description: 'Hàm IMTANH trả về tang hyperbol của một số phức đã cho. Ví dụ: một số phức đã cho "x+yi" trả về "tanh(x+yi)".', + abstract: 'Hàm IMTANH trả về tang hyperbol của một số phức đã cho. Ví dụ: một số phức đã cho "x+yi" trả về "tanh(x+yi)".', links: [ { title: 'Giảng dạy', - url: 'https://support.google.com/docs/answer/9366655?hl=vi&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=vi', }, ], functionParameter: { - inumber: { name: 'số phức', detail: 'Số phức mà bạn muốn lấy tanh.' }, + inumber: { name: 'số phức', detail: 'Số phức mà bạn muốn tìm tang hyperbol. Đây có thể là kết quả của hàm COMPLEX, một số thực được hiểu là số phức có các phần ảo bằng 0, hoặc một chuỗi ở định dạng “x+yi”, trong đó x và y là số.' }, }, }, OCT2BIN: { @@ -756,7 +754,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -770,7 +768,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -783,7 +781,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/engineering/zh-CN.ts index 092f4d9013..88b5563402 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/besseli-%E5%87%BD%E6%95%B0-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/zh-cn/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/besselj-%E5%87%BD%E6%95%B0-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/besselk-%E5%87%BD%E6%95%B0-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/zh-cn/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bessely-%E5%87%BD%E6%95%B0-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bin2dec-%E5%87%BD%E6%95%B0-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bin2hex-%E5%87%BD%E6%95%B0-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -101,17 +101,17 @@ const locale: typeof enUS = { }, }, BIN2OCT: { - description: '将二进制数转换为八进制数', - abstract: '将二进制数转换为八进制数', + description: '将二进制数转换为八进制数。', + abstract: '将二进制数转换为八进制数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bin2oct-%E5%87%BD%E6%95%B0-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: '二进制数', detail: '要转换的二进制数。' }, - places: { name: '字符数', detail: '要使用的字符数。' }, + number: { name: '二进制数', detail: '必需。 要转换的二进制数。 Number 包含的字符不能超过 10 个(10 位)。 Number 的最高位为符号位。 其余 9 位是数量位。 负数用二进制补码记数法表示。' }, + places: { name: '字符数', detail: '选。 要使用的字符数。 如果省略 places,BIN2OCT 将使用必需的最小字符数。 Places 可用于在返回的值前置 0(零)。' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bitand-%E5%87%BD%E6%95%B0-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bitlshift-%E5%87%BD%E6%95%B0-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bitor-%E5%87%BD%E6%95%B0-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bitrshift-%E5%87%BD%E6%95%B0-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bitxor-%E5%87%BD%E6%95%B0-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/complex-%E5%87%BD%E6%95%B0-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/zh-cn/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/convert-%E5%87%BD%E6%95%B0-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dec2bin-%E5%87%BD%E6%95%B0-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dec2hex-%E5%87%BD%E6%95%B0-6344ee8b-b6b5-4c6a-a672-f64666704619', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dec2oct-%E5%87%BD%E6%95%B0-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/delta-%E5%87%BD%E6%95%B0-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/zh-cn/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/erf-%E5%87%BD%E6%95%B0-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/zh-cn/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/erf-precise-%E5%87%BD%E6%95%B0-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/erfc-%E5%87%BD%E6%95%B0-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/erfc-precise-%E5%87%BD%E6%95%B0-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/zh-cn/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gestep-%E5%87%BD%E6%95%B0-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hex2bin-%E5%87%BD%E6%95%B0-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hex2dec-%E5%87%BD%E6%95%B0-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hex2oct-%E5%87%BD%E6%95%B0-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imabs-%E5%87%BD%E6%95%B0-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imabs-function', }, ], functionParameter: { @@ -392,16 +392,16 @@ const locale: typeof enUS = { }, }, IMAGINARY: { - description: '返回复数的虚系数', - abstract: '返回复数的虚系数', + description: '返回以 x+yi 或 x+yj 文本格式表示的复数的虚系数。', + abstract: '返回以 x+yi 或 x+yj 文本格式表示的复数的虚系数。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imaginary-%E5%87%BD%E6%95%B0-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imaginary-function', }, ], functionParameter: { - inumber: { name: '复数', detail: '需要计算其虚系数的复数。' }, + inumber: { name: '复数', detail: '必填。 需要计算其虚系数的复数。' }, }, }, IMARGUMENT: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imargument-%E5%87%BD%E6%95%B0-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imconjugate-%E5%87%BD%E6%95%B0-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imcos-%E5%87%BD%E6%95%B0-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imcosh-%E5%87%BD%E6%95%B0-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imcot-%E5%87%BD%E6%95%B0-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: '返回复数的双曲余切值', - abstract: '返回复数的双曲余切值', + description: 'IMCOTH 函数返回给定复数的双曲余切值。 例如,给定复数“x+yi”会返回“coth(x+yi)”。', + abstract: 'IMCOTH 函数返回给定复数的双曲余切值。 例如,给定复数“x+yi”会返回“coth(x+yi)”。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9366256?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=zh-Hans', }, ], functionParameter: { - inumber: { name: '复数', detail: '需要计算其双曲余切值的复数。' }, + inumber: { name: '复数', detail: '要计算其双曲余切值的复数。 该数值可以是由 COMPLEX 函数计算得出的结果、实数(可看作虚部等于 0 的复数),或是格式为“x+yi”的字符串(其中 x 和 y 均为数字)。' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imcsc-%E5%87%BD%E6%95%B0-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imcsch-%E5%87%BD%E6%95%B0-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imcsch-function', }, ], functionParameter: { @@ -514,7 +514,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imdiv-%E5%87%BD%E6%95%B0-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imdiv-function', }, ], functionParameter: { @@ -528,7 +528,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imexp-%E5%87%BD%E6%95%B0-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imexp-function', }, ], functionParameter: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imln-%E5%87%BD%E6%95%B0-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: '返回复数的以特定数为底的对数', - abstract: '返回复数的以特定数为底的对数', + description: 'IMLOG 函数返回某个复数以特定数为底的对数。', + abstract: 'IMLOG 函数返回某个复数以特定数为底的对数。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hans', }, ], functionParameter: { - inumber: { name: '复数', detail: '需要计算其以特定数为底的对数的复数。' }, - base: { name: '底数', detail: '用于计算相应对数的底数。' }, + inumber: { name: '复数', detail: '对数函数的输入值。 数值可以写成普通数字(如 1),可视为实数。 数值也可以写成引用文字,以便指定实系数和复系数。' }, + base: { name: '底数', detail: '用于计算相应对数的底数。 必须为正实数。' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imlog10-%E5%87%BD%E6%95%B0-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imlog2-%E5%87%BD%E6%95%B0-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/impower-%E5%87%BD%E6%95%B0-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/zh-cn/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/improduct-%E5%87%BD%E6%95%B0-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/zh-cn/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imreal-%E5%87%BD%E6%95%B0-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsec-%E5%87%BD%E6%95%B0-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsech-%E5%87%BD%E6%95%B0-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsin-%E5%87%BD%E6%95%B0-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsinh-%E5%87%BD%E6%95%B0-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsqrt-%E5%87%BD%E6%95%B0-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsub-%E5%87%BD%E6%95%B0-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imsum-%E5%87%BD%E6%95%B0-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/imtan-%E5%87%BD%E6%95%B0-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/zh-cn/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: '返回复数的双曲正切值', - abstract: '返回复数的双曲正切值', + description: 'IMTANH 函数返回给定复数的双曲正切值。 例如,给定复数“x+yi”会返回“tanh(x+yi)”。', + abstract: 'IMTANH 函数返回给定复数的双曲正切值。 例如,给定复数“x+yi”会返回“tanh(x+yi)”。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9366655?hl=zh-Hans&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=zh-Hans', }, ], functionParameter: { - inumber: { name: '复数', detail: '需要计算其双曲正切值的复数。' }, + inumber: { name: '复数', detail: '要计算其双曲正切值的复数。 该数值可以是 COMPLEX 函数计算得出的结果、实数(将被视作虚部等于 0 的复数),或是格式为“x+yi”的字符串(其中 x 和 y 均为数字)。' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oct2bin-%E5%87%BD%E6%95%B0-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oct2dec-%E5%87%BD%E6%95%B0-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oct2hex-%E5%87%BD%E6%95%B0-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/engineering/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/engineering/zh-TW.ts index 9989aa49d6..18e4d61056 100644 --- a/packages/sheets-formula/src/locale/function-list/engineering/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/engineering/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/besseli-%E5%87%BD%E6%95%B0-8d33855c-9a8d-444b-98e0-852267b1c0df', + url: 'https://support.microsoft.com/zh-tw/excel/functions/besseli-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/besselj-%E5%87%BD%E6%95%B0-839cb181-48de-408b-9d80-bd02982d94f7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/besselj-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/besselk-%E5%87%BD%E6%95%B0-606d11bc-06d3-4d53-9ecb-2803e2b90b70', + url: 'https://support.microsoft.com/zh-tw/excel/functions/besselk-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bessely-%E5%87%BD%E6%95%B0-f3a356b3-da89-42c3-8974-2da54d6353a2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bessely-function', }, ], functionParameter: { @@ -79,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bin2dec-%E5%87%BD%E6%95%B0-63905b57-b3a0-453d-99f4-647bb519cd6c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bin2dec-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bin2hex-%E5%87%BD%E6%95%B0-0375e507-f5e5-4077-9af8-28d84f9f41cc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bin2hex-function', }, ], functionParameter: { @@ -101,17 +101,17 @@ const locale: typeof enUS = { }, }, BIN2OCT: { - description: '將二進位數轉換為八進位數', - abstract: '將二進位數轉換為八進位數', + description: '將二進位數字轉換成八進位。', + abstract: '將二進位數字轉換成八進位。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bin2oct-%E5%87%BD%E6%95%B0-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bin2oct-function', }, ], functionParameter: { - number: { name: '二進位數', detail: '要轉換的二進位數。' }, - places: { name: '字元數', detail: '要使用的字元數。' }, + number: { name: '二進位數', detail: '必要。 您要轉換的二進位數字。 Number 不能包含超過 10 個字元 (10 個位元)。 Number 最高有效位元是正負號位元。 其餘的 9 個位元則為量級位元。 負數是使用 2 的補數表示法來表示。' }, + places: { name: '字元數', detail: '可選的。 這是要使用的字元數。 如果省略 places,BIN2OCT 會使用所需字元數的最小值。 當您要使用前置 0 (零) 來填補傳回值時,places 非常有用。' }, }, }, BITAND: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bitand-%E5%87%BD%E6%95%B0-8a2be3d7-91c3-4b48-9517-64548008563a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bitand-function', }, ], functionParameter: { @@ -134,7 +134,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bitlshift-%E5%87%BD%E6%95%B0-c55bb27e-cacd-4c7c-b258-d80861a03c9c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bitlshift-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bitor-%E5%87%BD%E6%95%B0-f6ead5c8-5b98-4c9e-9053-8ad5234919b2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bitor-function', }, ], functionParameter: { @@ -162,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bitrshift-%E5%87%BD%E6%;95%B0-274d6996-f42c-4743-abdb-4ff95351222c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bitrshift-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bitxor-%E5%87%BD%E6%95%B0-c81306a1-03f9-4e89-85ac-b86c3cba10e4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bitxor-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/complex-%E5%87%BD%E6%95%B0-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128', + url: 'https://support.microsoft.com/zh-tw/excel/functions/complex-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/convert-%E5%87%BD%E6%95%B0-d785bef1-808e-4aac-bdcd-666c810f9af2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/convert-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dec2bin-%E5%87%BD%E6%95%B0-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dec2bin-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dec2hex-%E5%87%BD%E6%95%B0-6344ee8b-b6b5-4c6a-a672-f646666704619', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dec2hex-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dec2oct-%E5%87%BD%E6%95%B0-c9d835ca-20b7-40c4-8a9e-d3be351ce00f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dec2oct-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/delta-%E5%87%BD%E6%95%B0-2f763672-c959-4e07-ac33-fe03220ba432', + url: 'https://support.microsoft.com/zh-tw/excel/functions/delta-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/erf-%E5%87%BD%E6%95%B0-c53c7e7b-5482-4b6c-883e-56df3c9af349', + url: 'https://support.microsoft.com/zh-tw/excel/functions/erf-function', }, ], functionParameter: { @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/erf-precise-%E5%87%BD%E6%95%B0-9a349593-705c-4278-9a98-e4122831a8e0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/erf-precise-function', }, ], functionParameter: { @@ -303,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/erfc-%E5%87%BD%E6%95%B0-736e0318-70ba-4e8b-8d08-461fe68b71b3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/erfc-function', }, ], functionParameter: { @@ -316,7 +316,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/erfc-precise-%E5%87%BD%E6%95%B0-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273', + url: 'https://support.microsoft.com/zh-tw/excel/functions/erfc-precise-function', }, ], functionParameter: { @@ -329,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gestep-%E5%87%BD%E6%95%B0-f37e7d2a-41da-4129-be95-640883fca9df', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gestep-function', }, ], functionParameter: { @@ -343,7 +343,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hex2bin-%E5%87%BD%E6%95%B0-a13aafaa-5737-4920-8424-643e581828c1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hex2bin-function', }, ], functionParameter: { @@ -357,7 +357,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hex2dec-%E5%87%BD%E6%95%B0-8c8c3155-9f37-45a5-a3ee-ee5379ef106e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hex2dec-function', }, ], functionParameter: { @@ -370,7 +370,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hex2oct-%E5%87%BD%E6%95%B0-54d52808-5d19-4bd0-8a63-1096a5d11912', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hex2oct-function', }, ], functionParameter: { @@ -384,7 +384,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imabs-%E5%87%BD%E6%95%B0-b31e73c6-d90c-4062-90bc-8eb351d765a1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imabs-function', }, ], functionParameter: { @@ -397,7 +397,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imaginary-%E5%87%BD%E6%95%B0-dd5952fd-473d-44d9-95a1-9a17b23e428a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imaginary-function', }, ], functionParameter: { @@ -410,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imargument-%E5%87%BD%E6%95%B0-eed37ec1-23b3-4f59-b9f3-d340358a034a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imargument-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imconjugate-%E5%87%BD%E6%95%B0-2e2fc1ea-f32b-4f9b-9de6-233853bafd42', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imconjugate-function', }, ], functionParameter: { @@ -436,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imcos-%E5%87%BD%E6%95%B0-dad75277-f592-4a6b-ad6c-be93a808a53c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imcos-function', }, ], functionParameter: { @@ -449,7 +449,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imcosh-%E5%87%BD%E6%95%B0-053e4ddb-4122-458b-be9a-457c405e90ff', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imcosh-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imcot-%E5%87%BD%E6%95%B0-dc6a3607-d26a-4d06-8b41-8931da36442c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imcot-function', }, ], functionParameter: { @@ -470,16 +470,16 @@ const locale: typeof enUS = { }, }, IMCOTH: { - description: '傳回複數的雙曲餘切值', - abstract: '傳回複數的雙曲餘切值', + description: 'IMCOTH 函式會傳回指定複數的雙曲餘切值。 例如,指定值為複數「x+yi」,就會傳回「coth(x+yi)」。', + abstract: 'IMCOTH 函式會傳回指定複數的雙曲餘切值。 例如,指定值為複數「x+yi」,就會傳回「coth(x+yi)」。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9366256?hl=zh-Hant&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366256?hl=zh-Hant', }, ], functionParameter: { - inumber: { name: '複數', detail: '這是要求得雙曲餘切值的複數。' }, + inumber: { name: '複數', detail: '要計算雙曲餘切值的複數。 此引數可以是 COMPLEX 函式得出的值,也可以是實數 (視為虛部等於 0 的複數) 或格式為「x+yi」的字串,其中 x 和 y 為數字。' }, }, }, IMCSC: { @@ -488,7 +488,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imcsc-%E5%87%BD%E6%95%B0-9e158d8f-2ddf-46cd-9b1d-98e29904a323', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imcsc-function', }, ], functionParameter: { @@ -501,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imcsch-%E5%87%BD%E6%95%B0-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imcsch-function', }, ], functionParameter: { @@ -509,17 +509,17 @@ const locale: typeof enUS = { }, }, IMDIV: { - description: '傳回兩個複數的商數', - abstract: '傳回兩個複數的商', + description: '傳回文字格式為 x + yi 或 x + yj 的兩個複數的商數。', + abstract: '傳回文字格式為 x + yi 或 x + yj 的兩個複數的商數。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imdiv-%E5%87%BD%E6%95%B0-a505aff7-af8a-4451-8142-77ec3d74d83f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imdiv-function', }, ], functionParameter: { - inumber1: { name: '複數分子', detail: '複數分子或被除數。' }, - inumber2: { name: '複數分母', detail: '複數分母或除數。' }, + inumber1: { name: '複數分子', detail: '必須。 這是複數分子或被除數。' }, + inumber2: { name: '複數分母', detail: '必須。 這是複數分母或除數。' }, }, }, IMEXP: { @@ -528,7 +528,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imexp-%E5%87%BD%E6%95%B0-c6f8da1f-e024-4c0c-b802-a60e7147a95f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imexp-function', }, ], functionParameter: { @@ -541,7 +541,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imln-%E5%87%BD%E6%95%B0-32b98bcf-8b81-437c-a636-6fb3aad509d8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imln-function', }, ], functionParameter: { @@ -549,17 +549,17 @@ const locale: typeof enUS = { }, }, IMLOG: { - description: '傳回複數的以特定底數的對數', - abstract: '傳回複數的以特定底數的對數', + description: 'IMLOG 函式會傳回指定複數的對數 (根據特定底數)。', + abstract: 'IMLOG 函式會傳回指定複數的對數 (根據特定底數)。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hant&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366486?hl=zh-Hant', }, ], functionParameter: { - inumber: { name: '複數', detail: '這是要求得以特定底數的對數的複數。' }, - base: { name: '底數', detail: '計算對數時所用的底數。' }, + inumber: { name: '複數', detail: '對數函式的輸入值。 可以輸入 1 這樣的純數字,系統會將此解析為一個實數。 也可以輸入引用文字,同時指定實數和複數係數。' }, + base: { name: '底數', detail: '計算對數時所用的底數。 必須是正實數。' }, }, }, IMLOG10: { @@ -568,7 +568,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imlog10-%E5%87%BD%E6%95%B0-58200fca-e2a2-4271-8a98-ccd4360213a5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imlog10-function', }, ], functionParameter: { @@ -581,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imlog2-%E5%87%BD%E6%95%B0-152e13b4-bc79-486c-a243-e6a676878c51', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imlog2-function', }, ], functionParameter: { @@ -594,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/impower-%E5%87%BD%E6%95%B0-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39', + url: 'https://support.microsoft.com/zh-tw/excel/functions/impower-function', }, ], functionParameter: { @@ -608,7 +608,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/improduct-%E5%87%BD%E6%95%B0-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba', + url: 'https://support.microsoft.com/zh-tw/excel/functions/improduct-function', }, ], functionParameter: { @@ -622,7 +622,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imreal-%E5%87%BD%E6%95%B0-d12bc4c0-25d0-4bb3-a25f-ece1938bf366', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imreal-function', }, ], functionParameter: { @@ -635,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsec-%E5%87%BD%E6%95%B0-6df11132-4411-4df4-a3dc-1f17372459e0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsec-function', }, ], functionParameter: { @@ -648,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsech-%E5%87%BD%E6%95%B0-f250304f-788b-4505-954e-eb01fa50903b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsech-function', }, ], functionParameter: { @@ -661,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsin-%E5%87%BD%E6%95%B0-1ab02a39-a721-48de-82ef-f52bf37859f6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsin-function', }, ], functionParameter: { @@ -674,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsinh-%E5%87%BD%E6%95%B0-dfb9ec9e-8783-4985-8c42-b028e9e8da3d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsinh-function', }, ], functionParameter: { @@ -687,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsqrt-%E5%87%BD%E6%95%B0-e1753f80-ba11-4664-a10e-e17368396b70', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsqrt-function', }, ], functionParameter: { @@ -700,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsub-%E5%87%BD%E6%95%B0-2e404b4d-4935-4e85-9f52-cb08b9a45054', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsub-function', }, ], functionParameter: { @@ -714,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imsum-%E5%87%BD%E6%95%B0-81542999-5f1c-4da6-9ffe-f1d7aaa9457f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imsum-function', }, ], functionParameter: { @@ -728,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/imtan-%E5%87%BD%E6%95%B0-8478f45d-610a-43cf-8544-9fc0b553a132', + url: 'https://support.microsoft.com/zh-tw/excel/functions/imtan-function', }, ], functionParameter: { @@ -736,16 +736,16 @@ const locale: typeof enUS = { }, }, IMTANH: { - description: '傳回複數的雙曲正切值', - abstract: '傳回複數的雙曲正切值', + description: 'IMTANH 函式會傳回指定複數的雙曲正切值。 例如,指定值為複數「x+yi」,就會傳回「tanh(x+yi)」。', + abstract: 'IMTANH 函式會傳回指定複數的雙曲正切值。 例如,指定值為複數「x+yi」,就會傳回「tanh(x+yi)」。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/9366655?hl=zh-Hant&sjid=1719420110567985051-AP', + url: 'https://support.google.com/docs/answer/9366655?hl=zh-Hant', }, ], functionParameter: { - inumber: { name: '複數', detail: '這是要求得雙曲正切值的複數。' }, + inumber: { name: '複數', detail: '要計算雙曲正切值的複數。 此引數可以是 COMPLEX 函式得出的數值,也可以是實數 (視為虛部等於 0 的複數) 或格式為「x+yi」的字串,其中 x 和 y 為數字。' }, }, }, OCT2BIN: { @@ -754,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oct2bin-%E5%87%BD%E6%95%B0-55383471-3c56-4d27-9522-1a8ec646c589', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oct2bin-function', }, ], functionParameter: { @@ -768,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oct2dec-%E5%87%BD%E6%95%B0-87606014-cb98-44b2-8dbb-e48f8ced1554', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oct2dec-function', }, ], functionParameter: { @@ -781,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oct2hex-%E5%87%BD%E6%95%B0-912175b4-d497-41b4-a029-221f051b858f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oct2hex-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/financial/ar-SA.ts new file mode 100644 index 0000000000..e107f4696b --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/ar-SA.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'تُرجع الفائدة المستحقة لورقة مالية يتم سداد فائدة دورية عنها.', + abstract: 'تُرجع الفائدة المستحقة لورقة مالية يتم سداد فائدة دورية عنها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'مطلوب. وهي تاريخ إصدار الورقة المالية.' }, + firstInterest: { name: 'first_interest', detail: 'مطلوب. وهي تاريخ أول فائدة للورقة المالية.' }, + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + par: { name: 'par', detail: 'مطلوب. وهي قيمة سعر التداول للورقة المالية. إذا تم إهمال سعر التداول، فستستخدم الدالة ACCRINT القيمة 1000 ر.س..' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + calcMethod: { name: 'calc_method', detail: 'الاختياري. وهي قيمة منطقية تحدد طريقة حساب الفائدة المستحقة الإجمالية عند تأخر تاريخ التسوية عن تاريخ first_interest. تُرجع قيمة TRUE (1)‎ الفائدة المستحقة الإجمالية من الإصدار إلى التسوية. وتُرجع قيمة FALSE (0)‎ الفائدة المستحقة من first_interest إلى التسوية. إذا لم تُدخل قيمة الوسيطة، فسيتم تعيينها بشكلٍ افتراضي إلى TRUE.' }, + }, + }, + ACCRINTM: { + description: 'تُرجع الفائدة المستحقة لورقة مالية يتم سداد فائدة عنها في موعد الاستحقاق.', + abstract: 'تُرجع الفائدة المستحقة لورقة مالية يتم سداد فائدة عنها في موعد الاستحقاق.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'مطلوب. وهي تاريخ إصدار الورقة المالية.' }, + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + par: { name: 'par', detail: 'مطلوب. وهي قيمة سعر التداول للورقة المالية. إذا تم إهمال سعر التداول، فستستخدم الدالة ACCRINTM القيمة 1000 ر.س..' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + AMORDEGRC: { + description: 'تُرجع الإهلاك لكل فترة محاسبية. يتم توفير هذه الدالة لنظام المحاسبة الفرنسي. وإذا تم شراء أحد الأصول في منتصف الفترة المحاسبية، فيتم وضع الإهلاك المقسم بالتناسب في الاعتبار. تتشابه هذه الدالة مع الدالة AMORLINC، باستثناء أنه يتم تطبيق معامل الإهلاك على الحساب استناداً إلى فترة عمر الأصول.', + abstract: 'تُرجع الإهلاك لكل فترة محاسبية. يتم توفير هذه الدالة لنظام المحاسبة الفرنسي. وإذا تم شراء أحد الأصول في منتصف الفترة المحاسبية، فيتم وضع الإهلاك المقسم بالتناسب في الاعتبار. تتشابه هذه الدالة مع الدالة AMORLINC، باستثناء أنه يتم تطبيق معامل الإهلاك على الحساب استناداً إلى فترة عمر الأصول.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. وهي تكلفة الأصل.' }, + datePurchased: { name: 'date_purchased', detail: 'مطلوب. وهي تاريخ شراء الأصل.' }, + firstPeriod: { name: 'first_period', detail: 'مطلوب. وهي تاريخ نهاية الفترة الأولى.' }, + salvage: { name: 'salvage', detail: 'مطلوب. وهي القيمة الباقية في نهاية فترة عمر الأصل.' }, + period: { name: 'period', detail: 'مطلوب. وهي الفترة الزمنية.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي معدل الإهلاك.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي أساس حساب السنة المستخدم.' }, + }, + }, + AMORLINC: { + description: 'تُرجع الإهلاك لكل فترة محاسبية. يتم توفير هذه الدالة لنظام المحاسبة الفرنسي. وإذا تم شراء أحد الأصول في منتصف الفترة المحاسبية، فإنه يتم وضع الإهلاك المقسم بالتناسب في الاعتبار.', + abstract: 'تُرجع الإهلاك لكل فترة محاسبية. يتم توفير هذه الدالة لنظام المحاسبة الفرنسي. وإذا تم شراء أحد الأصول في منتصف الفترة المحاسبية، فإنه يتم وضع الإهلاك المقسم بالتناسب في الاعتبار.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. وهي تكلفة الأصل.' }, + datePurchased: { name: 'date_purchased', detail: 'مطلوب. وهي تاريخ شراء الأصل.' }, + firstPeriod: { name: 'first_period', detail: 'مطلوب. وهي تاريخ نهاية الفترة الأولى.' }, + salvage: { name: 'salvage', detail: 'مطلوب. وهي القيمة الباقية في نهاية فترة عمر الأصل.' }, + period: { name: 'period', detail: 'مطلوب. وهي الفترة الزمنية.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي معدل الإهلاك.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي أساس حساب السنة المستخدم.' }, + }, + }, + COUPDAYBS: { + description: 'تُرجع الدالة COUPDAYBS عدد الأيام من بداية فترة القسيمة وحتى تاريخ التسوية الخاص بها.', + abstract: 'تُرجع الدالة COUPDAYBS عدد الأيام من بداية فترة القسيمة وحتى تاريخ التسوية الخاص بها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + COUPDAYS: { + description: 'تُرجع عدد الأيام في فترة القسيمة التي تتضمن تاريخ التسوية.', + abstract: 'تُرجع عدد الأيام في فترة القسيمة التي تتضمن تاريخ التسوية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + COUPDAYSNC: { + description: 'تُرجع عدد الأيام بدايةً من تاريخ التسوية وحتى تاريخ القسيمة التالي.', + abstract: 'تُرجع عدد الأيام بدايةً من تاريخ التسوية وحتى تاريخ القسيمة التالي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + COUPNCD: { + description: 'تُرجع رقماً يمثل تاريخ القسيمة التالي بعد تاريخ التسوية.', + abstract: 'تُرجع رقماً يمثل تاريخ القسيمة التالي بعد تاريخ التسوية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + COUPNUM: { + description: 'تُرجع عدد القسائم المستحقة الدفع بين تاريخ التسوية وتاريخ الاستحقاق، مقرباً للأعلى إلى أقرب عدد صحيح للقسيمة.', + abstract: 'تُرجع عدد القسائم المستحقة الدفع بين تاريخ التسوية وتاريخ الاستحقاق، مقرباً للأعلى إلى أقرب عدد صحيح للقسيمة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + COUPPCD: { + description: 'تُرجع رقماً يمثل تاريخ القسيمة السابق قبل تاريخ التسوية.', + abstract: 'تُرجع رقماً يمثل تاريخ القسيمة السابق قبل تاريخ التسوية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + CUMIPMT: { + description: 'تُرجع الفائدة التراكمية المدفوعة لقرض بين end_period وstart_period.', + abstract: 'تُرجع الفائدة التراكمية المدفوعة لقرض بين end_period وstart_period.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. وهي معدل الفائدة.' }, + nper: { name: 'nper', detail: 'مطلوب. وهي العدد الإجمالي لفترات دفعات السداد.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية.' }, + startPeriod: { name: 'start_period', detail: 'مطلوب. وهي الفترة الأولى في الحساب. يتم ترقيم فترات دفعات السداد بدءاً بـ 1.' }, + endPeriod: { name: 'end_period', detail: 'مطلوب. وهي الفترة الأخيرة في الحساب.' }, + type: { name: 'type', detail: 'مطلوب. وهي توقيت الدفع.' }, + }, + }, + CUMPRINC: { + description: 'تُرجع رأس المال التراكمي المدفوع لقرض بين start_period وend_period.', + abstract: 'تُرجع رأس المال التراكمي المدفوع لقرض بين start_period وend_period.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. وهي معدل الفائدة.' }, + nper: { name: 'nper', detail: 'مطلوب. وهي العدد الإجمالي لفترات دفعات السداد.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية.' }, + startPeriod: { name: 'start_period', detail: 'مطلوب. وهي الفترة الأولى في الحساب. يتم ترقيم فترات دفعات السداد بدءاً بـ 1.' }, + endPeriod: { name: 'end_period', detail: 'مطلوب. وهي الفترة الأخيرة في الحساب.' }, + type: { name: 'type', detail: 'مطلوب. وهي توقيت الدفع.' }, + }, + }, + DB: { + description: 'تُرجع هذه الدالة إهلاك أصول لفترة معينة باستخدام أسلوب الرصيد المتناقص الثابت.', + abstract: 'تُرجع هذه الدالة إهلاك أصول لفترة معينة باستخدام أسلوب الرصيد المتناقص الثابت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. التكلفة الأولية للأصول.' }, + salvage: { name: 'salvage', detail: 'مطلوب. القيمة عند نهاية الإهلاك (وتسمى في بعض الأحيان القيمة الباقية للأصول).' }, + life: { name: 'life', detail: 'مطلوب. عدد الفترات التي يتم فيها إهلاك الأصل (تسمى أحياناً العمر الإنتاجي للأصل).' }, + period: { name: 'period', detail: 'مطلوب. الفترة التي تريد حساب الإهلاك فيها. يجب أن تستخدم الوسيطة Period الوحدات نفسها التي تستخدمها الوسيطة life.' }, + month: { name: 'month', detail: 'الاختياري. عدد الأشهر في السنة الأولى. في حال حذف الوسيطة month، يفترض أنها تساوي 12.' }, + }, + }, + DDB: { + description: 'تُرجع هذه الدالة إهلاك الأصول لفترة معينة باستخدام طريقة الرصيد المتناقص المزدوج أو طريقة أخرى تحددها.', + abstract: 'تُرجع هذه الدالة إهلاك الأصول لفترة معينة باستخدام طريقة الرصيد المتناقص المزدوج أو طريقة أخرى تحددها.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. التكلفة الأولية للأصول.' }, + salvage: { name: 'salvage', detail: 'مطلوب. القيمة عند نهاية الإهلاك (وتسمى في بعض الأحيان القيمة الباقية للأصول). قد تكون هذه القيمة 0.' }, + life: { name: 'life', detail: 'مطلوب. عدد الفترات التي يتم فيها إهلاك الأصل (تسمى أحياناً العمر الإنتاجي للأصل).' }, + period: { name: 'period', detail: 'مطلوب. الفترة التي تريد حساب الإهلاك فيها. يجب أن تستخدم الوسيطة Period الوحدات نفسها التي تستخدمها الوسيطة life.' }, + factor: { name: 'factor', detail: 'الاختياري. المعدل الذي تتراجع عنده الميزانية. إذا تم حذف الوسيطة factor، فسيفترض أنها 2 (أسلوب الاستهلاك المتناقص المزدوج).' }, + }, + }, + DISC: { + description: 'تُرجع هذه الدالة معدل الخصم لورقة المالية.', + abstract: 'تُرجع هذه الدالة معدل الخصم لورقة المالية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + DOLLARDE: { + description: 'تحوّل هذه الدالة سعر دولار يتم التعبير عنه كجزء من عدد صحيح وجزء كسر، مثل 1.02، إلى سعر دولار يتم التعبير عنه كرقم عشري. تُستخدم أرقام الدولار الكسرية أحياناً في أسعار الأوراق المالية.', + abstract: 'تحوّل هذه الدالة سعر دولار يتم التعبير عنه كجزء من عدد صحيح وجزء كسر، مثل 1.02، إلى سعر دولار يتم التعبير عنه كرقم عشري. تُستخدم أرقام الدولار الكسرية أحياناً في أسعار الأوراق المالية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'مطلوب. رقم يتم التعبير عنه كجزء من عدد صحيح وجزء كسر، مفصول برمز عشري.' }, + fraction: { name: 'fraction', detail: 'مطلوب. العدد الصحيح الذي تريد استخدامه في مقام الكسر.' }, + }, + }, + DOLLARFR: { + description: 'استخدم DOLLARFR لتحويل أرقام عشرية إلى أرقام دولار عشرية، مثل أسعار الأوراق المالية.', + abstract: 'استخدم DOLLARFR لتحويل أرقام عشرية إلى أرقام دولار عشرية، مثل أسعار الأوراق المالية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'مطلوب. رقم عشري.' }, + fraction: { name: 'fraction', detail: 'مطلوب. العدد الصحيح المستخدم في مقام الكسر.' }, + }, + }, + DURATION: { + description: 'ترجع الدالة DURATION ، إحدى الدالات المالية ، مدة ماكاوولي لقيمة مفترضة من نفس القيمة تبلغ 100 دولار. وتعرف المدة كمتوسط مرجح للقيمة الحالية للتدفقات النقدية، وتستخدم كمقياس لاستجابة سعر السند للتغيرات في العائد.', + abstract: 'ترجع الدالة DURATION ، إحدى الدالات المالية ، مدة ماكاوولي لقيمة مفترضة من نفس القيمة تبلغ 100 دولار. وتعرف المدة كمتوسط مرجح للقيمة الحالية للتدفقات النقدية، وتستخدم كمقياس لاستجابة سعر السند للتغيرات في العائد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + coupon: { name: 'coupon', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + yld: { name: 'yld', detail: 'مطلوب. العائد السنوي للورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + EFFECT: { + description: 'تُرجع معدل الفائدة السنوي الساري المفعول، بالنظر إلى معدل الفائدة السنوي الاسمي وعدد الفترات المتراكبة في السنة.', + abstract: 'تُرجع معدل الفائدة السنوي الساري المفعول، بالنظر إلى معدل الفائدة السنوي الاسمي وعدد الفترات المتراكبة في السنة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'مطلوب. معدل الفائدة الاسمي.' }, + npery: { name: 'npery', detail: 'مطلوب. عدد الفترات المتراكبة كل سنة.' }, + }, + }, + FV: { + description: 'تحسب الدالة FV ، وهي إحدى الدالات المالية ، القيمة المستقبلية للاستثمار استناداً إلى نسبة فائدة ثابتة. يمكنك استخدام FV مع إما الدفعات الدورية الثابتة أو دفعة واحدة من المبلغ الإجمالي.', + abstract: 'تحسب الدالة FV ، وهي إحدى الدالات المالية ، القيمة المستقبلية للاستثمار استناداً إلى نسبة فائدة ثابتة. يمكنك استخدام FV مع إما الدفعات الدورية الثابتة أو دفعة واحدة من المبلغ الإجمالي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة لكل فترة زمنية.' }, + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لفترات الدفعات في المرتب الدوري.' }, + pmt: { name: 'pmt', detail: 'مطلوب. الدفعة التي تم سدادها في كل فترة؛ لا يمكن أن تتغير على مدى عمر المرتب الدوري. تحتوي الوسيطة pmt عادةً على رأس مال وفائدة ولكن بدون رسوم أو ضرائب أخرى. إذا تم حذف pmt، فيجب تضمين الوسيطة pv.' }, + pv: { name: 'pv', detail: 'الاختياري. القيمة الحالية، أو مقدار المبلغ الإجمالي الذي تساويه سلسلة دفعات مستقبلية في الوقت الحالي. إذا تم حذف pv، فسيتم افتراض أنها 0 (صفر)، وعليك تضمين الوسيطة pmt.' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات. إذا تم حذف الوسيطة type، فسيتم افتراض أنها 0.' }, + }, + }, + FVSCHEDULE: { + description: 'تُرجع القيمة المستقبلية لرأس مال أولي بعد تطبيق سلسلة من معدلات الفائدة المركبة. استخدم FVSCHEDULE لحساب القيمة المستقبلية لاستثمار بمعدل متغير أو قابل للتعديل.', + abstract: 'تُرجع القيمة المستقبلية لرأس مال أولي بعد تطبيق سلسلة من معدلات الفائدة المركبة. استخدم FVSCHEDULE لحساب القيمة المستقبلية لاستثمار بمعدل متغير أو قابل للتعديل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'مطلوب. القيمة الحالية.' }, + schedule: { name: 'schedule', detail: 'مطلوب. صفيف معدلات الفائدة التي تريد تطبيقها.' }, + }, + }, + INTRATE: { + description: 'تُرجع هذه الدالة معدل الفائدة لورقة مالية تم استثمارها بالكامل.', + abstract: 'تُرجع هذه الدالة معدل الفائدة لورقة مالية تم استثمارها بالكامل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + investment: { name: 'investment', detail: 'مطلوب. المبلغ المستثمر في الورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. المبلغ المستلم عند الاستحقاق.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + IPMT: { + description: 'تُرجع هذه الدالة دفعة الفائدة لفترة استثمار محددة استناداً إلى دفعات دورية ثابتة ومعدل فائدة ثابت.', + abstract: 'تُرجع هذه الدالة دفعة الفائدة لفترة استثمار محددة استناداً إلى دفعات دورية ثابتة ومعدل فائدة ثابت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة لكل فترة زمنية.' }, + per: { name: 'per', detail: 'مطلوب. الفترة التي تريد البحث عن الفائدة الخاصة بها ويجب أن تكون في النطاق من 1 إلى nper.' }, + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لفترات الدفعات في المرتب الدوري.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية، أو مقدار المبلغ الإجمالي الذي تساويه سلسلة دفعات مستقبلية في الوقت الحالي.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الميزانية النقدية التي تريد تحقيقها بعد إتمام الدفعة الأخيرة. إذا تم حذف الوسيطة fv، فسيُفترض أنها 0 (القيمة المستقبلية لقرض، مثلاً، هي 0).' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات. إذا تم حذف الوسيطة type، فسيتم افتراض أنها 0.' }, + }, + }, + IRR: { + description: 'تُرجع هذه الدالة نسبة العائد الداخلي لسلسلة التدفقات النقدية الممثلة بواسطة الأرقام في القيم. من غير الضروري أن تكون هذه التدفقات النقدية متساوية، كما هي في المرتب الدوري. ومع ذلك، يجب أن تحدث التدفقات النقدية على فترات زمنية منتظمة، شهرية أو سنوية مثلاً. إن نسبة العائد الداخلي هي معدل الفائدة التي يتم استلامها لاستثمار يتألف من دفعات (قيم سالبة) وإيرادات (قيم موجبة) تحدث على فترات منتظمة.', + abstract: 'تُرجع هذه الدالة نسبة العائد الداخلي لسلسلة التدفقات النقدية الممثلة بواسطة الأرقام في القيم. من غير الضروري أن تكون هذه التدفقات النقدية متساوية، كما هي في المرتب الدوري. ومع ذلك، يجب أن تحدث التدفقات النقدية على فترات زمنية منتظمة، شهرية أو سنوية مثلاً. إن نسبة العائد الداخلي هي معدل الفائدة التي يتم استلامها لاستثمار يتألف من دفعات (قيم سالبة) وإيرادات (قيم موجبة) تحدث على فترات منتظمة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'صفيف أو مرجع إلى خلايا تحتوي على أرقام تريد حساب معدل العائد الداخلي لها.\n1. يجب أن تحتوي values على قيمة موجبة واحدة وقيمة سالبة واحدة على الأقل لحساب معدل العائد الداخلي.\n2. تستخدم IRR ترتيب القيم لتفسير ترتيب التدفقات النقدية؛ أدخل قيم الدفعات والإيرادات بالتسلسل الذي تريده.\n3. إذا احتوت وسيطة صفيف أو مرجع على نص أو قيم منطقية أو خلايا فارغة، فتُتجاهل تلك القيم.' }, + guess: { name: 'guess', detail: 'رقم تخمّن أنه قريب من نتيجة IRR.' }, + }, + }, + ISPMT: { + description: 'حساب الفائدة المدفوعة (أو المستلمة) للفترة المحددة للقرض (أو الاستثمار) مع حتى المدفوعات الرئيسية.', + abstract: 'حساب الفائدة المدفوعة (أو المستلمة) للفترة المحددة للقرض (أو الاستثمار) مع حتى المدفوعات الرئيسية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوبة. معدل الفائدة للاستثمار.' }, + per: { name: 'per', detail: 'مطلوبة. الفترة التي تريد العثور على الفائدة لها، ويجب أن تكون بين 1 وNper.' }, + nper: { name: 'nper', detail: 'مطلوبة. العدد الإجمالي لفترات الدفع للاستثمار.' }, + pv: { name: 'pv', detail: 'مطلوبة. القيمة الحالية للاستثمار. بالنسبة للقرض، Pv هو مبلغ القرض.' }, + }, + }, + MDURATION: { + description: 'تُرجع هذه الدالة الفترة الزمنية المعدلة لماكولي لورقة مالية لها سعر تعادل افتراضي يساوي 100 ر.س..', + abstract: 'تُرجع هذه الدالة الفترة الزمنية المعدلة لماكولي لورقة مالية لها سعر تعادل افتراضي يساوي 100 ر.س..', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + coupon: { name: 'coupon', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + yld: { name: 'yld', detail: 'مطلوب. العائد السنوي للورقة المالية.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + MIRR: { + description: 'تُرجع هذه الدالة نسبة العائد الداخلي المعدّلة لسلسلة من التدفقات النقدية الدورية. تأخذ MIRR في الاعتبار كلاً من تكلفة الاستثمار والفائدة المستلمة عند إعادة استثمار النقد.', + abstract: 'تُرجع هذه الدالة نسبة العائد الداخلي المعدّلة لسلسلة من التدفقات النقدية الدورية. تأخذ MIRR في الاعتبار كلاً من تكلفة الاستثمار والفائدة المستلمة عند إعادة استثمار النقد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'مطلوب. صفيف أو مرجع إلى خلايا تحتوي على أرقام. تمثل هذه الأرقام سلسلة من الدفعات (قيم سالبة) والإيرادات (قيم موجبة) التي تحدث على فترات منتظمة. يجب أن تحتوي القيم على قيمة موجبة واحدة على الأقل وقيمة سالبة واحدة لحساب معدل العائد الداخلي المعدل. وإلا، فترجع الدالة MIRR #DIV/0! وهي قيمة خطأ. إذا احتوت وسيطة صفيف أو مرجع على نص أو قيم منطقية أو خلايا فارغة، فيتم تجاهل تلك القيم؛ وبالرغم من ذلك، يتم تضمين الخلايا التي تحتوي على قيمة الصفر (0).' }, + financeRate: { name: 'finance_rate', detail: 'مطلوب. نسبة الفائدة التي تدفعها على النقود المستخدمة في التدفقات النقدية.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'مطلوب. نسبة الفائدة التي تتلقاها على التدفقات النقدية عند إعادة استثمارها.' }, + }, + }, + NOMINAL: { + description: 'تُرجع هذه الدالة النسبة الاسمية السنوية للفائدة وفقاً لنسبة الفائدة الفعلية وعدد الفترات المتراكبة كل سنة.', + abstract: 'تُرجع هذه الدالة النسبة الاسمية السنوية للفائدة وفقاً لنسبة الفائدة الفعلية وعدد الفترات المتراكبة كل سنة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'مطلوب. نسبة الفائدة الفعلية.' }, + npery: { name: 'npery', detail: 'مطلوب. عدد الفترات المتراكبة كل سنة.' }, + }, + }, + NPER: { + description: 'تُرجع هذه الدالة عدد فترات الاستثمار استناداً إلى دفعات ثابتة دورية ومعدل فائدة ثابت.', + abstract: 'تُرجع هذه الدالة عدد فترات الاستثمار استناداً إلى دفعات ثابتة دورية ومعدل فائدة ثابت.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة لكل فترة زمنية.' }, + pmt: { name: 'pmt', detail: 'مطلوب. الدفعة التي تم سدادها في كل فترة؛ لا يمكن أن تتغير على مدى عمر المرتب الدوري. تحتوي الوسيطة pmt عادةً على رأس مال وفائدة ولكن بدون رسوم أو ضرائب أخرى.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية، أو مقدار المبلغ الإجمالي الذي تساويه سلسلة دفعات مستقبلية في الوقت الحالي.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الميزانية النقدية التي تريد تحقيقها بعد إتمام الدفعة الأخيرة. إذا تم حذف الوسيطة fv، فسيُفترض أنها 0 (القيمة المستقبلية لقرض، مثلاً، هي 0).' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات.' }, + }, + }, + NPV: { + description: 'تحسب هذه الدالة القيمة الحالية الصافية للاستثمار باستخدام معدل الخصم وسلسلة من الدفعات المستقبلية (قيم سالبة) والإيرادات (قيم موجبة).', + abstract: 'تحسب هذه الدالة القيمة الحالية الصافية للاستثمار باستخدام معدل الخصم وسلسلة من الدفعات المستقبلية (قيم سالبة) والإيرادات (قيم موجبة).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الخصم على مدار طول فترة واحدة.' }, + value1: { name: 'value1', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. تمثل الوسيطات من 1 إلى 254 الدفعات والإيرادات. يجب أن تكون Value1, value2, ...‎ على فترات متساوية من الوقت وأن تحدث في نهاية كل فترة. تستخدم الدالة NPV ترتيب value1, value2,...‎ لتفسير ترتيب التدفقات النقدية. تأكد من إدخال قيم الدفعات والإيرادات بالتسلسل الصحيح. سيتم تجاهل الوسيطات إذا كانت عبارة عن خلايا فارغة أو قيم منطقية أو تمثيلات نصية للأرقام أو قيم خطأ أو نص لا يمكن ترجمته إلى أرقام. إذا كانت الوسيطة عبارة عن صفيف أو مرجع، يتم حساب الأرقام الموجودة في ذلك الصفيف أو المرجع فقط. ويتم تجاهل الخلايا الفارغة أو القيم المنطقية أو النص أو قيم الخطأ في الصفيف أو المرجع.' }, + value2: { name: 'value2', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. تمثل الوسيطات من 1 إلى 254 الدفعات والإيرادات. يجب أن تكون Value1, value2, ...‎ على فترات متساوية من الوقت وأن تحدث في نهاية كل فترة. تستخدم الدالة NPV ترتيب value1, value2,...‎ لتفسير ترتيب التدفقات النقدية. تأكد من إدخال قيم الدفعات والإيرادات بالتسلسل الصحيح. سيتم تجاهل الوسيطات إذا كانت عبارة عن خلايا فارغة أو قيم منطقية أو تمثيلات نصية للأرقام أو قيم خطأ أو نص لا يمكن ترجمته إلى أرقام. إذا كانت الوسيطة عبارة عن صفيف أو مرجع، يتم حساب الأرقام الموجودة في ذلك الصفيف أو المرجع فقط. ويتم تجاهل الخلايا الفارغة أو القيم المنطقية أو النص أو قيم الخطأ في الصفيف أو المرجع.' }, + }, + }, + ODDFPRICE: { + description: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية في الجزء الأول من فترة كلية (قصيرة أو طويلة).', + abstract: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية في الجزء الأول من فترة كلية (قصيرة أو طويلة).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + issue: { name: 'issue', detail: 'مطلوب. وهي تاريخ إصدار الورقة المالية.' }, + firstCoupon: { name: 'first_coupon', detail: 'مطلوب. تاريخ القسيمة الأولى للورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. معدل فائدة الورقة المالية.' }, + yld: { name: 'yld', detail: 'مطلوب. العائد السنوي للورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + ODDFYIELD: { + description: 'تُرجع هذه الدالة عائد ورقة مالية في الجزء الأول من فترة كلية (قصيرة أو طويلة).', + abstract: 'تُرجع هذه الدالة عائد ورقة مالية في الجزء الأول من فترة كلية (قصيرة أو طويلة).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + issue: { name: 'issue', detail: 'مطلوب. وهي تاريخ إصدار الورقة المالية.' }, + firstCoupon: { name: 'first_coupon', detail: 'مطلوب. تاريخ القسيمة الأولى للورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. معدل فائدة الورقة المالية.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + ODDLPRICE: { + description: 'ترجع السعر لكل قيمة اسمية قدرها 100 دولار لسند ذي فترة أخيرة غير منتظمة.', + abstract: 'ترجع السعر لكل قيمة اسمية قدرها 100 دولار لسند ذي فترة أخيرة غير منتظمة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'تاريخ تسوية الورقة المالية.' }, + maturity: { name: 'maturity', detail: 'تاريخ استحقاق الورقة المالية.' }, + lastInterest: { name: 'last_interest', detail: 'تاريخ آخر قسيمة للورقة المالية.' }, + rate: { name: 'rate', detail: 'سعر فائدة الورقة المالية.' }, + yld: { name: 'yld', detail: 'العائد السنوي للورقة المالية.' }, + redemption: { name: 'redemption', detail: 'قيمة استرداد الورقة المالية لكل 100 دولار من القيمة الاسمية.' }, + frequency: { name: 'frequency', detail: 'عدد دفعات القسيمة في السنة. للدفعات السنوية يكون frequency = 1، ولنصف السنوية = 2، وللربع سنوية = 4.' }, + basis: { name: 'basis', detail: 'نوع أساس احتساب الأيام المراد استخدامه.' }, + }, + }, + ODDLYIELD: { + description: 'تُرجع هذه الدالة عائد ورقة مالية في الجزء الأخير من فترة كلية (قصيرة أو طويلة).', + abstract: 'تُرجع هذه الدالة عائد ورقة مالية في الجزء الأخير من فترة كلية (قصيرة أو طويلة).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + lastInterest: { name: 'last_interest', detail: 'مطلوب. تاريخ القسيمة الأخيرة للورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. معدل فائدة الورقة المالية.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + PDURATION: { + description: 'تُرجع هذه الدالة عدد الفترات التي يتطلبها استثمار من أجل تحقيق قيمة محددة.', + abstract: 'تُرجع هذه الدالة عدد الفترات التي يتطلبها استثمار من أجل تحقيق قيمة محددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. السعر هو معدل الفائدة لكل فترة زمنية.' }, + pv: { name: 'pv', detail: 'مطلوب. Pv هي القيمة الحالية للاستثمار.' }, + fv: { name: 'fv', detail: 'مطلوب. Fv هي القيمة المستقبلية المطلوبة للاستثمار.' }, + }, + }, + PMT: { + description: 'تحسب الدالة PMT ، وهي إحدى الدالات المالية ، الدفعة لتسديد قرض استناداً إلى الدفعات الثابتة ونسبة فائدة ثابتة.', + abstract: 'تحسب الدالة PMT ، وهي إحدى الدالات المالية ، الدفعة لتسديد قرض استناداً إلى الدفعات الثابتة ونسبة فائدة ثابتة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة للقرض.' }, + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لدفعات تسديد القرض.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية، أو المبلغ الإجمالي الذي تساويه سلسلة الدفعات المستقبلية الآن؛ وتُعرف أيضاً برأس المال.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الميزانية النقدية التي تريد تحقيقها بعد إتمام الدفعة الأخيرة. إذا تم حذف fv، فسيفترض أنها 0 (صفر)، أي أن القيمة المستقبلية لقرض مثلاً تساوي صفر.' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 (صفر) أو 1 وهي تشير إلى موعد استحقاق الدفعات.' }, + }, + }, + PPMT: { + description: 'تُرجع الدفعة لرأس المال لفترة استثمار معينة استناداً إلى دفعات دورية ثابتة ومعدل فائدة ثابت.', + abstract: 'تُرجع الدفعة لرأس المال لفترة استثمار معينة استناداً إلى دفعات دورية ثابتة ومعدل فائدة ثابت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة لكل فترة زمنية.' }, + per: { name: 'per', detail: 'مطلوب. تحدد الفترة ويجب أن تقع في النطاق بين 1 وقيمة nper.' }, + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لفترات الدفعات في المرتب الدوري.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية، أو المبلغ الإجمالي الذي تساويه سلسلة الدفعات المستقبلية الآن.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الميزانية النقدية التي تريد تحقيقها بعد إتمام الدفعة الأخيرة. إذا تم حذف fv، فسيفترض أنها 0 (صفر)، أي أن القيمة المستقبلية لقرض مثلاً تساوي صفر.' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات.' }, + }, + }, + PRICE: { + description: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية تستحق عنها فائدة دورية.', + abstract: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية تستحق عنها فائدة دورية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + yld: { name: 'yld', detail: 'مطلوب. العائد السنوي للورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + PRICEDISC: { + description: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية ذات خصم.', + abstract: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية ذات خصم.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + discount: { name: 'discount', detail: 'مطلوب. معدل الخصم على الورقة المالية.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + PRICEMAT: { + description: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية تُدفع فائدتها عند الاستحقاق.', + abstract: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لورقة مالية تُدفع فائدتها عند الاستحقاق.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + issue: { name: 'issue', detail: 'مطلوب. تاريخ إصدار الورقة المالية، ويتم التعبير عنه برقم تاريخ تسلسلي.' }, + rate: { name: 'rate', detail: 'مطلوب. معدل فائدة الورقة المالية عند تاريخ الإصدار.' }, + yld: { name: 'yld', detail: 'مطلوب. العائد السنوي للورقة المالية.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + PV: { + description: 'تحسب الدالة PV ، وهي إحدى الدالات المالية ، القيمة الحالية لقرض أو استثمار، وذلك استناداً إلى نسبة فائدة ثابتة. يمكنك استخدام الدالة PV مع إما الدفعات الدورية الثابتة (مثل رهن أو أي قرض آخر) أو أية قيمة مستقبلية تشكل هدفك الاستثماري.', + abstract: 'تحسب الدالة PV ، وهي إحدى الدالات المالية ، القيمة الحالية لقرض أو استثمار، وذلك استناداً إلى نسبة فائدة ثابتة. يمكنك استخدام الدالة PV مع إما الدفعات الدورية الثابتة (مثل رهن أو أي قرض آخر) أو أية قيمة مستقبلية تشكل هدفك الاستثماري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الفائدة لكل فترة زمنية. على سبيل المثال، إذا حصلت على قرض لشراء سيارة بمعدل فائدة سنوية 10% وكان عليك تسديد الدفعات شهرياً، فسيكون معدل الفائدة لكل شهر 12/%10 أو %0,83. يمكنك إدخال 12/%10 أو %0,83 أو 0,0083 في الصيغة كمعدل الفائدة.' }, + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لفترات الدفعات في المرتب الدوري. على سبيل المثال، إذا حصلت على قرض مدته 4 سنوات لشراء سيارة وكان عليك تسديد الدفعات شهرياً، فسيكون القرض عبارة عن 4*12 (أو 48) فترة زمنية. وعليك إدخال 48 في الصيغة للوسيطة nper.' }, + pmt: { name: 'pmt', detail: 'مطلوب. الدفعة التي تم تسديدها في كل فترة ولا يمكن أن تتغير على مدى عمر المرتب الدوري. تحتوي الوسيطة pmt عادةً على رأس مال وفائدة ولكن بدون رسوم أو ضرائب أخرى. على سبيل المثال، سيكون عليك تسديد دفعات شهرية قيمتها 263,33 ر.س. مقابل قرض قيمته 10000 ر.س. ومدته 4 سنوات لشراء سيارة بمعدل فائدة 12%. يمكنك إدخال -263.33 في الصيغة ك pmt. إذا تم حذف pmt، يجب تضمين الوسيطة fv.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الرصيد النقدي الذي تريد تحقيقه بعد إجراء الدفعة الأخيرة. إذا تم حذف الوسيطة fv، فسيُفترض أنها 0 (القيمة المستقبلية لقرض، مثلاً، هي 0). على سبيل المثال، إذا كنت تريد ادخار مبلغ 50000 ر.س. لتدفعه لمشروع خاص خلال 18 عاماً، فتكون القيمة المستقبلية 50000 ر.س.. يمكنك حينئذٍ إجراء تخمين متحفظ في ما يتعلق بمعدل الفائدة وتحديد المبلغ الذي يجب أن تدّخره كل شهر. إذا تم حذف الوسيطة fv، فيجب تضمين الوسيطة pmt.' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات.' }, + }, + }, + RATE: { + description: 'إرجاع معدل الفائدة لكل فترة من فترات المرتب الدوري. يتم حساب RATE من خلال التكرار ويمكن أن يكون لها حلول صفرية أو أكثر. إذا كانت نتائج RATE المتتالية لا تتقارب إلى 0.0000001 بعد 20 مرة، تقوم RATE بإرجاع #NUM! قيمة الخطأ.', + abstract: 'إرجاع معدل الفائدة لكل فترة من فترات المرتب الدوري. يتم حساب RATE من خلال التكرار ويمكن أن يكون لها حلول صفرية أو أكثر. إذا كانت نتائج RATE المتتالية لا تتقارب إلى 0.0000001 بعد 20 مرة، تقوم RATE بإرجاع #NUM! قيمة الخطأ.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'مطلوب. العدد الإجمالي لفترات الدفعات في المرتب الدوري.' }, + pmt: { name: 'pmt', detail: 'مطلوب. الدفعة التي تم تسديدها في كل فترة ولا يمكن أن تتغير على مدى عمر المرتب الدوري. تحتوي وسيطة الدفعة عادةً على رأس مال وفائدة ولكن بدون رسوم أو ضرائب أخرى. إذا تم حذف الوسيطة pmt، فيجب تضمين الوسيطة fv.' }, + pv: { name: 'pv', detail: 'مطلوب. القيمة الحالية، أو المبلغ الإجمالي الذي تساويه سلسلة الدفعات المستقبلية الآن.' }, + fv: { name: 'fv', detail: 'الاختياري. القيمة المستقبلية أو الميزانية النقدية التي تريد تحقيقها بعد إتمام الدفعة الأخيرة. إذا تم حذف الوسيطة fv، فسيفترض أنها 0 (القيمة المستقبلية لقرض، مثلاً، هي صفر). إذا تم حذف الوسيطة fv، فيجب تضمين الوسيطة pmt.' }, + type: { name: 'type', detail: 'الاختياري. الرقم 0 أو 1 ويشير إلى موعد استحقاق الدفعات.' }, + guess: { name: 'guess', detail: 'الاختياري. تقديرك لقيمة المعدل. إذا تم حذف الوسيطة guess، فسيُفترض أنها 10 بالمئة. إذا لم تتقارب نتائج الدالة RATE، فحاول استخدام قيم مختلفة للوسيطة guess. تتقارب نتائج الدالة RATE عادةً إذا كانت قيمة guess بين 0 و1.' }, + }, + }, + RECEIVED: { + description: 'تُرجع هذه الدالة المبلغ الذي يتم استلامه عند استحقاق ورقة مالية تم استثمارها بالكامل.', + abstract: 'تُرجع هذه الدالة المبلغ الذي يتم استلامه عند استحقاق ورقة مالية تم استثمارها بالكامل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + investment: { name: 'investment', detail: 'مطلوب. المبلغ المستثمر في الورقة المالية.' }, + discount: { name: 'discount', detail: 'مطلوب. معدل الخصم على الورقة المالية.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + RRI: { + description: 'تُرجع هذه الدالة معدل فائدة يكون مكافئاً لنمو الاستثمار.', + abstract: 'تُرجع هذه الدالة معدل فائدة يكون مكافئاً لنمو الاستثمار.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'مطلوب. Nper هو عدد فترات الاستثمار.' }, + pv: { name: 'pv', detail: 'مطلوب. Pv هي القيمة الحالية للاستثمار.' }, + fv: { name: 'fv', detail: 'مطلوب. Fv هي القيمة المستقبلية للاستثمار.' }, + }, + }, + SLN: { + description: 'تُرجع هذه الدالة الإهلاك بالقسط الثابت لأحد الأصول لفترة واحدة.', + abstract: 'تُرجع هذه الدالة الإهلاك بالقسط الثابت لأحد الأصول لفترة واحدة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. التكلفة الأولية للأصول.' }, + salvage: { name: 'salvage', detail: 'مطلوب. القيمة عند نهاية الإهلاك (وتسمى في بعض الأحيان القيمة الباقية للأصول).' }, + life: { name: 'life', detail: 'مطلوب. عدد الفترات التي يتم فيها إهلاك الأصول (تسمى أحياناً فترة الانتفاع من الأصول).' }, + }, + }, + SYD: { + description: 'تُرجع هذه الدالة أرقام مجموع سنوات استهلاك أحد الأصول لفترة معيّنة.', + abstract: 'تُرجع هذه الدالة أرقام مجموع سنوات استهلاك أحد الأصول لفترة معيّنة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. التكلفة الأولية للأصول.' }, + salvage: { name: 'salvage', detail: 'مطلوب. القيمة عند نهاية الإهلاك (وتسمى في بعض الأحيان القيمة الباقية للأصول).' }, + life: { name: 'life', detail: 'مطلوب. عدد الفترات التي يتم فيها إهلاك الأصول (تسمى أحياناً فترة الانتفاع من الأصول).' }, + per: { name: 'per', detail: 'مطلوب. الفترة ويجب أن تستخدم الوحدات نفسها التي يستخدمها العمر الإنتاجي.' }, + }, + }, + TBILLEQ: { + description: 'تُرجع هذه الدالة العائد المساوي للسند لإذن الخزانة.', + abstract: 'تُرجع هذه الدالة العائد المساوي للسند لإذن الخزانة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. تاريخ تسوية سند إذن الخزانة. تاريخ تسوية الورقة المالية هو التاريخ الذي يعقب تاريخ الإصدار عند منح سند إذن الخزانة للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. تاريخ استحقاق سند إذن الخزانة. تاريخ الاستحقاق هو تاريخ انتهاء سند إذن الخزانة.' }, + discount: { name: 'discount', detail: 'مطلوب. معدل الخصم على سند إذن الخزانة.' }, + }, + }, + TBILLPRICE: { + description: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لسند الخزانة.', + abstract: 'تُرجع هذه الدالة السعر لكل قيمة اسمية قدرها 100 ر.س. لسند الخزانة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. تاريخ تسوية سند إذن الخزانة. تاريخ تسوية الورقة المالية هو التاريخ الذي يعقب تاريخ الإصدار عند منح سند إذن الخزانة للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. تاريخ استحقاق سند إذن الخزانة. تاريخ الاستحقاق هو تاريخ انتهاء سند إذن الخزانة.' }, + discount: { name: 'discount', detail: 'مطلوب. معدل الخصم على سند إذن الخزانة.' }, + }, + }, + TBILLYIELD: { + description: 'تُرجع هذه الدالة العائد الخاص بإذن الخزانة.', + abstract: 'تُرجع هذه الدالة العائد الخاص بإذن الخزانة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. تاريخ تسوية سند إذن الخزانة. تاريخ تسوية الورقة المالية هو التاريخ الذي يعقب تاريخ الإصدار عند منح سند إذن الخزانة للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. تاريخ استحقاق سند إذن الخزانة. تاريخ الاستحقاق هو تاريخ انتهاء سند إذن الخزانة.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر سند إذن الخزانة لكل قيمة اسمية قدرها 100 ر.س.' }, + }, + }, + VDB: { + description: 'تُرجع هذه الدالة استهلاك أحد الأصول لأي فترة تحددها، بما فيها الفترات الجزئية، باستخدام أسلوب الرصيد المتناقص المزدوج أو أسلوب آخر تحدده. ترمز VDB إلى الرصيد المتناقص المتغير.', + abstract: 'تُرجع هذه الدالة استهلاك أحد الأصول لأي فترة تحددها، بما فيها الفترات الجزئية، باستخدام أسلوب الرصيد المتناقص المزدوج أو أسلوب آخر تحدده. ترمز VDB إلى الرصيد المتناقص المتغير.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'مطلوب. التكلفة الأولية للأصول.' }, + salvage: { name: 'salvage', detail: 'مطلوب. القيمة عند نهاية الإهلاك (وتسمى في بعض الأحيان القيمة الباقية للأصول). قد تكون هذه القيمة 0.' }, + life: { name: 'life', detail: 'مطلوب. عدد الفترات التي يتم فيها إهلاك الأصول (تسمى أحياناً فترة الانتفاع من الأصول).' }, + startPeriod: { name: 'start_period', detail: 'مطلوب. الفترة التي تريد منها بدء حساب الإهلاك. يجب أن تستخدم Start_period الوحدات نفسها التي يستخدمها العمر الإنتاجي.' }, + endPeriod: { name: 'end_period', detail: 'مطلوب. الفترة التي تريد عندها إنهاء حساب الإهلاك. يجب أن تستخدم End_period الوحدات نفسها التي يستخدمها العمر الإنتاجي.' }, + factor: { name: 'factor', detail: 'الاختياري. المعدل الذي تتراجع عنده الميزانية. إذا تم حذف العامل، فسيتم افتراض أنه 2 (أسلوب الرصيد المتناقص المزدوج). غيّر العامل إذا كنت لا تريد استخدام أسلوب الرصيد المتناقص المزدوج. للحصول على وصف لأسلوب الرصيد المتناقص المزدوج، راجع DDB.' }, + noSwitch: { name: 'no_switch', detail: 'الاختياري. قيمة منطقية تحدد إذا ما كان سيتم التبديل إلى الإهلاك الثابت عندما يكون الإهلاك أكبر من حساب الرصيد المتناقص. إذا كانت قيمة no_switch تساوي TRUE، لا يبدل Microsoft Excel إلى الإهلاك الثابت للموجودات حتى عندما يكون الإهلاك أكبر من حساب الرصيد المتناقص. إذا كانت قيمة no_switch تساوي FALSE أو محذوفة، يبدل Excel إلى الإهلاك الثابت للموجودات عندما يكون الإهلاك أكبر من حساب الرصيد المتناقص.' }, + }, + }, + XIRR: { + description: 'تُرجع معدل العائد الداخلي لجدول تدفقات نقدية ليست بالضرورة دورية. لحساب معدل العائد الداخلي لسلسلة من التدفقات النقدية الدورية، استخدم الدالة IRR.', + abstract: 'تُرجع معدل العائد الداخلي لجدول تدفقات نقدية ليست بالضرورة دورية. لحساب معدل العائد الداخلي لسلسلة من التدفقات النقدية الدورية، استخدم الدالة IRR.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'مطلوب. سلسلة من التدفقات النقدية التي تطابق جدول دفعات من حيث التواريخ. إن الدفعة الأولى اختيارية وتتطابق مع تكلفة أو دفعة تحدث عند بداية الاستثمار. إذا كانت القيمة الأولى تكلفة أو دفعة، فيجب أن تكون قيمة سالبة. يتم تطبيق خصم على كافة الدفعات التالية على أساس سنة مؤلفة من 365 يوماً. يجب أن تحتوي سلسلة القيم على قيمة واحدة موجبة وأخرى سالبة على الأقل.' }, + dates: { name: 'dates', detail: 'مطلوب. جدول بتواريخ الدفعات مطابق لدفعات التدفقات النقدية. قد تحدث التواريخ بأي ترتيب. يجب إدخال التواريخ باستخدام الدالة DATE، أو كنتائج لصيغ أو دالات أخرى. على سبيل المثال، استخدم DATE(2008,5,23)‎ لليوم الثالث والعشرين من شهر مايو 2008. قد تحدث بعض المشاكل إذا تم إدخال التواريخ كنص. .' }, + guess: { name: 'guess', detail: 'الاختياري. رقم تقدّر أنه قريب من نتيجة الدالة XIRR.' }, + }, + }, + XNPV: { + description: 'تُرجع القيمة الحالية الصافية لجدول زمني من التدفقات النقدية لا يكون بالضرورة دورياً. لحساب القيمة الحالية الصافية لسلسلة من التدفقات النقدية الدورية، استخدم الدالة NPV.', + abstract: 'تُرجع القيمة الحالية الصافية لجدول زمني من التدفقات النقدية لا يكون بالضرورة دورياً. لحساب القيمة الحالية الصافية لسلسلة من التدفقات النقدية الدورية، استخدم الدالة NPV.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'مطلوب. معدل الخصم الذي تريد تطبيقه على التدفقات النقدية.' }, + values: { name: 'values', detail: 'مطلوب. سلسلة من التدفقات النقدية التي تطابق جدول دفعات من حيث التواريخ. إن الدفعة الأولى اختيارية وتتطابق مع تكلفة أو دفعة تحدث عند بداية الاستثمار. إذا كانت القيمة الأولى تكلفة أو دفعة، فيجب أن تكون قيمة سالبة. يتم تطبيق خصم على كافة الدفعات التالية على أساس سنة مؤلفة من 365 يوماً. يجب أن تحتوي سلسلة القيم على قيمة موجبة وأخرى سالبة على الأقل.' }, + dates: { name: 'dates', detail: 'مطلوب. جدول بتواريخ الدفعات مطابق لدفعات التدفقات النقدية. يشير تاريخ الدفعة الأولى إلى بداية جدول الدفعات. أما التواريخ الأخرى فيجب أن تقع بعد هذا التاريخ، ولكن قد تحدث بأي ترتيب.' }, + }, + }, + YIELD: { + description: 'تُرجع هذه الدالة عائد ورقة مالية تستحق عنها فائدة دورية. استخدم YIELD لحساب عائد السند.', + abstract: 'تُرجع هذه الدالة عائد ورقة مالية تستحق عنها فائدة دورية. استخدم YIELD لحساب عائد السند.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + rate: { name: 'rate', detail: 'مطلوب. وهي السعر السنوي لفائدة القسيمة الخاصة بالورقة المالية.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + frequency: { name: 'frequency', detail: 'مطلوب. وهي عدد مدفوعات القسيمة في السنة. بالنسبة إلى المدفوعات السنوية، frequency = 1؛ والمدفوعات نصف السنوية، frequency = 2؛ والمدفوعات ربع السنوية، frequency = 4.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + YIELDDISC: { + description: 'تُرجع العائد السنوي لورقة مالية ذات خصم.', + abstract: 'تُرجع العائد السنوي لورقة مالية ذات خصم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + redemption: { name: 'redemption', detail: 'مطلوب. قيمة استرداد الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, + YIELDMAT: { + description: 'تُرجع العائد السنوي لأوراق مالية تُدفع فائدتها في تاريخ الاستحقاق.', + abstract: 'تُرجع العائد السنوي لأوراق مالية تُدفع فائدتها في تاريخ الاستحقاق.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'مطلوب. وهي تاريخ تسوية الورقة المالية. يمثل تاريخ تسوية الورقة المالية التاريخ الذي يعقب تاريخ الإصدار عند منح الورقة المالية للمشتري.' }, + maturity: { name: 'maturity', detail: 'مطلوب. وهي تاريخ استحقاق الورقة المالية. يمثل تاريخ الاستحقاق تاريخ انتهاء صلاحية الورقة المالية.' }, + issue: { name: 'issue', detail: 'مطلوب. تاريخ إصدار الورقة المالية، ويتم التعبير عنه برقم تاريخ تسلسلي.' }, + rate: { name: 'rate', detail: 'مطلوب. معدل فائدة الورقة المالية عند تاريخ الإصدار.' }, + pr: { name: 'pr', detail: 'مطلوب. سعر الورقة المالية لكل قيمة اسمية قدرها 100 ر.س.' }, + basis: { name: 'basis', detail: 'الاختياري. وهي نوع أساس حساب عدد الأيام المطلوب استخدامه.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/financial/ca-ES.ts index 1058c6d40c..e91667b0f4 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/ca-es/excel/functions/accrint-function', }, ], functionParameter: { @@ -37,284 +37,288 @@ const locale: typeof enUS = { calcMethod: { name: 'mètode_càlcul', detail: 'Un valor lògic: TRUE o omès indica que els interessos s\'acumulen des de la data d\'emissió; FALSE indica que s\'acumulen des de la darrera data de pagament del cupó.' }, }, }, - // ... (la resta de funcions seguiran el mateix patró) 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', + description: 'Retorna l\'interès acumulat d\'un valor que paga interessos al venciment.', + abstract: 'Retorna l\'interès acumulat d\'un valor que paga interessos al venciment.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/ca-es/excel/functions/accrintm-function', }, ], 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.' }, + issue: { name: 'emissió', detail: "La data d'emissió del valor." }, + settlement: { name: 'liquidació', detail: 'La data de venciment del valor.' }, + rate: { name: 'taxa', detail: 'El tipus de cupó anual del valor.' }, + par: { name: 'valor_nominal', detail: 'El valor nominal del valor. Si s\'omet, ACCRINTM utilitza 1.000 $.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna l\'amortització de cada període comptable mitjançant un coeficient d\'amortització.', + abstract: 'Retorna l\'amortització de cada període comptable mitjançant un coeficient d\'amortització.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/ca-es/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + cost: { name: 'cost', detail: "El cost de l'actiu." }, + datePurchased: { name: 'date_purchased', detail: "La data de compra de l'actiu." }, + firstPeriod: { name: 'first_period', detail: 'La data de finalització del primer període.' }, + salvage: { name: 'salvage', detail: "El valor residual al final de la vida útil de l'actiu." }, + period: { name: 'period', detail: 'El període.' }, + rate: { name: 'rate', detail: "La taxa d'amortització." }, + basis: { name: 'basis', detail: "La base anual que s'ha d'utilitzar." }, }, }, AMORLINC: { - description: 'Returns the depreciation for each accounting period', - abstract: 'Returns the depreciation for each accounting period', + description: 'Retorna l\'amortització de cada període comptable.', + abstract: 'Retorna l\'amortització de cada període comptable.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/ca-es/excel/functions/amorlinc-function', }, ], 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.' }, + cost: { name: 'cost', detail: "El cost de l'actiu." }, + datePurchased: { name: 'date_purchased', detail: "La data de compra de l'actiu." }, + firstPeriod: { name: 'first_period', detail: 'La data de finalització del primer període.' }, + salvage: { name: 'salvage', detail: "El valor residual al final de la vida útil de l'actiu." }, + period: { name: 'period', detail: 'El període.' }, + rate: { name: 'rate', detail: "La taxa d'amortització." }, + basis: { name: 'basis', detail: "La base anual que s'ha d'utilitzar." }, }, }, 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', + description: 'Retorna el nombre de dies des de l\'inici del període de cupó fins a la data de liquidació.', + abstract: 'Retorna el nombre de dies des de l\'inici del període de cupó fins a la data de liquidació.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/ca-es/excel/functions/coupdaybs-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el nombre de dies del període de cupó que conté la data de liquidació.', + abstract: 'Retorna el nombre de dies del període de cupó que conté la data de liquidació.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/ca-es/excel/functions/coupdays-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el nombre de dies des de la data de liquidació fins a la data del cupó següent.', + abstract: 'Retorna el nombre de dies des de la data de liquidació fins a la data del cupó següent.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/ca-es/excel/functions/coupdaysnc-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, COUPNCD: { - description: 'Returns the next coupon date after the settlement date', - abstract: 'Returns the next coupon date after the settlement date', + description: 'Retorna la data del cupó següent després de la data de liquidació.', + abstract: 'Retorna la data del cupó següent després de la data de liquidació.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/ca-es/excel/functions/coupncd-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el nombre de cupons pagables entre la data de liquidació i la data de venciment.', + abstract: 'Retorna el nombre de cupons pagables entre la data de liquidació i la data de venciment.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/ca-es/excel/functions/coupnum-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, COUPPCD: { - description: 'Returns the previous coupon date before the settlement date', - abstract: 'Returns the previous coupon date before the settlement date', + description: 'Retorna la data del cupó anterior a la data de liquidació.', + abstract: 'Retorna la data del cupó anterior a la data de liquidació.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/ca-es/excel/functions/couppcd-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, CUMIPMT: { - description: 'Returns the cumulative interest paid between two periods', - abstract: 'Returns the cumulative interest paid between two periods', + description: 'Retorna els interessos acumulats pagats entre dos períodes.', + abstract: 'Retorna els interessos acumulats pagats entre dos períodes.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/ca-es/excel/functions/cumipmt-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès." }, + nper: { name: 'nper', detail: 'El nombre total de períodes de pagament.' }, + pv: { name: 'pv', detail: 'El valor actual.' }, + startPeriod: { name: 'període_inicial', detail: 'El primer període del càlcul. Els períodes de pagament es numeren a partir d’1.' }, + endPeriod: { name: 'període_final', detail: 'L’últim període del càlcul.' }, + type: { name: 'tipus', detail: 'El moment del pagament.' }, }, }, 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', + description: 'Retorna el principal acumulat pagat d\'un préstec entre dos períodes.', + abstract: 'Retorna el principal acumulat pagat d\'un préstec entre dos períodes.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/ca-es/excel/functions/cumprinc-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès." }, + nper: { name: 'nper', detail: 'El nombre total de períodes de pagament.' }, + pv: { name: 'pv', detail: 'El valor actual.' }, + startPeriod: { name: 'període_inicial', detail: 'El primer període del càlcul. Els períodes de pagament es numeren a partir d’1.' }, + endPeriod: { name: 'període_final', detail: 'L’últim període del càlcul.' }, + type: { name: 'tipus', detail: 'El moment del pagament.' }, }, }, 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', + description: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de saldo decreixent a tipus fix.', + abstract: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de saldo decreixent a tipus fix.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/ca-es/excel/functions/db-function', }, ], 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.' }, + cost: { name: 'cost', detail: "El cost inicial de l'actiu." }, + salvage: { name: 'valor_residual', detail: "El valor al final de l'amortització, també anomenat valor residual de l'actiu." }, + life: { name: 'vida_útil', detail: "El nombre de períodes durant els quals s'amortitza l'actiu, també anomenat vida útil de l'actiu." }, + period: { name: 'període', detail: "El període del qual es vol calcular l'amortització. Ha d'utilitzar les mateixes unitats que vida_útil." }, + month: { name: 'mes', detail: 'El nombre de mesos del primer any. Si s’omet, se suposa que és 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', + description: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de saldo decreixent doble o un altre mètode que especifiqueu.', + abstract: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de saldo decreixent doble o un altre mètode que especifiqueu.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/ca-es/excel/functions/ddb-function', }, ], 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).' }, + cost: { name: 'cost', detail: "El cost inicial de l'actiu." }, + salvage: { name: 'valor_residual', detail: "El valor al final de l'amortització, també anomenat valor residual de l'actiu. Pot ser 0." }, + life: { name: 'vida_útil', detail: "El nombre de períodes durant els quals s'amortitza l'actiu, també anomenat vida útil de l'actiu." }, + period: { name: 'període', detail: "El període del qual es vol calcular l'amortització. Ha d'utilitzar les mateixes unitats que vida_útil." }, + factor: { name: 'factor', detail: 'La taxa a la qual disminueix el saldo. Si s’omet, se suposa que és 2, és a dir, el mètode de saldo decreixent doble.' }, }, }, DISC: { - description: 'Returns the discount rate for a security', - abstract: 'Returns the discount rate for a security', + description: 'Retorna la taxa de descompte d\'un valor.', + abstract: 'Retorna la taxa de descompte d\'un valor.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/ca-es/excel/functions/disc-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + pr: { name: 'preu', detail: 'El preu del valor per cada 100 $ de valor nominal.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Converteix un preu en dòlars expressat com a fracció en un preu en dòlars expressat com a nombre decimal.', + abstract: 'Converteix un preu en dòlars expressat com a fracció en un preu en dòlars expressat com a nombre decimal.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/ca-es/excel/functions/dollarde-function', }, ], 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.' }, + fractionalDollar: { name: 'dòlar_fraccionari', detail: 'Un nombre expressat com una part entera i una part fraccionària, separades per un símbol decimal.' }, + fraction: { name: 'fracció', detail: 'L’enter que s’utilitza com a denominador de la fracció.' }, }, }, 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', + description: 'Converteix un preu en dòlars expressat com a nombre decimal en un preu en dòlars expressat com a fracció.', + abstract: 'Converteix un preu en dòlars expressat com a nombre decimal en un preu en dòlars expressat com a fracció.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/ca-es/excel/functions/dollarfr-function', }, ], functionParameter: { - decimalDollar: { name: 'decimal_dollar', detail: 'A decimal number.' }, - fraction: { name: 'fraction', detail: 'The integer to use in the denominator of the fraction.' }, + decimalDollar: { name: 'dòlar_decimal', detail: 'Un nombre decimal.' }, + fraction: { name: 'fracció', detail: 'L’enter que s’utilitza com a denominador de la fracció.' }, }, }, 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', + description: 'Retorna la durada anual d\'un valor amb pagaments d\'interessos periòdics.', + abstract: 'Retorna la durada anual d\'un valor amb pagaments d\'interessos periòdics.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/ca-es/excel/functions/duration-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + coupon: { name: 'cupó', detail: 'El tipus de cupó anual del valor.' }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, EFFECT: { @@ -323,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/ca-es/excel/functions/effect-function', }, ], functionParameter: { @@ -332,34 +336,34 @@ const locale: typeof enUS = { }, }, FV: { - description: 'Returns the future value of an investment', - abstract: 'Returns the future value of an investment', + description: 'Retorna el valor futur d\'una inversió.', + abstract: 'Retorna el valor futur d\'una inversió.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/ca-es/excel/functions/fv-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès per període." }, + nper: { name: 'nper', detail: "El nombre total de períodes de pagament d'una anualitat." }, + pmt: { name: 'pagament', detail: "El pagament efectuat a cada període; no pot variar durant la vida de l'anualitat." }, + pv: { name: 'pv', detail: 'El valor actual, o l’import únic al qual equival ara una sèrie de pagaments futurs.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, }, }, 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', + description: 'Retorna el valor futur d\'un principal inicial després d\'aplicar una sèrie de tipus d\'interès compostos.', + abstract: 'Retorna el valor futur d\'un principal inicial després d\'aplicar una sèrie de tipus d\'interès compostos.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/ca-es/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: 'principal', detail: 'The present value.' }, - schedule: { name: 'schedule', detail: 'An array of interest rates to apply.' }, + principal: { name: 'principal', detail: 'El valor actual.' }, + schedule: { name: 'calendari', detail: "Una matriu de tipus d'interès que s'han d'aplicar." }, }, }, INTRATE: { @@ -368,7 +372,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/ca-es/excel/functions/intrate-function', }, ], functionParameter: { @@ -385,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/ca-es/excel/functions/ipmt-function', }, ], functionParameter: { @@ -398,544 +402,544 @@ const locale: typeof enUS = { }, }, 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', + description: 'Retorna la taxa interna de rendiment d\'una sèrie de fluxos d\'efectiu.', + abstract: 'Retorna la taxa interna de rendiment d\'una sèrie de fluxos d\'efectiu.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/ca-es/excel/functions/irr-function', }, ], 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.\n1.Values must contain at least one positive value and one negative value to calculate the internal rate of return.\n2.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.\n3.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.' }, + values: { name: 'valors', detail: 'Una matriu o referència a cel·les amb nombres per als quals es vol calcular la taxa interna de rendiment. Han de contenir almenys un valor positiu i un de negatiu. IRR utilitza l’ordre dels valors per interpretar l’ordre dels fluxos d’efectiu; introduïu pagaments i ingressos en l’ordre desitjat. El text, els valors lògics i les cel·les buides s’ignoren.' }, + guess: { name: 'estimació', detail: 'Un nombre que estimeu proper al resultat d’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', + description: 'Calcula els interessos pagats durant un període específic d\'una inversió.', + abstract: 'Calcula els interessos pagats durant un període específic d\'una inversió.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/ca-es/excel/functions/ispmt-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès de la inversió." }, + per: { name: 'període', detail: "El període del qual es vol obtenir l'interès; ha d'estar entre 1 i nper." }, + nper: { name: 'nper', detail: 'El nombre total de períodes de pagament de la inversió.' }, + pv: { name: 'pv', detail: 'El valor actual de la inversió. Per a un préstec, pv és l’import del préstec.' }, }, }, 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', + description: 'Retorna la durada modificada de Macaulay d\'un valor amb un valor nominal suposat de 100 dòlars.', + abstract: 'Retorna la durada modificada de Macaulay d\'un valor amb un valor nominal suposat de 100 dòlars.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/ca-es/excel/functions/mduration-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + coupon: { name: 'cupó', detail: 'El tipus de cupó anual del valor.' }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna la taxa interna de rendiment quan els fluxos d\'efectiu positius i negatius es financen a tipus diferents.', + abstract: 'Retorna la taxa interna de rendiment quan els fluxos d\'efectiu positius i negatius es financen a tipus diferents.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/ca-es/excel/functions/mirr-function', }, ], 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.\n1.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.\n2.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.' }, + values: { name: 'valors', detail: 'Una matriu o referència a cel·les que contenen nombres. Representen una sèrie de pagaments (valors negatius) i ingressos (valors positius) en períodes regulars. Han de contenir almenys un valor positiu i un de negatiu; en cas contrari, MIRR retorna #DIV/0!. El text, els valors lògics i les cel·les buides s’ignoren, però s’inclouen les cel·les amb valor zero.' }, + financeRate: { name: 'taxa_finançament', detail: "El tipus d'interès que es paga pels diners utilitzats en els fluxos d'efectiu." }, + reinvestRate: { name: 'taxa_reinversió', detail: "El tipus d'interès que es rep en reinvertir els fluxos d'efectiu." }, }, }, NOMINAL: { - description: 'Returns the annual nominal interest rate', - abstract: 'Returns the annual nominal interest rate', + description: 'Retorna la taxa d\'interès nominal anual.', + abstract: 'Retorna la taxa d\'interès nominal anual.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/ca-es/excel/functions/nominal-function', }, ], functionParameter: { - effectRate: { name: 'effect_rate', detail: 'The effective interest rate.' }, - npery: { name: 'npery', detail: 'The number of compounding periods per year.' }, + effectRate: { name: 'taxa_efectiva', detail: "El tipus d'interès efectiu." }, + npery: { name: 'npery', detail: 'El nombre de períodes de capitalització per any.' }, }, }, NPER: { - description: 'Returns the number of periods for an investment', - abstract: 'Returns the number of periods for an investment', + description: 'Retorna el nombre de períodes d\'una inversió.', + abstract: 'Retorna el nombre de períodes d\'una inversió.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/ca-es/excel/functions/nper-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès per període." }, + pmt: { name: 'pagament', detail: "El pagament efectuat a cada període; no pot variar durant la vida de l'anualitat." }, + pv: { name: 'pv', detail: 'El valor actual, o l’import únic al qual equival ara una sèrie de pagaments futurs.' }, + fv: { name: 'vf', detail: 'El valor futur, o el saldo en efectiu que es vol assolir després de l’últim pagament.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, }, }, 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', + description: 'Retorna el valor actual net d\'una inversió basat en una sèrie de fluxos d\'efectiu periòdics i una taxa de descompte.', + abstract: 'Retorna el valor actual net d\'una inversió basat en una sèrie de fluxos d\'efectiu periòdics i una taxa de descompte.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/ca-es/excel/functions/npv-function', }, ], 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.' }, + rate: { name: 'taxa', detail: 'La taxa de descompte corresponent a la durada d’un període.' }, + value1: { name: 'valor1', detail: 'D’1 a 254 arguments que representen els pagaments i els ingressos.' }, + value2: { name: 'valor2', detail: 'D’1 a 254 arguments que representen els pagaments i els ingressos.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor amb un primer període irregular.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor amb un primer període irregular.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/ca-es/excel/functions/oddfprice-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + issue: { name: 'emissió', detail: "La data d'emissió del valor." }, + firstCoupon: { name: 'primer_cupó', detail: 'La data del primer cupó del valor.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el rendiment d\'un valor amb un primer període irregular.', + abstract: 'Retorna el rendiment d\'un valor amb un primer període irregular.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/ca-es/excel/functions/oddfyield-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + issue: { name: 'emissió', detail: "La data d'emissió del valor." }, + firstCoupon: { name: 'primer_cupó', detail: 'La data del primer cupó del valor.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + pr: { name: 'preu', detail: 'El preu del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor amb un últim període irregular.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor amb un últim període irregular.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/ca-es/excel/functions/oddlprice-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + lastInterest: { name: 'últim_cupó', detail: 'La data de l’últim cupó del valor.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el rendiment d\'un valor amb un últim període irregular.', + abstract: 'Retorna el rendiment d\'un valor amb un últim període irregular.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/ca-es/excel/functions/oddlyield-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + lastInterest: { name: 'últim_cupó', detail: 'La data de l’últim cupó del valor.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + pr: { name: 'preu', detail: 'El preu del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el nombre de períodes necessaris perquè una inversió arribi a un valor especificat.', + abstract: 'Retorna el nombre de períodes necessaris perquè una inversió arribi a un valor especificat.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/ca-es/excel/functions/pduration-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès per període." }, + pv: { name: 'pv', detail: 'El valor actual de la inversió.' }, + fv: { name: 'vf', detail: 'El valor futur desitjat de la inversió.' }, }, }, PMT: { - description: 'Returns the periodic payment for an annuity', - abstract: 'Returns the periodic payment for an annuity', + description: 'Retorna el pagament periòdic d\'una anualitat.', + abstract: 'Retorna el pagament periòdic d\'una anualitat.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/ca-es/excel/functions/pmt-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del préstec." }, + nper: { name: 'nper', detail: 'El nombre total de pagaments del préstec.' }, + pv: { name: 'pv', detail: 'El valor actual, o l’import total al qual equival ara una sèrie de pagaments futurs; també anomenat principal.' }, + fv: { name: 'vf', detail: 'El valor futur, o el saldo en efectiu que es vol assolir després de l’últim pagament.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, }, }, 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', + description: 'Retorna el pagament del principal d\'una inversió per a un període determinat.', + abstract: 'Retorna el pagament del principal d\'una inversió per a un període determinat.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/ca-es/excel/functions/ppmt-function', }, ], 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.' }, + rate: { name: 'taxa', detail: "El tipus d'interès per període." }, + per: { name: 'període', detail: "El període del qual es vol trobar el principal; ha d'estar entre 1 i nper." }, + nper: { name: 'nper', detail: "El nombre total de períodes de pagament d'una anualitat." }, + pv: { name: 'pv', detail: 'El valor actual, o l’import total al qual equival ara una sèrie de pagaments futurs.' }, + fv: { name: 'vf', detail: 'El valor futur, o el saldo en efectiu que es vol assolir després de l’últim pagament.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor que paga interessos periòdics.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor que paga interessos periòdics.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/ca-es/excel/functions/price-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor descomptat.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor descomptat.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/ca-es/excel/functions/pricedisc-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + discount: { name: 'descompte', detail: 'La taxa de descompte del valor.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor que paga interessos al venciment.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'un valor que paga interessos al venciment.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/ca-es/excel/functions/pricemat-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + issue: { name: 'emissió', detail: "La data d'emissió del valor, expressada com a número de sèrie de data." }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor a la data d'emissió." }, + yld: { name: 'rendiment', detail: 'El rendiment anual del valor.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, PV: { - description: 'Returns the present value of an investment', - abstract: 'Returns the present value of an investment', + description: 'Retorna el valor actual d\'una inversió.', + abstract: 'Retorna el valor actual d\'una inversió.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/ca-es/excel/functions/pv-function', }, ], 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: { name: 'taxa', detail: "El tipus d'interès per període." }, + nper: { name: 'nper', detail: "El nombre total de períodes de pagament d'una anualitat." }, + pmt: { name: 'pagament', detail: "El pagament efectuat a cada període; no pot variar durant la vida de l'anualitat." }, + fv: { name: 'vf', detail: 'El valor futur, o el saldo en efectiu que es vol assolir després de l’últim pagament.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, }, }, RATE: { - description: 'Returns the interest rate per period of an annuity', - abstract: 'Returns the interest rate per period of an annuity', + description: 'Retorna la taxa d\'interès per període d\'una anualitat.', + abstract: 'Retorna la taxa d\'interès per període d\'una anualitat.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/ca-es/excel/functions/rate-function', }, ], 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.' }, + nper: { name: 'nper', detail: "El nombre total de períodes de pagament d'una anualitat." }, + pmt: { name: 'pagament', detail: "El pagament efectuat a cada període; no pot variar durant la vida de l'anualitat." }, + pv: { name: 'pv', detail: 'El valor actual, o l’import únic al qual equival ara una sèrie de pagaments futurs.' }, + fv: { name: 'vf', detail: 'El valor futur, o el saldo en efectiu que es vol assolir després de l’últim pagament.' }, + type: { name: 'tipus', detail: 'El nombre 0 o 1 que indica quan s’han de fer els pagaments.' }, + guess: { name: 'estimació', detail: 'La vostra estimació del valor que tindrà la taxa.' }, }, }, 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', + description: 'Retorna l\'import rebut al venciment per un valor totalment invertit.', + abstract: 'Retorna l\'import rebut al venciment per un valor totalment invertit.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/ca-es/excel/functions/received-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + investment: { name: 'inversió', detail: 'L’import invertit en el valor.' }, + discount: { name: 'descompte', detail: 'La taxa de descompte del valor.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna un tipus d\'interès equivalent per al creixement d\'una inversió.', + abstract: 'Retorna un tipus d\'interès equivalent per al creixement d\'una inversió.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/ca-es/excel/functions/rri-function', }, ], 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.' }, + nper: { name: 'nper', detail: 'El nombre de períodes de la inversió.' }, + pv: { name: 'pv', detail: 'El valor actual de la inversió.' }, + fv: { name: 'vf', detail: 'El valor futur de la inversió.' }, }, }, 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', + description: 'Retorna l\'amortització lineal d\'un actiu per a un període.', + abstract: 'Retorna l\'amortització lineal d\'un actiu per a un període.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/ca-es/excel/functions/sln-function', }, ], 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).' }, + cost: { name: 'cost', detail: "El cost inicial de l'actiu." }, + salvage: { name: 'valor_residual', detail: "El valor al final de l'amortització, també anomenat valor residual de l'actiu." }, + life: { name: 'vida_útil', detail: "El nombre de períodes durant els quals s'amortitza l'actiu, també anomenat vida útil de l'actiu." }, }, }, 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', + description: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de la suma dels dígits dels anys.', + abstract: 'Retorna l\'amortització d\'un actiu per a un període especificat mitjançant el mètode de la suma dels dígits dels anys.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/ca-es/excel/functions/syd-function', }, ], 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.' }, + cost: { name: 'cost', detail: "El cost inicial de l'actiu." }, + salvage: { name: 'valor_residual', detail: "El valor al final de l'amortització, també anomenat valor residual de l'actiu." }, + life: { name: 'vida_útil', detail: "El nombre de períodes durant els quals s'amortitza l'actiu, també anomenat vida útil de l'actiu." }, + per: { name: 'període', detail: 'El període; ha d’utilitzar les mateixes unitats que vida_útil.' }, }, }, TBILLEQ: { - description: 'Returns the bond-equivalent yield for a Treasury bill', - abstract: 'Returns the bond-equivalent yield for a Treasury bill', + description: 'Retorna el rendiment equivalent a un bo d\'una lletra del Tresor.', + abstract: 'Retorna el rendiment equivalent a un bo d\'una lletra del Tresor.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/ca-es/excel/functions/tbilleq-function', }, ], 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." }, + settlement: { name: 'liquidació', detail: 'La data de liquidació de la lletra del Tresor.' }, + maturity: { name: 'venciment', detail: 'La data de venciment de la lletra del Tresor.' }, + discount: { name: 'descompte', detail: 'La taxa de descompte de la lletra del Tresor.' }, }, }, 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', + description: 'Retorna el preu per un valor nominal de 100 dòlars d\'una lletra del Tresor.', + abstract: 'Retorna el preu per un valor nominal de 100 dòlars d\'una lletra del Tresor.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/ca-es/excel/functions/tbillprice-function', }, ], 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." }, + settlement: { name: 'liquidació', detail: 'La data de liquidació de la lletra del Tresor.' }, + maturity: { name: 'venciment', detail: 'La data de venciment de la lletra del Tresor.' }, + discount: { name: 'descompte', detail: 'La taxa de descompte de la lletra del Tresor.' }, }, }, TBILLYIELD: { - description: 'Returns the yield for a Treasury bill', - abstract: 'Returns the yield for a Treasury bill', + description: 'Retorna el rendiment d\'una lletra del Tresor.', + abstract: 'Retorna el rendiment d\'una lletra del Tresor.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/ca-es/excel/functions/tbillyield-function', }, ], 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." }, + settlement: { name: 'liquidació', detail: 'La data de liquidació de la lletra del Tresor.' }, + maturity: { name: 'venciment', detail: 'La data de venciment de la lletra del Tresor.' }, + pr: { name: 'preu', detail: 'El preu de la lletra del Tresor per cada 100 $ de valor nominal.' }, }, }, 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', + description: 'Retorna l\'amortització d\'un actiu per a un període especificat o parcial mitjançant un mètode de saldo decreixent.', + abstract: 'Retorna l\'amortització d\'un actiu per a un període especificat o parcial mitjançant un mètode de saldo decreixent.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/ca-es/excel/functions/vdb-function', }, ], 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.' }, + cost: { name: 'cost', detail: "El cost inicial de l'actiu." }, + salvage: { name: 'valor_residual', detail: "El valor al final de l'amortització, també anomenat valor residual de l'actiu. Pot ser 0." }, + life: { name: 'vida_útil', detail: "El nombre de períodes durant els quals s'amortitza l'actiu, també anomenat vida útil de l'actiu." }, + startPeriod: { name: 'període_inicial', detail: "El període inicial del qual es vol calcular l'amortització; ha d'utilitzar les mateixes unitats que vida_útil." }, + endPeriod: { name: 'període_final', detail: "El període final del qual es vol calcular l'amortització; ha d'utilitzar les mateixes unitats que vida_útil." }, + factor: { name: 'factor', detail: 'La taxa a la qual disminueix el saldo. Si s’omet, se suposa que és 2, és a dir, el mètode de saldo decreixent doble.' }, + noSwitch: { name: 'sense_canvi', detail: 'Un valor lògic que indica si s’ha de canviar a l’amortització lineal quan sigui superior al càlcul de saldo decreixent.' }, }, }, 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', + description: 'Retorna la taxa interna de rendiment d\'un calendari de fluxos d\'efectiu que no és necessàriament periòdic.', + abstract: 'Retorna la taxa interna de rendiment d\'un calendari de fluxos d\'efectiu que no és necessàriament periòdic.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/ca-es/excel/functions/xirr-function', }, ], 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.' }, + values: { name: 'valors', detail: 'Una sèrie de fluxos d’efectiu que correspon a un calendari de pagaments en dates. El primer pagament és opcional i correspon a un cost o pagament a l’inici de la inversió; si és un cost o pagament, ha de ser negatiu. Els pagaments posteriors es descompten sobre la base d’un any de 365 dies. La sèrie ha de contenir almenys un valor positiu i un de negatiu.' }, + dates: { name: 'dates', detail: 'Un calendari de dates de pagament que correspon als fluxos d’efectiu. Les dates poden aparèixer en qualsevol ordre.' }, + guess: { name: 'estimació', detail: 'Un nombre que estimeu proper al resultat d’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', + description: 'Retorna el valor actual net d\'un calendari de fluxos d\'efectiu que no és necessàriament periòdic.', + abstract: 'Retorna el valor actual net d\'un calendari de fluxos d\'efectiu que no és necessàriament periòdic.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/ca-es/excel/functions/xnpv-function', }, ], 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.' }, + rate: { name: 'taxa', detail: 'La taxa de descompte que s’aplica als fluxos d’efectiu.' }, + values: { name: 'valors', detail: 'Una sèrie de fluxos d’efectiu que correspon a un calendari de pagaments en dates. El primer pagament és opcional i correspon a un cost o pagament a l’inici de la inversió; si és un cost o pagament, ha de ser negatiu. Els pagaments posteriors es descompten sobre la base d’un any de 365 dies. La sèrie ha de contenir almenys un valor positiu i un de negatiu.' }, + dates: { name: 'dates', detail: 'Un calendari de dates de pagament que correspon als fluxos d’efectiu. Les dates poden aparèixer en qualsevol ordre.' }, }, }, YIELD: { - description: 'Returns the yield on a security that pays periodic interest', - abstract: 'Returns the yield on a security that pays periodic interest', + description: 'Retorna el rendiment d\'un valor que paga interessos periòdics.', + abstract: 'Retorna el rendiment d\'un valor que paga interessos periòdics.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/ca-es/excel/functions/yield-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor." }, + pr: { name: 'preu', detail: 'El preu del valor per cada 100 $ de valor nominal.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + frequency: { name: 'freqüència', detail: 'El nombre de pagaments de cupó per any. Per a pagaments anuals, freqüència = 1; semestrals, freqüència = 2; trimestrals, freqüència = 4.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el rendiment anual d\'un valor descomptat; per exemple, una lletra del Tresor.', + abstract: 'Retorna el rendiment anual d\'un valor descomptat; per exemple, una lletra del Tresor.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/ca-es/excel/functions/yielddisc-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + pr: { name: 'preu', detail: 'El preu del valor per cada 100 $ de valor nominal.' }, + redemption: { name: 'reemborsament', detail: 'El valor de reemborsament del valor per cada 100 $ de valor nominal.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, 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', + description: 'Retorna el rendiment anual d\'un valor que paga interessos al venciment.', + abstract: 'Retorna el rendiment anual d\'un valor que paga interessos al venciment.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/ca-es/excel/functions/yieldmat-function', }, ], 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.' }, + settlement: { name: 'liquidació', detail: "La data de liquidació del valor. És la data posterior a l'emissió en què el valor es negocia amb el comprador." }, + maturity: { name: 'venciment', detail: 'La data de venciment del valor. És la data en què el valor expira.' }, + issue: { name: 'emissió', detail: "La data d'emissió del valor, expressada com a número de sèrie de data." }, + rate: { name: 'taxa', detail: "El tipus d'interès del valor a la data d'emissió." }, + pr: { name: 'preu', detail: 'El preu del valor per cada 100 $ de valor nominal.' }, + basis: { name: 'base', detail: 'El tipus de base de recompte de dies que cal utilitzar.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/financial/de-DE.ts b/packages/sheets-formula/src/locale/function-list/financial/de-DE.ts new file mode 100644 index 0000000000..aae3a1e817 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/de-DE.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'Gibt die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers mit periodischen Zinszahlungen zurück.', + abstract: 'Gibt die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers mit periodischen Zinszahlungen zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission' }, + firstInterest: { name: 'first_interest', detail: 'Erforderlich. Der erste Zinstermin des Wertpapiers.' }, + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + par: { name: 'par', detail: 'Erforderlich. Der Nennwert des Wertpapiers. Wenn Sie keinen Nennwert angeben, verwendet AUFGELZINS den Wert "1.000 €".' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + calcMethod: { name: 'calc_method', detail: 'Optional. Ein logischer Wert, der die Methode zum Berechnen des gesamten aufgelaufenen Zinses angibt, wenn das Abrechnungsdatum nach dem Datum der first_interest liegt. Der Wert TRUE (1) gibt die insgesamt aufgelaufenen Zinszahlungen von der Ausgabe bis zur Abrechnung zurück. Ein Wert von FALSE (0) gibt die aufgelaufenen Zinsen von first_interest bis zur Abrechnung zurück. Wenn Sie das Argument nicht eingeben, wird standardmäßig TRUE verwendet.' }, + }, + }, + ACCRINTM: { + description: 'Liefert die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers, die bei Fälligkeit ausgezahlt werden.', + abstract: 'Liefert die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers, die bei Fälligkeit ausgezahlt werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission' }, + settlement: { name: 'settlement', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + par: { name: 'par', detail: 'Erforderlich. Der Nennwert des Wertpapiers. Wenn Sie keinen Nennwert angeben, verwendet AUFGELZINSF den Wert "1.000 €".' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + AMORDEGRC: { + description: 'Gibt die Abschreibung für jeden Abrechnungszeitraum zurück. Diese Funktion wird für das französische Buchhaltungssystem bereitgestellt. Wenn ein Vermögenswert in der Mitte des Abrechnungszeitraums erworben wird, wird die anteilige Abschreibung berücksichtigt. Die Funktion ähnelt AMORLINC, mit der Ausnahme, dass bei der Berechnung abhängig von der Lebensdauer der Vermögenswerte ein Abschreibungskoeffizienten angewendet wird.', + abstract: 'Gibt die Abschreibung für jeden Abrechnungszeitraum zurück. Diese Funktion wird für das französische Buchhaltungssystem bereitgestellt. Wenn ein Vermögenswert in der Mitte des Abrechnungszeitraums erworben wird, wird die anteilige Abschreibung berücksichtigt. Die Funktion ähnelt AMORLINC, mit der Ausnahme, dass bei der Berechnung abhängig von der Lebensdauer der Vermögenswerte ein Abschreibungskoeffizienten angewendet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten des Anlageguts.' }, + datePurchased: { name: 'date_purchased', detail: 'Erforderlich. Das Anschaffungsdatum des Anlageguts.' }, + firstPeriod: { name: 'first_period', detail: 'Erforderlich. Das Datum des Endes der ersten Periode.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert, den das Anlagegut am Ende der Nutzungsdauer hat.' }, + period: { name: 'period', detail: 'Erforderlich. Die Periode.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Abschreibungssatz.' }, + basis: { name: 'basis', detail: 'Optional. Die zu verwendende Jahresbasis.' }, + }, + }, + AMORLINC: { + description: 'Gibt die Abschreibung für jeden Abrechnungszeitraum zurück. Diese Funktion wird für das französische Buchhaltungssystem bereitgestellt. Wenn ein Vermögenswert in der Mitte des Abrechnungszeitraums erworben wird, wird die anteilige Abschreibung berücksichtigt.', + abstract: 'Gibt die Abschreibung für jeden Abrechnungszeitraum zurück. Diese Funktion wird für das französische Buchhaltungssystem bereitgestellt. Wenn ein Vermögenswert in der Mitte des Abrechnungszeitraums erworben wird, wird die anteilige Abschreibung berücksichtigt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten des Anlageguts.' }, + datePurchased: { name: 'date_purchased', detail: 'Erforderlich. Das Anschaffungsdatum des Anlageguts.' }, + firstPeriod: { name: 'first_period', detail: 'Erforderlich. Das Datum des Endes der ersten Periode.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert, den das Anlagegut am Ende der Nutzungsdauer hat.' }, + period: { name: 'period', detail: 'Erforderlich. Die Periode.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Abschreibungssatz.' }, + basis: { name: 'basis', detail: 'Optional. Die zu verwendende Jahresbasis.' }, + }, + }, + COUPDAYBS: { + description: 'Von der Funktion ZINSTERMTAGVA wird die Anzahl von Tagen ab dem Beginn einer Zinsperiode bis zum Abrechnungstermin zurückgegeben.', + abstract: 'Von der Funktion ZINSTERMTAGVA wird die Anzahl von Tagen ab dem Beginn einer Zinsperiode bis zum Abrechnungstermin zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + COUPDAYS: { + description: 'Gibt die Anzahl der Tage der Zinsperiode zurück, die den Abrechnungstermin einschließt.', + abstract: 'Gibt die Anzahl der Tage der Zinsperiode zurück, die den Abrechnungstermin einschließt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + COUPDAYSNC: { + description: 'Gibt die Anzahl der Tage vom Abrechnungstermin bis zum nächsten Zinstermin an.', + abstract: 'Gibt die Anzahl der Tage vom Abrechnungstermin bis zum nächsten Zinstermin an.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + COUPNCD: { + description: 'Gibt eine Zahl zurück, die den nächsten Zinstermin nach dem Abrechnungstermin angibt.', + abstract: 'Gibt eine Zahl zurück, die den nächsten Zinstermin nach dem Abrechnungstermin angibt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + COUPNUM: { + description: 'Gibt die Anzahl der zwischen dem Abrechnungsdatum und dem Fälligkeitsdatum zahlbaren Zinszahlungen an, und zwar aufgerundet zur nächsten ganzzahligen Zinszahlung.', + abstract: 'Gibt die Anzahl der zwischen dem Abrechnungsdatum und dem Fälligkeitsdatum zahlbaren Zinszahlungen an, und zwar aufgerundet zur nächsten ganzzahligen Zinszahlung.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + COUPPCD: { + description: 'Gibt eine Zahl an, die die letzte Zinszahlung vor dem Abrechnungstermin repräsentiert.', + abstract: 'Gibt eine Zahl an, die die letzte Zinszahlung vor dem Abrechnungstermin repräsentiert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + CUMIPMT: { + description: 'Berechnet die kumulierten Zinsen, die zwischen zwei Perioden zu zahlen sind.', + abstract: 'Berechnet die kumulierten Zinsen, die zwischen zwei Perioden zu zahlen sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode.' }, + nper: { name: 'nper', detail: 'Erforderlich. Die Gesamtzahl der Zahlungsperioden (Zzr = Anzahl der Zahlungszeiträume).' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert oder Gegenwartswert (Bw = Barwert).' }, + startPeriod: { name: 'start_period', detail: 'Erforderlich. Die erste in die Berechnung einfließende Periode. Die Zahlungsperioden sind, beginnend mit 1, durchnummeriert.' }, + endPeriod: { name: 'end_period', detail: 'Erforderlich. Die letzte in die Berechnung einfließende Periode.' }, + type: { name: 'type', detail: 'Erforderlich. (Fälligkeit) gibt an, zu welchem Zeitpunkt einer Periode jeweils eine Zahlung fällig ist.' }, + }, + }, + CUMPRINC: { + description: 'Berechnet die aufgelaufene Tilgung eines Darlehens, die zwischen zwei Perioden zu zahlen ist.', + abstract: 'Berechnet die aufgelaufene Tilgung eines Darlehens, die zwischen zwei Perioden zu zahlen ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode.' }, + nper: { name: 'nper', detail: 'Erforderlich. Die Gesamtzahl der Zahlungsperioden (Zzr = Anzahl der Zahlungszeiträume).' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert oder Gegenwartswert (Bw = Barwert).' }, + startPeriod: { name: 'start_period', detail: 'Erforderlich. Die erste in die Berechnung einfließende Periode. Die Zahlungsperioden sind, beginnend mit 1, durchnummeriert.' }, + endPeriod: { name: 'end_period', detail: 'Erforderlich. Die letzte in die Berechnung einfließende Periode.' }, + type: { name: 'type', detail: 'Erforderlich. (Fälligkeit) gibt an, zu welchem Zeitpunkt einer Periode jeweils eine Zahlung fällig ist.' }, + }, + }, + DB: { + description: 'Gibt die geometrisch-degressive Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode zurück.', + abstract: 'Gibt die geometrisch-degressive Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten eines Wirtschaftsgutes.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert am Ende der Nutzungsdauer (wird häufig auch als Schrottwert bezeichnet).' }, + life: { name: 'life', detail: 'Erforderlich. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird (auch als Nutzungsdauer bezeichnet).' }, + period: { name: 'period', detail: 'Erforderlich. Die Periode, deren Abschreibungsbetrag Sie berechnen möchten. Für das Argument "Periode" muss dieselbe Zeiteinheit verwendet werden wie für die Nutzungsdauer.' }, + month: { name: 'month', detail: 'Optional. Die Anzahl der Monate im ersten Jahr. Wird das Argument "Monat" nicht angegeben, wird der Wert 12 angenommen.' }, + }, + }, + DDB: { + description: 'Gibt die Abschreibung eines Anlagegutes für einen angegebenen Zeitraum unter Verwendung der degressiven Doppelraten-Abschreibung oder eines anderen von Ihnen angegebenen Abschreibungsverfahrens zurück.', + abstract: 'Gibt die Abschreibung eines Anlagegutes für einen angegebenen Zeitraum unter Verwendung der degressiven Doppelraten-Abschreibung oder eines anderen von Ihnen angegebenen Abschreibungsverfahrens zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten eines Wirtschaftsgutes.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert am Ende der Nutzungsdauer (wird häufig auch als Schrottwert bezeichnet). Der Wert kann 0 betragen.' }, + life: { name: 'life', detail: 'Erforderlich. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird (auch als Nutzungsdauer bezeichnet).' }, + period: { name: 'period', detail: 'Erforderlich. Die Periode, deren Abschreibungsbetrag Sie berechnen möchten. Für das Argument "Periode" muss dieselbe Zeiteinheit verwendet werden wie für die Nutzungsdauer.' }, + factor: { name: 'factor', detail: 'Optional. Die Rate, um die der Restbuchwert abnimmt. Fehlt das Argument Faktor, wird es als 2 angenommen (das Verfahren der degressiven Doppelraten-Abschreibung).' }, + }, + }, + DISC: { + description: 'Gibt den in Prozent ausgedrückten Abzinsungssatz eines Wertpapiers zurück.', + abstract: 'Gibt den in Prozent ausgedrückten Abzinsungssatz eines Wertpapiers zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers pro 100 € Nennwert.' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + DOLLARDE: { + description: 'Wandelt eine Notierung, die durch eine Kombination aus ganzer Zahl und Dezimalbruch (z. B. 1,02) ausgedrückt wurde, in eine Dezimalzahl um. Als Dezimalbrüche angegebene €-Zahlen werden z. B. für die Kurse festverzinslicher Wertpapiere oder amerikanische Aktiennotierungen verwendet.', + abstract: 'Wandelt eine Notierung, die durch eine Kombination aus ganzer Zahl und Dezimalbruch (z. B. 1,02) ausgedrückt wurde, in eine Dezimalzahl um. Als Dezimalbrüche angegebene €-Zahlen werden z. B. für die Kurse festverzinslicher Wertpapiere oder amerikanische Aktiennotierungen verwendet.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Erforderlich. Eine Zahl, die durch eine Kombination aus Ganzzahl und Dezimalbruch, getrennt durch ein Dezimaltrennzeichen ausgedrückt wurde.' }, + fraction: { name: 'fraction', detail: 'Erforderlich. Eine ganze Zahl, die als Nenner des Dezimalbruchs verwendet wird.' }, + }, + }, + DOLLARFR: { + description: 'Mit NOTIERUNGBRU können Sie als Dezimalzahlen angegebene €-Zahlen in €-Zahlen umwandeln, die als Dezimalbrüche formuliert sind (z. B. die Kurse festverzinslicher Wertpapiere).', + abstract: 'Mit NOTIERUNGBRU können Sie als Dezimalzahlen angegebene €-Zahlen in €-Zahlen umwandeln, die als Dezimalbrüche formuliert sind (z. B. die Kurse festverzinslicher Wertpapiere).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Erforderlich. Eine Dezimalzahl.' }, + fraction: { name: 'fraction', detail: 'Erforderlich. Eine ganze Zahl, die als Nenner eines Dezimalbruchs verwendet wird.' }, + }, + }, + DURATION: { + description: 'Die DURATION-Funktion , eine der Finanzfunktionen , gibt die Macauley-Dauer für einen angenommenen Paritätswert von 100 USD zurück. Die Duration wird als gewichteter Durchschnitt des Barwerts der Cashflows definiert und als Maß für die Reaktion eines Anleihenkurses auf Renditeänderungen verwendet.', + abstract: 'Die DURATION-Funktion , eine der Finanzfunktionen , gibt die Macauley-Dauer für einen angenommenen Paritätswert von 100 USD zurück. Die Duration wird als gewichteter Durchschnitt des Barwerts der Cashflows definiert und als Maß für die Reaktion eines Anleihenkurses auf Renditeänderungen verwendet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + coupon: { name: 'coupon', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + EFFECT: { + description: 'Gibt die jährliche Effektivverzinsung zurück, ausgehend von einer Nominalverzinsung sowie der jeweiligen Anzahl der Zinszahlungen pro Jahr.', + abstract: 'Gibt die jährliche Effektivverzinsung zurück, ausgehend von einer Nominalverzinsung sowie der jeweiligen Anzahl der Zinszahlungen pro Jahr.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'Erforderlich. Die Nominalverzinsung.' }, + npery: { name: 'npery', detail: 'Erforderlich. Die Anzahl der Verzinsungsperioden innerhalb eines Jahres' }, + }, + }, + FV: { + description: 'ZW , eine der finanzmathematischen Funktionen , berechnet den zukünftigen Wert oder Endwert einer Investition, wobei ein konstanter Zinssatz vorausgesetzt wird. Sie können ZW entweder mit regelmäßigen, konstanten Zahlungen oder der Zahlung eines einzigen Pauschalbetrags verwenden.', + abstract: 'ZW , eine der finanzmathematischen Funktionen , berechnet den zukünftigen Wert oder Endwert einer Investition, wobei ein konstanter Zinssatz vorausgesetzt wird. Sie können ZW entweder mit regelmäßigen, konstanten Zahlungen oder der Zahlung eines einzigen Pauschalbetrags verwenden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum)' }, + nper: { name: 'nper', detail: 'Erforderlich. Gibt an, über wie viele Perioden die jeweilige Annuität (Rente) gezahlt wird.' }, + pmt: { name: 'pmt', detail: 'Erforderlich. Die Zahlung, die für jeden Zeitraum geleistet wird; sie kann sich während der Lebensdauer der Annuität nicht ändern. In der Regel enthält pmt Prinzipal und Zinsen, aber keine anderen Gebühren oder Steuern. Wenn pmt nicht angegeben wird, müssen Sie das pv-Argument einschließen.' }, + pv: { name: 'pv', detail: 'Optional. Der Barwert oder der heutige Gesamtwert einer Reihe zukünftiger Zahlungen (Bw = Barwert) Wenn pv nicht angegeben wird, wird davon ausgegangen, dass es 0 (null) ist, und Sie müssen das Argument pmt einschließen.' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind. Wenn type nicht angegeben wird, wird davon ausgegangen, dass er 0 ist.' }, + }, + }, + FVSCHEDULE: { + description: 'Gibt den aufgezinsten Wert des Anfangskapitals für eine Reihe periodisch unterschiedlicher Zinssätze zurück. Mit ZW2 können Sie den Endwert (zukünftigen Wert) einer Investition (Kapitalanlage) berechnen, für die ein variabler oder wechselnder Zinssatz vereinbart ist.', + abstract: 'Gibt den aufgezinsten Wert des Anfangskapitals für eine Reihe periodisch unterschiedlicher Zinssätze zurück. Mit ZW2 können Sie den Endwert (zukünftigen Wert) einer Investition (Kapitalanlage) berechnen, für die ein variabler oder wechselnder Zinssatz vereinbart ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Erforderlich. Der Barwert oder Gegenwartswert (Bw = Barwert).' }, + schedule: { name: 'schedule', detail: 'Erforderlich. Eine Matrix, die die einzusetzenden Zinssätze enthält.' }, + }, + }, + INTRATE: { + description: 'Gibt den Zinssatz eines voll investierten Wertpapiers zurück.', + abstract: 'Gibt den Zinssatz eines voll investierten Wertpapiers zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + investment: { name: 'investment', detail: 'Erforderlich. Der Betrag, der in dem Wertpapier angelegt werden soll' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Betrag, der bei Fälligkeit zu erwarten ist' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + IPMT: { + description: 'Gibt die Zinszahlung einer Investition für die angegebene Periode zurück, ausgehend von regelmäßigen, konstanten Zahlungen und einem konstanten Zinssatz.', + abstract: 'Gibt die Zinszahlung einer Investition für die angegebene Periode zurück, ausgehend von regelmäßigen, konstanten Zahlungen und einem konstanten Zinssatz.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum)' }, + per: { name: 'per', detail: 'Erforderlich. Der Zeitraum, für den Sie das Interesse ermitteln möchten, und muss im Bereich von 1 bis nper liegen.' }, + nper: { name: 'nper', detail: 'Erforderlich. Gibt an, über wie viele Perioden die jeweilige Annuität (Rente) gezahlt wird.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert oder der heutige Gesamtwert einer Reihe zukünftiger Zahlungen (Bw = Barwert)' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert (Endwert) oder der Kassenbestand, den Sie nach der letzten Zahlung erreicht haben möchten. Fehlt das Argument "Zw", wird es als 0 angenommen (beispielsweise ist der Endwert eines Kredits gleich 0).' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind. Wenn type nicht angegeben wird, wird davon ausgegangen, dass er 0 ist.' }, + }, + }, + IRR: { + description: 'Gibt den internen Zinssatz für eine Reihe von Cashflows zurück, die durch die Zahlen in -Werten dargestellt werden. Diese Cashflows müssen nicht gerade sein, wie sie für eine Annuität wären. Die Cashflows müssen jedoch in regelmäßigen Abständen erfolgen, z. B. monatlich oder jährlich. Der interne Zinssatz ist der Zinssatz für eine Investition, die aus Zahlungen (negative Werte) und Einkommen (positive Werte) besteht, die in regelmäßigen Zeiträumen auftreten.', + abstract: 'Gibt den internen Zinssatz für eine Reihe von Cashflows zurück, die durch die Zahlen in -Werten dargestellt werden. Diese Cashflows müssen nicht gerade sein, wie sie für eine Annuität wären. Die Cashflows müssen jedoch in regelmäßigen Abständen erfolgen, z. B. monatlich oder jährlich. Der interne Zinssatz ist der Zinssatz für eine Investition, die aus Zahlungen (negative Werte) und Einkommen (positive Werte) besteht, die in regelmäßigen Zeiträumen auftreten.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Eine Matrix oder ein Bezug auf Zellen mit Zahlen, für die Sie den internen Zinsfuß berechnen möchten.\n1. Values müssen mindestens einen positiven und einen negativen Wert enthalten.\n2. IRR verwendet die Reihenfolge der Werte als Reihenfolge der Zahlungsströme. Geben Sie Zahlungen und Einnahmen daher in der gewünschten Reihenfolge ein.\n3. Text, Wahrheitswerte und leere Zellen in einer Matrix oder einem Bezug werden ignoriert.' }, + guess: { name: 'guess', detail: 'Eine Zahl, die Ihrer Schätzung nach nahe am Ergebnis von IRR liegt.' }, + }, + }, + ISPMT: { + description: 'Berechnet die gezahlten (oder erhaltenen) Zinsen für den angegebenen Zeitraum eines Kredits (oder einer Investition) mit gleichmäßigen Tilgungszahlungen.', + abstract: 'Berechnet die gezahlten (oder erhaltenen) Zinsen für den angegebenen Zeitraum eines Kredits (oder einer Investition) mit gleichmäßigen Tilgungszahlungen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Die Effektivverzinsung für die Investition.' }, + per: { name: 'per', detail: 'Erforderlich. Der Zeitraum, für den Sie den Zins ermitteln möchten, und muss zwischen 1 und Nper sein.' }, + nper: { name: 'nper', detail: 'Erforderlich. Die Gesamtanzahl der Zahlungszeiträume für die Investition.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der gegenwärtige Wert der Investition. Bei einem Kredit ist "Bw" die Kreditsumme.' }, + }, + }, + MDURATION: { + description: 'Gibt die modifizierte Macauley-Dauer eines Wertpapiers mit einem angenommenen Nennwert von 100 € zurück.', + abstract: 'Gibt die modifizierte Macauley-Dauer eines Wertpapiers mit einem angenommenen Nennwert von 100 € zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + coupon: { name: 'coupon', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + MIRR: { + description: 'Gibt den geänderten internen Zinssatz für eine Reihe regelmäßiger Cashflows zurück. MIRR berücksichtigt sowohl die Kosten der Investition als auch die Zinsen, die für die Reinvestition von Bargeld erhalten wurden.', + abstract: 'Gibt den geänderten internen Zinssatz für eine Reihe regelmäßiger Cashflows zurück. MIRR berücksichtigt sowohl die Kosten der Investition als auch die Zinsen, die für die Reinvestition von Bargeld erhalten wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Erforderlich. Eine Matrix oder ein Bezug auf Zellen, die Zahlen enthalten. Diese Zahlen entsprechen einer Reihe von Auszahlungen (negative Werte) sowie Einzahlungen (positive Werte), die in gleichlangen Perioden erfolgen. Werte müssen mindestens einen positiven und einen negativen Wert enthalten, um die geänderte interne Rendite zu berechnen. Andernfalls gibt MIRR die #DIV/0! zurück. Enthält ein als Matrix oder Bezug angegebenes Argument Text, Wahrheitswerte oder leere Zellen, werden diese Werte ignoriert. Zellen, die den Wert 0 enthalten, werden dagegen berücksichtigt.' }, + financeRate: { name: 'finance_rate', detail: 'Erforderlich. Der Zinssatz, den Sie für die gezahlten Gelder ansetzen' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Erforderlich. Der Zinssatz, den Sie für reinvestierte Gelder erzielen' }, + }, + }, + NOMINAL: { + description: 'Gibt die jährliche Nominalverzinsung zurück, ausgehend vom effektiven Zinssatz sowie der Anzahl der Verzinsungsperioden innerhalb eines Jahres.', + abstract: 'Gibt die jährliche Nominalverzinsung zurück, ausgehend vom effektiven Zinssatz sowie der Anzahl der Verzinsungsperioden innerhalb eines Jahres.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'Erforderlich. Der effektive Zinssatz (Effektivverzinsung)' }, + npery: { name: 'npery', detail: 'Erforderlich. Die Anzahl der Verzinsungsperioden innerhalb eines Jahres' }, + }, + }, + NPER: { + description: 'Gibt die Anzahl der Zahlungsperioden einer Investition zurück, die auf periodischen, gleichbleibenden Zahlungen sowie einem konstanten Zinssatz basiert. (ZZR = Anzahl der Zahlungszeiträume)', + abstract: 'Gibt die Anzahl der Zahlungsperioden einer Investition zurück, die auf periodischen, gleichbleibenden Zahlungen sowie einem konstanten Zinssatz basiert. (ZZR = Anzahl der Zahlungszeiträume)', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum)' }, + pmt: { name: 'pmt', detail: 'Erforderlich. Die Zahlung, die für jeden Zeitraum geleistet wird; sie kann sich während der Lebensdauer der Annuität nicht ändern. In der Regel enthält pmt Prinzipal und Zinsen, aber keine anderen Gebühren oder Steuern.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert oder der heutige Gesamtwert einer Reihe zukünftiger Zahlungen (Bw = Barwert)' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert (Endwert) oder der Kassenbestand, den Sie nach der letzten Zahlung erreicht haben möchten. Fehlt das Argument "Zw", wird es als 0 angenommen (beispielsweise ist der Endwert eines Kredits gleich 0).' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind.' }, + }, + }, + NPV: { + description: 'Liefert den Nettobarwert (Kapitalwert) einer Investition auf der Basis eines Abzinsungsfaktors für eine Reihe periodischer Zahlungen.', + abstract: 'Liefert den Nettobarwert (Kapitalwert) einer Investition auf der Basis eines Abzinsungsfaktors für eine Reihe periodischer Zahlungen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Abzinsungsfaktor für die Dauer einer Periode' }, + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 254 Argumente, die den Auszahlungen und den Einzahlungen entsprechen. Wert1; Wert2; ... müssen als Zahlungsvorgänge in gleichbleibenden Zeitabständen erfolgen und sind jeweils am Ende einer Periode vorzunehmen. NBW bestimmt anhand der Reihenfolge von Wert1; Wert2;... die Reihenfolge der Zahlungen. Sie müssen daher darauf achten, dass Sie die Auszahlungen und Einzahlungen in der richtigen Reihenfolge eingeben. Argumente, bei denen es sich um leere Zellen, Wahrheitswerte, Zahlen in Textform, Fehlerwerte oder Text handelt, der sich nicht in eine Zahl umwandeln lässt, werden ignoriert. Ist als Argument eine Matrix oder ein Bezug angegeben, werden nur die Elemente der Matrix oder des Bezugs berücksichtigt, die Zahlen enthalten. Leere Zellen, Wahrheitswerte, Texte oder Fehlerwerte werden ignoriert.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 254 Argumente, die den Auszahlungen und den Einzahlungen entsprechen. Wert1; Wert2; ... müssen als Zahlungsvorgänge in gleichbleibenden Zeitabständen erfolgen und sind jeweils am Ende einer Periode vorzunehmen. NBW bestimmt anhand der Reihenfolge von Wert1; Wert2;... die Reihenfolge der Zahlungen. Sie müssen daher darauf achten, dass Sie die Auszahlungen und Einzahlungen in der richtigen Reihenfolge eingeben. Argumente, bei denen es sich um leere Zellen, Wahrheitswerte, Zahlen in Textform, Fehlerwerte oder Text handelt, der sich nicht in eine Zahl umwandeln lässt, werden ignoriert. Ist als Argument eine Matrix oder ein Bezug angegeben, werden nur die Elemente der Matrix oder des Bezugs berücksichtigt, die Zahlen enthalten. Leere Zellen, Wahrheitswerte, Texte oder Fehlerwerte werden ignoriert.' }, + }, + }, + ODDFPRICE: { + description: 'Liefert den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen (kurzen oder langen) ersten Zinstermin.', + abstract: 'Liefert den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen (kurzen oder langen) ersten Zinstermin.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission' }, + firstCoupon: { name: 'first_coupon', detail: 'Erforderlich. Der erste Zinstermin des Wertpapiers' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers.' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + ODDFYIELD: { + description: 'Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen (kurzen oder langen) ersten Zinstermin zurück.', + abstract: 'Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen (kurzen oder langen) ersten Zinstermin zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission' }, + firstCoupon: { name: 'first_coupon', detail: 'Erforderlich. Der erste Zinstermin des Wertpapiers' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers.' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + ODDLPRICE: { + description: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin zurück.', + abstract: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + lastInterest: { name: 'last_interest', detail: 'Erforderlich. Der letzte Zinstermin des Wertpapiers vor dem Fälligkeitstermin' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers.' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + ODDLYIELD: { + description: 'Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin unabhängig von der Dauer zurück.', + abstract: 'Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin unabhängig von der Dauer zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + lastInterest: { name: 'last_interest', detail: 'Erforderlich. Der letzte Zinstermin des Wertpapiers vor dem Fälligkeitstermin' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + PDURATION: { + description: 'Gibt die Anzahl von Perioden zurück, die erforderlich sind, bis eine Investition einen angegebenen Wert erreicht hat.', + abstract: 'Gibt die Anzahl von Perioden zurück, die erforderlich sind, bis eine Investition einen angegebenen Wert erreicht hat.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Zahlungsperiode.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der aktuelle Wert der Investition.' }, + fv: { name: 'fv', detail: 'Erforderlich. Der gewünschte zukünftige Wert der Investition.' }, + }, + }, + PMT: { + description: 'RMZ , eine der finanzmathematischen Funktionen , berechnet die konstante Zahlung einer Annuität pro Periode, wobei konstante Zahlungen und ein konstanter Zinssatz vorausgesetzt werden. (RMZ = Regelmäßige Zahlung)', + abstract: 'RMZ , eine der finanzmathematischen Funktionen , berechnet die konstante Zahlung einer Annuität pro Periode, wobei konstante Zahlungen und ein konstanter Zinssatz vorausgesetzt werden. (RMZ = Regelmäßige Zahlung)', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum).' }, + nper: { name: 'nper', detail: 'Erforderlich. Die Gesamtzahl der Zahlungen für das Darlehen.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert oder der Gesamtbetrag, den eine Reihe zukünftiger Zahlungen jetzt wert ist. Dieser Wert wird auch „Darlehenswert“ genannt.' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert (Endwert) oder der Kassenbestand, den Sie nach der letzten Zahlung erreicht haben möchten. Wenn Zw weggelassen wird, wird davon ausgegangen, dass er 0 (null) ist, d. h., der zukünftige Wert eines Kredits ist 0.' }, + type: { name: 'type', detail: 'Optional. Der Wert kann 0 (null) oder 1 sein und gibt an, wann Zahlungen fällig sind.' }, + }, + }, + PPMT: { + description: 'Gibt die Kapitalrückzahlung einer Investition für eine angegebene Periode zurück. Es werden konstante periodische Zahlungen und ein konstanter Zinssatz vorausgesetzt. (KAPZ = Kapitalrückzahlung)', + abstract: 'Gibt die Kapitalrückzahlung einer Investition für eine angegebene Periode zurück. Es werden konstante periodische Zahlungen und ein konstanter Zinssatz vorausgesetzt. (KAPZ = Kapitalrückzahlung)', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum)' }, + per: { name: 'per', detail: 'Erforderlich. Gibt den Zeitraum an und muss zwischen 1 und Zzr liegen.' }, + nper: { name: 'nper', detail: 'Erforderlich. Gibt an, über wie viele Perioden die jeweilige Annuität (Rente) gezahlt wird.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert: der Gesamtbetrag, den eine Reihe zukünftiger Zahlungen zum gegenwärtigen Zeitpunkt wert ist.' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert (Endwert) oder der Kassenbestand, den Sie nach der letzten Zahlung erreicht haben möchten. Wenn Zw weggelassen wird, wird davon ausgegangen, dass er 0 (null) ist, d. h., der zukünftige Wert eines Kredits ist 0.' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind.' }, + }, + }, + PRICE: { + description: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das periodisch Zinsen auszahlt.', + abstract: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das periodisch Zinsen auszahlt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + PRICEDISC: { + description: 'Gibt den Kurs pro 100 € Nennwert eines unverzinslichen Wertpapiers zurück.', + abstract: 'Gibt den Kurs pro 100 € Nennwert eines unverzinslichen Wertpapiers zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + discount: { name: 'discount', detail: 'Erforderlich. Der in Prozent ausgedrückte Abschlag (Disagio) des Wertpapiers' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + PRICEMAT: { + description: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt.', + abstract: 'Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission, als fortlaufende Zahl angegeben' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers am Emissionsdatum' }, + yld: { name: 'yld', detail: 'Erforderlich. Die jährliche Rendite des Wertpapiers' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + PV: { + description: 'BW , eine der finanzmathematischen Funktionen , berechnet den aktuellen Wert eines Darlehens oder einer Investition, wobei ein konstanter Zinssatz vorausgesetzt wird. (BW = Barwert) Sie können BW entweder mit regelmäßigen, konstanten Zahlungen (z. B. im Zusammenhang mit einer Hypothek oder einem anderen Kredit) oder mit einem zukünftigen Wert, der Ihr Investitionsziel darstellt, verwenden.', + abstract: 'BW , eine der finanzmathematischen Funktionen , berechnet den aktuellen Wert eines Darlehens oder einer Investition, wobei ein konstanter Zinssatz vorausgesetzt wird. (BW = Barwert) Sie können BW entweder mit regelmäßigen, konstanten Zahlungen (z. B. im Zusammenhang mit einer Hypothek oder einem anderen Kredit) oder mit einem zukünftigen Wert, der Ihr Investitionsziel darstellt, verwenden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz pro Periode (Zahlungszeitraum) Wenn Sie z. B. einen Kredit für ein Auto mit einem jährlichen Zinssatz von 10 Prozent erhalten und monatliche Zahlungen leisten, beträgt der Zinssatz pro Monat 10 %/12 oder 0,83 %. Sie geben „10 %/12“ oder „0,83 %“ oder „0,0083“ als Rate in die Formel ein.' }, + nper: { name: 'nper', detail: 'Erforderlich. Gibt an, über wie viele Perioden die jeweilige Annuität (Rente) gezahlt wird. Wenn Sie beispielsweise einen 4 Jahre laufenden Kredit für ein Auto erhalten und monatliche Zahlungen leisten, weist ihr Darlehen 4 * 12 (also 48) Zeiträume auf. Sie geben „48“ in die Formel für Nper ein.' }, + pmt: { name: 'pmt', detail: 'Erforderlich. Die für jeden Zeitraum geleistete Zahlung kann sich während der Dauer der Annuität nicht ändern. In der Regel umfasst RMZ Prinzipal- und Zinszahlungen, aber keine anderen Gebühren oder Steuern. Beispielsweise betragen die monatlichen Zahlungen für einen vierjährigen Auto-Kredit für 10.000 US-Dollar mit 12 Prozent Zinsen 263,33 US-Dollar. Sie würden -263,33 als pmt in die Formel eingeben. Wenn pmt nicht angegeben wird, müssen Sie das Argument fv einschließen.' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert oder ein Barguthaben, den Sie nach der letzten Zahlung erreichen möchten. Fehlt das Argument "Zw", wird es als 0 angenommen (beispielsweise ist der Endwert eines Kredits gleich 0). Wenn Sie beispielsweise 50.000 USD sparen möchten, um für ein spezielles Projekt in 18 Jahren zu bezahlen, ist 50.000 USD der zukünftige Wert. Sie können dann eine vorsichtige Schätzung zu einem Zinssatz treffen und bestimmen, wie viel Sie jeden Monat sparen müssen. Wenn "Zw" ausgelassen wird, müssen Sie das Argument "Rmz" verwenden.' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind.' }, + }, + }, + RATE: { + description: 'Gibt den Zinssatz pro Zeitraum einer Annuität zurück. RATE wird nach Iteration berechnet und kann null oder mehr Lösungen enthalten. Wenn die aufeinanderfolgenden Ergebnisse von RATE nach 20 Iterationen nicht auf 0,0000001 konvergieren, gibt RATE die #NUM! zurück.', + abstract: 'Gibt den Zinssatz pro Zeitraum einer Annuität zurück. RATE wird nach Iteration berechnet und kann null oder mehr Lösungen enthalten. Wenn die aufeinanderfolgenden Ergebnisse von RATE nach 20 Iterationen nicht auf 0,0000001 konvergieren, gibt RATE die #NUM! zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Erforderlich. Gibt an, über wie viele Perioden die jeweilige Annuität (Rente) gezahlt wird.' }, + pmt: { name: 'pmt', detail: 'Erforderlich. Die für jeden Zeitraum geleistete Zahlung kann sich während der Dauer der Annuität nicht ändern. In der Regel umfasst RMZ Prinzipal- und Zinszahlungen, aber keine anderen Gebühren oder Steuern. Wenn „RMZ“ ausgelassen wird, müssen Sie das Argument „Zw“ verwenden.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der Barwert: der Gesamtbetrag, den eine Reihe zukünftiger Zahlungen zum gegenwärtigen Zeitpunkt wert ist.' }, + fv: { name: 'fv', detail: 'Optional. Der zukünftige Wert (Endwert) oder der Kassenbestand, den Sie nach der letzten Zahlung erreicht haben möchten. Fehlt das Argument "Zw", wird es als 0 angenommen (beispielsweise ist der Endwert eines Kredits gleich 0). Wenn "Zw" ausgelassen wird, müssen Sie das Argument "Rmz" verwenden.' }, + type: { name: 'type', detail: 'Optional. Kann den Wert "0" oder "1" annehmen und gibt an, wann die Zahlungen fällig sind.' }, + guess: { name: 'guess', detail: 'Optional. Entspricht Ihrer Schätzung bezüglich der Höhe des Zinssatzes Wenn Sie keinen Wert für "Schätzwert" angeben, wird 10 Prozent angenommen. Wenn ZINS nicht konvergiert, sollten Sie einen anderen Wert für "Schätzwert" angeben. Normalerweise konvergiert ZINS, wenn "Schätzwert" zwischen 0 und 1 liegt.' }, + }, + }, + RECEIVED: { + description: 'Gibt den Auszahlungsbetrag eines voll investierten Wertpapiers am Fälligkeitstermin zurück.', + abstract: 'Gibt den Auszahlungsbetrag eines voll investierten Wertpapiers am Fälligkeitstermin zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + investment: { name: 'investment', detail: 'Erforderlich. Der Betrag, der in dem Wertpapier angelegt werden soll' }, + discount: { name: 'discount', detail: 'Erforderlich. Der in Prozent ausgedrückte Abschlag (Disagio) des Wertpapiers' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + RRI: { + description: 'Gibt den effektiven Jahreszins für den Wertzuwachs einer Investition zurück.', + abstract: 'Gibt den effektiven Jahreszins für den Wertzuwachs einer Investition zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Erforderlich. Die Anzahl der Perioden für die Investition.' }, + pv: { name: 'pv', detail: 'Erforderlich. Der aktuelle Wert der Investition.' }, + fv: { name: 'fv', detail: 'Erforderlich. Der zukünftige Wert der Investition.' }, + }, + }, + SLN: { + description: 'Gibt die lineare Abschreibung eines Wirtschaftsgutes pro Periode zurück.', + abstract: 'Gibt die lineare Abschreibung eines Wirtschaftsgutes pro Periode zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten eines Wirtschaftsgutes.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert am Ende der Nutzungsdauer (wird häufig auch als Schrottwert bezeichnet).' }, + life: { name: 'life', detail: 'Erforderlich. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird (auch als Nutzungsdauer bezeichnet)' }, + }, + }, + SYD: { + description: 'Gibt die arithmetisch-degressive Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode zurück.', + abstract: 'Gibt die arithmetisch-degressive Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten eines Wirtschaftsgutes.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert am Ende der Nutzungsdauer (wird häufig auch als Schrottwert bezeichnet).' }, + life: { name: 'life', detail: 'Erforderlich. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird (auch als Nutzungsdauer bezeichnet)' }, + per: { name: 'per', detail: 'Erforderlich. Die Periode; hierfür muss dieselbe Zeiteinheit wie für die Nutzungsdauer verwendet werden.' }, + }, + }, + TBILLEQ: { + description: 'Rechnet die Verzinsung eines Schatzwechsels (Treasury Bill) in die für Anleihen übliche einfache jährliche Verzinsung um.', + abstract: 'Rechnet die Verzinsung eines Schatzwechsels (Treasury Bill) in die für Anleihen übliche einfache jährliche Verzinsung um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapiers. Der Abrechnungstermin des Wertpapierkaufs entspricht dem Zeitpunkt nach Emission, an dem das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + discount: { name: 'discount', detail: 'Erforderlich. Der in Prozent ausgedrückte Abschlag (Disagio) des Wertpapiers' }, + }, + }, + TBILLPRICE: { + description: 'Gibt den Kurs pro 100 € Nennwert eines Schatzwechsels (Treasury Bill) zurück.', + abstract: 'Gibt den Kurs pro 100 € Nennwert eines Schatzwechsels (Treasury Bill) zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapiers. Der Abrechnungstermin des Wertpapierkaufs entspricht dem Zeitpunkt nach Emission, an dem das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + discount: { name: 'discount', detail: 'Erforderlich. Der in Prozent ausgedrückte Abschlag (Disagio) des Wertpapiers' }, + }, + }, + TBILLYIELD: { + description: 'Gibt die Rendite eines Schatzwechsels (Treasury Bill) zurück.', + abstract: 'Gibt die Rendite eines Schatzwechsels (Treasury Bill) zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapiers. Der Abrechnungstermin des Wertpapierkaufs entspricht dem Zeitpunkt nach Emission, an dem das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs (Kaufpreis) des Wertpapiers pro 100 € Nennwert' }, + }, + }, + VDB: { + description: 'Gibt die degressive Doppelraten-Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode oder Teilperiode zurück. VDB ist ein Akronym für "variable declining balance" (variabler abnehmender Saldo).', + abstract: 'Gibt die degressive Doppelraten-Abschreibung eines Wirtschaftsgutes für eine bestimmte Periode oder Teilperiode zurück. VDB ist ein Akronym für "variable declining balance" (variabler abnehmender Saldo).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Erforderlich. Die Anschaffungskosten eines Wirtschaftsgutes.' }, + salvage: { name: 'salvage', detail: 'Erforderlich. Der Restwert am Ende der Nutzungsdauer (wird häufig auch als Schrottwert bezeichnet). Der Wert kann 0 betragen.' }, + life: { name: 'life', detail: 'Erforderlich. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird (auch als Nutzungsdauer bezeichnet)' }, + startPeriod: { name: 'start_period', detail: 'Erforderlich. Der Anfangszeitraum, für den Sie die Abschreibung berechnen möchten. "Anfang" muss in derselben Zeiteinheit vorliegen wie "Nutzungsdauer".' }, + endPeriod: { name: 'end_period', detail: 'Erforderlich. Der Endzeitraum, für den Sie die Abschreibung berechnen möchten. "Ende" muss in derselben Zeiteinheit vorliegen wie "Nutzungsdauer".' }, + factor: { name: 'factor', detail: 'Optional. Die Rate, um die der Restbuchwert abnimmt. Fehlt das Argument Faktor, wird es als 2 angenommen (das Verfahren der degressiven Doppelraten-Abschreibung). Wenn Sie das Verfahren der degressiven Doppelraten-Abschreibung nicht anwenden möchten, müssen Sie einen anderen Faktor angeben. Eine Beschreibung des Verfahrens der degressiven Doppelraten-Abschreibung finden Sie unter GDA.' }, + noSwitch: { name: 'no_switch', detail: 'Optional. Ein Wahrheitswert, mit dem angegeben wird, ob zur linearen Abschreibung gewechselt werden soll, wenn der dabei berechnete Abschreibungsbetrag größer ist als der bei der geometrischen Abschreibung. Ist Nicht_wechseln mit WAHR belegt, wechselt Microsoft Excel selbst dann nicht zu dem Verfahren der linearen Abschreibung, wenn der dabei berechnete Abschreibungsbetrag größer ist als der bei der geometrischen Abschreibung. Ist Nicht_wechseln mit FALSCH belegt oder nicht angegeben, wechselt Excel zu dem Verfahren der linearen Abschreibung, wenn der dabei berechnete Abschreibungsbetrag größer ist als der bei der geometrischen Abschreibung.' }, + }, + }, + XIRR: { + description: 'Gibt den internen Zinsfuß einer Reihe nicht periodisch anfallender Zahlungen zurück. Verwenden Sie zum Berechnen des internen Zinsflusses einer Reihe periodisch anfallender Zahlungen die Funktion IKV.', + abstract: 'Gibt den internen Zinsfuß einer Reihe nicht periodisch anfallender Zahlungen zurück. Verwenden Sie zum Berechnen des internen Zinsflusses einer Reihe periodisch anfallender Zahlungen die Funktion IKV.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Erforderlich. Eine Reihe nicht periodisch anfallender Zahlungen, die sich auf die Zeitpunkte des Zahlungsplans beziehen. Die erste Zahlung ist optional und entspricht einer Auszahlung, die zu Beginn der jeweiligen Investition erfolgt. Wenn es sich beim ersten Wert um Kosten oder eine Zahlung handelt, muss dieser Wert negativ sein. Alle folgenden Zahlungen werden, ausgehend von einem 365-Tage-Jahr, diskontiert (abgezinst). Die Wertereihe muss mindestens einen positiven Wert und einen negativen Wert enthalten.' }, + dates: { name: 'dates', detail: 'Erforderlich. Die Zeitpunkte im Zahlungsplan der nicht periodisch anfallenden Zahlungen. Datumsangaben können in beliebiger Reihenfolge auftreten. Datumsangaben sollten mit der Funktion DATUM oder als Ergebnis anderer Formeln oder Funktionen eingegeben werden. Beispiel: Verwenden Sie DATUM(2008,5,23) für den 23. Mai 2008. Probleme können auftreten, wenn Datumsangaben als Text eingegeben werden. .' }, + guess: { name: 'guess', detail: 'Optional. Eine Zahl, von der Sie annehmen, dass sie dem Ergebnis der Funktion XINTZINSFUSS nahe kommt' }, + }, + }, + XNPV: { + description: 'Gibt den Nettobarwert (Kapitalwert) einer Reihe nicht periodisch anfallender Zahlungen zurück. Verwenden Sie zum Berechnen des Nettobarwerts einer Reihe periodisch anfallender Zahlungen die Funktion NBW.', + abstract: 'Gibt den Nettobarwert (Kapitalwert) einer Reihe nicht periodisch anfallender Zahlungen zurück. Verwenden Sie zum Berechnen des Nettobarwerts einer Reihe periodisch anfallender Zahlungen die Funktion NBW.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Erforderlich. Der Kalkulationszinsfuß, der für die Zahlungen zu berücksichtigen ist' }, + values: { name: 'values', detail: 'Erforderlich. Eine Reihe nicht periodisch anfallender Zahlungen, die sich auf die Zeitpunkte des Zahlungsplans beziehen. Die erste Zahlung ist optional und entspricht einer Auszahlung, die zu Beginn der jeweiligen Investition erfolgt. Wenn es sich beim ersten Wert um Kosten oder eine Zahlung handelt, muss dieser Wert negativ sein. Alle folgenden Zahlungen werden, ausgehend von einem 365-Tage-Jahr, diskontiert (abgezinst). Die Wertereihe muss mindestens einen positiven Wert und einen negativen Wert enthalten.' }, + dates: { name: 'dates', detail: 'Erforderlich. Die Zeitpunkte im Zahlungsplan der nicht periodisch anfallenden Zahlungen. Der erste Zahlungstermin legt den Beginn des Zahlungsplans fest. Alle anderen Termine müssen später liegen als dieser Termin, können aber in beliebiger Reihenfolge angegeben sein.' }, + }, + }, + YIELD: { + description: 'Gibt die Rendite eines Wertpapiers zurück, das periodisch Zinsen auszahlt. Mit RENDITE können Sie die Rendite von Anleihen und Obligationen berechnen.', + abstract: 'Gibt die Rendite eines Wertpapiers zurück, das periodisch Zinsen auszahlt. Mit RENDITE können Sie die Rendite von Anleihen und Obligationen berechnen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + rate: { name: 'rate', detail: 'Erforderlich. Der jährliche Nominalzins (Kuponzinssatz) des Wertpapiers' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers pro 100 € Nennwert.' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + frequency: { name: 'frequency', detail: 'Erforderlich. Die Anzahl der Zinszahlungen pro Jahr. Bei jährlichen Zahlungen ist Häufigkeit = 1; bei halbjährlichen ist Häufigkeit = 2; bei vierteljährlichen ist Häufigkeit = 4.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + YIELDDISC: { + description: 'Gibt die jährliche Rendite eines unverzinslichen Wertpapiers zurück.', + abstract: 'Gibt die jährliche Rendite eines unverzinslichen Wertpapiers zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers pro 100 € Nennwert.' }, + redemption: { name: 'redemption', detail: 'Erforderlich. Der Rückzahlungswert des Wertpapiers pro 100 € Nennwert' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, + YIELDMAT: { + description: 'Gibt die jährliche Rendite eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt.', + abstract: 'Gibt die jährliche Rendite eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Erforderlich. Der Abrechnungstermin des Wertpapierkaufs. Der Abrechnungstermin des Wertpapierkaufs ist das Datum nach der Wertpapieremission, wenn das Wertpapier in den Besitz des Käufers übergeht.' }, + maturity: { name: 'maturity', detail: 'Erforderlich. Der Fälligkeitstermin des Wertpapiers. Dabei handelt es sich um den Zeitpunkt, zu dem das Wertpapier abläuft.' }, + issue: { name: 'issue', detail: 'Erforderlich. Das Datum der Wertpapieremission, als fortlaufende Zahl angegeben' }, + rate: { name: 'rate', detail: 'Erforderlich. Der Zinssatz des Wertpapiers am Emissionsdatum' }, + pr: { name: 'pr', detail: 'Erforderlich. Der Kurs des Wertpapiers pro 100 € Nennwert.' }, + basis: { name: 'basis', detail: 'Optional. Der Typ, auf dessen Basis die Zinstage gezählt werden.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/en-US.ts b/packages/sheets-formula/src/locale/function-list/financial/en-US.ts index 70dd0baa39..a55e0eb789 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/en-us/excel/functions/accrint-function', }, ], functionParameter: { @@ -41,7 +41,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/en-us/excel/functions/accrintm-function', }, ], functionParameter: { @@ -58,12 +58,17 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/en-us/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + 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.' }, }, }, AMORLINC: { @@ -72,7 +77,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/en-us/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -91,7 +96,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/en-us/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -107,7 +112,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/en-us/excel/functions/coupdays-function', }, ], functionParameter: { @@ -123,7 +128,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/en-us/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -139,7 +144,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/en-us/excel/functions/coupncd-function', }, ], functionParameter: { @@ -155,7 +160,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/en-us/excel/functions/coupnum-function', }, ], functionParameter: { @@ -171,7 +176,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/en-us/excel/functions/couppcd-function', }, ], functionParameter: { @@ -187,7 +192,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/en-us/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -205,7 +210,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/en-us/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -223,7 +228,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/en-us/excel/functions/db-function', }, ], functionParameter: { @@ -240,7 +245,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/en-us/excel/functions/ddb-function', }, ], functionParameter: { @@ -257,7 +262,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/en-us/excel/functions/disc-function', }, ], functionParameter: { @@ -274,7 +279,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/en-us/excel/functions/dollarde-function', }, ], functionParameter: { @@ -288,7 +293,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/en-us/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -302,7 +307,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/en-us/excel/functions/duration-function', }, ], functionParameter: { @@ -315,17 +320,17 @@ const locale = { }, }, EFFECT: { - description: 'Returns the effective annual interest rate', - abstract: 'Returns the effective annual interest rate', + description: 'Returns the effective annual interest rate, given the nominal annual interest rate and the number of compounding periods per year.', + abstract: 'Returns the effective annual interest rate, given the nominal annual interest rate and the number of compounding periods per year.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/en-us/excel/functions/effect-function', }, ], functionParameter: { - nominalRate: { name: 'nominal_rate', detail: 'The nominal interest rate.' }, - npery: { name: 'npery', detail: 'The number of compounding periods per year.' }, + nominalRate: { name: 'nominal_rate', detail: 'Required. The nominal interest rate.' }, + npery: { name: 'npery', detail: 'Required. The number of compounding periods per year.' }, }, }, FV: { @@ -334,7 +339,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/en-us/excel/functions/fv-function', }, ], functionParameter: { @@ -351,7 +356,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/en-us/excel/functions/fvschedule-function', }, ], functionParameter: { @@ -360,38 +365,38 @@ const locale = { }, }, INTRATE: { - description: 'Returns the interest rate for a fully invested security', - abstract: 'Returns the interest rate for a fully invested security', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/intrate-function', }, ], 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.' }, + settlement: { name: 'settlement', detail: 'Required. The security\'s settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.' }, + maturity: { name: 'maturity', detail: 'Required. The security\'s maturity date. The maturity date is the date when the security expires.' }, + investment: { name: 'investment', detail: 'Required. The amount invested in the security.' }, + redemption: { name: 'redemption', detail: 'Required. The amount to be received at maturity.' }, + basis: { name: 'basis', detail: 'Optional. 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', + description: 'Returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate.', + abstract: 'Returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/en-us/excel/functions/ipmt-function', }, ], 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.' }, + rate: { name: 'rate', detail: 'Required. The interest rate per period.' }, + per: { name: 'per', detail: 'Required. The period for which you want to find the interest and must be in the range 1 to nper.' }, + nper: { name: 'nper', detail: 'Required. The total number of payment periods in an annuity.' }, + pv: { name: 'pv', detail: 'Required. The present value, or the lump-sum amount that a series of future payments is worth right now.' }, + fv: { name: 'fv', detail: 'Optional. The future value, or a cash balance you want to attain after the last payment is made. If fv is omitted, it is assumed to be 0 (the future value of a loan, for example, is 0).' }, + type: { name: 'type', detail: 'Optional. The number 0 or 1 and indicates when payments are due. If type is omitted, it is assumed to be 0.' }, }, }, IRR: { @@ -400,7 +405,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/en-us/excel/functions/irr-function', }, ], functionParameter: { @@ -414,7 +419,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/en-us/excel/functions/ispmt-function', }, ], functionParameter: { @@ -430,7 +435,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/en-us/excel/functions/mduration-function', }, ], functionParameter: { @@ -448,7 +453,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/en-us/excel/functions/mirr-function', }, ], functionParameter: { @@ -463,7 +468,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/en-us/excel/functions/nominal-function', }, ], functionParameter: { @@ -477,7 +482,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/en-us/excel/functions/nper-function', }, ], functionParameter: { @@ -494,7 +499,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/en-us/excel/functions/npv-function', }, ], functionParameter: { @@ -509,7 +514,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/en-us/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -530,7 +535,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/en-us/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -551,7 +556,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/en-us/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -571,7 +576,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/en-us/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -591,7 +596,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/en-us/excel/functions/pduration-function', }, ], functionParameter: { @@ -606,7 +611,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/en-us/excel/functions/pmt-function', }, ], functionParameter: { @@ -623,7 +628,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/en-us/excel/functions/ppmt-function', }, ], functionParameter: { @@ -641,7 +646,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/en-us/excel/functions/price-function', }, ], functionParameter: { @@ -660,7 +665,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/en-us/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -677,7 +682,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/en-us/excel/functions/pricemat-function', }, ], functionParameter: { @@ -695,7 +700,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/en-us/excel/functions/pv-function', }, ], functionParameter: { @@ -712,7 +717,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/en-us/excel/functions/rate-function', }, ], functionParameter: { @@ -730,7 +735,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/en-us/excel/functions/received-function', }, ], functionParameter: { @@ -747,7 +752,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/en-us/excel/functions/rri-function', }, ], functionParameter: { @@ -762,7 +767,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/en-us/excel/functions/sln-function', }, ], functionParameter: { @@ -777,7 +782,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/en-us/excel/functions/syd-function', }, ], functionParameter: { @@ -793,7 +798,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/en-us/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -808,7 +813,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/en-us/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -823,7 +828,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/en-us/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -838,7 +843,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/en-us/excel/functions/vdb-function', }, ], functionParameter: { @@ -857,7 +862,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/en-us/excel/functions/xirr-function', }, ], functionParameter: { @@ -872,7 +877,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/en-us/excel/functions/xnpv-function', }, ], functionParameter: { @@ -887,7 +892,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/en-us/excel/functions/yield-function', }, ], functionParameter: { @@ -906,7 +911,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/en-us/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -923,7 +928,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/en-us/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/es-ES.ts b/packages/sheets-formula/src/locale/function-list/financial/es-ES.ts index 1a53e35ca6..d36031bde5 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/es-es/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/es-es/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/es-es/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + cost: { name: 'costo', detail: 'El costo del activo.' }, + datePurchased: { name: 'fecha_compra', detail: 'La fecha de compra del activo.' }, + firstPeriod: { name: 'primer_periodo', detail: 'La fecha del final del primer periodo.' }, + salvage: { name: 'valor_residual', detail: 'El valor residual al final de la vida del activo.' }, + period: { name: 'periodo', detail: 'El periodo.' }, + rate: { name: 'tasa', detail: 'La tasa de depreciación.' }, + basis: { name: 'base', detail: 'La base del año que se usará.' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/es-es/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/es-es/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/es-es/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/es-es/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/es-es/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/es-es/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/es-es/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/es-es/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/es-es/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/es-es/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/es-es/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/es-es/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/es-es/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/es-es/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/es-es/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/es-es/excel/functions/effect-function', }, ], functionParameter: { @@ -336,7 +341,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/es-es/excel/functions/fv-function', }, ], functionParameter: { @@ -353,7 +358,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/es-es/excel/functions/fvschedule-function', }, ], functionParameter: { @@ -362,20 +367,20 @@ const locale: typeof enUS = { }, }, INTRATE: { - description: 'Devuelve la tasa de interés de un valor completamente invertido', - abstract: 'Devuelve la tasa de interés de un valor completamente invertido', + description: 'Devuelve la tasa de interés para la inversión total en un valor bursátil.', + abstract: 'Devuelve la tasa de interés para la inversión total en un valor bursátil.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/es-es/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: 'liquidación', detail: 'La fecha de liquidación del valor.' }, - maturity: { name: 'vencimiento', detail: 'La fecha de vencimiento del valor.' }, - investment: { name: 'inversión', detail: 'La cantidad invertida en el valor.' }, - redemption: { name: 'rescate', detail: 'La cantidad que se recibirá al vencimiento.' }, - basis: { name: 'base', detail: 'El tipo de base de recuento de días que se usará.' }, + settlement: { name: 'liquidación', detail: 'Obligatorio. La fecha de liquidación del valor bursátil. La fecha de liquidación del valor bursátil es la fecha posterior a la fecha de emisión en la que el comprador adquiere el valor bursátil.' }, + maturity: { name: 'vencimiento', detail: 'Obligatorio. La fecha de vencimiento del valor bursátil. La fecha de vencimiento es aquella en la que expira el valor bursátil.' }, + investment: { name: 'inversión', detail: 'Obligatorio. Es la cantidad de dinero invertido en el valor bursátil.' }, + redemption: { name: 'rescate', detail: 'Obligatorio. Es el valor que se recibirá en la fecha de vencimiento.' }, + basis: { name: 'base', detail: 'Opcional. Determina en qué tipo de base deben contarse los días.' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/es-es/excel/functions/ipmt-function', }, ], functionParameter: { @@ -397,12 +402,12 @@ const locale: typeof enUS = { }, }, IRR: { - description: 'Devuelve la tasa interna de retorno para una serie de flujos de efectivo', - abstract: 'Devuelve la tasa interna de retorno para una serie de flujos de efectivo', + description: 'Devuelve la tasa interna de retorno de los flujos de caja representados por los números del argumento valores. Estos flujos de caja no tienen por qué ser constantes, como es el caso en una anualidad. Sin embargo, los flujos de caja deben ocurrir en intervalos regulares, como meses o años. La tasa interna de retorno equivale a la tasa de interés producida por un proyecto de inversión con pagos (valores negativos) e ingresos (valores positivos) que se producen en períodos regulares.', + abstract: 'Devuelve la tasa interna de retorno de los flujos de caja representados por los números del argumento valores. Estos flujos de caja no tienen por qué ser constantes, como es el caso en una anualidad. Sin embargo, los flujos de caja deben ocurrir en intervalos regulares, como meses o años. La tasa interna de retorno equivale a la tasa de interés producida por un proyecto de inversión con pagos (valores negativos) e ingresos (valores positivos) que se producen en períodos regulares.', links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/es-es/excel/functions/irr-function', }, ], functionParameter: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/es-es/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/es-es/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/es-es/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/es-es/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/es-es/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/es-es/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/es-es/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/es-es/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/es-es/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/es-es/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/es-es/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/es-es/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/es-es/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/es-es/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/es-es/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/es-es/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/es-es/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/es-es/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/es-es/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/es-es/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/es-es/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/es-es/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/es-es/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/es-es/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/es-es/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/es-es/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/es-es/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/es-es/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/es-es/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/es-es/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/es-es/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/financial/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/financial/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/financial/fr-FR.ts index 60a22638e2..08b4234275 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/fr-FR.ts @@ -14,8 +14,934 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ACCRINT: { + description: 'Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu périodiquement.', + abstract: 'Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu périodiquement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre.' }, + firstInterest: { name: 'first_interest', detail: 'Obligatoire. Représente la date du premier paiement d’intérêt du titre.' }, + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + par: { name: 'par', detail: 'Obligatoire. Représente la valeur nominale du titre. Si vous omettez cet argument, la fonction INTERET.ACC utilise 1 000 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + calcMethod: { name: 'calc_method', detail: 'Optionnel. Représente une valeur logique qui spécifie les périodes utilisées pour calculer l’intérêt couru à partir de la date d’émission. La valeur VRAI (1) renvoie l’intérêt couru pour toutes les périodes. La valeur FAUX (0) renvoie l’intérêt couru à partir de la date du paiement du premier coupon. Si vous n’entrez pas d’argument, la valeur par défaut est VRAI.' }, + }, + }, + ACCRINTM: { + description: 'Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu à l’échéance.', + abstract: 'Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu à l’échéance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre.' }, + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date d’échéance du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + par: { name: 'par', detail: 'Obligatoire. Représente la valeur nominale du titre. Si vous omettez la valeur nominale, INTERET.ACC.MAT utilise 1 000 €.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + AMORDEGRC: { + description: 'Renvoie l’amortissement linéaire complet d’un bien à la fin d’une période fiscale donnée. Cette fonction est destinée à prendre en compte les règles comptables françaises. Si un bien est acquis en cours de période comptable, la règle du prorata temporis s’applique au calcul de l’amortissement. Cette fonction est similaire à la fonction AMORLINC, à ceci près qu’un coefficient d’amortissement est pris en compte dans le calcul, en fonction de la durée de vie du bien.', + abstract: 'Renvoie l’amortissement linéaire complet d’un bien à la fin d’une période fiscale donnée. Cette fonction est destinée à prendre en compte les règles comptables françaises. Si un bien est acquis en cours de période comptable, la règle du prorata temporis s’applique au calcul de l’amortissement. Cette fonction est similaire à la fonction AMORLINC, à ceci près qu’un coefficient d’amortissement est pris en compte dans le calcul, en fonction de la durée de vie du bien.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût d’acquisition du bien.' }, + datePurchased: { name: 'date_purchased', detail: 'Obligatoire. Représente la date d’acquisition du bien.' }, + firstPeriod: { name: 'first_period', detail: 'Obligatoire. Représente la date de la fin de la première période.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de la durée d’amortissement, ou valeur résiduelle.' }, + period: { name: 'period', detail: 'Obligatoire. Représente la période.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’amortissement.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente la base annuelle à utiliser.' }, + }, + }, + AMORLINC: { + description: 'Renvoie l’amortissement linéaire complet d’un bien à la fin d’une période fiscale donnée. Cette fonction est destinée à prendre en compte les règles comptables françaises. Si une immobilisation est acquise en cours de période comptable, la règle du prorata temporis s’applique au calcul de l’amortissement.', + abstract: 'Renvoie l’amortissement linéaire complet d’un bien à la fin d’une période fiscale donnée. Cette fonction est destinée à prendre en compte les règles comptables françaises. Si une immobilisation est acquise en cours de période comptable, la règle du prorata temporis s’applique au calcul de l’amortissement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût d’acquisition du bien.' }, + datePurchased: { name: 'date_purchased', detail: 'Obligatoire. Représente la date d’acquisition du bien.' }, + firstPeriod: { name: 'first_period', detail: 'Obligatoire. Représente la date de la fin de la première période.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de la durée d’amortissement, ou valeur résiduelle.' }, + period: { name: 'period', detail: 'Obligatoire. Représente la période.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’amortissement.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente la base annuelle à utiliser.' }, + }, + }, + COUPDAYBS: { + description: 'La fonction NB.JOURS.COUPON.PREC renvoie le nombre de jours entre le début de la période d’un coupon et sa date de liquidation.', + abstract: 'La fonction NB.JOURS.COUPON.PREC renvoie le nombre de jours entre le début de la période d’un coupon et sa date de liquidation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + COUPDAYS: { + description: 'Affiche le nombre de jours pour la période du coupon contenant la date de liquidation.', + abstract: 'Affiche le nombre de jours pour la période du coupon contenant la date de liquidation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + COUPDAYSNC: { + description: 'Calcule le nombre de jours entre la date de liquidation et la date du coupon suivant la date de liquidation.', + abstract: 'Calcule le nombre de jours entre la date de liquidation et la date du coupon suivant la date de liquidation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + COUPNCD: { + description: 'Renvoie un nombre qui représente la date du coupon suivant la date de liquidation.', + abstract: 'Renvoie un nombre qui représente la date du coupon suivant la date de liquidation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + COUPNUM: { + description: 'Renvoie le nombre de coupons dus entre la date de liquidation et la date d’échéance, arrondi au nombre entier de coupons le plus proche.', + abstract: 'Renvoie le nombre de coupons dus entre la date de liquidation et la date d’échéance, arrondi au nombre entier de coupons le plus proche.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + COUPPCD: { + description: 'Renvoie un nombre qui représente la date du coupon précédant la date de liquidation.', + abstract: 'Renvoie un nombre qui représente la date du coupon précédant la date de liquidation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + CUMIPMT: { + description: 'Cette fonction renvoie l’intérêt cumulé payé sur un emprunt entre l’argument période_début et l’argument période_fin.', + abstract: 'Cette fonction renvoie l’intérêt cumulé payé sur un emprunt entre l’argument période_début et l’argument période_fin.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle.' }, + startPeriod: { name: 'start_period', detail: 'Obligatoire. Représente la première période incluse dans le calcul. Les périodes de remboursement sont numérotées à partir de 1.' }, + endPeriod: { name: 'end_period', detail: 'Obligatoire. Représente la dernière période incluse dans le calcul.' }, + type: { name: 'type', detail: 'Obligatoire. Correspond à l’échéance des remboursements.' }, + }, + }, + CUMPRINC: { + description: 'Renvoie le principal cumulé payé sur un emprunt entre deux périodes.', + abstract: 'Renvoie le principal cumulé payé sur un emprunt entre deux périodes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle.' }, + startPeriod: { name: 'start_period', detail: 'Obligatoire. Représente la première période incluse dans le calcul. Les périodes de remboursement sont numérotées à partir de 1.' }, + endPeriod: { name: 'end_period', detail: 'Obligatoire. Représente la dernière période incluse dans le calcul.' }, + type: { name: 'type', detail: 'Obligatoire. Correspond à l’échéance des remboursements.' }, + }, + }, + DB: { + description: 'Renvoie l’amortissement d’un bien pour une période donnée selon la méthode de l’amortissement dégressif à taux fixe.', + abstract: 'Renvoie l’amortissement d’un bien pour une période donnée selon la méthode de l’amortissement dégressif à taux fixe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût initial du bien.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de l’amortissement, aussi appelée valeur résiduelle du bien.' }, + life: { name: 'life', detail: 'Obligatoire. Représente le nombre de périodes pendant lesquelles le bien est amorti, aussi appelée durée de vie utile du bien.' }, + period: { name: 'period', detail: 'Obligatoire. Représente la période pour laquelle vous voulez calculer un amortissement. La période doit être exprimée dans la même unité que la durée.' }, + month: { name: 'month', detail: 'Optionnel. Représente le nombre de mois de la première année. Si l’argument mois est omis, sa valeur par défaut est 12.' }, + }, + }, + DDB: { + description: 'Renvoie l’amortissement d’un bien pour une période donnée selon la méthode de l’amortissement dégressif double ou une autre méthode indiquée.', + abstract: 'Renvoie l’amortissement d’un bien pour une période donnée selon la méthode de l’amortissement dégressif double ou une autre méthode indiquée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût initial du bien.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de l’amortissement, aussi appelée valeur résiduelle du bien. Cette valeur peut être 0.' }, + life: { name: 'life', detail: 'Obligatoire. Représente le nombre de périodes pendant lesquelles le bien est amorti, aussi appelée durée de vie utile du bien.' }, + period: { name: 'period', detail: 'Obligatoire. Représente la période pour laquelle vous voulez calculer un amortissement. La période doit être exprimée dans la même unité que la durée.' }, + factor: { name: 'factor', detail: 'Optionnel. Représente le taux de l’amortissement dégressif. Si facteur est omis, la valeur par défaut est 2, méthode de l’amortissement dégressif à taux double.' }, + }, + }, + DISC: { + description: 'Renvoie le taux d’escompte d’un titre.', + abstract: 'Renvoie le taux d’escompte d’un titre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'La date de règlement du titre.' }, + maturity: { name: 'maturity', detail: 'La date d’échéance du titre.' }, + pr: { name: 'pr', detail: 'Le prix du titre pour une valeur nominale de 100 $.' }, + redemption: { name: 'redemption', detail: 'La valeur de remboursement du titre pour une valeur nominale de 100 $.' }, + basis: { name: 'basis', detail: 'Le type de base de décompte des jours à utiliser.' }, + }, + }, + DOLLARDE: { + description: 'Convertit un prix en dollars exprimé sous forme de fraction en prix en dollars exprimé sous forme décimale.', + abstract: 'Convertit un prix en dollars exprimé sous forme de fraction en prix en dollars exprimé sous forme décimale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Obligatoire. Représente un nombre exprimé sous la forme de parties entière et fractionnaire, séparées par un symbole décimal.' }, + fraction: { name: 'fraction', detail: 'Obligatoire. Représente le nombre entier à utiliser comme dénominateur de la fraction.' }, + }, + }, + DOLLARFR: { + description: 'Convertit un prix en dollars exprimé sous forme décimale en prix en dollars exprimé sous forme de fraction.', + abstract: 'Convertit un prix en dollars exprimé sous forme décimale en prix en dollars exprimé sous forme de fraction.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Obligatoire. Nombre décimal.' }, + fraction: { name: 'fraction', detail: 'Obligatoire. Représente le nombre entier à utiliser comme dénominateur de la fraction.' }, + }, + }, + DURATION: { + description: 'La fonction DURATION , l’une des fonctions Financières , retourne la durée de Macauley pour une valeur nominale supposée de 100 $. La durée est définie comme la moyenne pondérée de la valeur actuelle des flux de trésorerie et est utilisée comme mesure de la réponse du prix d’une obligation à l’évolution du rendement.', + abstract: 'La fonction DURATION , l’une des fonctions Financières , retourne la durée de Macauley pour une valeur nominale supposée de 100 $. La durée est définie comme la moyenne pondérée de la valeur actuelle des flux de trésorerie et est utilisée comme mesure de la réponse du prix d’une obligation à l’évolution du rendement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + coupon: { name: 'coupon', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + EFFECT: { + description: 'Returns the effective annual interest rate', + abstract: 'Returns the effective annual interest rate', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'The nominal interest rate.' }, + npery: { name: 'npery', detail: 'The number of compounding periods per year.' }, + }, + }, + FV: { + description: 'VC , l’une des fonctions Financier , calcule valeur capitalisée d’un investissement sur la base d’un taux d’intérêt constant. Vous pouvez utiliser la fonction VC pour calculer des paiements périodiques, constants, ou un montant forfaitaire unique.', + abstract: 'VC , l’une des fonctions Financier , calcule valeur capitalisée d’un investissement sur la base d’un taux d’intérêt constant. Vous pouvez utiliser la fonction VC pour calculer des paiements périodiques, constants, ou un montant forfaitaire unique.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt par période.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement au cours de l’opération.' }, + pmt: { name: 'pmt', detail: 'Obligatoire. Représente le montant d’un versement périodique ; celui-ci reste constant pendant toute la durée de l’opération. En règle générale, vpm comprend le principal et les intérêts, mais aucune autre charge, ni impôt. Si pmt est omis, vous devez inclure l’argument pv.' }, + pv: { name: 'pv', detail: 'Optionnel. Représente la valeur actuelle ou la somme forfaitaire représentant aujourd’hui une série de remboursements futurs. Si l’argument va n’est pas spécifié, la valeur prise en compte par défaut est 0 (zéro), et vous devez inclure l’argument vpm.' }, + type: { name: 'type', detail: 'Optionnel. Peut prendre les valeurs 0 ou 1, et indique l’échéance des paiements. Si vous ne spécifiez pas l’argument type, sa valeur par défaut est 0.' }, + }, + }, + FVSCHEDULE: { + description: 'Calcule la valeur capitalisée d’un investissement en appliquant une série de taux d’intérêt composites. Utilisez la fonction VC.PAIEMENTS pour calculer la valeur capitalisée d’un investissement à taux variable ou révisable.', + abstract: 'Calcule la valeur capitalisée d’un investissement en appliquant une série de taux d’intérêt composites. Utilisez la fonction VC.PAIEMENTS pour calculer la valeur capitalisée d’un investissement à taux variable ou révisable.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Obligatoire. Représente la valeur actuelle.' }, + schedule: { name: 'schedule', detail: 'Obligatoire. Représente la matrice des taux d’intérêt à appliquer.' }, + }, + }, + INTRATE: { + description: 'Affiche le taux d’intérêt d’un titre totalement investi.', + abstract: 'Affiche le taux d’intérêt d’un titre totalement investi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + investment: { name: 'investment', detail: 'Obligatoire. Représente le montant investi dans le titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente le montant à percevoir à l’échéance.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + IPMT: { + description: 'Renvoie, pour une période donnée, le montant des intérêts dus pour un emprunt remboursé par des versements périodiques constants, avec un taux d’intérêt constant.', + abstract: 'Renvoie, pour une période donnée, le montant des intérêts dus pour un emprunt remboursé par des versements périodiques constants, avec un taux d’intérêt constant.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt par période.' }, + per: { name: 'per', detail: 'Obligatoire. Période pour laquelle vous souhaitez trouver l’intérêt et doit être comprise entre 1 et nper.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement au cours de l’opération.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle ou la somme forfaitaire représentant aujourd’hui une série de remboursements futurs.' }, + fv: { name: 'fv', detail: 'Optionnel. Représente la valeur capitalisée, c’est-à-dire le montant que vous souhaitez obtenir après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (par exemple, la valeur capitalisée d’un emprunt est égale à 0).' }, + type: { name: 'type', detail: 'Optionnel. Peut prendre les valeurs 0 ou 1, et indique l’échéance des paiements. Si vous ne spécifiez pas l’argument type, sa valeur par défaut est 0.' }, + }, + }, + IRR: { + description: 'Retourne le taux de rendement interne d’une série de flux de trésorerie représentés par les nombres en valeurs. Ces flux de trésorerie n’ont pas besoin d’être pairs, comme ils le seraient pour une annuité. Toutefois, les flux de trésorerie doivent se produire à intervalles réguliers, par exemple mensuellement ou annuellement. Le taux de rendement interne est le taux d’intérêt reçu pour un investissement composé de paiements (valeurs négatives) et de revenus (valeurs positives) qui se produisent à des périodes régulières.', + abstract: 'Retourne le taux de rendement interne d’une série de flux de trésorerie représentés par les nombres en valeurs. Ces flux de trésorerie n’ont pas besoin d’être pairs, comme ils le seraient pour une annuité. Toutefois, les flux de trésorerie doivent se produire à intervalles réguliers, par exemple mensuellement ou annuellement. Le taux de rendement interne est le taux d’intérêt reçu pour un investissement composé de paiements (valeurs négatives) et de revenus (valeurs positives) qui se produisent à des périodes régulières.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Matrice ou référence à des cellules contenant les nombres pour lesquels vous souhaitez calculer le taux de rentabilité interne.\n1. values doit contenir au moins une valeur positive et une valeur négative.\n2. IRR utilise l’ordre des valeurs pour interpréter l’ordre des flux de trésorerie. Saisissez les paiements et recettes dans l’ordre souhaité.\n3. Si une matrice ou une référence contient du texte, des valeurs logiques ou des cellules vides, ces valeurs sont ignorées.' }, + guess: { name: 'guess', detail: 'Nombre que vous estimez proche du résultat de IRR.' }, + }, + }, + ISPMT: { + description: 'Calcule les intérêts payés (ou reçus) pour la période spécifiée d’un prêt (ou d’un investissement) avec des paiements de capital pairs.', + abstract: 'Calcule les intérêts payés (ou reçus) pour la période spécifiée d’un prêt (ou d’un investissement) avec des paiements de capital pairs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt de l’investissement.' }, + per: { name: 'per', detail: 'Obligatoire. Période pour laquelle vous souhaitez trouver l’intérêt, et doit être comprise entre 1 et Nper.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement pour l’investissement.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle d’un investissement. Pour un prêt, Pv est le montant du prêt.' }, + }, + }, + MDURATION: { + description: 'Renvoie la durée de Macauley modifiée pour un titre ayant une valeur nominale hypothétique de 100 €.', + abstract: 'Renvoie la durée de Macauley modifiée pour un titre ayant une valeur nominale hypothétique de 100 €.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + coupon: { name: 'coupon', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + MIRR: { + description: 'Renvoie le taux interne de rentabilité modifié, pour une série de flux financiers périodiques. TRIM prend en compte le coût de l’investissement et l’intérêt perçu sur le placement des liquidités.', + abstract: 'Renvoie le taux interne de rentabilité modifié, pour une série de flux financiers périodiques. TRIM prend en compte le coût de l’investissement et l’intérêt perçu sur le placement des liquidités.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Obligatoire. Représente une matrice ou une référence à des cellules contenant des nombres. Ces nombres correspondent à une série de décaissements (valeurs négatives) et d’encaissements (valeurs positives) périodiques. Les valeurs doivent contenir au moins une valeur positive et une valeur négative pour calculer le taux de retour interne modifié. Sinon, la fonction MIRR renvoie le #DIV/0 ! #VALEUR!. Si une matrice ou une référence utilisée comme argument contient du texte, des valeurs logiques ou des cellules vides, ces valeurs ne sont pas prises en compte. En revanche, les cellules contenant la valeur 0 sont prises en compte.' }, + financeRate: { name: 'finance_rate', detail: 'Obligatoire. Représente le taux d’intérêt payé pour le financement de la trésorerie.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Obligatoire. Représente le taux d’intérêt perçu sur le placement de la trésorerie excédentaire.' }, + }, + }, + NOMINAL: { + description: 'Cette fonction renvoie le taux d’intérêt nominal annuel calculé à partir du taux effectif et du nombre de périodes par an pour le calcul des intérêts composés.', + abstract: 'Cette fonction renvoie le taux d’intérêt nominal annuel calculé à partir du taux effectif et du nombre de périodes par an pour le calcul des intérêts composés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'Obligatoire. Représente le taux d’intérêt effectif.' }, + npery: { name: 'npery', detail: 'Obligatoire. Représente le nombre de périodes par an pour le calcul des intérêts composés.' }, + }, + }, + NPER: { + description: 'Renvoie le nombre de versements nécessaires pour rembourser un emprunt à taux d’intérêt constant, sachant que ces versements doivent être constants et périodiques.', + abstract: 'Renvoie le nombre de versements nécessaires pour rembourser un emprunt à taux d’intérêt constant, sachant que ces versements doivent être constants et périodiques.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt par période.' }, + pmt: { name: 'pmt', detail: 'Obligatoire. Représente le montant d’un versement périodique ; celui-ci reste constant pendant toute la durée de l’opération. En règle générale, vpm comprend le principal et les intérêts, mais aucune autre charge, ni impôt.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle ou la somme forfaitaire représentant aujourd’hui une série de remboursements futurs.' }, + fv: { name: 'fv', detail: 'Optionnel. Représente la valeur capitalisée, c’est-à-dire le montant que vous souhaitez obtenir après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (par exemple, la valeur capitalisée d’un emprunt est égale à 0).' }, + type: { name: 'type', detail: 'Optionnel. Représente le nombre 0 ou 1, et indique quand les paiements doivent être effectués.' }, + }, + }, + NPV: { + description: 'Calcule la valeur actuelle nette d’un investissement en utilisant un taux d’escompte ainsi qu’une série de décaissements (valeurs négatives) et d’encaissements (valeurs positives) futurs.', + abstract: 'Calcule la valeur actuelle nette d’un investissement en utilisant un taux d’escompte ainsi qu’une série de décaissements (valeurs négatives) et d’encaissements (valeurs positives) futurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’actualisation pour une période.' }, + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Elles représentent 1 à 254 arguments représentant les encaissements et les décaissements. valeur1, valeur2,... doivent intervenir à intervalles réguliers et à la fin de chaque période. VAN utilise l’ordre de valeur1, valeur2,... pour interpréter celui des flux financiers. Il convient donc de veiller à entrer les décaissements et encaissements dans le bon ordre. Les arguments représentant des cellules vides, des valeurs logiques ou des nombres représentés sous forme de texte, des valeurs d’erreur ou du texte ne pouvant pas être converti en nombre ne sont pas pris en compte. Si un argument est une matrice ou une référence, seuls les nombres contenus dans cette matrice ou cette référence sont pris en compte. Les cellules vides, les valeurs logiques, le texte ou les valeurs d’erreur figurant dans la matrice ou la référence ne sont pas pris en compte.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Elles représentent 1 à 254 arguments représentant les encaissements et les décaissements. valeur1, valeur2,... doivent intervenir à intervalles réguliers et à la fin de chaque période. VAN utilise l’ordre de valeur1, valeur2,... pour interpréter celui des flux financiers. Il convient donc de veiller à entrer les décaissements et encaissements dans le bon ordre. Les arguments représentant des cellules vides, des valeurs logiques ou des nombres représentés sous forme de texte, des valeurs d’erreur ou du texte ne pouvant pas être converti en nombre ne sont pas pris en compte. Si un argument est une matrice ou une référence, seuls les nombres contenus dans cette matrice ou cette référence sont pris en compte. Les cellules vides, les valeurs logiques, le texte ou les valeurs d’erreur figurant dans la matrice ou la référence ne sont pas pris en compte.' }, + }, + }, + ODDFPRICE: { + description: 'Cette fonction renvoie le prix par tranche de valeur nominale de 100 € d’un titre dont la première période est irrégulière (courte ou longue).', + abstract: 'Cette fonction renvoie le prix par tranche de valeur nominale de 100 € d’un titre dont la première période est irrégulière (courte ou longue).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre.' }, + firstCoupon: { name: 'first_coupon', detail: 'Obligatoire. Représente la date du premier coupon du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + ODDFYIELD: { + description: 'Cette fonction calcule le rendement d’un titre dont la première période de coupon est irrégulière (courte ou longue).', + abstract: 'Cette fonction calcule le rendement d’un titre dont la première période de coupon est irrégulière (courte ou longue).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre.' }, + firstCoupon: { name: 'first_coupon', detail: 'Obligatoire. Représente la date du premier coupon du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + ODDLPRICE: { + description: 'Cette fonction renvoie le prix par tranche de valeur nominale de 100 € d’un titre dont la dernière période de coupon est irrégulière (courte ou longue).', + abstract: 'Cette fonction renvoie le prix par tranche de valeur nominale de 100 € d’un titre dont la dernière période de coupon est irrégulière (courte ou longue).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + lastInterest: { name: 'last_interest', detail: 'Obligatoire. Représente la date du dernier paiement d’intérêt du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + ODDLYIELD: { + description: 'Cette fonction calcule le rendement d’un titre dont la dernière période de coupon est irrégulière (courte ou longue).', + abstract: 'Cette fonction calcule le rendement d’un titre dont la dernière période de coupon est irrégulière (courte ou longue).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + lastInterest: { name: 'last_interest', detail: 'Obligatoire. Représente la date du dernier paiement d’intérêt du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + PDURATION: { + description: 'Renvoie le nombre de périodes requises pour qu’un investissement atteigne une valeur spécifiée.', + abstract: 'Renvoie le nombre de périodes requises pour qu’un investissement atteigne une valeur spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Taux est le taux d’intérêt par période.' }, + pv: { name: 'pv', detail: 'Obligatoire. Va représente la valeur actuelle de l’investissement.' }, + fv: { name: 'fv', detail: 'Obligatoire. Vc est la valeur future souhaitée de l’investissement.' }, + }, + }, + PMT: { + description: 'VPM , l’une des fonctions financières , calcule le remboursement d’un emprunt sur la base de remboursements et d’un taux d’intérêt constants.', + abstract: 'VPM , l’une des fonctions financières , calcule le remboursement d’un emprunt sur la base de remboursements et d’un taux d’intérêt constants.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt de l’emprunt.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre de remboursements pour l’emprunt.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle ou la valeur que représente à la date d’aujourd’hui une série de remboursements futurs ; il s’agit du principal de l’emprunt.' }, + fv: { name: 'fv', detail: 'Optionnel. Représente la valeur capitalisée, c’est-à-dire le montant que vous souhaitez obtenir après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (zéro), c’est-à-dire que la valeur capitalisée d’un emprunt est égale à 0.' }, + type: { name: 'type', detail: 'Optionnel. Représente le nombre 0 (zéro) ou 1 et indique quand les paiements doivent être effectués.' }, + }, + }, + PPMT: { + description: 'Calcule, pour une période donnée, la part de remboursement du principal d’un investissement sur la base de remboursements périodiques et d’un taux d’intérêt constants.', + abstract: 'Calcule, pour une période donnée, la part de remboursement du principal d’un investissement sur la base de remboursements périodiques et d’un taux d’intérêt constants.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt par période.' }, + per: { name: 'per', detail: 'Obligatoire. Indique la période et doit être compris entre 1 et npm.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement au cours de l’opération.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle, c’est-à-dire la valeur que représente à la date d’aujourd’hui une série de remboursements futurs.' }, + fv: { name: 'fv', detail: 'Optionnel. Représente la valeur capitalisée, c’est-à-dire le montant que vous souhaitez obtenir après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (zéro), c’est-à-dire que la valeur capitalisée d’un emprunt est égale à 0.' }, + type: { name: 'type', detail: 'Optionnel. Représente le nombre 0 ou 1, et indique quand les paiements doivent être effectués.' }, + }, + }, + PRICE: { + description: 'Renvoie le prix d’un titre rapportant des intérêts périodiques, pour une valeur nominale de 100 €.', + abstract: 'Renvoie le prix d’un titre rapportant des intérêts périodiques, pour une valeur nominale de 100 €.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + PRICEDISC: { + description: 'Renvoie la valeur d’encaissement d’un escompte sur un titre, pour une valeur nominale de 100 €.', + abstract: 'Renvoie la valeur d’encaissement d’un escompte sur un titre, pour une valeur nominale de 100 €.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + discount: { name: 'discount', detail: 'Obligatoire. Représente le taux d’escompte du titre.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + PRICEMAT: { + description: 'Renvoie le prix d’un titre dont la valeur nominale est 100 € et qui rapporte des intérêts à l’échéance.', + abstract: 'Renvoie le prix d’un titre dont la valeur nominale est 100 € et qui rapporte des intérêts à l’échéance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre, exprimée sous la forme d’un numéro de série.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre à la date d’émission.' }, + yld: { name: 'yld', detail: 'Obligatoire. Représente le taux de rendement annuel du titre.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + PV: { + description: 'VA , l’une des fonctions Financier , calcule la valeur actuelle d’un emprunt ou d’un investissement sur la base d’un taux d’intérêt constant. Vous pouvez utiliser la fonction VA pour calculer des paiements périodiques et constants (comme un crédit immobilier ou tout autre type de prêt) ou la valeur capitalisée de votre objectif d’investissement.', + abstract: 'VA , l’une des fonctions Financier , calcule la valeur actuelle d’un emprunt ou d’un investissement sur la base d’un taux d’intérêt constant. Vous pouvez utiliser la fonction VA pour calculer des paiements périodiques et constants (comme un crédit immobilier ou tout autre type de prêt) ou la valeur capitalisée de votre objectif d’investissement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt par période. Par exemple, si vous obtenez un emprunt pour l’achat d’une voiture à un taux d’intérêt annuel de 10 % et que vos remboursements sont mensuels, le taux d’intérêt mensuel sera de 10 %/12, soit 0,83 %. Le chiffre entré dans la formule en tant que taux peut être 10 %/12, 0,83 % ou 0,0083.' }, + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de paiement au cours de l’opération. Si, pour l’achat d’une voiture, vous obtenez un emprunt sur quatre ans, remboursable mensuellement, cet emprunt s’étend sur 4*12 (ou 48) périodes. Le chiffre entré dans la formule en tant qu’argument npm sera 48.' }, + pmt: { name: 'pmt', detail: 'Obligatoire. Représente le montant du paiement pour chaque période et reste constant pendant toute la durée de l’opération. En règle générale, vpm comprend le montant principal et les intérêts mais exclut toute autre charge ou tout autre impôt. Par exemple, les paiements mensuels sur un prêt auto de 10 000 $ et de quatre ans à 12 % sont de 263,33 $. Vous devez entrer -263,33 dans la formule en tant que pmt. Si pmt est omis, vous devez inclure l’argument fv.' }, + fv: { name: 'fv', detail: 'Optionnel. La valeur future ou le solde en espèces que vous souhaitez atteindre après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (par exemple, la valeur capitalisée d’un emprunt est égale à 0). Ainsi, si vous souhaitez économiser 50 000 € pour financer un projet précis dans 18 ans, 50 000 € est la valeur capitalisée à atteindre. Vous pouvez faire une estimation du taux d’intérêt et déterminer le montant que vous devez épargner chaque mois. Si l’argument vc est omis, vous devez inclure l’argument vpm.' }, + type: { name: 'type', detail: 'Optionnel. Représente le nombre 0 ou 1, et indique quand les paiements doivent être effectués.' }, + }, + }, + RATE: { + description: 'Calcule le taux d’intérêt par période d’un investissement donné. La fonction TAUX est calculée par itération et peut n’avoir aucune solution ou en avoir plusieurs. La fonction renvoie la valeur d’erreur #NOMBRE! si, après 20 itérations, les résultats ne convergent pas à 0,0000001 près.', + abstract: 'Calcule le taux d’intérêt par période d’un investissement donné. La fonction TAUX est calculée par itération et peut n’avoir aucune solution ou en avoir plusieurs. La fonction renvoie la valeur d’erreur #NOMBRE! si, après 20 itérations, les résultats ne convergent pas à 0,0000001 près.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Obligatoire. Représente le nombre total de périodes de remboursement au cours de l’opération.' }, + pmt: { name: 'pmt', detail: 'Obligatoire. Représente le montant du paiement pour chaque période et reste constant pendant toute la durée de l’opération. En règle générale, vpm comprend le montant principal et les intérêts mais exclut toute autre charge ou tout autre impôt. Si l’argument vpm est omis, vous devez inclure l’argument vc.' }, + pv: { name: 'pv', detail: 'Obligatoire. Représente la valeur actuelle, c’est-à-dire la valeur que représente à la date d’aujourd’hui une série de remboursements futurs.' }, + fv: { name: 'fv', detail: 'Optionnel. Représente la valeur capitalisée, c’est-à-dire le montant que vous souhaitez obtenir après le dernier paiement. Si vc est omis, la valeur par défaut est 0 (par exemple, la valeur capitalisée d’un emprunt est égale à 0). Si l’argument vc est omis, vous devez inclure l’argument vpm.' }, + type: { name: 'type', detail: 'Optionnel. Représente le nombre 0 ou 1, et indique quand les paiements doivent être effectués.' }, + guess: { name: 'guess', detail: 'Optionnel. Représente votre estimation quant à la valeur du taux. Si l’argument estimation est omis, la valeur par défaut est 10 %. Si les résultats de la fonction TAUX ne convergent pas, essayez différentes valeurs pour l’argument estimation. Normalement, les résultats de TAUX convergent si l’argument estimation est compris entre 0 et 1.' }, + }, + }, + RECEIVED: { + description: 'Renvoie le montant perçu à l’échéance pour un titre entièrement investi.', + abstract: 'Renvoie le montant perçu à l’échéance pour un titre entièrement investi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + investment: { name: 'investment', detail: 'Obligatoire. Représente le montant investi dans le titre.' }, + discount: { name: 'discount', detail: 'Obligatoire. Représente le taux d’escompte du titre.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + RRI: { + description: 'Renvoie un taux d’intérêt équivalent pour la croissance d’un investissement.', + abstract: 'Renvoie un taux d’intérêt équivalent pour la croissance d’un investissement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Obligatoire. Npm est le nombre de périodes pour l’investissement.' }, + pv: { name: 'pv', detail: 'Obligatoire. Va représente la valeur actuelle de l’investissement.' }, + fv: { name: 'fv', detail: 'Obligatoire. Vf est la valeur future de l’investissement.' }, + }, + }, + SLN: { + description: 'Calcule l’amortissement linéaire d’un bien pour une période donnée.', + abstract: 'Calcule l’amortissement linéaire d’un bien pour une période donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût initial du bien.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de l’amortissement (aussi appelée valeur résiduelle du bien).' }, + life: { name: 'life', detail: 'Obligatoire. Représente le nombre de périodes pendant lesquelles le bien est amorti (aussi appelée durée de vie utile du bien).' }, + }, + }, + SYD: { + description: 'Calcule l’amortissement d’un bien pour une période donnée sur la base de la méthode américaine Sum-of-Years Digits (amortissement dégressif à taux décroissant appliqué à une valeur constante).', + abstract: 'Calcule l’amortissement d’un bien pour une période donnée sur la base de la méthode américaine Sum-of-Years Digits (amortissement dégressif à taux décroissant appliqué à une valeur constante).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût initial du bien.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de l’amortissement (aussi appelée valeur résiduelle du bien).' }, + life: { name: 'life', detail: 'Obligatoire. Représente le nombre de périodes pendant lesquelles le bien est amorti (aussi appelée durée de vie utile du bien).' }, + per: { name: 'per', detail: 'Obligatoire. Représente la période et doit être exprimée dans la même unité que la durée.' }, + }, + }, + TBILLEQ: { + description: 'Renvoie le taux d’escompte rationnel d’un bon du Trésor.', + abstract: 'Renvoie le taux d’escompte rationnel d’un bon du Trésor.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du bon du Trésor. Cette date correspond à la date suivant la date d’émission, lorsque le bon du Trésor est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du bon du Trésor. Cette date correspond à la date d’expiration du bon du Trésor.' }, + discount: { name: 'discount', detail: 'Obligatoire. Représente le taux d’escompte du bon du Trésor.' }, + }, + }, + TBILLPRICE: { + description: 'Renvoie le prix d’un bon du Trésor d’une valeur nominale de 100 €.', + abstract: 'Renvoie le prix d’un bon du Trésor d’une valeur nominale de 100 €.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du bon du Trésor. Cette date correspond à la date suivant la date d’émission, lorsque le bon du Trésor est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du bon du Trésor. Cette date correspond à la date d’expiration du bon du Trésor.' }, + discount: { name: 'discount', detail: 'Obligatoire. Représente le taux d’escompte du bon du Trésor.' }, + }, + }, + TBILLYIELD: { + description: 'Calcule le taux de rendement d’un bon du Trésor.', + abstract: 'Calcule le taux de rendement d’un bon du Trésor.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du bon du Trésor. Cette date correspond à la date suivant la date d’émission, lorsque le bon du Trésor est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du bon du Trésor. Cette date correspond à la date d’expiration du bon du Trésor.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du bon du Trésor par tranche de valeur nominale de 100 €.' }, + }, + }, + VDB: { + description: 'Calcule l’amortissement d’un bien pour toute période spécifiée, y compris une période partielle, en utilisant la méthode de l’amortissement dégressif à taux double ou selon un coefficient à spécifier. VDB signifie « variable declining balance », qui est l’équivalent d’amortissement dégressif à taux variable.', + abstract: 'Calcule l’amortissement d’un bien pour toute période spécifiée, y compris une période partielle, en utilisant la méthode de l’amortissement dégressif à taux double ou selon un coefficient à spécifier. VDB signifie « variable declining balance », qui est l’équivalent d’amortissement dégressif à taux variable.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obligatoire. Représente le coût initial du bien.' }, + salvage: { name: 'salvage', detail: 'Obligatoire. Représente la valeur du bien au terme de l’amortissement (aussi appelée valeur résiduelle du bien). Cette valeur peut être 0.' }, + life: { name: 'life', detail: 'Obligatoire. Représente le nombre de périodes pendant lesquelles le bien est amorti (aussi appelée durée de vie utile du bien).' }, + startPeriod: { name: 'start_period', detail: 'Obligatoire. Représente le début de la période pour laquelle vous voulez calculer un amortissement. L’argument période_début doit être exprimé dans la même unité que durée.' }, + endPeriod: { name: 'end_period', detail: 'Obligatoire. Représente la fin de la période pour laquelle vous voulez calculer un amortissement. L’argument période_fin doit être exprimé dans la même unité que l’argument durée.' }, + factor: { name: 'factor', detail: 'Optionnel. Représente le taux de l’amortissement dégressif. Si facteur est omis, la valeur par défaut est 2 (méthode de l’amortissement dégressif à taux double). Modifiez la valeur de facteur si vous ne souhaitez pas utiliser la méthode de l’amortissement dégressif à taux double. Pour plus d’informations sur cette méthode, reportez-vous à la fonction DDB.' }, + noSwitch: { name: 'no_switch', detail: 'Optionnel. Représente une valeur logique indiquant s’il faut utiliser la méthode de l’amortissement linéaire lorsqu’elle donne un résultat supérieur à celui obtenu avec la méthode de l’amortissement dégressif. Si valeur_log est VRAI, Microsoft Excel n’applique pas la méthode de l’amortissement linéaire, même si cette méthode donne un résultat supérieur à celui qui serait obtenu avec la méthode de l’amortissement dégressif. Si l’argument valeur_log est FAUX ou omis, Microsoft Excel applique la méthode de l’amortissement linéaire lorsque cette méthode donne un résultat supérieur à celui qui serait obtenu avec la méthode de l’amortissement dégressif.' }, + }, + }, + XIRR: { + description: 'Calcule le taux de rentabilité interne d’un ensemble de paiements. Pour calculer le taux de rentabilité interne d’un ensemble de paiements périodiques, utilisez la fonction TRI.', + abstract: 'Calcule le taux de rentabilité interne d’un ensemble de paiements. Pour calculer le taux de rentabilité interne d’un ensemble de paiements périodiques, utilisez la fonction TRI.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Obligatoire. Représente une série de flux nets de trésorerie correspondant à l’échéancier de paiement déterminé par l’argument date. Le premier paiement, facultatif, représente le coût ou le versement éventuellement effectué en début de période d’investissement. Si la première valeur est un coût ou un paiement, elle doit être négative. Tous les paiements qui suivent sont actualisés sur la base d’une année de 365 jours. La série de valeurs doit contenir au moins une valeur positive et une valeur négative.' }, + dates: { name: 'dates', detail: 'Obligatoire. Représente l’échéancier de paiement correspondant aux flux nets de trésorerie. Les dates peuvent se produire dans n’importe quel ordre. Les dates doivent être entrées en utilisant la fonction DATE, ou sous la forme de résultats d’autres formules ou fonctions. Par exemple, utilisez DATE(2008;5;23) pour le 23e jour du mois de mai 2008. Des problèmes peuvent survenir si les dates sont entrées sous forme de texte. .' }, + guess: { name: 'guess', detail: 'Optionnel. Représente un nombre que vous supposez proche du résultat attendu de la fonction TRI.PAIEMENTS.' }, + }, + }, + XNPV: { + description: 'Donne la valeur actuelle nette d’un ensemble de paiements. Pour calculer la valeur actuelle nette d’un ensemble de paiements périodiques, utilisez la fonction VAN.', + abstract: 'Donne la valeur actuelle nette d’un ensemble de paiements. Pour calculer la valeur actuelle nette d’un ensemble de paiements périodiques, utilisez la fonction VAN.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’actualisation applicable aux flux nets de trésorerie.' }, + values: { name: 'values', detail: 'Obligatoire. Représente une série de flux nets de trésorerie correspondant à l’échéancier de paiement déterminé par l’argument date. Le premier paiement, facultatif, représente le coût ou le versement éventuellement effectué en début de période d’investissement. Si la première valeur est un coût ou un paiement, elle doit être négative. Tous les paiements qui suivent sont actualisés sur la base d’une année de 365 jours. La série de valeurs doit contenir au moins une valeur positive et une valeur négative.' }, + dates: { name: 'dates', detail: 'Obligatoire. Représente l’échéancier de paiement correspondant aux flux nets de trésorerie. La première date de paiement indique le point de départ de l’échéancier. Toutes les autres dates doivent lui être postérieures, mais leur ordre d’intervention est indifférent.' }, + }, + }, + YIELD: { + description: 'Calcule le rendement d’un titre rapportant des intérêts périodiquement. Utilisez la fonction RENDEMENT.TITRE pour calculer le taux de rendement d’une obligation.', + abstract: 'Calcule le rendement d’un titre rapportant des intérêts périodiquement. Utilisez la fonction RENDEMENT.TITRE pour calculer le taux de rendement d’une obligation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux annuel du coupon du titre.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du titre par tranche de valeur nominale de 100 €.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + frequency: { name: 'frequency', detail: 'Obligatoire. Représente le nombre de coupons payés par an. Si le paiement est annuel, la fréquence = 1 ; s’il est semestriel, la fréquence = 2 ; et s’il est trimestriel, la fréquence = 4.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + YIELDDISC: { + description: 'Calcule le taux de rendement d’un emprunt à intérêt simple.', + abstract: 'Calcule le taux de rendement d’un emprunt à intérêt simple.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du titre par tranche de valeur nominale de 100 €.' }, + redemption: { name: 'redemption', detail: 'Obligatoire. Représente la valeur de remboursement du titre par tranche de valeur nominale de 100 €.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, + YIELDMAT: { + description: 'Renvoie le rendement annuel d’un titre qui rapporte des intérêts à l’échéance.', + abstract: 'Renvoie le rendement annuel d’un titre qui rapporte des intérêts à l’échéance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obligatoire. Représente la date de règlement du titre. Cette date correspond à la date suivant la date d’émission, lorsque le titre est cédé à l’acheteur.' }, + maturity: { name: 'maturity', detail: 'Obligatoire. Représente la date d’échéance du titre. Cette date correspond à la date d’expiration du titre.' }, + issue: { name: 'issue', detail: 'Obligatoire. Représente la date d’émission du titre, exprimée sous la forme d’un numéro de série.' }, + rate: { name: 'rate', detail: 'Obligatoire. Représente le taux d’intérêt du titre à la date d’émission.' }, + pr: { name: 'pr', detail: 'Obligatoire. Représente le prix du titre par tranche de valeur nominale de 100 €.' }, + basis: { name: 'basis', detail: 'Optionnel. Représente le type de la base de comptage des jours à utiliser.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/id-ID.ts b/packages/sheets-formula/src/locale/function-list/financial/id-ID.ts new file mode 100644 index 0000000000..3d06662d25 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/id-ID.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'Mengembalikan bunga akrual untuk sekuritas yang membayar bunga secara berkala.', + abstract: 'Mengembalikan bunga akrual untuk sekuritas yang membayar bunga secara berkala.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Diperlukan. Tanggal penerbitan sekuritas.' }, + firstInterest: { name: 'first_interest', detail: 'Diperlukan. Tanggal bunga pertama sekurangan.' }, + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + par: { name: 'par', detail: 'Diperlukan. Nilai nominal sekuritas. Jika Anda menghapus par, ACCRINT menggunakan $1.000.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + calcMethod: { name: 'calc_method', detail: 'Opsional. Nilai logika yang menentukan cara menghitung total bunga akrual ketika tanggal penyelesaian lebih lambat dari tanggal first_interest. Nilai TRUE (1) mengembalikan total bunga akrual dari penerbitan ke penyelesaian. Nilai FALSE (0) mengembalikan bunga akrual dari first_interest ke penyelesaian. Jika Anda tidak memasukkan argumen, maka argumen akan menjadi TRUE secara default.' }, + }, + }, + ACCRINTM: { + description: 'Mengembalikan bunga akrual untuk sekuritas yang membayar bunga pada saat jatuh tempo.', + abstract: 'Mengembalikan bunga akrual untuk sekuritas yang membayar bunga pada saat jatuh tempo.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Diperlukan. Tanggal penerbitan sekuritas.' }, + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + par: { name: 'par', detail: 'Diperlukan. Nilai nominal sekuritas. Jika Anda menghapus par, ACCRINTM menggunakan $1.000.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + AMORDEGRC: { + description: 'Mengembalikan depresiasi untuk setiap periode akuntansi. Fungsi ini diberikan untuk sistem akuntansi Prancis. Jika aset dibeli dalam pertengahan masa akuntansi, depresiasi prorata diperhitungkan. Fungsi tersebut mirip dengan AMORLINC, kecuali bahwa koefisien depresiasi diterapkan dalam perhitungan yang bergantung pada umur aset tersebut.', + abstract: 'Mengembalikan depresiasi untuk setiap periode akuntansi. Fungsi ini diberikan untuk sistem akuntansi Prancis. Jika aset dibeli dalam pertengahan masa akuntansi, depresiasi prorata diperhitungkan. Fungsi tersebut mirip dengan AMORLINC, kecuali bahwa koefisien depresiasi diterapkan dalam perhitungan yang bergantung pada umur aset tersebut.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya aset.' }, + datePurchased: { name: 'date_purchased', detail: 'Diperlukan. Tanggal pembelian aset.' }, + firstPeriod: { name: 'first_period', detail: 'Diperlukan. Tanggal berakhirnya periode pertama.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai sisa di akhir umur pakai aset.' }, + period: { name: 'period', detail: 'Diperlukan. Periode.' }, + rate: { name: 'rate', detail: 'Diperlukan. Tingkat depresiasi.' }, + basis: { name: 'basis', detail: 'Opsional. Basis tahun yang digunakan.' }, + }, + }, + AMORLINC: { + description: 'Mengembalikan depresiasi untuk setiap periode akuntansi. Fungsi ini diberikan untuk sistem akuntansi Prancis. Jika aset dibeli dalam pertengahan periode akuntansi, depresiasi prorata diperhitungkan.', + abstract: 'Mengembalikan depresiasi untuk setiap periode akuntansi. Fungsi ini diberikan untuk sistem akuntansi Prancis. Jika aset dibeli dalam pertengahan periode akuntansi, depresiasi prorata diperhitungkan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya aset.' }, + datePurchased: { name: 'date_purchased', detail: 'Diperlukan. Tanggal pembelian aset.' }, + firstPeriod: { name: 'first_period', detail: 'Diperlukan. Tanggal berakhirnya periode pertama.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai sisa di akhir umur pakai aset.' }, + period: { name: 'period', detail: 'Diperlukan. Periode.' }, + rate: { name: 'rate', detail: 'Diperlukan. Tingkat depresiasi.' }, + basis: { name: 'basis', detail: 'Opsional. Basis tahun yang digunakan.' }, + }, + }, + COUPDAYBS: { + description: 'Fungsi COUPDAYBS mengembalikan jumlah hari dari awal periode kupon sampai tanggal penyelesaian.', + abstract: 'Fungsi COUPDAYBS mengembalikan jumlah hari dari awal periode kupon sampai tanggal penyelesaian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + COUPDAYS: { + description: 'Mengembalikan jumlah hari dalam periode kupon yang berisi tanggal penyelesaian.', + abstract: 'Mengembalikan jumlah hari dalam periode kupon yang berisi tanggal penyelesaian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + COUPDAYSNC: { + description: 'Mengembalikan jumlah hari sejak tanggal penyelesaian sampai tanggal kupon berikutnya.', + abstract: 'Mengembalikan jumlah hari sejak tanggal penyelesaian sampai tanggal kupon berikutnya.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + COUPNCD: { + description: 'Mengembalikan angka yang menyatakan tanggal kupon berikutnya setelah tanggal penyelesaian.', + abstract: 'Mengembalikan angka yang menyatakan tanggal kupon berikutnya setelah tanggal penyelesaian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + COUPNUM: { + description: 'Mengembalikan jumlah kupon yang harus dibayar antara tanggal penyelesaian dan tanggal jatuh tempo, yang dibulatkan ke atas ke kupon utuh terdekat.', + abstract: 'Mengembalikan jumlah kupon yang harus dibayar antara tanggal penyelesaian dan tanggal jatuh tempo, yang dibulatkan ke atas ke kupon utuh terdekat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + COUPPCD: { + description: 'Mengembalikan angka yang menyatakan tanggal kupon sebelumnya sebelum tanggal pelunasan.', + abstract: 'Mengembalikan angka yang menyatakan tanggal kupon sebelumnya sebelum tanggal pelunasan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + CUMIPMT: { + description: 'Mengembalikan bunga kumulatif yang dibayarkan pada pinjaman antara start_period dan end_period.', + abstract: 'Mengembalikan bunga kumulatif yang dibayarkan pada pinjaman antara start_period dan end_period.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini.' }, + startPeriod: { name: 'start_period', detail: 'Diperlukan. Periode pertama dalam perhitungan. Periode pembayaran dinomori mulai dari 1.' }, + endPeriod: { name: 'end_period', detail: 'Diperlukan. Periode terakhir dalam perhitungan.' }, + type: { name: 'type', detail: 'Diperlukan. Waktu pembayaran.' }, + }, + }, + CUMPRINC: { + description: 'Mengembalikan pokok kumulatif yang dibayarkan pada pinjaman antara start_period dan end_period.', + abstract: 'Mengembalikan pokok kumulatif yang dibayarkan pada pinjaman antara start_period dan end_period.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini.' }, + startPeriod: { name: 'start_period', detail: 'Diperlukan. Periode pertama dalam perhitungan. Periode pembayaran dinomori mulai dari 1.' }, + endPeriod: { name: 'end_period', detail: 'Diperlukan. Periode terakhir dalam perhitungan.' }, + type: { name: 'type', detail: 'Diperlukan. Waktu pembayaran.' }, + }, + }, + DB: { + description: 'Mengembalikan depresiasi aset untuk periode yang ditentukan dengan menggunakan metode neraca menurun-tetap.', + abstract: 'Mengembalikan depresiasi aset untuk periode yang ditentukan dengan menggunakan metode neraca menurun-tetap.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya awal aset.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai di akhir depresiasi (kadang-kadang disebut nilai sisa aset).' }, + life: { name: 'life', detail: 'Diperlukan. Jumlah periode selama aset disusutkan (kadang-kadang disebut umur manfaat aset).' }, + period: { name: 'period', detail: 'Diperlukan. Periode saat Anda ingin menghitung depresiasi. Periode harus menggunakan unit yang sama seperti umur pakai.' }, + month: { name: 'month', detail: 'Opsional. Jumlah bulan dalam tahun pertama. Jika bulan dihilangkan, diasumsikan sebagai 12.' }, + }, + }, + DDB: { + description: 'Mengembalikan depresiasi aset untuk periode yang ditentukan dengan menggunakan metode neraca menurun-ganda atau metode lain yang Anda tentukan.', + abstract: 'Mengembalikan depresiasi aset untuk periode yang ditentukan dengan menggunakan metode neraca menurun-ganda atau metode lain yang Anda tentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya awal aset.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai di akhir depresiasi (kadang-kadang disebut nilai sisa aset). Nilai ini dapat berupa 0.' }, + life: { name: 'life', detail: 'Diperlukan. Jumlah periode selama aset disusutkan (kadang-kadang disebut umur manfaat aset).' }, + period: { name: 'period', detail: 'Diperlukan. Periode saat Anda ingin menghitung depresiasi. Periode harus menggunakan unit yang sama seperti umur pakai.' }, + factor: { name: 'factor', detail: 'Opsional. Kecepatan penurunan saldo. Jika faktor diabaikan, maka diasumsikan sebagai 2 (metode saldo menurun-ganda).' }, + }, + }, + DISC: { + description: 'Mengembalikan tingkat diskon sekuritas.', + abstract: 'Mengembalikan tingkat diskon sekuritas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas per nilai nominal $100.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + DOLLARDE: { + description: 'Mengonversi harga dolar yang dinyatakan sebagai bagian bilangan bulat dan bagian pecahan, seperti 1,02, ke dalam harga dolar yang dinyatakan dalam bilangan desimal. Angka dolar pecahan kadang-kadang digunakan untuk harga sekuritas.', + abstract: 'Mengonversi harga dolar yang dinyatakan sebagai bagian bilangan bulat dan bagian pecahan, seperti 1,02, ke dalam harga dolar yang dinyatakan dalam bilangan desimal. Angka dolar pecahan kadang-kadang digunakan untuk harga sekuritas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Diperlukan. Angka yang dinyatakan sebagai bagian bilangan bulat dan bagian pecahan, yang dipisahkan oleh simbol desimal.' }, + fraction: { name: 'fraction', detail: 'Diperlukan. Bilangan bulat yang akan digunakan dalam denominator pecahan.' }, + }, + }, + DOLLARFR: { + description: 'Gunakan DOLLARFR untuk mengonversi bilangan desimal ke angka dolar pecahan, seperti harga saham.', + abstract: 'Gunakan DOLLARFR untuk mengonversi bilangan desimal ke angka dolar pecahan, seperti harga saham.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Diperlukan. Bilangan desimal.' }, + fraction: { name: 'fraction', detail: 'Diperlukan. Bilangan bulat yang akan digunakan dalam denominator pecahan.' }, + }, + }, + DURATION: { + description: 'Fungsi DURATION , salah satu fungsi Financial, mengembalikan durasi Macauley untuk nilai par yang diasumsikan sebesar $100. Durasi didefinisikan sebagai rata-rata tertimbang dari nilai arus kas saat ini, dan digunakan sebagai ukuran respons harga obligasi terhadap perubahan hasil.', + abstract: 'Fungsi DURATION , salah satu fungsi Financial, mengembalikan durasi Macauley untuk nilai par yang diasumsikan sebesar $100. Durasi didefinisikan sebagai rata-rata tertimbang dari nilai arus kas saat ini, dan digunakan sebagai ukuran respons harga obligasi terhadap perubahan hasil.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + coupon: { name: 'coupon', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + yld: { name: 'yld', detail: 'Diperlukan. Laba tahunan sekuritas.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + EFFECT: { + description: 'Mengembalikan suku bunga tahunan efektif, dengan suku bunga nominal tahunan dan jumlah periode bunga majemuk per tahun.', + abstract: 'Mengembalikan suku bunga tahunan efektif, dengan suku bunga nominal tahunan dan jumlah periode bunga majemuk per tahun.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'Diperlukan. Suku bunga nominal.' }, + npery: { name: 'npery', detail: 'Diperlukan. Jumlah periode bunga majemuk per tahun.' }, + }, + }, + FV: { + description: 'FV , salah satu fungsi keuangan , menghitung nilai investasi di masa depan berdasarkan suku bunga tetap. Anda bisa menggunakan FV dengan pembayaran berkala, tetap atau pembayaran sekaligus.', + abstract: 'FV , salah satu fungsi keuangan , menghitung nilai investasi di masa depan berdasarkan suku bunga tetap. Anda bisa menggunakan FV dengan pembayaran berkala, tetap atau pembayaran sekaligus.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga tiap periode.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran dalam satu anuitas.' }, + pmt: { name: 'pmt', detail: 'Diperlukan. Pembayaran dilakukan tiap periode dan tidak dapat diganti selama anuitas belum berakhir. Umumnya, pmt mencakup biaya pokok dan bunga tetapi tidak ada biaya lain atau pajak. Jika pmt dihilangkan, Anda harus menyertakan argumen pv.' }, + pv: { name: 'pv', detail: 'Opsional. Nilai saat ini, atau jumlah total harga sekarang dari serangkaian pembayaran di masa mendatang. Jika pv dihilangkan, maka dianggap 0 (nol), dan Anda harus menyertakan argumen pmt.' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan bahwa pembayaran telah jatuh tempo. Jika tipe dihilangkan, maka dianggap sebagai 0.' }, + }, + }, + FVSCHEDULE: { + description: 'Mengembalikan nilai masa mendatang biaya pokok awal setelah menerapkan serangkaian campuran suku bunga. Gunakan FVSCHEDULE untuk menghitung nilai masa depan sebuah investasi dengan variabel atau suku bunga yang dapat disesuaikan.', + abstract: 'Mengembalikan nilai masa mendatang biaya pokok awal setelah menerapkan serangkaian campuran suku bunga. Gunakan FVSCHEDULE untuk menghitung nilai masa depan sebuah investasi dengan variabel atau suku bunga yang dapat disesuaikan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Diperlukan. Nilai saat ini.' }, + schedule: { name: 'schedule', detail: 'Diperlukan. Array suku bunga yang diterapkan.' }, + }, + }, + INTRATE: { + description: 'Mengembalikan suku bunga sekuritas investasi penuh.', + abstract: 'Mengembalikan suku bunga sekuritas investasi penuh.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + investment: { name: 'investment', detail: 'Diperlukan. Jumlah yang diinvestasikan dalam sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Jumlah yang diterima pada saat jatuh tempo.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + IPMT: { + description: 'Mengembalikan pembayaran bunga untuk periode tertentu untuk investasi berdasarkan pembayaran berkala dan konstan serta suku bunga konstan.', + abstract: 'Mengembalikan pembayaran bunga untuk periode tertentu untuk investasi berdasarkan pembayaran berkala dan konstan serta suku bunga konstan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga tiap periode.' }, + per: { name: 'per', detail: 'Diperlukan. Periode yang ingin Anda cari bunganya dan harus berada dalam rentang 1 sampai nper.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran dalam satu anuitas.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini, atau jumlah total harga sekarang dari serangkaian pembayaran di masa mendatang.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang, atau keseimbangan kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (misalnya, nilai masa depan sebuah pinjaman adalah 0).' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan bahwa pembayaran telah jatuh tempo. Jika tipe dihilangkan, maka dianggap sebagai 0.' }, + }, + }, + IRR: { + description: 'Mengembalikan tingkat pengembalian internal untuk serangkaian arus kas yang dinyatakan oleh angka dalam nilai. Arus kas ini tidak harus genap, karena akan genap dengan sendirinya untuk satu anuitas. Walau demikian, arus kas harus terjadi pada interval rutin, seperti bulanan atau tahunan. Laba atas investasi internal adalah suku bunga yang diterima untuk investasi yang terdiri dari pembayaran (nilai negatif) dan pendapatan (nilai positif) yang terjadi dalam periode rutin.', + abstract: 'Mengembalikan tingkat pengembalian internal untuk serangkaian arus kas yang dinyatakan oleh angka dalam nilai. Arus kas ini tidak harus genap, karena akan genap dengan sendirinya untuk satu anuitas. Walau demikian, arus kas harus terjadi pada interval rutin, seperti bulanan atau tahunan. Laba atas investasi internal adalah suku bunga yang diterima untuk investasi yang terdiri dari pembayaran (nilai negatif) dan pendapatan (nilai positif) yang terjadi dalam periode rutin.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Array atau referensi sel yang berisi angka untuk menghitung tingkat pengembalian internal. Harus berisi setidaknya satu nilai positif dan satu negatif; teks, nilai logika, dan sel kosong diabaikan.' }, + guess: { name: 'guess', detail: 'Angka yang Anda perkirakan mendekati hasil IRR.' }, + }, + }, + ISPMT: { + description: 'Menghitung bunga yang dibayarkan (atau diterima) untuk periode pinjaman (atau investasi) tertentu dengan pembayaran pokok genap.', + abstract: 'Menghitung bunga yang dibayarkan (atau diterima) untuk periode pinjaman (atau investasi) tertentu dengan pembayaran pokok genap.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga untuk investasi.' }, + per: { name: 'per', detail: 'Diperlukan. Periode yang ingin Anda cari bunganya, dan harus antara 1 dan Nper.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran untuk investasi.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai investasi saat ini. Untuk pinjaman, Pv adalah jumlah pinjaman.' }, + }, + }, + MDURATION: { + description: 'Mengembalikan durasi Macauley yang dimodifikasi untuk sekuritas dengan nilai par yang diasumsikan sebesar $100.', + abstract: 'Mengembalikan durasi Macauley yang dimodifikasi untuk sekuritas dengan nilai par yang diasumsikan sebesar $100.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + coupon: { name: 'coupon', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + yld: { name: 'yld', detail: 'Diperlukan. Laba tahunan sekuritas.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + MIRR: { + description: 'Mengembalikan laba atas investasi internal yang dimodifikasi untuk serangkaian arus kas periodik. MIRR mempertimbangkan baik biaya investasi maupun bunga yang diterima dari penginvestasian kembali kas.', + abstract: 'Mengembalikan laba atas investasi internal yang dimodifikasi untuk serangkaian arus kas periodik. MIRR mempertimbangkan baik biaya investasi maupun bunga yang diterima dari penginvestasian kembali kas.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Diperlukan. Sebuah array atau referensi ke sel-sel yang berisi angka. Angka-angka ini menunjukkan serangkaian pembayaran (nilai negatif) dan pemasukan (nilai positif) yang terjadi dalam periode rutin. Nilai harus berisi setidaknya satu nilai positif dan satu nilai negatif untuk menghitung tingkat pengembalian internal yang dimodifikasi. Jika tidak, MIRR mengembalikan #DIV/0! nilai kesalahan. Jika sebuah argumen array atau referensi mencakup teks, nilai logika, atau sel kosong, maka nilai-nilai itu diabaikan; akan tetapi sel-sel dengan nilai nol dimasukkan.' }, + financeRate: { name: 'finance_rate', detail: 'Diperlukan. Suku bunga yang Anda bayar atas uang yang digunakan dalam arus kas.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Diperlukan. Suku bunga yang Anda terima dari arus kas karena Anda menginvestasikannya kembali.' }, + }, + }, + NOMINAL: { + description: 'Mengembalikan suku bunga tahunan nominal, dengan suku bunga efektif dan jumlah periode bunga majemuk per tahun.', + abstract: 'Mengembalikan suku bunga tahunan nominal, dengan suku bunga efektif dan jumlah periode bunga majemuk per tahun.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'Diperlukan. Suku bunga efektif.' }, + npery: { name: 'npery', detail: 'Diperlukan. Jumlah periode bunga majemuk per tahun.' }, + }, + }, + NPER: { + description: 'Mengembalikan jumlah periode untuk sebuah investasi berdasarkan pembayaran berkala dan terus menerus serta tingkat bunga tetap.', + abstract: 'Mengembalikan jumlah periode untuk sebuah investasi berdasarkan pembayaran berkala dan terus menerus serta tingkat bunga tetap.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga tiap periode.' }, + pmt: { name: 'pmt', detail: 'Diperlukan. Pembayaran dilakukan tiap periode dan tidak dapat diganti selama anuitas belum berakhir. Umumnya, pmt mencakup biaya pokok dan bunga tetapi tidak ada biaya lain atau pajak.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini, atau jumlah total harga sekarang dari serangkaian pembayaran di masa mendatang.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang, atau keseimbangan kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (misalnya, nilai masa depan sebuah pinjaman adalah 0).' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan kapan pembayaran jatuh tempo.' }, + }, + }, + NPV: { + description: 'Menghitung nilai bersih saat ini dari sebuah investasi dengan menggunakan tingkat diskon dan serangkaian pembayaran yang akan datang (nilai negatif) dan pendapatan (nilai positif).', + abstract: 'Menghitung nilai bersih saat ini dari sebuah investasi dengan menggunakan tingkat diskon dan serangkaian pembayaran yang akan datang (nilai negatif) dan pendapatan (nilai positif).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Tingkat diskon selama satu periode.' }, + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Argumen 1 hingga 254 yang menunjukkan pembayaran dan pendapatan. Value1, value2, ... harus diberi jarak waktu yang sama dan terjadi pada akhir setiap periode. NPV menggunakan urutan value1, value2, ... untuk menerjemahkan urutan arus kas. Pastikan Anda memasukkan nilai pembayaran dan pendapatan dalam urutan yang tepat. Argumen yang berupa sel kosong, nilai logika, atau teks representasi angka, nilai kesalahan, atau teks yang tidak dapat diterjemahkan menjadi angka diabaikan. Jika argumen berupa array atau referensi, hanya angka dalam array atau referensi itu yang dihitung. Sel kosong, nilai logika, teks, atau nilai kesalahan dalam array atau referensi diabaikan.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Argumen 1 hingga 254 yang menunjukkan pembayaran dan pendapatan. Value1, value2, ... harus diberi jarak waktu yang sama dan terjadi pada akhir setiap periode. NPV menggunakan urutan value1, value2, ... untuk menerjemahkan urutan arus kas. Pastikan Anda memasukkan nilai pembayaran dan pendapatan dalam urutan yang tepat. Argumen yang berupa sel kosong, nilai logika, atau teks representasi angka, nilai kesalahan, atau teks yang tidak dapat diterjemahkan menjadi angka diabaikan. Jika argumen berupa array atau referensi, hanya angka dalam array atau referensi itu yang dihitung. Sel kosong, nilai logika, teks, atau nilai kesalahan dalam array atau referensi diabaikan.' }, + }, + }, + ODDFPRICE: { + description: 'Mengembalikan harga per nilai nominal $100 dari sekuritas dengan periode pertama yang tidak teratur.', + abstract: 'Mengembalikan harga per nilai nominal $100 dari sekuritas dengan periode pertama yang tidak teratur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Tanggal penyelesaian sekuritas.' }, + maturity: { name: 'maturity', detail: 'Tanggal jatuh tempo sekuritas.' }, + issue: { name: 'issue', detail: 'Tanggal penerbitan sekuritas.' }, + firstCoupon: { name: 'first_coupon', detail: 'Tanggal kupon pertama sekuritas.' }, + rate: { name: 'rate', detail: 'Suku bunga sekuritas.' }, + yld: { name: 'yld', detail: 'Hasil tahunan sekuritas.' }, + redemption: { name: 'redemption', detail: 'Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Jumlah pembayaran kupon per tahun: 1 untuk tahunan, 2 untuk semesteran, dan 4 untuk triwulanan.' }, + basis: { name: 'basis', detail: 'Jenis basis penghitungan hari yang akan digunakan.' }, + }, + }, + ODDFYIELD: { + description: 'Mengembalikan hasil sekuritas yang mempunyai periode pertama ganjil (pendek atau panjang).', + abstract: 'Mengembalikan hasil sekuritas yang mempunyai periode pertama ganjil (pendek atau panjang).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + issue: { name: 'issue', detail: 'Diperlukan. Tanggal penerbitan sekuritas.' }, + firstCoupon: { name: 'first_coupon', detail: 'Diperlukan. Tanggal kupon pertama sekuritas.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga sekuritas.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + ODDLPRICE: { + description: 'Mengembalikan harga per nilai nominal $100 dari sekuritas yang memiliki periode kupon akhir ganjil (pendek atau panjang).', + abstract: 'Mengembalikan harga per nilai nominal $100 dari sekuritas yang memiliki periode kupon akhir ganjil (pendek atau panjang).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + lastInterest: { name: 'last_interest', detail: 'Diperlukan. Tanggal kupon akhir sekuritas.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga sekuritas.' }, + yld: { name: 'yld', detail: 'Diperlukan. Laba tahunan sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + ODDLYIELD: { + description: 'Mengembalikan hasil sekuritas yang mempunyai periode akhir ganjil (pendek atau panjang).', + abstract: 'Mengembalikan hasil sekuritas yang mempunyai periode akhir ganjil (pendek atau panjang).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + lastInterest: { name: 'last_interest', detail: 'Diperlukan. Tanggal kupon akhir sekuritas.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga sekuritas.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + PDURATION: { + description: 'Mengembalikan jumlah periode yang diperlukan investasi untuk mencapai nilai yang ditentukan.', + abstract: 'Mengembalikan jumlah periode yang diperlukan investasi untuk mencapai nilai yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Rate adalah suku bunga tiap periode.' }, + pv: { name: 'pv', detail: 'Diperlukan. Pv adalah nilai investasi saat ini.' }, + fv: { name: 'fv', detail: 'Diperlukan. Fv adalah nilai investasi masa depan yang diinginkan.' }, + }, + }, + PMT: { + description: 'PMT , salah satu Fungsi keuangan . menghitung pembayaran untuk pinjaman berdasarkan pembayaran berkala dan terus menerus serta suku bunga tetap.', + abstract: 'PMT , salah satu Fungsi keuangan . menghitung pembayaran untuk pinjaman berdasarkan pembayaran berkala dan terus menerus serta suku bunga tetap.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga untuk pinjaman.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran untuk pinjaman.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini, atau jumlah total harga saat ini dari serangkaian pembayaran masa depan; yang juga dikenal sebagai pinjaman pokok.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang, atau keseimbangan kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (nol), yaitu, nilai pinjaman yang akan datang adalah 0.' }, + type: { name: 'type', detail: 'Opsional. Angka 0 (nol) atau 1 dan menunjukkan bahwa pembayaran telah jatuh tempo.' }, + }, + }, + PPMT: { + description: 'Mengembalikan pembayaran pinjaman pokok untuk periode tertentu untuk investasi berdasarkan pembayaran berkala dan terus menerus serta suku bunga tetap.', + abstract: 'Mengembalikan pembayaran pinjaman pokok untuk periode tertentu untuk investasi berdasarkan pembayaran berkala dan terus menerus serta suku bunga tetap.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga tiap periode.' }, + per: { name: 'per', detail: 'Diperlukan. Menentukan periode dan harus berada pada rentang 1 hingga nper.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran dalam satu anuitas.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini — jumlah total harga hari ini dari serangkaian pembayaran yang akan datang.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang, atau keseimbangan kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (nol), yaitu, nilai pinjaman yang akan datang adalah 0.' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan kapan pembayaran jatuh tempo.' }, + }, + }, + PRICE: { + description: 'Mengembalikan harga dari setiap nilai nominal $100 sebuah sekuritas yang membayar bunga berkala.', + abstract: 'Mengembalikan harga dari setiap nilai nominal $100 sebuah sekuritas yang membayar bunga berkala.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + yld: { name: 'yld', detail: 'Diperlukan. Laba tahunan sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + PRICEDISC: { + description: 'Mengembalikan harga untuk setiap nilai $100 sebuah sekuritas didiskon.', + abstract: 'Mengembalikan harga untuk setiap nilai $100 sebuah sekuritas didiskon.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + discount: { name: 'discount', detail: 'Diperlukan. Diskon sekuritas.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + PRICEMAT: { + description: 'Mengembalikan harga nilai nominal $100 sebuah sekuritas yang membayar bunga saat jatuh tempo.', + abstract: 'Mengembalikan harga nilai nominal $100 sebuah sekuritas yang membayar bunga saat jatuh tempo.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + issue: { name: 'issue', detail: 'Diperlukan. Tanggal terbit sekuritas, diekspresikan sebagai nomor seri tanggal.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga sekuritas pada tanggal terbit.' }, + yld: { name: 'yld', detail: 'Diperlukan. Laba tahunan sekuritas.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + PV: { + description: 'PV , salah satu fungsi keuangan , menghitung nilai pinjaman atau investasi saat ini, berdasarkan suku bunga tetap. Anda bisa menggunakan PV dengan pembayaran berkala, tetap (seperti pinjaman hipotek atau lainnya), atau nilai hasil investasi di masa depan.', + abstract: 'PV , salah satu fungsi keuangan , menghitung nilai pinjaman atau investasi saat ini, berdasarkan suku bunga tetap. Anda bisa menggunakan PV dengan pembayaran berkala, tetap (seperti pinjaman hipotek atau lainnya), atau nilai hasil investasi di masa depan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga tiap periode. Misalnya, jika Anda mengambil kredit mobil dengan bunga tahunan 10 persen dan melakukan pembayaran bulanan, maka suku bunga per bulan Anda adalah 10%/12, atau 0.83%. Anda akan memasukkan 10%/12, atau 0.83%, atau 0.0083, ke dalam rumus sebagai suku bunga.' }, + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran dalam satu anuitas. Misalnya, jika Anda mendapatkan kredit mobil selama empat tahun dan membuat pembayaran bulanan, pinjaman Anda memiliki periode 4*12 (atau 48). Anda akan memasukkan 48 ke dalam rumus nper.' }, + pmt: { name: 'pmt', detail: 'Diperlukan. Pembayaran yang dilakukan setiap periode dan tidak bisa berubah sepanjang hidup anuitas. Umumnya, pmt mencakup pokok pinjaman dan bunga tanpa biaya lain dan pajak. Misalnya, pembayaran bulanan kredit mobil sebesar $10.000 selama empat tahun dengan bunga 12 persen adalah $263.33. Anda akan memasukkan -263.33 ke dalam rumus sebagai pmt. Jika pmt dihilangkan, Anda harus menyertakan argumen fv.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang atau saldo kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (misalnya, nilai masa depan sebuah pinjaman adalah 0). Misalnya, jika Anda ingin menabung $50.000 untuk membayar sebuah proyek khusus dalam waktu 18 tahun, maka $50.000 adalah nilai masa depan. Setelah itu Anda dapat membuat perkiraan konservatif terhadap suku bunga dan menentukan berapa banyak yang harus Anda tabung setiap bulan. Jika pmt dikosongkan, Anda harus memasukkan argumen pmt.' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan kapan pembayaran jatuh tempo.' }, + }, + }, + RATE: { + description: 'Mengembalikan suku bunga per periode anuitas. RATE dihitung dengan perulangan dan dapat memiliki nol atau lebih solusi. Jika hasil rate tidak berurut ke dalam 0,0000001 setelah 20 perulangan, RATE mengembalikan #NUM! nilai kesalahan.', + abstract: 'Mengembalikan suku bunga per periode anuitas. RATE dihitung dengan perulangan dan dapat memiliki nol atau lebih solusi. Jika hasil rate tidak berurut ke dalam 0,0000001 setelah 20 perulangan, RATE mengembalikan #NUM! nilai kesalahan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Diperlukan. Total jumlah periode pembayaran dalam satu anuitas.' }, + pmt: { name: 'pmt', detail: 'Diperlukan. Pembayaran yang dilakukan setiap periode dan tidak bisa berubah sepanjang hidup anuitas. Umumnya, pmt mencakup pokok pinjaman dan bunga tanpa biaya lain dan pajak. Jika pmt dikosongkan, Anda harus memasukkan argumen fv.' }, + pv: { name: 'pv', detail: 'Diperlukan. Nilai saat ini — jumlah total harga hari ini dari serangkaian pembayaran yang akan datang.' }, + fv: { name: 'fv', detail: 'Opsional. Nilai masa mendatang, atau keseimbangan kas yang ingin Anda capai setelah pembayaran terakhir dilakukan. Jika fv dikosongkan, maka diasumsikan sebagai 0 (misalnya, nilai masa depan sebuah pinjaman adalah 0). Jika dikosongkan, Anda harus menyertakan argumen pmt.' }, + type: { name: 'type', detail: 'Opsional. Angka 0 atau 1 dan menunjukkan kapan pembayaran jatuh tempo.' }, + guess: { name: 'guess', detail: 'Opsional. Perkiraan Anda mengenai besarnya suku bunga. Jika Anda menghilangkan perkiraan, suka bunga akan dianggap 10 persen. Jika RATE tidak diperoleh, coba nilai lain untuk perkiraan. RATE biasanya diperoleh jika perkiraan di antara 0 dan 1.' }, + }, + }, + RECEIVED: { + description: 'Mengembalikan jumlah yang diterima saat jatuh tempo untuk sekuritas yang diinvestasikan secara penuh.', + abstract: 'Mengembalikan jumlah yang diterima saat jatuh tempo untuk sekuritas yang diinvestasikan secara penuh.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + investment: { name: 'investment', detail: 'Diperlukan. Jumlah yang diinvestasikan dalam sekuritas.' }, + discount: { name: 'discount', detail: 'Diperlukan. Diskon sekuritas.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + RRI: { + description: 'Mengembalikan suku bunga yang sama untuk pertumbuhan investasi.', + abstract: 'Mengembalikan suku bunga yang sama untuk pertumbuhan investasi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Diperlukan. Nper adalah jumlah periode untuk investasi.' }, + pv: { name: 'pv', detail: 'Diperlukan. Pv adalah nilai investasi saat ini.' }, + fv: { name: 'fv', detail: 'Diperlukan. Fv adalah nilai investasi di masa depan.' }, + }, + }, + SLN: { + description: 'Mengembalikan nilai depresiasi aset secara lurus untuk satu periode.', + abstract: 'Mengembalikan nilai depresiasi aset secara lurus untuk satu periode.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya awal aset.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai di akhir depresiasi (kadang-kadang disebut nilai sisa aset).' }, + life: { name: 'life', detail: 'Diperlukan. Jumlah periode depresiasi aset (kadang disebut umur berguna dari aset).' }, + }, + }, + SYD: { + description: 'Mengembalikan jumlah dari depresiasi digit tahun dari aset untuk periode tertentu.', + abstract: 'Mengembalikan jumlah dari depresiasi digit tahun dari aset untuk periode tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya awal aset.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai di akhir depresiasi (kadang-kadang disebut nilai sisa aset).' }, + life: { name: 'life', detail: 'Diperlukan. Jumlah periode depresiasi aset (kadang disebut umur berguna dari aset).' }, + per: { name: 'per', detail: 'Diperlukan. Periode dan harus menggunakan satuan yang sama dengan life.' }, + }, + }, + TBILLEQ: { + description: 'Mengembalikan hasil yang sepadan dengan obligasi untuk Surat Perbendaharaan Negara.', + abstract: 'Mengembalikan hasil yang sepadan dengan obligasi untuk Surat Perbendaharaan Negara.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian Surat Perbendaharaan Negara. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat Surat Perbendaharaan Negara diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo Surat Perbendaharaan Negara. Tanggal jatuh tempo adalah tanggal ketika Surat Perbendaharaan Negara telah kedaluwarsa.' }, + discount: { name: 'discount', detail: 'Diperlukan. Tarif diskon Surat Perbendaharaan Negara.' }, + }, + }, + TBILLPRICE: { + description: 'Mengembalikan harga per nilai nominal $100 untuk Surat Perbendaharaan Negara.', + abstract: 'Mengembalikan harga per nilai nominal $100 untuk Surat Perbendaharaan Negara.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian Surat Perbendaharaan Negara. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat Surat Perbendaharaan Negara diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo Surat Perbendaharaan Negara. Tanggal jatuh tempo adalah tanggal ketika Surat Perbendaharaan Negara telah kedaluwarsa.' }, + discount: { name: 'discount', detail: 'Diperlukan. Tarif diskon Surat Perbendaharaan Negara.' }, + }, + }, + TBILLYIELD: { + description: 'Mengembalikan hasil untuk Surat Perbendaharaan Negara.', + abstract: 'Mengembalikan hasil untuk Surat Perbendaharaan Negara.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian Surat Perbendaharaan Negara. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat Surat Perbendaharaan Negara diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo Surat Perbendaharaan Negara. Tanggal jatuh tempo adalah tanggal ketika Surat Perbendaharaan Negara telah kedaluwarsa.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga Surat Perbendaharaan Negara per nilai nominal $100.' }, + }, + }, + VDB: { + description: 'Mengembalikan depresiasi aset untuk periode yang ditentukan, termasuk periode parsial, menggunakan metode saldo menurun-ganda atau metode lain yang Anda tentukan. VDB adalah singkatan dari variable declining balance (saldo menurun variabel).', + abstract: 'Mengembalikan depresiasi aset untuk periode yang ditentukan, termasuk periode parsial, menggunakan metode saldo menurun-ganda atau metode lain yang Anda tentukan. VDB adalah singkatan dari variable declining balance (saldo menurun variabel).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Diperlukan. Biaya awal aset.' }, + salvage: { name: 'salvage', detail: 'Diperlukan. Nilai di akhir depresiasi (kadang-kadang disebut nilai sisa aset). Nilai ini dapat berupa 0.' }, + life: { name: 'life', detail: 'Diperlukan. Jumlah periode depresiasi aset (kadang disebut umur berguna dari aset).' }, + startPeriod: { name: 'start_period', detail: 'Diperlukan. Periode awal yang akan dihitung depresiasinya. Start_period harus menggunakan satuan yang sama dengan masa pakai.' }, + endPeriod: { name: 'end_period', detail: 'Diperlukan. Periode akhir yang akan dihitung depresiasinya. Periode_akhir harus menggunakan satuan yang sama dengan masa pakai.' }, + factor: { name: 'factor', detail: 'Opsional. Kecepatan penurunan saldo. Jika faktor diabaikan, maka diasumsikan sebagai 2 (metode saldo menurun-ganda). Ubah faktor jika Anda tidak ingin menggunakan metode saldo menurun-ganda. Untuk deskripsi metode saldo menurun-ganda, lihat DDB.' }, + noSwitch: { name: 'no_switch', detail: 'Opsional. Nilai logika yang menetapkan apakah akan beralih ke depresiasi garis-lurus apabila depresiasi lebih besar dari perhitungan saldo menurun. Jika no_switch TRUE, Microsoft Excel tidak akan beralih ke depresiasi garis-lurus bahkan apabila depresiasi lebih besar dari perhitungan saldo menurun. Jika no_switch FALSE atau diabaikan, Excel akan beralih ke depresiasi garis-lurus apabila depresiasi lebih besar dari perhitungan saldo menurun.' }, + }, + }, + XIRR: { + description: 'Mengembalikan tingkat pengembalian internal untuk aliran kas yang jadwalnya tidak berkala. Untuk menghitung tingkat pengembalian internal serangkaian aliran kas berkala, gunakan fungsi IRR.', + abstract: 'Mengembalikan tingkat pengembalian internal untuk aliran kas yang jadwalnya tidak berkala. Untuk menghitung tingkat pengembalian internal serangkaian aliran kas berkala, gunakan fungsi IRR.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Diperlukan. Serangkaian aliran kas yang terkait dengan jadwal pembayaran dalam tanggal. Pembayaran pertama opsional dan terkait dengan biaya pembayaran yang terjadi di awal investasi. Jika nilai pertama adalah biaya atau pembayaran, maka nilainya harus negatif. Semua pembayaran berikutnya didiskon berdasarkan 365 hari dalam setahun. Rangkaian nilai harus berisi sedikitnya satu nilai positif dan satu negatif.' }, + dates: { name: 'dates', detail: 'Diperlukan. Jadwal tanggal pembayaran yang terkait dengan pembayaran aliran kas. Urutan tanggal tidak harus sama. Tanggal harus dimasukkan dengan menggunakan fungsi DATE, atau sebagai hasil dari rumus atau fungsi lain. Contoh, gunakan DATE(2008,5,23) untuk tanggal 23 Mei 2008. Masalah bisa muncul jika tanggal dimasukkan sebagai teks. .' }, + guess: { name: 'guess', detail: 'Opsional. Angka yang Anda perkirakan mendekati hasil XIRR.' }, + }, + }, + XNPV: { + description: 'Mengembalikan nilai bersih saat ini untuk jadwal aliran kas yang tidak selalu berkala. Untuk menghitung nilai bersih saat ini untuk serangkaian aliran kas berkala, gunakan fungsi NPV.', + abstract: 'Mengembalikan nilai bersih saat ini untuk jadwal aliran kas yang tidak selalu berkala. Untuk menghitung nilai bersih saat ini untuk serangkaian aliran kas berkala, gunakan fungsi NPV.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Diperlukan. Tingkat diskon yang akan diterapkan untuk aliran kas.' }, + values: { name: 'values', detail: 'Diperlukan. Serangkaian aliran kas yang terkait dengan jadwal pembayaran dalam tanggal. Pembayaran pertama opsional dan terkait dengan biaya pembayaran yang terjadi di awal investasi. Jika nilai pertama adalah biaya atau pembayaran, maka nilainya harus negatif. Semua pembayaran berikutnya didiskon berdasarkan 365 hari dalam setahun. Rangkaian nilai harus berisi sedikitnya satu nilai positif dan satu nilai negatif.' }, + dates: { name: 'dates', detail: 'Diperlukan. Jadwal tanggal pembayaran yang terkait dengan pembayaran aliran kas. Tanggal pembayaran pertama menunjukkan awal jadwal pembayaran. Semua tanggal lainnya harus setelah tanggal ini, tetapi tidak harus urut.' }, + }, + }, + YIELD: { + description: 'Mengembalikan hasil sekuritas yang membayar bunga berkala. Gunakan YIELD untuk menghitung hasil obligasi.', + abstract: 'Mengembalikan hasil sekuritas yang membayar bunga berkala. Gunakan YIELD untuk menghitung hasil obligasi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga kupon tahunan sekuritas.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas per nilai nominal $100.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + frequency: { name: 'frequency', detail: 'Diperlukan. Jumlah kupon pembayaran per tahun. Untuk pembayaran tahunan, frekuensi = 1; untuk semi tahunan, frekuensi = 2; untuk triwulan, frekuensi = 4.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + YIELDDISC: { + description: 'Mengembalikan hasil tahunan untuk sekuritas yang didiskon.', + abstract: 'Mengembalikan hasil tahunan untuk sekuritas yang didiskon.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas per nilai nominal $100.' }, + redemption: { name: 'redemption', detail: 'Diperlukan. Nilai penebusan sekuritas per nilai nominal $100.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, + YIELDMAT: { + description: 'Mengembalikan hasil tahunan sekuritas yang membayar bunga pada saat jatuh tempo.', + abstract: 'Mengembalikan hasil tahunan sekuritas yang membayar bunga pada saat jatuh tempo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Diperlukan. Tanggal penyelesaian sekuritas. Tanggal penyelesaian sekuritas adalah tanggal setelah tanggal terbit saat sekuritas diperdagangkan kepada pembeli.' }, + maturity: { name: 'maturity', detail: 'Diperlukan. Tanggal jatuh tempo sekuritas. Tanggal jatuh tempo adalah tanggal ketika sekuritas telah kedaluwarsa.' }, + issue: { name: 'issue', detail: 'Diperlukan. Tanggal terbit sekuritas, diekspresikan sebagai nomor seri tanggal.' }, + rate: { name: 'rate', detail: 'Diperlukan. Suku bunga sekuritas pada tanggal terbit.' }, + pr: { name: 'pr', detail: 'Diperlukan. Harga sekuritas per nilai nominal $100.' }, + basis: { name: 'basis', detail: 'Opsional. Tipe basis perhitungan hari untuk digunakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/it-IT.ts b/packages/sheets-formula/src/locale/function-list/financial/it-IT.ts new file mode 100644 index 0000000000..5540a02852 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/it-IT.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'Restituisce l\'interesse maturato di un titolo che paga interessi periodici.', + abstract: 'Restituisce l\'interesse maturato di un titolo che paga interessi periodici.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo.' }, + firstInterest: { name: 'first_interest', detail: 'Obbligatorio. Data della prima cedola.' }, + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + par: { name: 'par', detail: 'Obbligatorio. Valore nominale del titolo. Se viene omesso, INT.MATURATO.PER utilizzerà € 1.000.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + calcMethod: { name: 'calc_method', detail: 'Opzionale. Valore logico che specifica come calcolare l\'interesse maturato totale quando la data liquid è successiva alla data primo_int. Il valore VERO (1) restituisce l\'interesse maturato totale da emiss a liquid. Il valore FALSO (0) restituisce l\'interesse maturato da primo_int a liquid. Se non si immette l\'argomento, verrà utilizzato per impostazione predefinita il valore VERO.' }, + }, + }, + ACCRINTM: { + description: 'Restituisce l\'interesse maturato di un titolo che paga interessi alla scadenza.', + abstract: 'Restituisce l\'interesse maturato di un titolo che paga interessi alla scadenza.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo.' }, + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di scadenza del titolo.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + par: { name: 'par', detail: 'Obbligatorio. Valore nominale del titolo. Se val_nom viene omesso, INT.MATURATO.SCAD userà € 1.000.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + AMORDEGRC: { + description: 'Restituisce l\'ammortamento per ogni periodo contabile. Questa funzione è fornita per il sistema contabile francese. Se un bene viene acquistato a metà del periodo, sarà preso in considerazione l\'ammortamento ripartito proporzionalmente. Questa funzione è simile ad AMMORT.PER, tranne per il fatto che il coefficiente di deprezzamento viene applicato al calcolo a seconda della vita del bene.', + abstract: 'Restituisce l\'ammortamento per ogni periodo contabile. Questa funzione è fornita per il sistema contabile francese. Se un bene viene acquistato a metà del periodo, sarà preso in considerazione l\'ammortamento ripartito proporzionalmente. Questa funzione è simile ad AMMORT.PER, tranne per il fatto che il coefficiente di deprezzamento viene applicato al calcolo a seconda della vita del bene.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo del bene.' }, + datePurchased: { name: 'date_purchased', detail: 'Obbligatorio. Data di acquisto del bene.' }, + firstPeriod: { name: 'first_period', detail: 'Obbligatorio. Data finale del primo periodo.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore residuo al termine della vita del bene.' }, + period: { name: 'period', detail: 'Obbligatorio. Periodo.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di ammortamento.' }, + basis: { name: 'basis', detail: 'Opzionale. Base annua da utilizzare.' }, + }, + }, + AMORLINC: { + description: 'Restituisce l\'ammortamento per ogni periodo contabile. Questa funzione è fornita per il sistema contabile francese. Se un bene viene acquistato a metà del periodo, sarà preso in considerazione l\'ammortamento ripartito proporzionalmente.', + abstract: 'Restituisce l\'ammortamento per ogni periodo contabile. Questa funzione è fornita per il sistema contabile francese. Se un bene viene acquistato a metà del periodo, sarà preso in considerazione l\'ammortamento ripartito proporzionalmente.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo del bene.' }, + datePurchased: { name: 'date_purchased', detail: 'Obbligatorio. Data di acquisto del bene.' }, + firstPeriod: { name: 'first_period', detail: 'Obbligatorio. Data finale del primo periodo.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore residuo al termine della vita del bene.' }, + period: { name: 'period', detail: 'Obbligatorio. Periodo.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di ammortamento.' }, + basis: { name: 'basis', detail: 'Opzionale. Base annua da utilizzare.' }, + }, + }, + COUPDAYBS: { + description: 'La funzione GIORNI.CED.INIZ.LIQ restituisce il numero di giorni dall\'inizio del periodo di una cedola alla data di liquidazione.', + abstract: 'La funzione GIORNI.CED.INIZ.LIQ restituisce il numero di giorni dall\'inizio del periodo di una cedola alla data di liquidazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + COUPDAYS: { + description: 'Restituisce il numero dei giorni relativi alla durata della cedola che contiene la data di liquidazione.', + abstract: 'Restituisce il numero dei giorni relativi alla durata della cedola che contiene la data di liquidazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + COUPDAYSNC: { + description: 'Restituisce il numero dei giorni che vanno dalla data di liquidazione alla data della nuova cedola.', + abstract: 'Restituisce il numero dei giorni che vanno dalla data di liquidazione alla data della nuova cedola.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + COUPNCD: { + description: 'Restituisce un numero che rappresenta la data della cedola successiva dopo la data di liquidazione.', + abstract: 'Restituisce un numero che rappresenta la data della cedola successiva dopo la data di liquidazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + COUPNUM: { + description: 'Restituisce il numero di cedole pagabili tra la data di liquidazione e la data di scadenza, arrotondato al numero intero di cedola più vicino.', + abstract: 'Restituisce il numero di cedole pagabili tra la data di liquidazione e la data di scadenza, arrotondato al numero intero di cedola più vicino.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + COUPPCD: { + description: 'Restituisce un numero che rappresenta la data della cedola precedente prima della data di liquidazione.', + abstract: 'Restituisce un numero che rappresenta la data della cedola precedente prima della data di liquidazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + CUMIPMT: { + description: 'Restituisce l\'interesse cumulativo pagato per estinguere un debito tra iniz_per e fine_per.', + abstract: 'Restituisce l\'interesse cumulativo pagato per estinguere un debito tra iniz_per e fine_per.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale di periodi di pagamento.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale.' }, + startPeriod: { name: 'start_period', detail: 'Obbligatorio. Primo periodo nel calcolo. I periodi di pagamento vengono numerati a partire da 1.' }, + endPeriod: { name: 'end_period', detail: 'Obbligatorio. Ultimo periodo nel calcolo.' }, + type: { name: 'type', detail: 'Obbligatorio. Scadenza per il pagamento.' }, + }, + }, + CUMPRINC: { + description: 'Restituisce il capitale cumulativo pagato per estinguere un debito tra iniz_per e fine_per.', + abstract: 'Restituisce il capitale cumulativo pagato per estinguere un debito tra iniz_per e fine_per.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale di periodi di pagamento.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale.' }, + startPeriod: { name: 'start_period', detail: 'Obbligatorio. Primo periodo nel calcolo. I periodi di pagamento vengono numerati a partire da 1.' }, + endPeriod: { name: 'end_period', detail: 'Obbligatorio. Ultimo periodo nel calcolo.' }, + type: { name: 'type', detail: 'Obbligatorio. Scadenza per il pagamento.' }, + }, + }, + DB: { + description: 'Restituisce l\'ammortamento di un bene per un periodo specificato utilizzando il metodo a quote fisse proporzionali ai valori residui.', + abstract: 'Restituisce l\'ammortamento di un bene per un periodo specificato utilizzando il metodo a quote fisse proporzionali ai valori residui.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo iniziale del bene.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore ottenuto alla fine dell\'ammortamento, noto anche come valore residuo del bene.' }, + life: { name: 'life', detail: 'Obbligatorio. Numero di periodi in cui il bene viene ammortizzato, noto anche come vita utile del bene.' }, + period: { name: 'period', detail: 'Obbligatorio. Periodo per il quale si calcola l\'ammortamento. Per periodo deve essere utilizzata la stessa unità di misura di Vita_utile.' }, + month: { name: 'month', detail: 'Opzionale. Numero di mesi nel primo anno. Se mese viene omesso, verrà considerato uguale a 12.' }, + }, + }, + DDB: { + description: 'Restituisce l\'ammortamento di un bene per un periodo specificato utilizzando il metodo a doppie quote proporzionali ai valori residui o un altro metodo specificato.', + abstract: 'Restituisce l\'ammortamento di un bene per un periodo specificato utilizzando il metodo a doppie quote proporzionali ai valori residui o un altro metodo specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo iniziale del bene.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore ottenuto alla fine dell\'ammortamento, noto anche come valore residuo del bene. Questo valore può essere 0.' }, + life: { name: 'life', detail: 'Obbligatorio. Numero di periodi in cui il bene viene ammortizzato, noto anche come vita utile del bene.' }, + period: { name: 'period', detail: 'Obbligatorio. Periodo per il quale si calcola l\'ammortamento. Per periodo deve essere utilizzata la stessa unità di misura di Vita_utile.' }, + factor: { name: 'factor', detail: 'Opzionale. Tasso di diminuzione delle quote proporzionali ai valori residui. Se fattore viene omesso, verrà considerato uguale a 2, che corrisponde al metodo di ammortamento a doppie quote proporzionali ai valori residui.' }, + }, + }, + DISC: { + description: 'Restituisce il tasso di sconto di un titolo.', + abstract: 'Restituisce il tasso di sconto di un titolo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo per valore nominale di € 100.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + DOLLARDE: { + description: 'Converte un prezzo espresso in numero intero e in frazione, ad esempio 1,02, in un prezzo espresso in numero decimale. I numeri espressi in frazione sono talvolta utilizzati per i prezzi dei titoli.', + abstract: 'Converte un prezzo espresso in numero intero e in frazione, ad esempio 1,02, in un prezzo espresso in numero decimale. I numeri espressi in frazione sono talvolta utilizzati per i prezzi dei titoli.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Obbligatorio. Numero espresso con un numero intero e una frazione, separati da un simbolo decimale.' }, + fraction: { name: 'fraction', detail: 'Obbligatorio. Intero da utilizzare nel denominatore della frazione.' }, + }, + }, + DOLLARFR: { + description: 'Utilizzare la funzione VALUTA.FRAZ per convertire i numeri decimali in prezzi espressi in frazione.', + abstract: 'Utilizzare la funzione VALUTA.FRAZ per convertire i numeri decimali in prezzi espressi in frazione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Obbligatorio. Numero decimale.' }, + fraction: { name: 'fraction', detail: 'Obbligatorio. Intero da utilizzare nel denominatore della frazione.' }, + }, + }, + DURATION: { + description: 'La funzione DURATA , una delle funzioni finanziarie , restituisce la durata Macauley per un valore nominale presunto di $ 100. La durata è definita come la media ponderata del valore attuale dei flussi di cassa e viene utilizzata come misura della risposta del prezzo di un\'obbligazione alle variazioni del rendimento.', + abstract: 'La funzione DURATA , una delle funzioni finanziarie , restituisce la durata Macauley per un valore nominale presunto di $ 100. La durata è definita come la media ponderata del valore attuale dei flussi di cassa e viene utilizzata come misura della risposta del prezzo di un\'obbligazione alle variazioni del rendimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + coupon: { name: 'coupon', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + EFFECT: { + description: 'Restituisce il tasso di interesse annuo effettivo in base al tasso di interesse nominale annuo ed al numero dei periodi di capitalizzazione per anno.', + abstract: 'Restituisce il tasso di interesse annuo effettivo in base al tasso di interesse nominale annuo ed al numero dei periodi di capitalizzazione per anno.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'Obbligatorio. Tasso di interesse nominale.' }, + npery: { name: 'npery', detail: 'Obbligatorio. Numero di periodi di capitalizzazione per anno.' }, + }, + }, + FV: { + description: 'VAL.FUT , una delle funzioni finanziarie , calcola il valore futuro di un investimento sulla base di un tasso di interesse costante. È possibile usare VAL.FUT con pagamenti periodici costanti o con un unico pagamento forfettario.', + abstract: 'VAL.FUT , una delle funzioni finanziarie , calcola il valore futuro di un investimento sulla base di un tasso di interesse costante. È possibile usare VAL.FUT con pagamenti periodici costanti o con un unico pagamento forfettario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per periodo.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale dei periodi di pagamento in un\'annualità.' }, + pmt: { name: 'pmt', detail: 'Obbligatorio. Pagamento effettuato in ciascun periodo e non può variare nel corso dell\'annualità. In genere, pagam include il capitale e gli interessi, ma non altre imposte o spese. Se pagam viene omesso, si deve includere l\'argomento val_attuale.' }, + pv: { name: 'pv', detail: 'Opzionale. Valore attuale o somma forfettaria che rappresenta il valore attuale di una serie di pagamenti futuri. Se val_attuale è omesso, verrà considerato uguale a 0 (zero) e si dovrà includere l\'argomento pagam.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti. Se tipo è omesso, verrà considerato uguale a 0.' }, + }, + }, + FVSCHEDULE: { + description: 'Restituisce il valore futuro di un capitale iniziale soggetto a una serie di interessi composti. Utilizzare la funzione VAL.FUT.CAPITALE per calcolare il valore futuro di un investimento con una variabile o un tasso variabile.', + abstract: 'Restituisce il valore futuro di un capitale iniziale soggetto a una serie di interessi composti. Utilizzare la funzione VAL.FUT.CAPITALE per calcolare il valore futuro di un investimento con una variabile o un tasso variabile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Obbligatorio. Valore attuale.' }, + schedule: { name: 'schedule', detail: 'Obbligatorio. Matrice di tassi di interesse da applicare.' }, + }, + }, + INTRATE: { + description: 'Restituisce il tasso di interesse di un titolo interamente investito.', + abstract: 'Restituisce il tasso di interesse di un titolo interamente investito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + investment: { name: 'investment', detail: 'Obbligatorio. Importo investito nel titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Importo da ricevere alla scadenza.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + IPMT: { + description: 'Restituisce il pagamento degli interessi relativi a un investimento per un dato periodo sulla base di pagamenti periodici e costanti e di un tasso di interesse costante.', + abstract: 'Restituisce il pagamento degli interessi relativi a un investimento per un dato periodo sulla base di pagamenti periodici e costanti e di un tasso di interesse costante.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per periodo.' }, + per: { name: 'per', detail: 'Obbligatorio. Periodo per il quale si desidera trovare l\'interesse e deve essere compreso tra 1 e periodi.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale dei periodi di pagamento in un\'annualità.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale o somma forfettaria che rappresenta il valore attuale di una serie di pagamenti futuri.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo aver effettuato l\'ultimo pagamento. Se val_futuro viene omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito, ad esempio, sarà 0.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti. Se tipo è omesso, verrà considerato uguale a 0.' }, + }, + }, + IRR: { + description: 'Restituisce il tasso di rendimento interno di una serie di flussi di cassa rappresentati dai numeri in valori. Questi flussi di cassa non devono necessariamente essere pari, come sarebbero per un\'annualità. Tuttavia, i flussi di cassa devono essere a intervalli regolari, ad esempio mensilmente o annualmente. Il tasso di rendimento interno è il tasso di interesse ricevuto per un investimento costituito da pagamenti (valori negativi) e entrate (valori positivi) che si verificano a periodi regolari.', + abstract: 'Restituisce il tasso di rendimento interno di una serie di flussi di cassa rappresentati dai numeri in valori. Questi flussi di cassa non devono necessariamente essere pari, come sarebbero per un\'annualità. Tuttavia, i flussi di cassa devono essere a intervalli regolari, ad esempio mensilmente o annualmente. Il tasso di rendimento interno è il tasso di interesse ricevuto per un investimento costituito da pagamenti (valori negativi) e entrate (valori positivi) che si verificano a periodi regolari.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Matrice o riferimento a celle contenenti i numeri per i quali calcolare il tasso di rendimento interno. Deve contenere almeno un valore positivo e uno negativo; testo, valori logici e celle vuote vengono ignorati.' }, + guess: { name: 'guess', detail: 'Numero che si stima sia vicino al risultato di TIR.' }, + }, + }, + ISPMT: { + description: 'Calcola l\'interesse pagato (o ricevuto) per il periodo specificato di un prestito (o investimento) con pagamenti di capitale pari.', + abstract: 'Calcola l\'interesse pagato (o ricevuto) per il periodo specificato di un prestito (o investimento) con pagamenti di capitale pari.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per l\'investimento.' }, + per: { name: 'per', detail: 'Obbligatorio. Periodo per il quale si desidera trovare l\'interesse e deve essere compreso tra 1 e Periodi.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero complessivo dei periodi di pagamento per l\'investimento.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale dell\'investimento. Per un prestito, Valatt è l\'importo del prestito.' }, + }, + }, + MDURATION: { + description: 'Restituisce la durata Macauley modificata per un titolo con un valore nominale presunto di € 100.', + abstract: 'Restituisce la durata Macauley modificata per un titolo con un valore nominale presunto di € 100.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + coupon: { name: 'coupon', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + MIRR: { + description: 'Restituisce il tasso di rendimento interno modificato relativo a una serie di flussi di cassa periodici. La funzione TIR.VAR considera sia il costo dell\'investimento che gli interessi maturati dal contante reinvestito.', + abstract: 'Restituisce il tasso di rendimento interno modificato relativo a una serie di flussi di cassa periodici. La funzione TIR.VAR considera sia il costo dell\'investimento che gli interessi maturati dal contante reinvestito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Obbligatorio. Matrice o riferimento a celle contenenti numeri. Questi numeri rappresentano una serie di pagamenti (valori negativi) e di entrate (valori positivi) che si verificano a intervalli regolari. I valori devono contenere almeno un valore positivo e uno negativo per calcolare il tasso di rendimento interno modificato. In caso contrario, TIR.RR restituirà il #DIV/0! . Se una matrice o un riferimento contiene testo, valori logici o celle vuote, tali valori verranno ignorati. Le celle contenenti il valore zero verranno invece incluse nel calcolo.' }, + financeRate: { name: 'finance_rate', detail: 'Obbligatorio. Tasso di interesse corrisposto sul contante utilizzato per i flussi di cassa.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Obbligatorio. Tasso di interesse percepito sui flussi di cassa nel momento in cui il contante viene reinvestito.' }, + }, + }, + NOMINAL: { + description: 'Restituisce il tasso di interesse nominale annuo in base al tasso effettivo e al numero di periodi di capitalizzazione per anno.', + abstract: 'Restituisce il tasso di interesse nominale annuo in base al tasso effettivo e al numero di periodi di capitalizzazione per anno.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'Obbligatorio. Tasso di interesse effettivo.' }, + npery: { name: 'npery', detail: 'Obbligatorio. Numero di periodi di capitalizzazione per anno.' }, + }, + }, + NPER: { + description: 'Restituisce il numero di periodi relativi a un investimento che prevede pagamenti periodici e costanti e un tasso di interesse costante.', + abstract: 'Restituisce il numero di periodi relativi a un investimento che prevede pagamenti periodici e costanti e un tasso di interesse costante.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per periodo.' }, + pmt: { name: 'pmt', detail: 'Obbligatorio. Pagamento effettuato in ciascun periodo e non può variare nel corso dell\'annualità. In genere, pagam include il capitale e gli interessi, ma non altre imposte o spese.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale o somma forfettaria che rappresenta il valore attuale di una serie di pagamenti futuri.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo aver effettuato l\'ultimo pagamento. Se val_futuro viene omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito, ad esempio, sarà 0.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti.' }, + }, + }, + NPV: { + description: 'Calcola il valore attuale netto di un investimento utilizzando un tasso di sconto e una serie di pagamenti (valori negativi) e di entrate (valori positivi).', + abstract: 'Calcola il valore attuale netto di un investimento utilizzando un tasso di sconto e una serie di pagamenti (valori negativi) e di entrate (valori positivi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di sconto durante uno dei periodi.' }, + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 254 argomenti che rappresentano i pagamenti e le entrate. Valore1, valore2, ... devono essere collocati a distanze di tempo regolari e al termine di ogni periodo. VAN utilizza utilizza l\'ordine di successione di valore1, valore2, ... dei valori per interpretare l\'ordine di successione dei flussi di cassa. Assicurarsi di immettere i valori relativi alle entrate e alle uscite nella sequenza desiderata. Gli argomenti rappresentati da celle vuote, valori logici, rappresentazioni di numeri come testo, valori di errore o testo non convertibile in numeri verranno ignorati. Se un argomento è rappresentato da una matrice o da un riferimento, verranno contati solo i numeri inclusi in tale matrice o riferimento. Le celle vuote, i valori logici, il testo o i valori di errore verranno ignorati.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 254 argomenti che rappresentano i pagamenti e le entrate. Valore1, valore2, ... devono essere collocati a distanze di tempo regolari e al termine di ogni periodo. VAN utilizza utilizza l\'ordine di successione di valore1, valore2, ... dei valori per interpretare l\'ordine di successione dei flussi di cassa. Assicurarsi di immettere i valori relativi alle entrate e alle uscite nella sequenza desiderata. Gli argomenti rappresentati da celle vuote, valori logici, rappresentazioni di numeri come testo, valori di errore o testo non convertibile in numeri verranno ignorati. Se un argomento è rappresentato da una matrice o da un riferimento, verranno contati solo i numeri inclusi in tale matrice o riferimento. Le celle vuote, i valori logici, il testo o i valori di errore verranno ignorati.' }, + }, + }, + ODDFPRICE: { + description: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 avente il primo periodo (breve o lungo) di durata irregolare.', + abstract: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 avente il primo periodo (breve o lungo) di durata irregolare.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo.' }, + firstCoupon: { name: 'first_coupon', detail: 'Obbligatorio. Data della prima cedola.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + ODDFYIELD: { + description: 'Restituisce il rendimento di un titolo avente il primo periodo, breve o lungo, di durata irregolare.', + abstract: 'Restituisce il rendimento di un titolo avente il primo periodo, breve o lungo, di durata irregolare.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo.' }, + firstCoupon: { name: 'first_coupon', detail: 'Obbligatorio. Data della prima cedola.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + ODDLPRICE: { + description: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 avente l\'ultimo periodo (breve o lungo) di durata irregolare.', + abstract: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 avente l\'ultimo periodo (breve o lungo) di durata irregolare.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + lastInterest: { name: 'last_interest', detail: 'Obbligatorio. Data dell\'ultima cedola.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + ODDLYIELD: { + description: 'Restituisce il rendimento di un titolo avente l\'ultimo periodo, breve o lungo, di durata irregolare.', + abstract: 'Restituisce il rendimento di un titolo avente l\'ultimo periodo, breve o lungo, di durata irregolare.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + lastInterest: { name: 'last_interest', detail: 'Obbligatorio. Data dell\'ultima cedola.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + PDURATION: { + description: 'Restituisce il numero di periodi necessari affinché un investimento raggiunga un valore specificato.', + abstract: 'Restituisce il numero di periodi necessari affinché un investimento raggiunga un valore specificato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso_int è il tasso di interesse per il periodo.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Val_attuale è il valore attuale dell\'investimento.' }, + fv: { name: 'fv', detail: 'Obbligatorio. Val_futuro è il valore futuro desiderato dell\'investimento.' }, + }, + }, + PMT: { + description: 'RATA , una delle funzioni finanziarie , calcola il pagamento per un prestito in base a pagamenti costanti e a un tasso di interesse costante.', + abstract: 'RATA , una delle funzioni finanziarie , calcola il pagamento per un prestito in base a pagamenti costanti e a un tasso di interesse costante.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per il prestito.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale di pagamenti per il prestito.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale ovvero l\'importo totale che rappresenta il valore attuale di una serie di pagamenti futuri, noto anche come capitale.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo aver effettuato l\'ultimo pagamento. Se val_futuro è omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito è pari a 0.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 (zero) o a 1 e indica le scadenze dei pagamenti.' }, + }, + }, + PPMT: { + description: 'Restituisce il pagamento sul capitale di un investimento per un dato periodo sulla base di pagamenti periodici e costanti e di un tasso di interesse costante.', + abstract: 'Restituisce il pagamento sul capitale di un investimento per un dato periodo sulla base di pagamenti periodici e costanti e di un tasso di interesse costante.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per periodo.' }, + per: { name: 'per', detail: 'Obbligatorio. Specifica il periodo e deve essere compreso tra 1 e periodi.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale dei periodi di pagamento in un\'annualità.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale o importo totale che rappresenta il valore attuale di una serie di pagamenti futuri.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo aver effettuato l\'ultimo pagamento. Se val_futuro è omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito è pari a 0.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti.' }, + }, + }, + PRICE: { + description: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga interessi periodici.', + abstract: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga interessi periodici.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + PRICEDISC: { + description: 'Restituisce il prezzo di un titolo scontato dal valore nominale di € 100.', + abstract: 'Restituisce il prezzo di un titolo scontato dal valore nominale di € 100.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + discount: { name: 'discount', detail: 'Obbligatorio. Tasso di sconto del titolo.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + PRICEMAT: { + description: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga interessi alla scadenza.', + abstract: 'Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga interessi alla scadenza.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo espressa come numero seriale.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo alla data di emissione.' }, + yld: { name: 'yld', detail: 'Obbligatorio. Rendimento annuo del titolo.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + PV: { + description: 'VALATT , una delle funzioni finanziarie , calcola il valore attuale futuro di un prestito o un investimento sulla base di un tasso di interesse costante. È possibile usare VALATT con pagamenti periodici costanti (come un mutuo o un\'altra forma di prestito) o con un valore futuro che rappresenta l\'obiettivo dell\'investimento.', + abstract: 'VALATT , una delle funzioni finanziarie , calcola il valore attuale futuro di un prestito o un investimento sulla base di un tasso di interesse costante. È possibile usare VALATT con pagamenti periodici costanti (come un mutuo o un\'altra forma di prestito) o con un valore futuro che rappresenta l\'obiettivo dell\'investimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse per periodo. Se, ad esempio, si ottiene un prestito per l\'acquisto di un\'automobile a un tasso di interesse annuo del 10% e si effettuano pagamenti mensili, il tasso di interesse mensile sarà 10%/12 o 0,83%. Nella formula sarà possibile immettere 10%/12, 0,83% o 0,0083 come tasso.' }, + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale dei periodi di pagamento in un\'annualità. Se, ad esempio, si ottiene un prestito quadriennale per l\'acquisto di un\'automobile e si effettuano pagamenti mensili, il prestito comprenderà 4*12 (o 48) periodi. Nella formula sarà possibile immettere 48 per periodi.' }, + pmt: { name: 'pmt', detail: 'Obbligatorio. Pagamento effettuato in ciascun periodo e non può variare nel corso dell\'annualità. In genere, pagam include il capitale e gli interessi, ma non altre imposte o spese. Ad esempio, i pagamenti mensili di un prestito quadriennale di € 10.000 al 12% per l\'acquisto di un\'automobile saranno di € 263,33. Si immetterebbe -263,33 nella formula come pagam. Se pagam viene omesso, è necessario includere l\'argomento val_futuro.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo l\'ultimo pagamento. Se val_futuro viene omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito, ad esempio, sarà 0. Ad esempio, se si vuole risparmiare $ 50.000 per pagare un progetto speciale in 18 anni, $ 50.000 è il valore futuro. Si potrebbe quindi fare un\'ipotesi conservatrice a un tasso di interesse e determinare quanto è necessario risparmiare ogni mese. Se val_futuro viene omesso, è necessario includere l\'argomento pagam.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti.' }, + }, + }, + RATE: { + description: 'Restituisce il tasso di interesse per periodo di un\'annualità. La funzione TASSO viene calcolata per iterazione e può avere zero o più soluzioni. Se i risultati successivi di TASSO non convergono entro 0,0000001 dopo 20 iterazioni, TASSO restituirà il #NUM! .', + abstract: 'Restituisce il tasso di interesse per periodo di un\'annualità. La funzione TASSO viene calcolata per iterazione e può avere zero o più soluzioni. Se i risultati successivi di TASSO non convergono entro 0,0000001 dopo 20 iterazioni, TASSO restituirà il #NUM! .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Obbligatorio. Numero totale dei periodi di pagamento in un\'annualità.' }, + pmt: { name: 'pmt', detail: 'Obbligatorio. Pagamento effettuato in ciascun periodo e non può variare nel corso dell\'annualità. Pagam include in genere il capitale e gli interessi, ma non altre imposte o spese. Se pagam viene omesso, sarà necessario includere l\'argomento val_futuro.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Valore attuale o importo totale che rappresenta il valore attuale di una serie di pagamenti futuri.' }, + fv: { name: 'fv', detail: 'Opzionale. Valore futuro o saldo in contanti che si desidera raggiungere dopo aver effettuato l\'ultimo pagamento. Se val_futuro viene omesso, verrà considerato uguale a 0, ovvero il valore futuro di un prestito, ad esempio, sarà 0. Se val_futuro viene omesso, è necessario includere l\'argomento pagam.' }, + type: { name: 'type', detail: 'Opzionale. Corrisponde a 0 o a 1 e indica le scadenze dei pagamenti.' }, + guess: { name: 'guess', detail: 'Opzionale. Previsione del tasso di interesse. Se ipotesi è omesso, verrà considerato uguale a 10%. Se i risultati di TASSO non convergono, provare a utilizzare dei valori differenti per ipotesi. In genere, i risultati di TASSO convergono se ipotesi è compreso tra 0 e 1.' }, + }, + }, + RECEIVED: { + description: 'Restituisce l\'ammontare ricevuto alla scadenza di un titolo interamente investito.', + abstract: 'Restituisce l\'ammontare ricevuto alla scadenza di un titolo interamente investito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + investment: { name: 'investment', detail: 'Obbligatorio. Importo investito nel titolo.' }, + discount: { name: 'discount', detail: 'Obbligatorio. Tasso di sconto del titolo.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + RRI: { + description: 'Restituisce un tasso di interesse equivalente per la crescita di un investimento.', + abstract: 'Restituisce un tasso di interesse equivalente per la crescita di un investimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Obbligatorio. Periodi è il numero di periodi per l\'investimento.' }, + pv: { name: 'pv', detail: 'Obbligatorio. Val_attuale è il valore attuale dell\'investimento.' }, + fv: { name: 'fv', detail: 'Obbligatorio. Val_futuro è il valore futuro dell\'investimento.' }, + }, + }, + SLN: { + description: 'Restituisce l\'ammortamento costante di un bene per un periodo.', + abstract: 'Restituisce l\'ammortamento costante di un bene per un periodo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo iniziale del bene.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore ottenuto alla fine dell\'ammortamento, noto anche come valore residuo del bene.' }, + life: { name: 'life', detail: 'Obbligatorio. Numero di periodi in cui il bene viene ammortizzato, noto anche come vita utile del bene.' }, + }, + }, + SYD: { + description: 'Restituisce l\'ammortamento pluriennale in cifre di un bene per un determinato periodo.', + abstract: 'Restituisce l\'ammortamento pluriennale in cifre di un bene per un determinato periodo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo iniziale del bene.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore ottenuto alla fine dell\'ammortamento, noto anche come valore residuo del bene.' }, + life: { name: 'life', detail: 'Obbligatorio. Numero di periodi in cui il bene viene ammortizzato, noto anche come vita utile del bene.' }, + per: { name: 'per', detail: 'Obbligatorio. Definisce il periodo per il quale devono essere utilizzate le stesse unità di misura di vita_utile.' }, + }, + }, + TBILLEQ: { + description: 'Restituisce il rendimento equivalente a un\'obbligazione per un Buono ordinario del Tesoro.', + abstract: 'Restituisce il rendimento equivalente a un\'obbligazione per un Buono ordinario del Tesoro.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del Buono del Tesoro. La data di liquidazione del titolo è la data successiva alla data di emissione in cui il Buono del Tesoro viene scambiato con l\'acquirente.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del Buono del Tesoro. La data di scadenza è la data in cui scade il Buono del Tesoro.' }, + discount: { name: 'discount', detail: 'Obbligatorio. Tasso di sconto del Buono del Tesoro.' }, + }, + }, + TBILLPRICE: { + description: 'Restituisce il prezzo di un Buono del Tesoro dal valore nominale di € 100.', + abstract: 'Restituisce il prezzo di un Buono del Tesoro dal valore nominale di € 100.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del Buono del Tesoro. La data di liquidazione del titolo è la data successiva alla data di emissione in cui il Buono del Tesoro viene scambiato con l\'acquirente.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del Buono del Tesoro. La data di scadenza è la data in cui scade il Buono del Tesoro.' }, + discount: { name: 'discount', detail: 'Obbligatorio. Tasso di sconto del Buono del Tesoro.' }, + }, + }, + TBILLYIELD: { + description: 'Restituisce il rendimento di un Buono del Tesoro.', + abstract: 'Restituisce il rendimento di un Buono del Tesoro.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del Buono del Tesoro. La data di liquidazione del titolo è la data successiva alla data di emissione in cui il Buono del Tesoro viene scambiato con l\'acquirente.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del Buono del Tesoro. La data di scadenza è la data in cui scade il Buono del Tesoro.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del Buono del Tesoro per valore nominale di € 100.' }, + }, + }, + VDB: { + description: 'Restituisce l\'ammortamento di un bene per un periodo specificato, inclusi periodi parziali, utilizzando il metodo a doppie quote proporzionali o un altro metodo specificato. VDB significa residuo variabile decrescente.', + abstract: 'Restituisce l\'ammortamento di un bene per un periodo specificato, inclusi periodi parziali, utilizzando il metodo a doppie quote proporzionali o un altro metodo specificato. VDB significa residuo variabile decrescente.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obbligatorio. Costo iniziale del bene.' }, + salvage: { name: 'salvage', detail: 'Obbligatorio. Valore ottenuto alla fine dell\'ammortamento, noto anche come valore residuo del bene. Questo valore può essere 0.' }, + life: { name: 'life', detail: 'Obbligatorio. Numero di periodi in cui il bene viene ammortizzato, noto anche come vita utile del bene.' }, + startPeriod: { name: 'start_period', detail: 'Obbligatorio. Periodo iniziale per il quale si desidera calcolare l\'ammortamento. Inizio deve essere espresso nella stessa unità di misura di vita_utile.' }, + endPeriod: { name: 'end_period', detail: 'Obbligatorio. Periodo finale per il quale si desidera calcolare l\'ammortamento. Fine deve essere espresso nella stessa unità di misura di vita_utile.' }, + factor: { name: 'factor', detail: 'Opzionale. Tasso di diminuzione delle quote proporzionali ai valori residui. Se fattore viene omesso, verrà considerato uguale a 2, che corrisponde al metodo di ammortamento a doppie quote proporzionali ai valori residui. Modificare fattore se non si desidera usare questo metodo. Per una descrizione del metodo di ammortamento a doppie quote proporzionali ai valori residui, vedere la funzione AMMORT.' }, + noSwitch: { name: 'no_switch', detail: 'Opzionale. Valore logico che specifica se è necessario passare all\'ammortamento costante se l\'ammortamento è maggiore della quota decrescente calcolata. Se nessuna_opzione è VERO, il passaggio all\'ammortamento costante non avverrà anche se l\'ammortamento sarà maggiore rispetto alla quota decrescente calcolata. Se nessuna_opzione è FALSO o è omesso, il passaggio all\'ammortamento costante avverrà quando l\'ammortamento sarà maggiore rispetto alla quota decrescente calcolata.' }, + }, + }, + XIRR: { + description: 'Restituisce il tasso di rendimento interno di un impiego di flussi di cassa. Per calcolare il tasso di rendimento interno di una serie di flussi di cassa periodici, utilizzare la funzione TIR.COST.', + abstract: 'Restituisce il tasso di rendimento interno di un impiego di flussi di cassa. Per calcolare il tasso di rendimento interno di una serie di flussi di cassa periodici, utilizzare la funzione TIR.COST.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Obbligatorio. Serie di flussi di cassa che corrispondono a scadenze di pagamento. Il primo pagamento è facoltativo e corrisponde a un costo o a un pagamento che avviene all\'inizio dell\'investimento. Se il primo valore è un costo o un pagamento, questo dovrà essere un valore negativo. Tutti i pagamenti successivi vengono scontati secondo una base annua di 365 giorni. È necessario che la serie di valori contenga almeno un valore positivo e uno negativo.' }, + dates: { name: 'dates', detail: 'Obbligatorio. Scadenze di pagamento che corrispondono ai pagamenti dei flussi di cassa. Le date possono essere ordinate in qualsiasi ordine. Le date devono essere immesse utilizzando la funzione DATA o devono essere il risultato di altre formule o funzioni. Usare ad esempio DATA(2008;5;23) per il 23 maggio 2008. Possono verificarsi dei problemi se le date vengono immesse come testo. .' }, + guess: { name: 'guess', detail: 'Opzionale. Numero che si suppone vicino al risultato di TIR.X.' }, + }, + }, + XNPV: { + description: 'Restituisce il valore attuale netto di un impiego di flussi di cassa. Per calcolare il valore attuale netto di una serie di flussi di cassa periodici, utilizzare la funzione VAN.', + abstract: 'Restituisce il valore attuale netto di un impiego di flussi di cassa. Per calcolare il valore attuale netto di una serie di flussi di cassa periodici, utilizzare la funzione VAN.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di sconto da applicare ai flussi di cassa.' }, + values: { name: 'values', detail: 'Obbligatorio. Serie di flussi di cassa che corrispondono a scadenze di pagamento. Il primo pagamento è facoltativo e corrisponde a un costo o a un pagamento che avviene all\'inizio dell\'investimento. Se il primo valore è un costo o un pagamento, questo dovrà essere un valore negativo. Tutti i pagamenti successivi vengono scontati secondo una base annua di 365 giorni. È necessario che la serie di valori contenga almeno un valore positivo e uno negativo.' }, + dates: { name: 'dates', detail: 'Obbligatorio. Scadenze di pagamento che corrispondono ai pagamenti dei flussi di cassa. L\'inizio delle scadenze di pagamento è indicato dalla data del primo pagamento. Tutte le altre date devono essere posteriori, ma non è necessario che seguano un ordine particolare.' }, + }, + }, + YIELD: { + description: 'Restituisce il rendimento di un titolo che frutta interessi periodici. Utilizzare la funzione REND per calcolare il rendimento di obbligazioni.', + abstract: 'Restituisce il rendimento di un titolo che frutta interessi periodici. Utilizzare la funzione REND per calcolare il rendimento di obbligazioni.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse annuo del titolo.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo per valore nominale di € 100.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + frequency: { name: 'frequency', detail: 'Obbligatorio. Numero di pagamenti per anno. Se i pagamenti sono annuali, num_rate = 1; se sono semestrali, num_rate = 2; se sono trimestrali, num_rate = 4.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + YIELDDISC: { + description: 'Restituisce il rendimento annuo di un titolo scontato.', + abstract: 'Restituisce il rendimento annuo di un titolo scontato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo per valore nominale di € 100.' }, + redemption: { name: 'redemption', detail: 'Obbligatorio. Valore di rimborso del titolo per valore nominale di € 100.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, + YIELDMAT: { + description: 'Restituisce il rendimento annuo alla scadenza di un titolo che paga interessi.', + abstract: 'Restituisce il rendimento annuo alla scadenza di un titolo che paga interessi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obbligatorio. Data di liquidazione del titolo. La data di liquidazione del titolo è la data, successiva alla data di emissione, in cui il titolo viene venduto al compratore.' }, + maturity: { name: 'maturity', detail: 'Obbligatorio. Data di scadenza del titolo. È la data in cui il titolo scade.' }, + issue: { name: 'issue', detail: 'Obbligatorio. Data di emissione del titolo espressa come numero seriale.' }, + rate: { name: 'rate', detail: 'Obbligatorio. Tasso di interesse del titolo alla data di emissione.' }, + pr: { name: 'pr', detail: 'Obbligatorio. Prezzo del titolo per valore nominale di € 100.' }, + basis: { name: 'basis', detail: 'Opzionale. Tipo di base da utilizzare per il conteggio dei giorni.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/financial/ja-JP.ts index f9344fab29..2bf203c12e 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/accrint-%E9%96%A2%E6%95%B0-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/ja-jp/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/accrintm-%E9%96%A2%E6%95%B0-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/amordegrc-%E9%96%A2%E6%95%B0-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/ja-jp/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + cost: { name: '取得価額', detail: '資産を購入した時点での価格を指定します。' }, + datePurchased: { name: '購入日', detail: '資産を購入した日付を指定します。' }, + firstPeriod: { name: '開始期', detail: '最初の会計期が終了する日付を指定します。' }, + salvage: { name: '残存価額', detail: '耐用年数が終了した時点での資産の価格を指定します。' }, + period: { name: '期', detail: '会計期 (会計年度) を指定します。' }, + rate: { name: '率', detail: '減価償却率を指定します。' }, + basis: { name: '基準', detail: '1 年を何日として計算するかを表す数値を指定します。' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/amorlinc-%E9%96%A2%E6%95%B0-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coupdaybs-%E9%96%A2%E6%95%B0-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coupdays-%E9%96%A2%E6%95%B0-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coupdaysnc-%E9%96%A2%E6%95%B0-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coupncd-%E9%96%A2%E6%95%B0-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coupnum-%E9%96%A2%E6%95%B0-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/couppcd-%E9%96%A2%E6%95%B0-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cumipmt-%E9%96%A2%E6%95%B0-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cumprinc-%E9%96%A2%E6%95%B0-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/db-%E9%96%A2%E6%95%B0-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ddb-%E9%96%A2%E6%95%B0-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/disc-%E9%96%A2%E6%95%B0-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/ja-jp/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dollarde-%E9%96%A2%E6%95%B0-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dollarfr-%E9%96%A2%E6%95%B0-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/duration-%E9%96%A2%E6%95%B0-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/ja-jp/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/effect-%E9%96%A2%E6%95%B0-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/effect-function', }, ], functionParameter: { @@ -331,34 +336,34 @@ const locale: typeof enUS = { }, }, FV: { - description: '投資の将来価値を返します。', - abstract: '投資の将来価値を返します。', + description: '財務関数 の 1 つである FV は、一定の利率を基に投資の将来価値を計算します。 定期支払い、定額支払い、一括支払いのいずれかに FV を使うことができます。', + abstract: '財務関数 の 1 つである FV は、一定の利率を基に投資の将来価値を計算します。 定期支払い、定額支払い、一括支払いのいずれかに FV を使うことができます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fv-%E9%96%A2%E6%95%B0-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fv-function', }, ], functionParameter: { - rate: { name: '利率', detail: '投資期間を通じて一定の利率を指定します。' }, - nper: { name: '期間内支払回数', detail: '投資期間全体での支払回数の合計を指定します。' }, - pmt: { name: '定期支払額', detail: '各期間に行われた支払い。それは年金の生活の中で変わることはできません' }, - pv: { name: '現在価値', detail: '投資の現在価値、つまり将来行われる一連の支払いを、現時点で一括払いした場合の合計金額を指定します。' }, - type: { name: '支払期日', detail: 'いつ支払いが行われるかを、数値の 0 または 1 で指定します。' }, + rate: { name: '利率', detail: '必須。 投資期間を通じて一定の利率を指定します。' }, + nper: { name: '期間内支払回数', detail: '必須。 投資期間全体での支払回数の合計を指定します。' }, + pmt: { name: '定期支払額', detail: '必須。 各期間に行われた支払い。それは年金の生活の中で変わることはできません。 通常、pmt には元金と利息が含まれますが、その他の手数料や税金は含まれていません。 pmt を省略する場合は、pv 引数を含める必要があります。' }, + pv: { name: '現在価値', detail: 'オプション。 投資の現在価値、つまり将来行われる一連の支払いを、現時点で一括払いした場合の合計金額を指定します。 現在価値を省略した場合は 0 (ゼロ) を指定したと見なされ、定期支払額を指定する必要があります。' }, + type: { name: '支払期日', detail: 'オプション。 いつ支払いが行われるかを、数値の 0 または 1 で指定します。 支払期日を省略すると、0 を指定したと見なされます。' }, }, }, FVSCHEDULE: { - description: '投資期間内の一連の金利を複利計算することにより、初期投資の元金の将来価値を返します。', - abstract: '投資期間内の一連の金利を複利計算することにより、初期投資の元金の将来価値を返します。', + description: '投資期間内の一連の金利を複利計算することにより、初期投資の元金の将来価値を返します。 FVSCHEDULE 関数を使用して、変動または調整可能な利率による投資の将来価値を計算します。', + abstract: '投資期間内の一連の金利を複利計算することにより、初期投資の元金の将来価値を返します。 FVSCHEDULE 関数を使用して、変動または調整可能な利率による投資の将来価値を計算します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fvschedule-%E9%96%A2%E6%95%B0-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: '元金', detail: '現在の貸付額、つまり将来行われる一連の支払いを、現時点で一括支払いした場合の合計金額を指定します。' }, - schedule: { name: '利率配列', detail: '投資期間内の変動金利を配列として指定します。' }, + principal: { name: '元金', detail: '必須。 現在の貸付額、つまり将来行われる一連の支払いを、現時点で一括支払いした場合の合計金額を指定します。' }, + schedule: { name: '利率配列', detail: '必須。 投資期間内の変動金利を配列として指定します。' }, }, }, INTRATE: { @@ -367,15 +372,15 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/intrate-%E9%96%A2%E6%95%B0-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: '受渡日', detail: '証券の受渡日を指定します。' }, - maturity: { name: '満期日', detail: '証券の満期日を指定します。' }, - investment: { name: '投資額', detail: '証券への投資額を指定します。' }, - redemption: { name: '償還価額', detail: '満期日における証券の償還額を指定します。' }, - basis: { name: '基準', detail: '計算に使用する基準日数を示す数値を指定します。' }, + settlement: { name: '受渡日', detail: '必須。 証券の受渡日を指定します。 受渡日とは、発行日以降に証券が買い手に引き渡される日付です。' }, + maturity: { name: '満期日', detail: '必須。 証券の満期日を指定します。 満期日とは、証券の支払期日です。' }, + investment: { name: '投資額', detail: '必須。 証券への投資額を指定します。' }, + redemption: { name: '償還価額', detail: '必須。 満期日における証券の償還額を指定します。' }, + basis: { name: '基準', detail: 'オプション。 計算に使用する基準日数を示す数値を指定します。' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ipmt-%E9%96%A2%E6%95%B0-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ipmt-function', }, ], functionParameter: { @@ -402,7 +407,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/irr-%E9%96%A2%E6%95%B0-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/irr-function', }, ], functionParameter: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ispmt-%E9%96%A2%E6%95%B0-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mduration-%E9%96%A2%E6%95%B0-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mirr-%E9%96%A2%E6%95%B0-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/nominal-%E9%96%A2%E6%95%B0-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/nper-%E9%96%A2%E6%95%B0-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/ja-jp/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/npv-%E9%96%A2%E6%95%B0-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/ja-jp/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oddfprice-%E9%96%A2%E6%95%B0-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oddfyield-%E9%96%A2%E6%95%B0-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oddlprice-%E9%96%A2%E6%95%B0-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/oddlyield-%E9%96%A2%E6%95%B0-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/ja-jp/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pduration-%E9%96%A2%E6%95%B0-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pmt-%E9%96%A2%E6%95%B0-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ppmt-%E9%96%A2%E6%95%B0-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/price-%E9%96%A2%E6%95%B0-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pricedisc-%E9%96%A2%E6%95%B0-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pricemat-%E9%96%A2%E6%95%B0-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pv-%E9%96%A2%E6%95%B0-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rate-%E9%96%A2%E6%95%B0-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/received-%E9%96%A2%E6%95%B0-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rri-%E9%96%A2%E6%95%B0-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sln-%E9%96%A2%E6%95%B0-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/syd-%E9%96%A2%E6%95%B0-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/ja-jp/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tbilleq-%E9%96%A2%E6%95%B0-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tbillprice-%E9%96%A2%E6%95%B0-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tbillyield-%E9%96%A2%E6%95%B0-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/vdb-%E9%96%A2%E6%95%B0-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/ja-jp/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/xirr-%E9%96%A2%E6%95%B0-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/xnpv-%E9%96%A2%E6%95%B0-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/yield-%E9%96%A2%E6%95%B0-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/yielddisc-%E9%96%A2%E6%95%B0-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/yieldmat-%E9%96%A2%E6%95%B0-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/financial/ko-KR.ts index aefda2108f..abfd4072b6 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/accrint-함수-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/ko-kr/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/accrintm-함수-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/amordegrc-함수-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/ko-kr/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + cost: { name: 'cost', detail: '자산의 원가입니다.' }, + datePurchased: { name: 'date_purchased', detail: '자산의 구입일입니다.' }, + firstPeriod: { name: 'first_period', detail: '첫 번째 기간의 종료일입니다.' }, + salvage: { name: 'salvage', detail: '자산의 수명이 끝날 때의 잔존가입니다.' }, + period: { name: 'period', detail: '기간입니다.' }, + rate: { name: 'rate', detail: '감가상각률입니다.' }, + basis: { name: 'basis', detail: '사용할 연도 기준입니다.' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/amorlinc-함수-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coupdaybs-함수-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coupdays-함수-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coupdaysnc-함수-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coupncd-함수-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coupnum-함수-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/couppcd-함수-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cumipmt-함수-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cumprinc-함수-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/db-함수-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ddb-함수-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/disc-함수-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/ko-kr/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dollarde-함수-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dollarfr-함수-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/duration-함수-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/ko-kr/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/effect-함수-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/effect-function', }, ], functionParameter: { @@ -331,78 +336,78 @@ const locale: typeof enUS = { }, }, FV: { - description: '투자의 미래 가치를 반환합니다', - abstract: '투자의 미래 가치를 반환합니다', + description: 'FV 는 재무 함수 중 하나로, 고정 이자율을 기반으로 투자의 미래 가치를 계산합니다. FV를 정기적인 납입액 또는 단일 일괄 지불에 사용할 수 있습니다.', + abstract: 'FV 는 재무 함수 중 하나로, 고정 이자율을 기반으로 투자의 미래 가치를 계산합니다. FV를 정기적인 납입액 또는 단일 일괄 지불에 사용할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fv-함수-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fv-function', }, ], functionParameter: { - rate: { name: 'rate', detail: '기간당 이자율입니다.' }, - nper: { name: 'nper', detail: '연금의 총 지불 기간 수입니다.' }, - pmt: { name: 'pmt', detail: '각 기간에 지불되는 금액으로, 연금 기간 동안 변경할 수 없습니다.' }, - pv: { name: 'pv', detail: '현재 가치 또는 일련의 미래 지불금의 현재 가치 합계입니다.' }, - type: { name: 'type', detail: '지불 시기를 나타내는 숫자 0 또는 1입니다.' }, + rate: { name: 'rate', detail: '필수. 기간별 이자율입니다.' }, + nper: { name: 'nper', detail: '필수. 총 납입 기간 수입니다.' }, + pmt: { name: 'pmt', detail: '필수. 각 기간의 납입액으로서 전 기간 동안 일정합니다. 일반적으로 pmt에는 기타 비용과 세금을 제외한 원금과 이자가 포함됩니다. pmt를 생략할 경우 pv 인수를 반드시 지정해야 합니다.' }, + pv: { name: 'pv', detail: '선택적. 일련의 미래 지급액에 상응하는 현재 가치의 개략적인 합계입니다. pv를 생략하면 0으로 간주되며 이 경우 pmt 인수를 반드시 포함해야 합니다.' }, + type: { name: 'type', detail: '선택적. 납입 시점을 나타내는 숫자로서 0 또는 1입니다. 생략하면 0으로 간주됩니다.' }, }, }, FVSCHEDULE: { - description: '일련의 복리 이자율을 적용한 후 초기 원금의 미래 가치를 반환합니다', - abstract: '일련의 복리 이자율을 적용한 후 초기 원금의 미래 가치를 반환합니다', + description: '초기 원금에 일련의 복리 이자율을 적용했을 때의 예상 금액을 반환합니다. FVSCHEDULE을 사용하면 투자액에 다양한 이자율을 적용했을 때의 예상 금액을 계산할 수 있습니다.', + abstract: '초기 원금에 일련의 복리 이자율을 적용했을 때의 예상 금액을 반환합니다. FVSCHEDULE을 사용하면 투자액에 다양한 이자율을 적용했을 때의 예상 금액을 계산할 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fvschedule-함수-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: 'principal', detail: '현재 가치입니다.' }, - schedule: { name: 'schedule', detail: '적용할 이자율 배열입니다.' }, + principal: { name: 'principal', detail: '필수. 현재 가치입니다.' }, + schedule: { name: 'schedule', detail: '필수. 적용할 이자율로 구성된 배열입니다.' }, }, }, INTRATE: { - description: '완전 투자된 증권의 이자율을 반환합니다', - abstract: '완전 투자된 증권의 이자율을 반환합니다', + description: '완전 투자 유가 증권의 이자율을 반환합니다.', + abstract: '완전 투자 유가 증권의 이자율을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/intrate-함수-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: 'settlement', detail: '증권의 결제일입니다.' }, - maturity: { name: 'maturity', detail: '증권의 만기일입니다.' }, - investment: { name: 'investment', detail: '증권에 투자한 금액입니다.' }, - redemption: { name: 'redemption', detail: '만기에 받을 금액입니다.' }, - basis: { name: 'basis', detail: '사용할 일수 계산 기준 유형입니다.' }, + settlement: { name: 'settlement', detail: '필수. 유가 증권의 결산일입니다. 즉, 유가 증권이 매수자에게 매도된 발행일 다음 날입니다.' }, + maturity: { name: 'maturity', detail: '필수. 유가 증권의 만기일입니다. 즉, 유가 증권이 만기가 되는 날짜입니다.' }, + investment: { name: 'investment', detail: '필수. 유가 증권의 투자액입니다.' }, + redemption: { name: 'redemption', detail: '필수. 만기 시 상환액입니다.' }, + basis: { name: 'basis', detail: '선택적. 날짜 계산 기준입니다.' }, }, }, IPMT: { - description: '지정된 기간의 투자에 대한 이자 지불액을 반환합니다', - abstract: '지정된 기간의 투자에 대한 이자 지불액을 반환합니다', + description: '일정 금액을 정기적으로 납입하고 일정한 이자율이 적용되는 투자에 대해 주어진 기간 동안의 이자를 계산합니다.', + abstract: '일정 금액을 정기적으로 납입하고 일정한 이자율이 적용되는 투자에 대해 주어진 기간 동안의 이자를 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ipmt-함수-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ipmt-function', }, ], functionParameter: { - rate: { name: 'rate', detail: '기간당 이자율입니다.' }, - per: { name: 'per', detail: '이자를 찾으려는 기간으로 1에서 nper 사이의 범위에 있어야 합니다.' }, - nper: { name: 'nper', detail: '연금의 총 지불 기간 수입니다.' }, - pv: { name: 'pv', detail: '현재 가치 또는 일련의 미래 지불금의 현재 가치 합계입니다.' }, - fv: { name: 'fv', detail: '미래 가치 또는 마지막 지불 후 달성하려는 현금 잔액입니다.' }, - type: { name: 'type', detail: '지불 시기를 나타내는 숫자 0 또는 1입니다.' }, + rate: { name: 'rate', detail: '필수. 기간별 이자율입니다.' }, + per: { name: 'per', detail: '필수. 이자를 계산할 기간으로 1에서 nper 사이여야 합니다.' }, + nper: { name: 'nper', detail: '필수. 총 납입 기간 수입니다.' }, + pv: { name: 'pv', detail: '필수. 일련의 미래 지급액에 상응하는 현재 가치의 개략적인 합계입니다.' }, + fv: { name: 'fv', detail: '선택적. 미래 가치 또는 마지막 지불 후 달성하려는 현금 잔액입니다. fv를 생략하면 0으로 간주됩니다(예: 대출의 미래 값은 0).' }, + type: { name: 'type', detail: '선택적. 납입 시점을 나타내는 숫자로서 0 또는 1입니다. 생략하면 0으로 간주됩니다.' }, }, }, IRR: { - description: '일련의 현금 흐름에 대한 내부 수익률을 반환합니다', - abstract: '일련의 현금 흐름에 대한 내부 수익률을 반환합니다', + description: '숫자로 표시되는 일련의 주기적인 현금 흐름에 대한 내부 수익률을 반환합니다. 이 현금 흐름은 연금과 같이 일정할 필요는 없습니다. 그러나 현금 흐름은 월간이나 연간처럼 정기적으로 발생해야 합니다. 내부 수익률은 주기적으로 발생하는 납입액(음수)과 수익액(양수)으로 구성되는 투자 이자율입니다.', + abstract: '숫자로 표시되는 일련의 주기적인 현금 흐름에 대한 내부 수익률을 반환합니다. 이 현금 흐름은 연금과 같이 일정할 필요는 없습니다. 그러나 현금 흐름은 월간이나 연간처럼 정기적으로 발생해야 합니다. 내부 수익률은 주기적으로 발생하는 납입액(음수)과 수익액(양수)으로 구성되는 투자 이자율입니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/irr-함수-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/irr-function', }, ], functionParameter: { @@ -411,19 +416,19 @@ const locale: typeof enUS = { }, }, ISPMT: { - description: '투자의 특정 기간 동안 지불된 이자를 계산합니다', - abstract: '투자의 특정 기간 동안 지불된 이자를 계산합니다', + description: '원금 지급을 통해 지정된 대출 기간(또는 투자)에 대해 지급되거나 받은 이자를 계산합니다.', + abstract: '원금 지급을 통해 지정된 대출 기간(또는 투자)에 대해 지급되거나 받은 이자를 계산합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ispmt-함수-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ispmt-function', }, ], functionParameter: { - rate: { name: 'rate', detail: '투자의 이자율입니다.' }, - per: { name: 'per', detail: '이자를 찾으려는 기간으로 1과 Nper 사이여야 합니다.' }, - nper: { name: 'nper', detail: '투자의 총 지불 기간 수입니다.' }, - pv: { name: 'pv', detail: '투자의 현재 가치입니다. 대출의 경우 Pv는 대출 금액입니다.' }, + rate: { name: 'rate', detail: '필수 요소입니다. 투자에 대한 이자율입니다.' }, + per: { name: 'per', detail: '필수 요소입니다. 관심사를 찾으려는 기간이며 1과 Nper 사이여야 합니다.' }, + nper: { name: 'nper', detail: '필수 요소입니다. 투자에 대한 총 지급 횟수입니다.' }, + pv: { name: 'pv', detail: '필수 요소입니다. 투자 금액의 현재 가치입니다. 대출의 경우 Pv는 대출 금액입니다.' }, }, }, MDURATION: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mduration-함수-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mirr-함수-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/nominal-함수-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/nper-함수-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/ko-kr/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/npv-함수-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/ko-kr/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/oddfprice-함수-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/oddfyield-함수-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/oddlprice-함수-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/oddlyield-함수-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/ko-kr/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pduration-함수-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pmt-함수-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ppmt-함수-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/price-함수-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pricedisc-함수-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pricemat-함수-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pv-함수-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rate-함수-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/received-함수-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rri-함수-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sln-함수-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/syd-함수-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/ko-kr/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tbilleq-함수-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tbillprice-함수-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tbillyield-함수-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/vdb-함수-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/ko-kr/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/xirr-함수-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/xnpv-함수-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/yield-함수-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/yielddisc-함수-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/yieldmat-함수-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/financial/pl-PL.ts new file mode 100644 index 0000000000..cc9fa7ebc3 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/pl-PL.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'Zwraca naliczone odsetki dla papieru wartościowego, przynoszącego okresowe odsetki.', + abstract: 'Zwraca naliczone odsetki dla papieru wartościowego, przynoszącego okresowe odsetki.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Wymagane. Data emisji papieru wartościowego.' }, + firstInterest: { name: 'first_interest', detail: 'Wymagane. Data pierwszej raty odsetek od papieru wartościowego.' }, + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + par: { name: 'par', detail: 'Wymagane. Cena papieru wartościowego. W przypadku pominięcia wartości nominalnej funkcja NAL.ODS stosuje wartość 1000 zł.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + calcMethod: { name: 'calc_method', detail: 'Opcjonalne. Wartość logiczna, która określa sposób obliczania całkowitego przyrostu odsetek, gdy data w argumencie rozliczenie jest późniejsza od daty określonej w argumencie pierwsze_odsetki. Wartość PRAWDA (1) powoduje zwrócenie całkowitego przyrostu odsetek od daty określonej w argumencie emisja do daty w argumencie rozliczenie. Wartość FAŁSZ (0) powoduje zwrócenie przyrostu odsetek od daty określonej w argumencie pierwsze_odsetki do daty w argumencie rozliczenie. Jeśli argument nie zostanie wprowadzony, przyjmowana jest wartość domyślna PRAWDA.' }, + }, + }, + ACCRINTM: { + description: 'Zwraca naliczone odsetki dla papieru wartościowego, dla którego wypłata odsetek następuje w terminie jego płatności.', + abstract: 'Zwraca naliczone odsetki dla papieru wartościowego, dla którego wypłata odsetek następuje w terminie jego płatności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Wymagane. Data emisji papieru wartościowego.' }, + settlement: { name: 'settlement', detail: 'Wymagane. Data terminu płatności papieru wartościowego.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + par: { name: 'par', detail: 'Wymagane. Cena papieru wartościowego. W przypadku pominięcia wartości nominalnej funkcja NAL.ODS.WYKUP stosuje wartość 1000 zł.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + AMORDEGRC: { + description: 'Zwraca amortyzację dla każdego okresu rozrachunkowego. Funkcja ta jest dostosowana do francuskiego systemu księgowego. Jeśli zakupu środka trwałego dokonuje się w połowie roku rozrachunkowego, to pod uwagę bierze się amortyzację podzieloną proporcjonalnie. Jest to funkcja podobna do funkcji AMORT.LIN, oprócz tego, że współczynniki amortyzacji stosowane w obliczeniach zależą od okresu użytkowania środków trwałych.', + abstract: 'Zwraca amortyzację dla każdego okresu rozrachunkowego. Funkcja ta jest dostosowana do francuskiego systemu księgowego. Jeśli zakupu środka trwałego dokonuje się w połowie roku rozrachunkowego, to pod uwagę bierze się amortyzację podzieloną proporcjonalnie. Jest to funkcja podobna do funkcji AMORT.LIN, oprócz tego, że współczynniki amortyzacji stosowane w obliczeniach zależą od okresu użytkowania środków trwałych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Cena zakupu środka trwałego.' }, + datePurchased: { name: 'date_purchased', detail: 'Wymagane. Data zakupu środka trwałego.' }, + firstPeriod: { name: 'first_period', detail: 'Wymagane. Data kończąca pierwszy okres.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość na koniec okresu użytkowania środka trwałego.' }, + period: { name: 'period', detail: 'Wymagane. Okres.' }, + rate: { name: 'rate', detail: 'Wymagane. Stopa amortyzacji.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Podstawa roczna, która ma być używana.' }, + }, + }, + AMORLINC: { + description: 'Zwraca amortyzację dla każdego okresu rozrachunkowego. Funkcja ta jest dostosowana do francuskiego systemu księgowego. Jeśli zakupu środka trwałego dokonuje się w połowie roku rozrachunkowego, to pod uwagę bierze się amortyzację podzieloną proporcjonalnie.', + abstract: 'Zwraca amortyzację dla każdego okresu rozrachunkowego. Funkcja ta jest dostosowana do francuskiego systemu księgowego. Jeśli zakupu środka trwałego dokonuje się w połowie roku rozrachunkowego, to pod uwagę bierze się amortyzację podzieloną proporcjonalnie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Cena zakupu środka trwałego.' }, + datePurchased: { name: 'date_purchased', detail: 'Wymagane. Data zakupu środka trwałego.' }, + firstPeriod: { name: 'first_period', detail: 'Wymagane. Data kończąca pierwszy okres.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość na koniec okresu użytkowania środka trwałego.' }, + period: { name: 'period', detail: 'Wymagane. Okres.' }, + rate: { name: 'rate', detail: 'Wymagane. Stopa amortyzacji.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Podstawa roczna, która ma być używana.' }, + }, + }, + COUPDAYBS: { + description: 'Funkcja WYPŁ.DNI.OD.POCZ zwraca liczbę dni od początku okresu dywidendy do daty rozliczenia.', + abstract: 'Funkcja WYPŁ.DNI.OD.POCZ zwraca liczbę dni od początku okresu dywidendy do daty rozliczenia.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + COUPDAYS: { + description: 'Zwraca liczbę dni w okresie dywidendy, który zawiera datę rozliczenia.', + abstract: 'Zwraca liczbę dni w okresie dywidendy, który zawiera datę rozliczenia.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + COUPDAYSNC: { + description: 'Zwraca liczbę dni od daty rozliczenia do daty następnego kuponu.', + abstract: 'Zwraca liczbę dni od daty rozliczenia do daty następnego kuponu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Data rozliczenia papieru wartościowego.' }, + maturity: { name: 'maturity', detail: 'Data terminu wykupu papieru wartościowego.' }, + frequency: { name: 'frequency', detail: 'Liczba płatności kuponowych w roku.' }, + basis: { name: 'basis', detail: 'Typ używanej podstawy liczenia dni.' }, + }, + }, + COUPNCD: { + description: 'Zwraca liczbę reprezentującą datę następnej płatności dywidendy po dacie rozliczenia.', + abstract: 'Zwraca liczbę reprezentującą datę następnej płatności dywidendy po dacie rozliczenia.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + COUPNUM: { + description: 'Zwraca liczbę wypłacanych dywidend między datą rozliczenia i datą spłaty, przy czym liczba ta jest zaokrąglana do najbliższej pełnej dywidendy.', + abstract: 'Zwraca liczbę wypłacanych dywidend między datą rozliczenia i datą spłaty, przy czym liczba ta jest zaokrąglana do najbliższej pełnej dywidendy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + COUPPCD: { + description: 'Zwraca liczbę reprezentującą poprzednią datę płatności dywidendy przed datą rozliczenia.', + abstract: 'Zwraca liczbę reprezentującą poprzednią datę płatności dywidendy przed datą rozliczenia.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + CUMIPMT: { + description: 'Zwraca wartość skumulowanych odsetek spłaconych dla danego kredytu między argumentami okres_początkowy i okres_końcowy.', + abstract: 'Zwraca wartość skumulowanych odsetek spłaconych dla danego kredytu między argumentami okres_początkowy i okres_końcowy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa oprocentowania.' }, + nper: { name: 'nper', detail: 'Wymagane. Ogólna liczba okresów płatności.' }, + pv: { name: 'pv', detail: 'Wymagane. Wartość obecna.' }, + startPeriod: { name: 'start_period', detail: 'Wymagane. Pierwszy okres w wyliczeniu. Okresy płatności są ponumerowane i zaczynają się od liczby 1.' }, + endPeriod: { name: 'end_period', detail: 'Wymagane. Ostatni okres w wyliczeniu.' }, + type: { name: 'type', detail: 'Wymagane. Rozkład płatności w czasie.' }, + }, + }, + CUMPRINC: { + description: 'Zwraca skumulowaną wartość kapitału spłaconego dla danego kredytu pomiędzy argumentami okres_początkowy i okres_końcowy.', + abstract: 'Zwraca skumulowaną wartość kapitału spłaconego dla danego kredytu pomiędzy argumentami okres_początkowy i okres_końcowy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa oprocentowania.' }, + nper: { name: 'nper', detail: 'Wymagane. Ogólna liczba okresów płatności.' }, + pv: { name: 'pv', detail: 'Wymagane. Wartość obecna.' }, + startPeriod: { name: 'start_period', detail: 'Wymagane. Pierwszy okres w wyliczeniu. Okresy płatności są ponumerowane i zaczynają się od liczby 1.' }, + endPeriod: { name: 'end_period', detail: 'Wymagane. Ostatni okres w wyliczeniu.' }, + type: { name: 'type', detail: 'Wymagane. Rozkład płatności w czasie.' }, + }, + }, + DB: { + description: 'Zwraca amortyzację środka trwałego w podanym okresie, obliczoną z wykorzystaniem metody równomiernie malejącego salda.', + abstract: 'Zwraca amortyzację środka trwałego w podanym okresie, obliczoną z wykorzystaniem metody równomiernie malejącego salda.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Początkowy koszt środka trwałego.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość środka trwałego po zakończonej amortyzacji (zwana również wartością odzyskaną środka trwałego).' }, + life: { name: 'life', detail: 'Wymagane. Liczba okresów, w czasie których środek trwały jest amortyzowany (zwana również okresem użytkowania środka trwałego).' }, + period: { name: 'period', detail: 'Wymagane. Okres, dla którego zostanie obliczona amortyzacja. Argument „okres” musi być wyrażony w tych samych jednostkach, co okres użytkowania środka trwałego.' }, + month: { name: 'month', detail: 'Opcjonalne. Liczba miesięcy w pierwszym roku. Jeśli argument „miesiąc” zostanie pominięty, przyjmuje się, że liczba miesięcy jest równa 12.' }, + }, + }, + DDB: { + description: 'Zwraca amortyzację środka trwałego w podanym okresie, obliczoną przy użyciu metody podwójnie malejącego salda lub innej metody określonej przez użytkownika.', + abstract: 'Zwraca amortyzację środka trwałego w podanym okresie, obliczoną przy użyciu metody podwójnie malejącego salda lub innej metody określonej przez użytkownika.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Początkowy koszt środka trwałego.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość środka trwałego po zakończonej amortyzacji (zwana również wartością odzyskaną środka trwałego). Ta wartość może być równa 0.' }, + life: { name: 'life', detail: 'Wymagane. Liczba okresów, w czasie których środek trwały jest amortyzowany (zwana również okresem użytkowania środka trwałego).' }, + period: { name: 'period', detail: 'Wymagane. Okres, dla którego zostanie obliczona amortyzacja. Argument „okres” musi być wyrażony w tych samych jednostkach, co okres użytkowania środka trwałego.' }, + factor: { name: 'factor', detail: 'Opcjonalne. Szybkość, z jaką zmniejsza się saldo. Jeśli argument ten zostanie pominięty, to zakłada się, że wynosi 2 (metoda podwójnie malejącego salda).' }, + }, + }, + DISC: { + description: 'Zwraca stopę dyskontową papieru wartościowego.', + abstract: 'Zwraca stopę dyskontową papieru wartościowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Data rozliczenia papieru wartościowego.' }, + maturity: { name: 'maturity', detail: 'Data terminu wykupu papieru wartościowego.' }, + pr: { name: 'pr', detail: 'Cena papieru wartościowego przypadająca na 100 USD wartości nominalnej.' }, + redemption: { name: 'redemption', detail: 'Wartość wykupu przypadająca na 100 USD wartości nominalnej.' }, + basis: { name: 'basis', detail: 'Typ używanej podstawy liczenia dni.' }, + }, + }, + DOLLARDE: { + description: 'Konwertuje cenę w dolarach wyrażoną jako ułamek na cenę w dolarach wyrażoną jako liczbę dziesiętną.', + abstract: 'Konwertuje cenę w dolarach wyrażoną jako ułamek na cenę w dolarach wyrażoną jako liczbę dziesiętną.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Liczba wyrażona częścią całkowitą i ułamkową, rozdzielonymi separatorem dziesiętnym.' }, + fraction: { name: 'fraction', detail: 'Liczba całkowita używana jako mianownik ułamka.' }, + }, + }, + DOLLARFR: { + description: 'Konwertuje cenę w dolarach wyrażoną jako liczbę dziesiętną na cenę w dolarach wyrażoną jako ułamek.', + abstract: 'Konwertuje cenę w dolarach wyrażoną jako liczbę dziesiętną na cenę w dolarach wyrażoną jako ułamek.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Liczba dziesiętna.' }, + fraction: { name: 'fraction', detail: 'Liczba całkowita używana jako mianownik ułamka.' }, + }, + }, + DURATION: { + description: 'Funkcja CZAS.TRWANIA , jedna z funkcji Finansowych , zwraca czas trwania Makauleya dla założonej wartości nominalnej 100 zł. Czas trwania jest definiowany jako średnia ważona bieżącej wartości przepływów gotówkowych i jest używany jako miara reakcji ceny obligacji na zmiany rentowności.', + abstract: 'Funkcja CZAS.TRWANIA , jedna z funkcji Finansowych , zwraca czas trwania Makauleya dla założonej wartości nominalnej 100 zł. Czas trwania jest definiowany jako średnia ważona bieżącej wartości przepływów gotówkowych i jest używany jako miara reakcji ceny obligacji na zmiany rentowności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + coupon: { name: 'coupon', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Wymagane. Roczna rentowność papieru wartościowego.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + EFFECT: { + description: 'Zwraca efektywną roczną stopę procentową przy danej rocznej stopie nominalnej i liczbie okresów kapitalizacji w roku.', + abstract: 'Zwraca efektywną roczną stopę procentową przy danej rocznej stopie nominalnej i liczbie okresów kapitalizacji w roku.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'Wymagane. Nominalna stopa procentowa.' }, + npery: { name: 'npery', detail: 'Wymagane. Liczba kapitalizacji w roku.' }, + }, + }, + FV: { + description: 'Funkcja FV , jedna z funkcji finansowych , oblicza przyszłą wartość inwestycji przy założeniu stałej stopy procentowej. Funkcji FV można używać w przypadku okresowych, stałych płatności albo pojedynczej płatności (ryczałtu).', + abstract: 'Funkcja FV , jedna z funkcji finansowych , oblicza przyszłą wartość inwestycji przy założeniu stałej stopy procentowej. Funkcji FV można używać w przypadku okresowych, stałych płatności albo pojedynczej płatności (ryczałtu).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Argument wymagany. Stopa procentowa dla okresu.' }, + nper: { name: 'nper', detail: 'Argument wymagany. Całkowita liczba okresów płatności w okresie spłaty.' }, + pmt: { name: 'pmt', detail: 'Argument wymagany. Płatność dokonywana w każdym okresie; nie może się zmienić w czasie trwania kredytu. Rata obejmuje zazwyczaj kapitał i odsetki z wyłączeniem innych opłat i podatków. Jeśli argument „rata” zostanie pominięty, musi zostać podany argument „wb”.' }, + pv: { name: 'pv', detail: 'Opcjonalnie. Wartość bieżąca lub skumulowana wartość przyszłego strumienia płatności według wyceny na dzień obecny. Jeśli argument „wb” zostanie pominięty, przyjmuje się, że ma wartość 0 (zero) i należy określić argument „rata”.' }, + type: { name: 'type', detail: 'Opcjonalnie. Liczba 0 albo 1, która wskazuje, kiedy płatność jest należna. Jeśli argument typ zostanie pominięty, przyjmuje się, że jest równy 0.' }, + }, + }, + FVSCHEDULE: { + description: 'Zwraca wartość przyszłą kapitału początkowego przy stopie procentowej zmiennej w poszczególnych okresach. Funkcja WART.PRZYSZŁ.KAP umożliwia obliczenie przyszłej wartości inwestycji przy zmiennej stopie procentowej.', + abstract: 'Zwraca wartość przyszłą kapitału początkowego przy stopie procentowej zmiennej w poszczególnych okresach. Funkcja WART.PRZYSZŁ.KAP umożliwia obliczenie przyszłej wartości inwestycji przy zmiennej stopie procentowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Wymagane. Wartość obecna.' }, + schedule: { name: 'schedule', detail: 'Wymagane. Tablica stóp procentowych, które należy zastosować.' }, + }, + }, + INTRATE: { + description: 'Zwraca wartość stopy procentowej w pełni zainwestowanego papieru wartościowego.', + abstract: 'Zwraca wartość stopy procentowej w pełni zainwestowanego papieru wartościowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + investment: { name: 'investment', detail: 'Wymagane. Kwota zainwestowana w papier wartościowy.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Kwota otrzymywana w momencie wykupu papieru wartościowego.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + IPMT: { + description: 'Zwraca wysokość spłaty odsetek dla danego okresu dla kredytu opartego na regularnych, stałych spłatach i stałej stopie procentowej.', + abstract: 'Zwraca wysokość spłaty odsetek dla danego okresu dla kredytu opartego na regularnych, stałych spłatach i stałej stopie procentowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa procentowa dla okresu.' }, + per: { name: 'per', detail: 'Wymagane. Okres, dla którego należy znaleźć odsetki i musi znajdować się w zakresie od 1 do liczba_okresów.' }, + nper: { name: 'nper', detail: 'Wymagane. Całkowita liczba okresów płatności w okresie spłaty.' }, + pv: { name: 'pv', detail: 'Wymagane. Wartość bieżąca lub skumulowana wartość przyszłego strumienia płatności według wyceny na dzień obecny.' }, + fv: { name: 'fv', detail: 'Opcjonalne. Przyszła wartość, czyli saldo kasowe, które ma zostać osiągnięte po dokonaniu ostatniej płatności. Jeśli argument wp jest pominięty, za jego wartość jest uznawane 0 (przyszła wartość pożyczki na przykład wynosi 0).' }, + type: { name: 'type', detail: 'Opcjonalne. Liczba 0 albo 1, która wskazuje, kiedy płatność jest należna. Jeśli argument typ zostanie pominięty, przyjmuje się, że jego wartość wynosi 0.' }, + }, + }, + IRR: { + description: 'Zwraca wewnętrzną stopę zwrotu dla serii przepływów gotówkowych reprezentowanych przez wartości liczbowe. Przepływy gotówkowe nie muszą być równe takim, jakie byłyby dla całego roku. Muszą jednak występować w regularnych interwałach, np. rocznie lub miesięcznie. Wewnętrzna stopa zwrotu jest stopą zwrotu otrzymywaną z inwestycji składającej się z wydatków (wartości ujemne) i dochodów (wartości dodatnie) występujących regularnie.', + abstract: 'Zwraca wewnętrzną stopę zwrotu dla serii przepływów gotówkowych reprezentowanych przez wartości liczbowe. Przepływy gotówkowe nie muszą być równe takim, jakie byłyby dla całego roku. Muszą jednak występować w regularnych interwałach, np. rocznie lub miesięcznie. Wewnętrzna stopa zwrotu jest stopą zwrotu otrzymywaną z inwestycji składającej się z wydatków (wartości ujemne) i dochodów (wartości dodatnie) występujących regularnie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Tablica lub odwołanie do komórek zawierających liczby, dla których chcesz obliczyć wewnętrzną stopę zwrotu.\n1. Aby obliczyć wewnętrzną stopę zwrotu, wartości muszą zawierać co najmniej jedną wartość dodatnią i jedną ujemną.\n2. Funkcja IRR używa kolejności wartości do interpretowania kolejności przepływów gotówkowych. Wprowadź wartości płatności i dochodów w żądanej kolejności.\n3. Jeśli argument tablicowy lub odwołaniowy zawiera tekst, wartości logiczne lub puste komórki, są one ignorowane.' }, + guess: { name: 'guess', detail: 'Liczba, która według Ciebie jest zbliżona do wyniku funkcji IRR.' }, + }, + }, + ISPMT: { + description: 'Oblicza odsetki zapłacone (lub odebrane) dla określonego okresu pożyczki (lub inwestycji) przy równych spłatach kapitału.', + abstract: 'Oblicza odsetki zapłacone (lub odebrane) dla określonego okresu pożyczki (lub inwestycji) przy równych spłatach kapitału.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Argument wymagany. Stopa procentowa inwestycji.' }, + per: { name: 'per', detail: 'Argument wymagany. Okres, dla którego należy znaleźć odsetki i musi wynosić od 1 do liczba_okresów.' }, + nper: { name: 'nper', detail: 'Argument wymagany. Całkowita liczba okresów płatności inwestycji.' }, + pv: { name: 'pv', detail: 'Argument wymagany. Obecna wartość inwestycji. W przypadku pożyczki wb jest kwotą pożyczki.' }, + }, + }, + MDURATION: { + description: 'Zwraca wartość zmodyfikowanego okresu Macauley\'a dla papieru wartościowego o przyjętej wartości nominalnej 100 zł.', + abstract: 'Zwraca wartość zmodyfikowanego okresu Macauley\'a dla papieru wartościowego o przyjętej wartości nominalnej 100 zł.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + coupon: { name: 'coupon', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Wymagane. Roczna rentowność papieru wartościowego.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + MIRR: { + description: 'Zwraca wartość zmodyfikowanej wewnętrznej stopy zwrotu dla serii okresowych przepływów gotówkowych. Funkcja MIRR bierze pod uwagę jednocześnie koszt inwestycji oraz procent uzyskany z ponownego zainwestowania środków pieniężnych.', + abstract: 'Zwraca wartość zmodyfikowanej wewnętrznej stopy zwrotu dla serii okresowych przepływów gotówkowych. Funkcja MIRR bierze pod uwagę jednocześnie koszt inwestycji oraz procent uzyskany z ponownego zainwestowania środków pieniężnych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Wymagane. Tablica lub odwołanie do komórek zawierających liczby. Te liczby reprezentują płatności (wartości ujemne) i przychód (wartości dodatnie) występujące w równych odstępach czasu. Aby obliczyć zmodyfikowaną wewnętrzną stopę zwrotu, wartości muszą zawierać co najmniej jedną wartość dodatnią i jedną ujemną. W przeciwnym razie funkcja MIRR zwraca wartość #DIV/0! wartość błędu #ADR!. Jeśli argument tablicowy lub odwołaniowy zawiera tekst, wartości logiczne lub puste komórki, to wartości te są ignorowane; komórki o wartości zero są jednak włączane do obliczeń.' }, + financeRate: { name: 'finance_rate', detail: 'Wymagane. Stopa oprocentowania pobierana od środków używanych w przepływach gotówkowych.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Wymagane. Stopa oprocentowania otrzymywana od reinwestowanych przepływów gotówkowych.' }, + }, + }, + NOMINAL: { + description: 'Zwraca roczną nominalną stopę procentową.', + abstract: 'Zwraca roczną nominalną stopę procentową.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'Efektywna stopa procentowa.' }, + npery: { name: 'npery', detail: 'Liczba okresów kapitalizacji w roku.' }, + }, + }, + NPER: { + description: 'Zwraca liczbę okresów inwestycji.', + abstract: 'Zwraca liczbę okresów inwestycji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Stopa procentowa przypadająca na okres.' }, + pmt: { name: 'pmt', detail: 'Płatność dokonywana w każdym okresie; nie może się zmieniać w okresie trwania renty.' }, + pv: { name: 'pv', detail: 'Wartość bieżąca, czyli kwota ryczałtowa, jaką seria przyszłych płatności jest warta obecnie.' }, + fv: { name: 'fv', detail: 'Wartość przyszła, czyli saldo środków pieniężnych, które chcesz osiągnąć po dokonaniu ostatniej płatności.' }, + type: { name: 'type', detail: 'Liczba 0 lub 1 wskazująca termin płatności.' }, + }, + }, + NPV: { + description: 'Zwraca wartość bieżącą netto inwestycji na podstawie szeregu okresowych przepływów pieniężnych i stopy dyskontowej.', + abstract: 'Zwraca wartość bieżącą netto inwestycji na podstawie szeregu okresowych przepływów pieniężnych i stopy dyskontowej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Stopa dyskontowa dla jednego okresu.' }, + value1: { name: 'value1', detail: 'Od 1 do 254 argumentów reprezentujących płatności i dochody.' }, + value2: { name: 'value2', detail: 'Od 1 do 254 argumentów reprezentujących płatności i dochody.' }, + }, + }, + ODDFPRICE: { + description: 'Zwraca cenę papieru wartościowego o wartości nominalnej 100 USD z nieregularnym pierwszym okresem.', + abstract: 'Zwraca cenę papieru wartościowego o wartości nominalnej 100 USD z nieregularnym pierwszym okresem.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Data rozliczenia papieru wartościowego.' }, + maturity: { name: 'maturity', detail: 'Data terminu wykupu papieru wartościowego.' }, + issue: { name: 'issue', detail: 'Data emisji papieru wartościowego.' }, + firstCoupon: { name: 'first_coupon', detail: 'Data pierwszego kuponu papieru wartościowego.' }, + rate: { name: 'rate', detail: 'Stopa procentowa papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Roczna rentowność papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wartość wykupu przypadająca na 100 USD wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Liczba płatności kuponowych w roku. Dla płatności rocznych częstotliwość wynosi 1, półrocznych 2, a kwartalnych 4.' }, + basis: { name: 'basis', detail: 'Typ używanej podstawy liczenia dni.' }, + }, + }, + ODDFYIELD: { + description: 'Zwraca rentowność papieru wartościowego z nieregularnym pierwszym okresem.', + abstract: 'Zwraca rentowność papieru wartościowego z nieregularnym pierwszym okresem.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Data rozliczenia papieru wartościowego.' }, + maturity: { name: 'maturity', detail: 'Data terminu wykupu papieru wartościowego.' }, + issue: { name: 'issue', detail: 'Data emisji papieru wartościowego.' }, + firstCoupon: { name: 'first_coupon', detail: 'Data pierwszego kuponu papieru wartościowego.' }, + rate: { name: 'rate', detail: 'Stopa procentowa papieru wartościowego.' }, + pr: { name: 'pr', detail: 'Cena papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wartość wykupu przypadająca na 100 USD wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Liczba płatności kuponowych w roku. Dla płatności rocznych częstotliwość wynosi 1, półrocznych 2, a kwartalnych 4.' }, + basis: { name: 'basis', detail: 'Typ używanej podstawy liczenia dni.' }, + }, + }, + ODDLPRICE: { + description: 'Zwraca wartość ceny przypadającej na 100 zł wartości nominalnej papieru wartościowego o nietypowym (krótkim lub długim) ostatnim okresie.', + abstract: 'Zwraca wartość ceny przypadającej na 100 zł wartości nominalnej papieru wartościowego o nietypowym (krótkim lub długim) ostatnim okresie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + lastInterest: { name: 'last_interest', detail: 'Wymagane. Data ostatniej dywidendy od papieru wartościowego.' }, + rate: { name: 'rate', detail: 'Wymagane. Stopa procentowa papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Wymagane. Roczna rentowność papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + ODDLYIELD: { + description: 'Zwraca wartość rentowności papieru wartościowego o nietypowym (długim lub krótkim) ostatnim okresie.', + abstract: 'Zwraca wartość rentowności papieru wartościowego o nietypowym (długim lub krótkim) ostatnim okresie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + lastInterest: { name: 'last_interest', detail: 'Wymagane. Data ostatniej dywidendy od papieru wartościowego.' }, + rate: { name: 'rate', detail: 'Wymagane. Stopa procentowa papieru wartościowego.' }, + pr: { name: 'pr', detail: 'Wymagane. Cena papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + PDURATION: { + description: 'Zwraca liczbę okresów wymaganych przez inwestycję do osiągnięcia określonej wartości.', + abstract: 'Zwraca liczbę okresów wymaganych przez inwestycję do osiągnięcia określonej wartości.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa procentowa dla okresu.' }, + pv: { name: 'pv', detail: 'Wymagane. Wb to obecna wartość inwestycji.' }, + fv: { name: 'fv', detail: 'Wymagane. Wp to żądana przyszła wartość inwestycji.' }, + }, + }, + PMT: { + description: 'Funkcja PMT , jedna z funkcji finansowych , oblicza kwotę spłaty pożyczki przy założeniu stałych spłat i stałej stopy procentowej.', + abstract: 'Funkcja PMT , jedna z funkcji finansowych , oblicza kwotę spłaty pożyczki przy założeniu stałych spłat i stałej stopy procentowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Argument wymagany. Stopa procentowa pożyczki.' }, + nper: { name: 'nper', detail: 'Argument wymagany. Całkowita liczba spłat w ramach pożyczki.' }, + pv: { name: 'pv', detail: 'Argument wymagany. Wartość bieżąca, czyli całkowita kwota będąca wartością serii przyszłych płatności (nazywana także kapitałem).' }, + fv: { name: 'fv', detail: 'Opcjonalnie. Przyszła wartość, czyli saldo kasowe, które ma zostać osiągnięte po dokonaniu ostatniej płatności. Jeśli argument wp zostanie pominięty, zostanie przyjęta wartość 0 (zero) (czyli przyszła wartość pożyczki wynosi 0).' }, + type: { name: 'type', detail: 'Opcjonalnie. Liczba 0 (zero) albo 1, która wskazuje, kiedy płatność jest należna.' }, + }, + }, + PPMT: { + description: 'Zwraca spłaty kapitału w podanym okresie dla inwestycji w oparciu o stałe, okresowe płatności i stałą stopę procentową.', + abstract: 'Zwraca spłaty kapitału w podanym okresie dla inwestycji w oparciu o stałe, okresowe płatności i stałą stopę procentową.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa procentowa dla okresu.' }, + per: { name: 'per', detail: 'Wymagane. Określa okres i musi znajdować się w zakresie od 1 do liczba_okresów.' }, + nper: { name: 'nper', detail: 'Wymagane. Całkowita liczba okresów płatności w okresie spłaty.' }, + pv: { name: 'pv', detail: 'Wymagane. Obecna wartość, czyli całkowita suma bieżącej wartości szeregu przyszłych płatności.' }, + fv: { name: 'fv', detail: 'Opcjonalne. Przyszła wartość, czyli saldo kasowe, które ma zostać osiągnięte po dokonaniu ostatniej płatności. Jeśli argument wp zostanie pominięty, zostanie przyjęta wartość 0 (zero) (czyli przyszła wartość pożyczki wynosi 0).' }, + type: { name: 'type', detail: 'Opcjonalne. Liczba 0 albo 1, która wskazuje, kiedy płatność jest należna.' }, + }, + }, + PRICE: { + description: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej papieru wartościowego przynoszącego okresowe oprocentowanie.', + abstract: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej papieru wartościowego przynoszącego okresowe oprocentowanie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Wymagane. Roczna rentowność papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + PRICEDISC: { + description: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej dyskontowanego papieru wartościowego.', + abstract: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej dyskontowanego papieru wartościowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + discount: { name: 'discount', detail: 'Wymagane. Stopa dyskontowa papieru wartościowego.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + PRICEMAT: { + description: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej papieru wartościowego dającą oprocentowanie w dniu płatności.', + abstract: 'Zwraca kwotę w przeliczeniu na 100 zł wartości nominalnej papieru wartościowego dającą oprocentowanie w dniu płatności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + issue: { name: 'issue', detail: 'Wymagane. Data emisji papieru wartościowego wyrażona jako liczba kolejna daty.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa oprocentowania papieru wartościowego.' }, + yld: { name: 'yld', detail: 'Wymagane. Roczna rentowność papieru wartościowego.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + PV: { + description: 'Funkcja PV , jedna z funkcji finansowych , oblicza bieżącą wartość pożyczki lub inwestycji przy założeniu stałej stopy procentowej. Funkcji PV można używać w przypadku okresowych, stałych płatności (takich jak kredyt hipoteczny lub inna pożyczka) albo przyszłej wartości będącej celem inwestycji.', + abstract: 'Funkcja PV , jedna z funkcji finansowych , oblicza bieżącą wartość pożyczki lub inwestycji przy założeniu stałej stopy procentowej. Funkcji PV można używać w przypadku okresowych, stałych płatności (takich jak kredyt hipoteczny lub inna pożyczka) albo przyszłej wartości będącej celem inwestycji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Argument wymagany. Stopa procentowa dla okresu. Na przykład w przypadku pożyczki na samochód oprocentowanej na 10 procent rocznie ze spłatami miesięcznymi miesięczna stopa procentowa wynosi 10%/12, czyli 0,83%. Dlatego jako oprocentowanie należy wprowadzić w formule wartość 10%/12 albo 0,83% bądź 0,0083.' }, + nper: { name: 'nper', detail: 'Argument wymagany. Całkowita liczba okresów płatności w okresie spłaty. Na przykład osoba otrzymująca czteroletnią pożyczkę na samochód, spłacająca tę pożyczkę w miesięcznych ratach, będzie ją spłacać przez 4*12 (czyli 48) okresów. Dlatego jako argument liczba_okresów należy wprowadzić w formule liczbę 48.' }, + pmt: { name: 'pmt', detail: 'Argument wymagany. Płatność dokonywana w każdym okresie, niezmienna przez cały okres pożyczki. Rata obejmuje zazwyczaj kapitał i odsetki z wyłączeniem innych opłat i podatków. Na przykład miesięczna spłata czteroletniej pożyczki na samochód w wysokości 10 000 zł oprocentowanej na 12% wynosi 263,33 zł. Jako argument rata należy wprowadzić w formule wartość -263,33. Jeśli argument rata zostanie pominięty, musi zostać podany argument wp.' }, + fv: { name: 'fv', detail: 'Opcjonalnie. Przyszła wartość, czyli saldo kasowe, które ma zostać osiągnięte po dokonaniu ostatniej płatności. Jeśli argument wp jest pominięty, jest przyjmowana wartość 0 (na przykład przyszła wartość pożyczki wynosi 0). W przypadku oszczędzania przez 18 lat na potrzeby uzyskania kwoty 50 000 zł na określony cel 50 000 zł jest wartością przyszłą. Zakładając pewną stopę procentową, można obliczyć, ile pieniędzy trzeba odkładać co miesiąc. Jeśli argument wp zostanie pominięty, musi zostać podany argument rata.' }, + type: { name: 'type', detail: 'Opcjonalnie. Liczba 0 albo 1, która wskazuje, kiedy płatność jest należna.' }, + }, + }, + RATE: { + description: 'Zwraca stopę procentową dla każdego okresu raty rocznej. Funkcja RATE jest obliczana przez iterację i może zawierać zero lub więcej rozwiązań. Jeśli kolejne wyniki funkcji RATE nie są zbieżne z wartością 0,00000001 po 20 iteracjach, funkcja RATE zwraca #NUM! wartość błędu #ADR!.', + abstract: 'Zwraca stopę procentową dla każdego okresu raty rocznej. Funkcja RATE jest obliczana przez iterację i może zawierać zero lub więcej rozwiązań. Jeśli kolejne wyniki funkcji RATE nie są zbieżne z wartością 0,00000001 po 20 iteracjach, funkcja RATE zwraca #NUM! wartość błędu #ADR!.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Wymagane. Całkowita liczba okresów płatności w okresie spłaty.' }, + pmt: { name: 'pmt', detail: 'Wymagane. Płatność dokonywana w każdym okresie, niezmienna przez cały okres pożyczki. Rata obejmuje zazwyczaj kapitał i odsetki z wyłączeniem innych opłat i podatków. Jeśli argument rata zostanie pominięty, musi zostać umieszczony argument wp.' }, + pv: { name: 'pv', detail: 'Wymagane. Obecna wartość, czyli całkowita suma bieżącej wartości szeregu przyszłych płatności.' }, + fv: { name: 'fv', detail: 'Opcjonalne. Przyszła wartość, czyli saldo kasowe, które ma zostać osiągnięte po dokonaniu ostatniej płatności. Jeśli argument wp jest pominięty, za jego wartość jest uznawane 0 (przyszła wartość pożyczki na przykład wynosi 0). Jeśli argument wp zostanie pominięty, musi zostać podany argument rata.' }, + type: { name: 'type', detail: 'Opcjonalne. Liczba 0 albo 1, która wskazuje, kiedy płatność jest należna.' }, + guess: { name: 'guess', detail: 'Opcjonalne. Przypuszczenie co do wysokości oprocentowania. Jeśli pominie się argument przypuszczenie, to za jego wartość przyjmuje się 10%. Jeśli funkcja RATE nie jest zbieżna, należy spróbować innej wartości argumentu przypuszczenie. Funkcja RATE jest zwykle zbieżna dla wartości argumentu przypuszczenie zawartego pomiędzy 0 a 1.' }, + }, + }, + RECEIVED: { + description: 'Zwraca kwotę uzyskaną w dniu spłaty dla w pełni ulokowanego papieru wartościowego.', + abstract: 'Zwraca kwotę uzyskaną w dniu spłaty dla w pełni ulokowanego papieru wartościowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + investment: { name: 'investment', detail: 'Wymagane. Kwota zainwestowana w papier wartościowy.' }, + discount: { name: 'discount', detail: 'Wymagane. Stopa dyskontowa papieru wartościowego.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + RRI: { + description: 'Zwraca równoważną stopę procentową dla określonego wzrostu wartości inwestycji.', + abstract: 'Zwraca równoważną stopę procentową dla określonego wzrostu wartości inwestycji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Wymagane. Liczba_okresów jest liczbą okresów płatności inwestycji.' }, + pv: { name: 'pv', detail: 'Wymagane. Wb to obecna wartość inwestycji.' }, + fv: { name: 'fv', detail: 'Wymagane. Wp to przyszła wartość inwestycji.' }, + }, + }, + SLN: { + description: 'Zwraca wartość amortyzacji liniowej środka trwałego dla jednego okresu.', + abstract: 'Zwraca wartość amortyzacji liniowej środka trwałego dla jednego okresu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Początkowy koszt środka trwałego.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość środka trwałego po zakończonej amortyzacji (zwana również wartością odzyskaną środka trwałego).' }, + life: { name: 'life', detail: 'Wymagane. Liczba okresów, w których środek trwały jest amortyzowany (argument ten nazywany jest czasami czasem użytkowania środka trwałego).' }, + }, + }, + SYD: { + description: 'Zwraca amortyzację środka trwałego w podanym okresie metodą sumy cyfr wszystkich lat amortyzacji.', + abstract: 'Zwraca amortyzację środka trwałego w podanym okresie metodą sumy cyfr wszystkich lat amortyzacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Początkowy koszt środka trwałego.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość środka trwałego po zakończonej amortyzacji (zwana również wartością odzyskaną środka trwałego).' }, + life: { name: 'life', detail: 'Wymagane. Liczba okresów, w których środek trwały jest amortyzowany (argument ten nazywany jest czasami czasem użytkowania środka trwałego).' }, + per: { name: 'per', detail: 'Wymagane. Okres musi być podany w takich samych jednostkach, jak argument czas_życia.' }, + }, + }, + TBILLEQ: { + description: 'Zwraca rentowność ekwiwalentu dla weksla skarbowego.', + abstract: 'Zwraca rentowność ekwiwalentu dla weksla skarbowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia weksla skarbowego. Data rozliczenia papieru wartościowego jest datą sprzedaży weksla skarbowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data spłaty weksla skarbowego. Data spłaty to data, kiedy weksel skarbowy traci ważność.' }, + discount: { name: 'discount', detail: 'Wymagane. Stopa dyskontowa weksla skarbowego.' }, + }, + }, + TBILLPRICE: { + description: 'Zwraca cenę przypadającą na 100 zł wartości nominalnej weksla skarbowego.', + abstract: 'Zwraca cenę przypadającą na 100 zł wartości nominalnej weksla skarbowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia weksla skarbowego. Data rozliczenia papieru wartościowego jest datą sprzedaży weksla skarbowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data spłaty weksla skarbowego. Data spłaty to data, kiedy weksel skarbowy traci ważność.' }, + discount: { name: 'discount', detail: 'Wymagane. Stopa dyskontowa weksla skarbowego.' }, + }, + }, + TBILLYIELD: { + description: 'Zwraca rentowność weksla skarbowego.', + abstract: 'Zwraca rentowność weksla skarbowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia weksla skarbowego. Data rozliczenia papieru wartościowego jest datą sprzedaży weksla skarbowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data spłaty weksla skarbowego. Data spłaty to data, kiedy weksel skarbowy traci ważność.' }, + pr: { name: 'pr', detail: 'Wymagane. Cena weksla skarbowego przypadająca na każde 100 zł wartości nominalnej.' }, + }, + }, + VDB: { + description: 'Zwraca amortyzację środka trwałego za podany okres, włączając w to podokresy, obliczając amortyzację metodą podwójnie malejącego salda lub inną podaną metodą. Nazwa VDB to skrót od słów Variable Declining Balance (Zmiennie malejące saldo).', + abstract: 'Zwraca amortyzację środka trwałego za podany okres, włączając w to podokresy, obliczając amortyzację metodą podwójnie malejącego salda lub inną podaną metodą. Nazwa VDB to skrót od słów Variable Declining Balance (Zmiennie malejące saldo).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Wymagane. Początkowy koszt środka trwałego.' }, + salvage: { name: 'salvage', detail: 'Wymagane. Wartość środka trwałego po zakończonej amortyzacji (zwana również wartością odzyskaną środka trwałego). Ta wartość może być równa 0.' }, + life: { name: 'life', detail: 'Wymagane. Liczba okresów, w których środek trwały jest amortyzowany (argument ten nazywany jest czasami czasem użytkowania środka trwałego).' }, + startPeriod: { name: 'start_period', detail: 'Wymagane. Data rozpoczęcia obliczania odpisów amortyzacyjnych. Argument okres_początkowy musi być podany w tych samych jednostkach, co argument czas_życia.' }, + endPeriod: { name: 'end_period', detail: 'Wymagane. Data zakończenia obliczania odpisów amortyzacyjnych. Argument okres_końcowy musi być podany w tych samych jednostkach, co argument czas_życia.' }, + factor: { name: 'factor', detail: 'Opcjonalne. Szybkość, z jaką zmniejsza się saldo. Jeśli argument ten zostanie pominięty, to zakłada się, że wynosi 2 (metoda podwójnie malejącego salda). Jeśli użycie metody podwójnie malejącego salda jest niepożądane, należy zmienić wartość argumentu współczynnik. Aby poznać metodę podwójnie malejącego salda, zobacz opis funkcji DDB.' }, + noSwitch: { name: 'no_switch', detail: 'Opcjonalne. Wartość logiczna określająca, czy przełączyć się na metodę liniową obliczania amortyzacji, kiedy amortyzacja jest większa niż obliczenie malejącego salda. Jeśli argument bez_przełączenia ma wartość PRAWDA, program Microsoft Excel nie przełącza się na metodę amortyzacji liniowej, nawet jeśli amortyzacja jest większa niż obliczenie malejącego salda. Jeśli argument bez_przełączenia ma wartość FAŁSZ lub jest pominięty, funkcja VDB przełącza się na metodę amortyzacji liniowej wtedy, gdy amortyzacja przewyższa obliczenie malejącego salda.' }, + }, + }, + XIRR: { + description: 'Zwraca wartość wewnętrznej stopy zwrotu dla serii rozłożonych w czasie przepływów gotówkowych, niekoniecznie okresowych. Aby obliczyć wewnętrzną stopę zwrotu dla serii okresowych przepływów gotówkowych, należy użyć funkcji IRR.', + abstract: 'Zwraca wartość wewnętrznej stopy zwrotu dla serii rozłożonych w czasie przepływów gotówkowych, niekoniecznie okresowych. Aby obliczyć wewnętrzną stopę zwrotu dla serii okresowych przepływów gotówkowych, należy użyć funkcji IRR.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Wymagane. Seria przepływów gotówkowych odpowiadających zestawieniu płatności według dat. Pierwsza płatność jest opcjonalna i odpowiada kosztowi lub płatności występującej na początku inwestycji. Jeśli pierwsza wartość jest kosztem lub płatnością, musi być wartością ujemną. Wszystkie kolejne płatności są dyskontowane przy założeniu, że rok ma 365 dni. Seria wartości musi zawierać co najmniej jedną wartość dodatnią i jedną ujemną.' }, + dates: { name: 'dates', detail: 'Wymagane. Zestawienie dat płatności odpowiadających płatnościom przepływów gotówkowych. Daty mogą występować w dowolnej kolejności. Daty powinny być wprowadzane przy użyciu funkcji DATA albo stanowić wyniki innych formuł lub funkcji. Na przykład w przypadku daty 23 maja 2008 należy użyć funkcji DATA(2008;5;23). Jeśli daty są wprowadzane jako tekst, mogą wystąpić problemy. .' }, + guess: { name: 'guess', detail: 'Opcjonalne. Liczba przypuszczalnie zbliżona do wyniku funkcji XIRR.' }, + }, + }, + XNPV: { + description: 'Zwraca zdyskontowaną wartość netto serii przepływów gotówkowych, niekoniecznie okresowych. Aby obliczyć zdyskontowaną wartość netto serii przepływów gotówkowych okresowych, należy użyć funkcji NPV.', + abstract: 'Zwraca zdyskontowaną wartość netto serii przepływów gotówkowych, niekoniecznie okresowych. Aby obliczyć zdyskontowaną wartość netto serii przepływów gotówkowych okresowych, należy użyć funkcji NPV.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Wymagane. Stopa dyskontowa do stosowania przy przepływach gotówkowych.' }, + values: { name: 'values', detail: 'Wymagane. Seria przepływów gotówkowych odpowiadających zestawieniu płatności według dat. Pierwsza płatność jest opcjonalna i odpowiada kosztowi lub płatności występującej na początku inwestycji. Jeśli pierwsza wartość jest kosztem lub płatnością, musi być wartością ujemną. Wszystkie kolejne płatności są dyskontowane przy założeniu, że rok ma 365 dni. Seria wartości musi zawierać co najmniej jedną ujemną i dodatnią wartość.' }, + dates: { name: 'dates', detail: 'Wymagane. Zestawienie dat płatności odpowiadających płatnościom przepływów gotówkowych. Pierwsza data płatności oznacza początek harmonogramu płatności. Wszystkie inne daty muszą być późniejsze, ale mogą występować w dowolnym porządku.' }, + }, + }, + YIELD: { + description: 'Zwraca rentowność papieru wartościowego o okresowym oprocentowaniu. Z funkcji RENTOWNOŚĆ korzysta się do obliczania rentowności obligacji.', + abstract: 'Zwraca rentowność papieru wartościowego o okresowym oprocentowaniu. Z funkcji RENTOWNOŚĆ korzysta się do obliczania rentowności obligacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa kuponowa papieru wartościowego.' }, + pr: { name: 'pr', detail: 'Wymagane. Cena papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + frequency: { name: 'frequency', detail: 'Wymagane. Liczba płatności kuponowych przypadających na jeden rok. W przypadku płatności rocznych częstotliwość = 1; w przypadku płatności półrocznych częstotliwość = 2; w przypadku płatności kwartalnych częstotliwość = 4.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + YIELDDISC: { + description: 'Zwraca roczną rentowność dyskontowanego papieru wartościowego.', + abstract: 'Zwraca roczną rentowność dyskontowanego papieru wartościowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + pr: { name: 'pr', detail: 'Wymagane. Cena papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + redemption: { name: 'redemption', detail: 'Wymagane. Wartość wykupu papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, + YIELDMAT: { + description: 'Zwraca roczną rentowność dyskontowanego papieru wartościowego, dającego odsetki w dniu spłaty.', + abstract: 'Zwraca roczną rentowność dyskontowanego papieru wartościowego, dającego odsetki w dniu spłaty.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Wymagane. Data rozliczenia papieru wartościowego. Data rozliczenia papieru wartościowego jest datą sprzedaży papieru wartościowego nabywcy, datą późniejszą niż data emisji.' }, + maturity: { name: 'maturity', detail: 'Wymagane. Data terminu płatności papieru wartościowego. Data spłaty to data, kiedy papier wartościowy traci ważność.' }, + issue: { name: 'issue', detail: 'Wymagane. Data emisji papieru wartościowego wyrażona jako liczba kolejna daty.' }, + rate: { name: 'rate', detail: 'Wymagane. Roczna stopa oprocentowania papieru wartościowego.' }, + pr: { name: 'pr', detail: 'Wymagane. Cena papieru wartościowego w przeliczeniu na 100 złotych wartości nominalnej.' }, + basis: { name: 'basis', detail: 'Opcjonalne. Typ podstawy wyliczania dni, który zostanie użyty.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/financial/pt-BR.ts new file mode 100644 index 0000000000..cad7c2ed75 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/financial/pt-BR.ts @@ -0,0 +1,947 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ACCRINT: { + description: 'Retorna a taxa de juros acumulados de um título que paga uma taxa periódica de juros.', + abstract: 'Retorna a taxa de juros acumulados de um título que paga uma taxa periódica de juros.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/accrint-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Obrigatório. A data de emissão do título.' }, + firstInterest: { name: 'first_interest', detail: 'Obrigatório. A primeira data de juros do título.' }, + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de cupom anual do título.' }, + par: { name: 'par', detail: 'Obrigatório. O valor nominal do título. Se ele for omitido, JUROSACUM usará R$ 1.000.' }, + frequency: { name: 'frequency', detail: 'Obrigatório. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + calcMethod: { name: 'calc_method', detail: 'Opcional. Um valor lógico que especifica o modo de calcular o total de juros acumulados quando a data da liquidação for posterior à data do primeiro_juro. Um valor VERDADEIRO (1) retorna o total de juros acumulados desde a emissão até a liquidação. Um valor FALSO (0) retorna os juros acumulados de primeiro_juro até a liquidação. Se você não inserir o argumento, ele será padronizado como VERDADEIRO.' }, + }, + }, + ACCRINTM: { + description: 'Retorna os juros acumulados de um título que paga juros no vencimento.', + abstract: 'Retorna os juros acumulados de um título que paga juros no vencimento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/accrintm-function', + }, + ], + functionParameter: { + issue: { name: 'issue', detail: 'Necessário. A data de emissão do título.' }, + settlement: { name: 'settlement', detail: 'Necessário. A data de vencimento do título.' }, + rate: { name: 'rate', detail: 'Necessário. A taxa de cupom anual do título.' }, + par: { name: 'par', detail: 'Necessário. O valor nominal do título. Se ele for omitido, JUROSACUMV usará R$ 1.000.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + AMORDEGRC: { + description: 'Retorna a depreciação para cada período contábil. Esta função é fornecida para o sistema contábil francês. Se um ativo for adquirido no meio do período contábil, a depreciação pro rata deverá ser considerada. A função é semelhante a AMORLINC, a única diferença é que um coeficiente de depreciação é aplicado no cálculo dependendo do tempo de vida do ativo.', + abstract: 'Retorna a depreciação para cada período contábil. Esta função é fornecida para o sistema contábil francês. Se um ativo for adquirido no meio do período contábil, a depreciação pro rata deverá ser considerada. A função é semelhante a AMORLINC, a única diferença é que um coeficiente de depreciação é aplicado no cálculo dependendo do tempo de vida do ativo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/amordegrc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obrigatório. O custo do ativo.' }, + datePurchased: { name: 'date_purchased', detail: 'Obrigatório. A data em que o ativo foi comprado.' }, + firstPeriod: { name: 'first_period', detail: 'Obrigatório. A data do final do primeiro período.' }, + salvage: { name: 'salvage', detail: 'Obrigatório. O valor de recuperação no final da vida útil do ativo.' }, + period: { name: 'period', detail: 'Obrigatório. O período.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de depreciação.' }, + basis: { name: 'basis', detail: 'Opcional. O ano-base a ser adotado.' }, + }, + }, + AMORLINC: { + description: 'Retorna a depreciação para cada período contábil. Esta função é fornecida para o sistema contábil francês. Se um ativo for adquirido no meio do período contábil, a depreciação pro rata deverá ser considerada.', + abstract: 'Retorna a depreciação para cada período contábil. Esta função é fornecida para o sistema contábil francês. Se um ativo for adquirido no meio do período contábil, a depreciação pro rata deverá ser considerada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/amorlinc-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obrigatório. O custo do ativo.' }, + datePurchased: { name: 'date_purchased', detail: 'Obrigatório. A data em que o ativo foi comprado.' }, + firstPeriod: { name: 'first_period', detail: 'Obrigatório. A data do final do primeiro período.' }, + salvage: { name: 'salvage', detail: 'Obrigatório. O valor de recuperação no final da vida útil do ativo.' }, + period: { name: 'period', detail: 'Obrigatório. O período.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de depreciação.' }, + basis: { name: 'basis', detail: 'Opcional. O ano-base a ser adotado.' }, + }, + }, + COUPDAYBS: { + description: 'A função CUPDIASINLIQ retorna o número de dias entre o início do período do cupom e sua data de liquidação.', + abstract: 'A função CUPDIASINLIQ retorna o número de dias entre o início do período do cupom e sua data de liquidação.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/coupdaybs-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + COUPDAYS: { + description: 'Retorna o número de dias no período de cupom que contém a data de quitação.', + abstract: 'Retorna o número de dias no período de cupom que contém a data de quitação.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/coupdays-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Obrigatório. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + COUPDAYSNC: { + description: 'Retorna o número de dias da data de liquidação até a data do próximo cupom.', + abstract: 'Retorna o número de dias da data de liquidação até a data do próximo cupom.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/coupdaysnc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + COUPNCD: { + description: 'Retorna um número que representa a próxima data de cupom após a data de liquidação.', + abstract: 'Retorna um número que representa a próxima data de cupom após a data de liquidação.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/coupncd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + COUPNUM: { + description: 'Retorna o número de cupons pagáveis entre a data de liquidação e a data de vencimento, arredondado para o próximo cupom inteiro.', + abstract: 'Retorna o número de cupons pagáveis entre a data de liquidação e a data de vencimento, arredondado para o próximo cupom inteiro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/coupnum-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + COUPPCD: { + description: 'Retorna um número que representa a data de cupom antes da data de liquidação.', + abstract: 'Retorna um número que representa a data de cupom antes da data de liquidação.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/couppcd-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + CUMIPMT: { + description: 'Retorna os juros acumulados pagos por um empréstimo entre início_período e final_período.', + abstract: 'Retorna os juros acumulados pagos por um empréstimo entre início_período e final_período.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cumipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Necessário. A taxa de juros.' }, + nper: { name: 'nper', detail: 'Necessário. O número total de períodos de pagamentos.' }, + pv: { name: 'pv', detail: 'Necessário. O valor presente.' }, + startPeriod: { name: 'start_period', detail: 'Necessário. O primeiro período no cálculo. Os períodos de pagamento são numerados começando por 1.' }, + endPeriod: { name: 'end_period', detail: 'Necessário. O último período no cálculo.' }, + type: { name: 'type', detail: 'Necessário. Indica quando o pagamento será efetuado.' }, + }, + }, + CUMPRINC: { + description: 'Retorna o capital acumulado pago sobre um empréstimo entre início_período e final_período.', + abstract: 'Retorna o capital acumulado pago sobre um empréstimo entre início_período e final_período.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cumprinc-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros.' }, + nper: { name: 'nper', detail: 'Obrigatório. O número total de períodos de pagamentos.' }, + pv: { name: 'pv', detail: 'Obrigatório. O valor presente.' }, + startPeriod: { name: 'start_period', detail: 'Obrigatório. O primeiro período no cálculo. Os períodos de pagamento são numerados começando por 1.' }, + endPeriod: { name: 'end_period', detail: 'Obrigatório. O último período no cálculo.' }, + type: { name: 'type', detail: 'Obrigatório. Indica quando o pagamento será efetuado.' }, + }, + }, + DB: { + description: 'Retorna a depreciação de um ativo para um período especificado, usando o método de balanço de declínio fixo.', + abstract: 'Retorna a depreciação de um ativo para um período especificado, usando o método de balanço de declínio fixo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/db-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Obrigatório. O custo inicial do ativo.' }, + salvage: { name: 'salvage', detail: 'Obrigatório. O valor no final da depreciação (às vezes chamado de valor de recuperação do ativo).' }, + life: { name: 'life', detail: 'Obrigatório. O número de períodos em que o ativo está se depreciando (às vezes chamado de vida útil do ativo).' }, + period: { name: 'period', detail: 'Obrigatório. O período com relação ao qual você deseja calcular a depreciação. O período deve usar as mesmas unidades de vida útil.' }, + month: { name: 'month', detail: 'Opcional. O número de meses do primeiro ano. Se mês for omitido, será presumido como 12.' }, + }, + }, + DDB: { + description: 'Retorna a depreciação de um ativo para um período especificado usando o método de saldo decrescente duplo ou outro método que você especificar.', + abstract: 'Retorna a depreciação de um ativo para um período especificado usando o método de saldo decrescente duplo ou outro método que você especificar.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/ddb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'O custo inicial do ativo.' }, + salvage: { name: 'salvage', detail: 'O valor ao final da depreciação, também chamado de valor residual do ativo.' }, + life: { name: 'life', detail: 'O número de períodos durante os quais o ativo será depreciado, também chamado de vida útil do ativo.' }, + period: { name: 'period', detail: 'O período para o qual você deseja calcular a depreciação.' }, + factor: { name: 'factor', detail: 'A taxa de redução do saldo. Se omitido, será considerado 2, pelo método de saldo decrescente duplo.' }, + }, + }, + DISC: { + description: 'Retorna a taxa de desconto de um título.', + abstract: 'Retorna a taxa de desconto de um título.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/disc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + pr: { name: 'pr', detail: 'Obrigatório. O preço do título por R$ 100 de valor nominal.' }, + redemption: { name: 'redemption', detail: 'Obrigatório. O valor de resgate do título por R$ 100 de valor nominal.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + DOLLARDE: { + description: 'Converte um preço em dólares expresso como fração em um preço em dólares expresso como número decimal.', + abstract: 'Converte um preço em dólares expresso como fração em um preço em dólares expresso como número decimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/dollarde-function', + }, + ], + functionParameter: { + fractionalDollar: { name: 'fractional_dollar', detail: 'Um número expresso como parte inteira e parte fracionária, separadas por um símbolo decimal.' }, + fraction: { name: 'fraction', detail: 'O inteiro a ser usado no denominador da fração.' }, + }, + }, + DOLLARFR: { + description: 'Use MOEDAFRA para converter preços em forma decimal, em frações, como preços de seguros.', + abstract: 'Use MOEDAFRA para converter preços em forma decimal, em frações, como preços de seguros.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dollarfr-function', + }, + ], + functionParameter: { + decimalDollar: { name: 'decimal_dollar', detail: 'Necessário. Um número decimal.' }, + fraction: { name: 'fraction', detail: 'Necessário. O inteiro a ser usado no denominador da fração.' }, + }, + }, + DURATION: { + description: 'A função DURAÇÃO , uma das funções Financeiras , devolve a duração de Macauley para um valor nominal assumido de 100 $. A duração é definida como a média ponderada do valor atual dos fluxos monetários e é utilizada como medida da resposta do preço de uma obrigação às alterações no rendimento.', + abstract: 'A função DURAÇÃO , uma das funções Financeiras , devolve a duração de Macauley para um valor nominal assumido de 100 $. A duração é definida como a média ponderada do valor atual dos fluxos monetários e é utilizada como medida da resposta do preço de uma obrigação às alterações no rendimento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/duration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + coupon: { name: 'coupon', detail: 'Obrigatório. A taxa de cupom anual do título.' }, + yld: { name: 'yld', detail: 'Obrigatório. O rendimento anual do título.' }, + frequency: { name: 'frequency', detail: 'Obrigatório. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + EFFECT: { + description: 'Retorna a taxa de juros anual efetiva, dados a taxa de juros anual nominal e o número de períodos compostos por ano.', + abstract: 'Retorna a taxa de juros anual efetiva, dados a taxa de juros anual nominal e o número de períodos compostos por ano.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/effect-function', + }, + ], + functionParameter: { + nominalRate: { name: 'nominal_rate', detail: 'Obrigatório. A taxa de juros nominal.' }, + npery: { name: 'npery', detail: 'Obrigatório. O número de períodos compostos por ano.' }, + }, + }, + FV: { + description: 'VF , uma das funções financeiras , calcula o valor futuro de um investimento com base em uma taxa de juros constante. Você pode usar VF com pagamentos periódicos e constantes ou um pagamento de quantia única.', + abstract: 'VF , uma das funções financeiras , calcula o valor futuro de um investimento com base em uma taxa de juros constante. Você pode usar VF com pagamentos periódicos e constantes ou um pagamento de quantia única.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros por período.' }, + nper: { name: 'nper', detail: 'Obrigatório. O número total de períodos de pagamento em uma anuidade.' }, + pmt: { name: 'pmt', detail: 'Obrigatório. O pagamento feito a cada período; não pode mudar durante a vigência da anuidade. Geralmente, pgto contém o capital e os juros e nenhuma outra tarifa ou taxas. Se pgto for omitido, você deverá incluir o argumento vp.' }, + pv: { name: 'pv', detail: 'Opcional. O valor presente ou a soma total correspondente ao valor presente de uma série de pagamentos futuros. Se vp for omitido, será considerado 0 (zero) e a inclusão do argumento pgto será obrigatória.' }, + type: { name: 'type', detail: 'Opcional. O número 0 ou 1 e indica as datas de vencimento dos pagamentos. Se tipo for omitido, será considerado 0.' }, + }, + }, + FVSCHEDULE: { + description: 'Retorna o valor futuro de um capital inicial após a aplicação de uma série de taxas de juros compostos. Use VFPLANO para calcular o valor futuro de um investimento com uma taxa variável ou ajustável.', + abstract: 'Retorna o valor futuro de um capital inicial após a aplicação de uma série de taxas de juros compostos. Use VFPLANO para calcular o valor futuro de um investimento com uma taxa variável ou ajustável.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fvschedule-function', + }, + ], + functionParameter: { + principal: { name: 'principal', detail: 'Necessário. O valor presente.' }, + schedule: { name: 'schedule', detail: 'Necessário. Uma matriz de taxas de juros a ser aplicada.' }, + }, + }, + INTRATE: { + description: 'Retorna a taxa de juros de um título totalmente investido.', + abstract: 'Retorna a taxa de juros de um título totalmente investido.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/intrate-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + investment: { name: 'investment', detail: 'Necessário. A quantia investida no título.' }, + redemption: { name: 'redemption', detail: 'Necessário. A quantia recebida no vencimento.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + IPMT: { + description: 'Retorna o pagamento de juros para um determinado período de investimento de acordo com pagamentos periódicos e constantes e com uma taxa de juros constante.', + abstract: 'Retorna o pagamento de juros para um determinado período de investimento de acordo com pagamentos periódicos e constantes e com uma taxa de juros constante.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ipmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros por período.' }, + per: { name: 'per', detail: 'Obrigatório. O período cujos juros se deseja saber e deve estar no intervalo entre 1 e nper.' }, + nper: { name: 'nper', detail: 'Obrigatório. O número total de períodos de pagamento em uma anuidade.' }, + pv: { name: 'pv', detail: 'Obrigatório. O valor presente ou a soma total correspondente ao valor presente de uma série de pagamentos futuros.' }, + fv: { name: 'fv', detail: 'Opcional. O valor futuro, ou o saldo, que você deseja obter depois do último pagamento. Se vf for omitido, será considerado 0 (o valor futuro de um empréstimo, por exemplo, é 0).' }, + type: { name: 'type', detail: 'Opcional. O número 0 ou 1 e indica as datas de vencimento dos pagamentos. Se tipo for omitido, será considerado 0.' }, + }, + }, + IRR: { + description: 'Retorna a taxa interna de retorno de uma sequência de fluxos de caixa representada pelos números em valores. Estes fluxos de caixa não precisam ser iguais como no caso de uma anuidade. Entretanto, os fluxos de caixa devem ser feitos em intervalos regulares, como mensalmente ou anualmente. A taxa interna de retorno é a taxa de juros recebida para um investimento que consiste em pagamentos (valores negativos) e receitas (valores positivos) que ocorrem em períodos regulares.', + abstract: 'Retorna a taxa interna de retorno de uma sequência de fluxos de caixa representada pelos números em valores. Estes fluxos de caixa não precisam ser iguais como no caso de uma anuidade. Entretanto, os fluxos de caixa devem ser feitos em intervalos regulares, como mensalmente ou anualmente. A taxa interna de retorno é a taxa de juros recebida para um investimento que consiste em pagamentos (valores negativos) e receitas (valores positivos) que ocorrem em períodos regulares.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/irr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Uma matriz ou referência a células que contêm os números para os quais você deseja calcular a taxa interna de retorno. Deve conter pelo menos um valor positivo e um negativo; texto, valores lógicos e células vazias são ignorados.' }, + guess: { name: 'guess', detail: 'Um número que você estima estar próximo do resultado de TIR.' }, + }, + }, + ISPMT: { + description: 'Calcula os juros pagos durante um período específico de um investimento.', + abstract: 'Calcula os juros pagos durante um período específico de um investimento.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/ispmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'A taxa de juros do investimento.' }, + per: { name: 'per', detail: 'O período para o qual você deseja encontrar os juros; deve estar entre 1 e nper.' }, + nper: { name: 'nper', detail: 'O número total de períodos de pagamento do investimento.' }, + pv: { name: 'pv', detail: 'O valor presente do investimento. Para um empréstimo, pv é o valor do empréstimo.' }, + }, + }, + MDURATION: { + description: 'Retorna a duração Macauley modificada para um título com um valor de paridade equivalente a R$ 100.', + abstract: 'Retorna a duração Macauley modificada para um título com um valor de paridade equivalente a R$ 100.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mduration-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + coupon: { name: 'coupon', detail: 'Necessário. A taxa de cupom anual do título.' }, + yld: { name: 'yld', detail: 'Necessário. O rendimento anual do título.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + MIRR: { + description: 'Retorna a taxa interna de retorno modificada para uma série de fluxos de caixa periódicos. MTIR considera o custo do investimento e os juros recebidos no reinvestimento do capital.', + abstract: 'Retorna a taxa interna de retorno modificada para uma série de fluxos de caixa periódicos. MTIR considera o custo do investimento e os juros recebidos no reinvestimento do capital.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Obrigatório. Uma matriz ou referência a células que contêm números. Estes números representam uma série de pagamentos (valores negativos) e receitas (valores positivos) que ocorrem em períodos regulares. Os valores têm de conter pelo menos um valor positivo e um valor negativo para calcular a taxa interna de retorno modificada. Caso contrário, o MIRR devolve o #DIV/0! valor de erro. Se uma matriz ou argumento de referência contiver texto, valores lógicos ou células vazias, estes valores serão ignorados; no entanto, células com valor zero serão incluídas.' }, + financeRate: { name: 'finance_rate', detail: 'Obrigatório. A taxa de juros paga sobre o dinheiro usado nos fluxos de caixa.' }, + reinvestRate: { name: 'reinvest_rate', detail: 'Obrigatório. A taxa de juros recebida nos fluxos de caixa ao reinvesti-los.' }, + }, + }, + NOMINAL: { + description: 'Retorna a taxa de juros nominal anual.', + abstract: 'Retorna a taxa de juros nominal anual.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/nominal-function', + }, + ], + functionParameter: { + effectRate: { name: 'effect_rate', detail: 'A taxa de juros efetiva.' }, + npery: { name: 'npery', detail: 'O número de períodos de capitalização por ano.' }, + }, + }, + NPER: { + description: 'Retorna o número de períodos para investimento de acordo com pagamentos constantes e periódicos e uma taxa de juros constante.', + abstract: 'Retorna o número de períodos para investimento de acordo com pagamentos constantes e periódicos e uma taxa de juros constante.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/nper-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros por período.' }, + pmt: { name: 'pmt', detail: 'Obrigatório. O pagamento feito a cada período; não pode mudar durante a vigência da anuidade. Geralmente, pgto contém o capital e os juros e nenhuma outra tarifa ou taxas.' }, + pv: { name: 'pv', detail: 'Obrigatório. O valor presente ou a soma total correspondente ao valor presente de uma série de pagamentos futuros.' }, + fv: { name: 'fv', detail: 'Opcional. O valor futuro, ou o saldo, que você deseja obter depois do último pagamento. Se vf for omitido, será considerado 0 (o valor futuro de um empréstimo, por exemplo, é 0).' }, + type: { name: 'type', detail: 'Opcional. O número 0 ou 1 e indica as datas de vencimento.' }, + }, + }, + NPV: { + description: 'Retorna o valor presente líquido de um investimento com base em uma série de fluxos de caixa periódicos e uma taxa de desconto.', + abstract: 'Retorna o valor presente líquido de um investimento com base em uma série de fluxos de caixa periódicos e uma taxa de desconto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/npv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'A taxa de desconto durante um período.' }, + value1: { name: 'value1', detail: 'De 1 a 254 argumentos que representam pagamentos e receitas.' }, + value2: { name: 'value2', detail: 'De 1 a 254 argumentos que representam pagamentos e receitas.' }, + }, + }, + ODDFPRICE: { + description: 'Retorna o preço por valor nominal de $100 de um título com primeiro período irregular.', + abstract: 'Retorna o preço por valor nominal de $100 de um título com primeiro período irregular.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/oddfprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'A data de liquidação do título.' }, + maturity: { name: 'maturity', detail: 'A data de vencimento do título.' }, + issue: { name: 'issue', detail: 'A data de emissão do título.' }, + firstCoupon: { name: 'first_coupon', detail: 'A data do primeiro cupom do título.' }, + rate: { name: 'rate', detail: 'A taxa de juros do título.' }, + yld: { name: 'yld', detail: 'O rendimento anual do título.' }, + redemption: { name: 'redemption', detail: 'O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'O número de pagamentos de cupom por ano: 1 para anual, 2 para semestral e 4 para trimestral.' }, + basis: { name: 'basis', detail: 'O tipo de base de contagem de dias a ser usado.' }, + }, + }, + ODDFYIELD: { + description: 'Retorna o rendimento de um título com primeiro período irregular.', + abstract: 'Retorna o rendimento de um título com primeiro período irregular.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/oddfyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'A data de liquidação do título.' }, + maturity: { name: 'maturity', detail: 'A data de vencimento do título.' }, + issue: { name: 'issue', detail: 'A data de emissão do título.' }, + firstCoupon: { name: 'first_coupon', detail: 'A data do primeiro cupom do título.' }, + rate: { name: 'rate', detail: 'A taxa de juros do título.' }, + pr: { name: 'pr', detail: 'O preço do título.' }, + redemption: { name: 'redemption', detail: 'O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'O número de pagamentos de cupom por ano: 1 para anual, 2 para semestral e 4 para trimestral.' }, + basis: { name: 'basis', detail: 'O tipo de base de contagem de dias a ser usado.' }, + }, + }, + ODDLPRICE: { + description: 'Retorna o preço por R$ 100,00 de valor nominal de um título com um último período de cupom (curto ou longo) indefinido.', + abstract: 'Retorna o preço por R$ 100,00 de valor nominal de um título com um último período de cupom (curto ou longo) indefinido.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/oddlprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + lastInterest: { name: 'last_interest', detail: 'Necessário. A data do último cupom do título.' }, + rate: { name: 'rate', detail: 'Necessário. A taxa de juros do título.' }, + yld: { name: 'yld', detail: 'Necessário. O rendimento anual do título.' }, + redemption: { name: 'redemption', detail: 'Necessário. O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'Necessário. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + ODDLYIELD: { + description: 'Retorna o rendimento de um título com um último período (curto ou longo) indefinido.', + abstract: 'Retorna o rendimento de um título com um último período (curto ou longo) indefinido.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/oddlyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + lastInterest: { name: 'last_interest', detail: 'Obrigatório. A data do último cupom do título.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros do título' }, + pr: { name: 'pr', detail: 'Obrigatório. O preço do título.' }, + redemption: { name: 'redemption', detail: 'Obrigatório. O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'Obrigatório. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + PDURATION: { + description: 'Retorna o número de períodos necessários para um investimento alcançar um valor especificado.', + abstract: 'Retorna o número de períodos necessários para um investimento alcançar um valor especificado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pduration-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. Taxa é a taxa de juros por período.' }, + pv: { name: 'pv', detail: 'Obrigatório. Va é o valor atual do investimento.' }, + fv: { name: 'fv', detail: 'Obrigatório. Vf é o valor futuro desejado do investimento.' }, + }, + }, + PMT: { + description: 'PGTO , uma das funções financeiras , calcula o pagamento de um empréstimo de acordo com pagamentos constantes e com uma taxa de juros constante.', + abstract: 'PGTO , uma das funções financeiras , calcula o pagamento de um empréstimo de acordo com pagamentos constantes e com uma taxa de juros constante.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros para o empréstimo.' }, + nper: { name: 'nper', detail: 'Obrigatório. O número total de pagamentos pelo empréstimo.' }, + pv: { name: 'pv', detail: 'Obrigatório. O valor presente, ou a quantia total agora equivalente a uma série de pagamentos futuros; também conhecido como principal.' }, + fv: { name: 'fv', detail: 'Opcional. O valor futuro, ou o saldo, que você deseja obter depois do último pagamento. Se vf for omitido, será considerado 0 (o valor futuro de determinado empréstimo, por exemplo, 0).' }, + type: { name: 'type', detail: 'Opcional. O número 0 (zero) ou 1 e indica o vencimento dos pagamentos.' }, + }, + }, + PPMT: { + description: 'Retorna o pagamento do principal de um investimento em um período determinado.', + abstract: 'Retorna o pagamento do principal de um investimento em um período determinado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/ppmt-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'A taxa de juros por período.' }, + per: { name: 'per', detail: 'O período para o qual você deseja encontrar os juros; deve estar no intervalo de 1 a nper.' }, + nper: { name: 'nper', detail: 'O número total de períodos de pagamento de uma anuidade.' }, + pv: { name: 'pv', detail: 'O valor presente, ou o valor total que uma série de pagamentos futuros vale agora.' }, + fv: { name: 'fv', detail: 'O valor futuro, ou o saldo em dinheiro que você deseja atingir após o último pagamento.' }, + type: { name: 'type', detail: 'O número 0 ou 1 que indica quando os pagamentos vencem.' }, + }, + }, + PRICE: { + description: 'Retorna a preço por R$ 100,00 de valor nominal de um título que paga juros periódicos.', + abstract: 'Retorna a preço por R$ 100,00 de valor nominal de um título que paga juros periódicos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/price-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de cupom anual do título.' }, + yld: { name: 'yld', detail: 'Obrigatório. O rendimento anual do título.' }, + redemption: { name: 'redemption', detail: 'Obrigatório. O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'Obrigatório. O número de pagamentos de cupom por ano. Para pagamento anual, frequência = 1; para semestral, frequência = 2; para trimestral, frequência = 4.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + PRICEDISC: { + description: 'Retorna o preço por R$ 100,00 de valor nominal de um título descontado.', + abstract: 'Retorna o preço por R$ 100,00 de valor nominal de um título descontado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pricedisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + discount: { name: 'discount', detail: 'Obrigatório. A taxa de desconto do título.' }, + redemption: { name: 'redemption', detail: 'Obrigatório. O valor de resgate do título por R$ 100 de valor nominal.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + PRICEMAT: { + description: 'Retorna o preço por R$ 100,00 de valor nominal de um título que paga juros no vencimento.', + abstract: 'Retorna o preço por R$ 100,00 de valor nominal de um título que paga juros no vencimento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pricemat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + issue: { name: 'issue', detail: 'Necessário. A data de emissão do título, expressa como número de série de data.' }, + rate: { name: 'rate', detail: 'Necessário. A taxa de juros do título na data da emissão.' }, + yld: { name: 'yld', detail: 'Necessário. O rendimento anual do título.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + PV: { + description: 'VP , uma das funções financeiras , calcula o valor presente de um empréstimo ou investimento com base em uma taxa de juros constante. Você pode usar VP com pagamentos periódicos e constantes (como uma hipoteca ou outro empréstimo) ou um valor futuro que é sua meta de investimento.', + abstract: 'VP , uma das funções financeiras , calcula o valor presente de um empréstimo ou investimento com base em uma taxa de juros constante. Você pode usar VP com pagamentos periódicos e constantes (como uma hipoteca ou outro empréstimo) ou um valor futuro que é sua meta de investimento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros por período. Por exemplo, se você tiver um empréstimo para um automóvel com taxa de de juros de 10% ano ano e fizer pagamentos mensais, sua taxa de juros mensal será de 10%/12 ou 0,83%. Você deveria inserir 10%/12 ou 0,83%, ou 0,0083, na fórmula como taxa.' }, + nper: { name: 'nper', detail: 'Obrigatório. O número total de períodos de pagamento em uma anuidade. Por exemplo, se você conseguir um empréstimo de carro de quatro anos e fizer pagamentos mensais, seu empréstimo terá 4*12 (ou 48) períodos. Você deveria inserir 48 na fórmula para nper.' }, + pmt: { name: 'pmt', detail: 'Obrigatório. O pagamento feito em cada período e não pode mudar durante a vigência da anuidade. Geralmente, pgto inclui o principal e os juros e nenhuma outra taxa ou tributo. Por exemplo, os pagamentos mensais de R$ 10.000 de um empréstimo de quatro anos para um carro serão de R$ 263,33. Você inseriria -263,33 na fórmula como o pmt. Se pmt for omitido, você deverá incluir o argumento fv.' }, + fv: { name: 'fv', detail: 'Opcional. O valor futuro ou um saldo em dinheiro que você deseja obter depois do último pagamento. Se vf for omitido, será considerado 0 (o valor futuro de um empréstimo, por exemplo, é 0). Por exemplo, se você deseja economizar R$ 50.000 para pagar um projeto especial em 18 anos, então o valor futuro será de R$ 50.000. Você poderia então fazer uma estimativa conservadora na taxa de juros e concluir quanto economizaria por mês. Se vf for omitido, você deverá incluir o argumento pgto.' }, + type: { name: 'type', detail: 'Opcional. O número 0 ou 1 e indica as datas de vencimento.' }, + }, + }, + RATE: { + description: 'Retorna a taxa de juros por período de uma anuidade. A TAXA é calculada por iteração e pode ter zero ou mais soluções. Se os resultados sucessivos de RATE não convergirem para dentro de 0,0000001 após 20 iterações, RATE retornará o #NUM! valor de erro.', + abstract: 'Retorna a taxa de juros por período de uma anuidade. A TAXA é calculada por iteração e pode ter zero ou mais soluções. Se os resultados sucessivos de RATE não convergirem para dentro de 0,0000001 após 20 iterações, RATE retornará o #NUM! valor de erro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rate-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Necessário. O número total de períodos de pagamento em uma anuidade.' }, + pmt: { name: 'pmt', detail: 'Necessário. O pagamento feito em cada período e não pode mudar durante a vigência da anuidade. Geralmente, pgto inclui o principal e os juros e nenhuma outra taxa ou tributo. Se pgto for omitido, você deverá incluir o argumento vf.' }, + pv: { name: 'pv', detail: 'Necessário. O valor presente — o valor total correspondente ao valor atual de uma série de pagamentos futuros.' }, + fv: { name: 'fv', detail: 'Opcional. O valor futuro, ou o saldo, que você deseja obter depois do último pagamento. Se vf for omitido, será considerado 0 (o valor futuro de um empréstimo, por exemplo, é 0). Se vf for omitido, deve-se incluir o argumento pgto.' }, + type: { name: 'type', detail: 'Opcional. O número 0 ou 1 e indica as datas de vencimento.' }, + guess: { name: 'guess', detail: 'Opcional. A sua estimativa para a taxa. Se você omitir estimativa, este argumento será considerado 10%. Se TAXA não convergir, atribua valores diferentes para estimativa. Em geral, TAXA converge se estimativa estiver entre 0 e 1.' }, + }, + }, + RECEIVED: { + description: 'Retorna a quantia recebida no vencimento de um título totalmente investido.', + abstract: 'Retorna a quantia recebida no vencimento de um título totalmente investido.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/received-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + investment: { name: 'investment', detail: 'Obrigatório. A quantia investida no título.' }, + discount: { name: 'discount', detail: 'Obrigatório. A taxa de desconto do título.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + RRI: { + description: 'Retorna uma taxa de juros equivalente para o crescimento de um investimento.', + abstract: 'Retorna uma taxa de juros equivalente para o crescimento de um investimento.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/rri-function', + }, + ], + functionParameter: { + nper: { name: 'nper', detail: 'Necessário. Nper é o número de períodos para o investimento.' }, + pv: { name: 'pv', detail: 'Necessário. Va é o valor atual do investimento.' }, + fv: { name: 'fv', detail: 'Necessário. Vf é o valor futuro do investimento.' }, + }, + }, + SLN: { + description: 'Retorna a depreciação em linha reta de um ativo durante um período.', + abstract: 'Retorna a depreciação em linha reta de um ativo durante um período.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sln-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Necessário. O custo inicial do ativo.' }, + salvage: { name: 'salvage', detail: 'Necessário. O valor no final da depreciação (às vezes chamado de valor de recuperação do ativo).' }, + life: { name: 'life', detail: 'Necessário. O número de períodos durante os quais o ativo é depreciado (às vezes chamado vida útil do ativo).' }, + }, + }, + SYD: { + description: 'Retorna a depreciação dos dígitos da soma dos anos de um ativo para um período especificado.', + abstract: 'Retorna a depreciação dos dígitos da soma dos anos de um ativo para um período especificado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/syd-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Necessário. O custo inicial do ativo.' }, + salvage: { name: 'salvage', detail: 'Necessário. O valor no final da depreciação (às vezes chamado de valor de recuperação do ativo).' }, + life: { name: 'life', detail: 'Necessário. O número de períodos durante os quais o ativo é depreciado (às vezes chamado vida útil do ativo).' }, + per: { name: 'per', detail: 'Necessário. O período e deve utilizar as mesmas unidades de vida útil.' }, + }, + }, + TBILLEQ: { + description: 'Retorna o rendimento de um título equivalente a uma obrigação do Tesouro.', + abstract: 'Retorna o rendimento de um título equivalente a uma obrigação do Tesouro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tbilleq-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de quitação da obrigação do Tesouro. A data de liquidação do título é a data após a data de emissão quando a obrigação do Tesouro é negociada com o comprador.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento da obrigação do Tesouro. A data de vencimento é a data em que a obrigação do Tesouro expira.' }, + discount: { name: 'discount', detail: 'Necessário. A taxa de desconto da obrigação do Tesouro.' }, + }, + }, + TBILLPRICE: { + description: 'Retorna o preço por R$ 100,00 de valor nominal de uma obrigação do Tesouro.', + abstract: 'Retorna o preço por R$ 100,00 de valor nominal de uma obrigação do Tesouro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tbillprice-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de quitação da obrigação do Tesouro. A data de liquidação do título é a data após a data de emissão quando a obrigação do Tesouro é negociada com o comprador.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento da obrigação do Tesouro. A data de vencimento é a data em que a obrigação do Tesouro expira.' }, + discount: { name: 'discount', detail: 'Necessário. A taxa de desconto da obrigação do Tesouro.' }, + }, + }, + TBILLYIELD: { + description: 'Retorna o rendimento de uma obrigação do Tesouro.', + abstract: 'Retorna o rendimento de uma obrigação do Tesouro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tbillyield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de quitação da obrigação do Tesouro. A data de liquidação do título é a data após a data de emissão quando a obrigação do Tesouro é negociada com o comprador.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento da obrigação do Tesouro. A data de vencimento é a data em que a obrigação do Tesouro expira.' }, + pr: { name: 'pr', detail: 'Obrigatório. O preço da obrigação do Tesouro por R$ 100,00 de valor nominal.' }, + }, + }, + VDB: { + description: 'Retorna a depreciação de um ativo para o período que você especificar, incluindo períodos parciais, usando o método balanço declinante duplo ou algum outro método especificado. BDV é o balanço de declínio variável.', + abstract: 'Retorna a depreciação de um ativo para o período que você especificar, incluindo períodos parciais, usando o método balanço declinante duplo ou algum outro método especificado. BDV é o balanço de declínio variável.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/vdb-function', + }, + ], + functionParameter: { + cost: { name: 'cost', detail: 'Necessário. O custo inicial do ativo.' }, + salvage: { name: 'salvage', detail: 'Necessário. O valor no final da depreciação (às vezes chamado de valor residual do ativo). Este valor pode ser 0.' }, + life: { name: 'life', detail: 'Necessário. O número de períodos durante os quais o ativo é depreciado (às vezes chamado vida útil do ativo).' }, + startPeriod: { name: 'start_period', detail: 'Necessário. O período inicial para o qual se deseja calcular a depreciação. Início_período deve usar as mesmas unidades que vida_útil.' }, + endPeriod: { name: 'end_period', detail: 'Necessário. O período final para o qual se deseja calcular a depreciação. Final_período deve usar as mesmas unidades que vida_útil.' }, + factor: { name: 'factor', detail: 'Opcional. A taxa em que o balanço declina. Se o fator for omitido, será considerado 2 (método balanço de declínio duplo). Altere o fator caso não deseje usar o método balanço de declínio duplo. Para obter uma descrição do método balanço de declínio duplo, consulte BDD.' }, + noSwitch: { name: 'no_switch', detail: 'Opcional. Um valor lógico que especifica se deve haver mudança para depreciação de linha reta quando a depreciação for maior do que o cálculo do balanço de declínio. Se sem_mudança for VERDADEIRO, o Microsoft Excel não muda para depreciação de linha reta mesmo quando a depreciação for maior do que o cálculo do balanço declínio. Se sem_mudança for FALSO ou omitido, o Excel mudará para depreciação em linha reta quando a depreciação for maior do que o cálculo do balanço decrescente.' }, + }, + }, + XIRR: { + description: 'Fornece a taxa interna de retorno para um programa de fluxos de caixa que não é necessariamente periódico. Para calcular a taxa interna de retorno para uma sequência de fluxos de caixa periódicos, use a função TIR.', + abstract: 'Fornece a taxa interna de retorno para um programa de fluxos de caixa que não é necessariamente periódico. Para calcular a taxa interna de retorno para uma sequência de fluxos de caixa periódicos, use a função TIR.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/xirr-function', + }, + ], + functionParameter: { + values: { name: 'values', detail: 'Necessário. Uma sequência de fluxos de caixa que corresponde a um cronograma de pagamentos em datas. O primeiro pagamento é opcional e corresponde a um custo ou pagamento que ocorre no início do investimento. Se o primeiro valor for um custo ou pagamento, ele deverá ser negativo. Todos os pagamentos subsequentes são descontados com base em um ano de 365 dias. A série de valores deve conter pelo menos um valor positivo e um negativo.' }, + dates: { name: 'dates', detail: 'Necessário. Um cronograma de datas de pagamentos que corresponde aos pagamentos de fluxo de caixa. As datas podem ocorrer em qualquer ordem. As datas devem ser inseridas com a função DATA ou como resultado de outras fórmulas ou funções. Por exemplo, use DATA(2008;5;23) para 23 de maio de 2008. Poderão ocorrer problemas se as datas forem inseridas como texto. .' }, + guess: { name: 'guess', detail: 'Opcional. Um número que você supõe estar próximo do resultado de XTIR.' }, + }, + }, + XNPV: { + description: 'Retorna o valor presente líquido de um programa de fluxos de caixa que não é necessariamente periódico. Para calcular o valor presente líquido para uma sequência de fluxos de caixa que é periódica, use a função VPL.', + abstract: 'Retorna o valor presente líquido de um programa de fluxos de caixa que não é necessariamente periódico. Para calcular o valor presente líquido para uma sequência de fluxos de caixa que é periódica, use a função VPL.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/xnpv-function', + }, + ], + functionParameter: { + rate: { name: 'rate', detail: 'Obrigatório. A taxa de desconto a ser aplicada ao fluxo de caixa.' }, + values: { name: 'values', detail: 'Obrigatório. Uma sequência de fluxos de caixa que corresponde a um cronograma de pagamentos em datas. O primeiro pagamento é opcional e corresponde a um custo ou pagamento que ocorre no início do investimento. Se o primeiro valor for um custo ou pagamento, ele deverá ser negativo. Todos os pagamentos subsequentes são descontados com base em um ano de 365 dias. A série de valores deve conter pelo menos um valor positivo e um negativo.' }, + dates: { name: 'dates', detail: 'Obrigatório. Um cronograma de datas de pagamentos que corresponde aos pagamentos de fluxo de caixa. A primeira data de pagamento indica o início do cronograma de pagamentos. Todas as outras datas devem ser posteriores a essa data, mas podem estar em qualquer ordem.' }, + }, + }, + YIELD: { + description: 'Retorna o rendimento de um título que paga juros periódicos.', + abstract: 'Retorna o rendimento de um título que paga juros periódicos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/yield-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'A data de liquidação do título.' }, + maturity: { name: 'maturity', detail: 'A data de vencimento do título.' }, + rate: { name: 'rate', detail: 'A taxa de juros do título.' }, + pr: { name: 'pr', detail: 'O preço do título por R$ 100 de valor nominal.' }, + redemption: { name: 'redemption', detail: 'O valor de resgate do título por R$ 100 de valor nominal.' }, + frequency: { name: 'frequency', detail: 'O número de pagamentos de cupom por ano: 1 para anual, 2 para semestral e 4 para trimestral.' }, + basis: { name: 'basis', detail: 'O tipo de base de contagem de dias a ser usado.' }, + }, + }, + YIELDDISC: { + description: 'Retorna o lucro anual de um título descontado.', + abstract: 'Retorna o lucro anual de um título descontado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/yielddisc-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Necessário. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Necessário. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + pr: { name: 'pr', detail: 'Necessário. O preço do título por R$ 100 de valor nominal.' }, + redemption: { name: 'redemption', detail: 'Necessário. O valor de resgate do título por R$ 100 de valor nominal.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, + YIELDMAT: { + description: 'Retorna o lucro anual de um título que paga juros no vencimento.', + abstract: 'Retorna o lucro anual de um título que paga juros no vencimento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/yieldmat-function', + }, + ], + functionParameter: { + settlement: { name: 'settlement', detail: 'Obrigatório. A data de liquidação do título. A data de liquidação do título é a data após a data de emissão em que o título foi negociado com o cliente.' }, + maturity: { name: 'maturity', detail: 'Obrigatório. A data de vencimento do título. A data de vencimento é a data em que o título expira.' }, + issue: { name: 'issue', detail: 'Obrigatório. A data de emissão do título, expressa como número de série de data.' }, + rate: { name: 'rate', detail: 'Obrigatório. A taxa de juros do título na data da emissão.' }, + pr: { name: 'pr', detail: 'Obrigatório. O preço do título por R$ 100 de valor nominal.' }, + basis: { name: 'basis', detail: 'Opcional. O tipo de base de contagem diária a ser usado.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/financial/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/financial/ru-RU.ts index f2c7e245f0..260436bee4 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%BA%D0%BE%D0%BF%D0%B4%D0%BE%D1%85%D0%BE%D0%B4-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/ru-ru/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BD%D0%B0%D0%BA%D0%BE%D0%BF%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D0%B3%D0%B0%D1%88-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%BA%D0%BE%D0%BF%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D0%B3%D0%B0%D1%88-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B0%D0%BC%D0%BE%D1%80%D1%83%D0%BC-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D0%BC%D0%BE%D1%80%D1%83%D0%BC-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/ru-ru/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + cost: { name: 'стоимость', detail: 'Стоимость актива.' }, + datePurchased: { name: 'дата приобретения', detail: 'Дата приобретения актива.' }, + firstPeriod: { name: 'первый период ', detail: 'Дата окончания первого периода.' }, + salvage: { name: 'остаточная стоимость', detail: 'Остаточная стоимость актива в конце периода амортизации.' }, + period: { name: 'период', detail: 'Период.' }, + rate: { name: 'cтавка', detail: 'Ставка амортизации.' }, + basis: { name: 'базис', detail: 'Используемый способ вычисления дат.' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B0%D0%BC%D0%BE%D1%80%D1%83%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D0%BC%D0%BE%D1%80%D1%83%D0%B2-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BD%D0%B5%D0%B9%D0%BA%D1%83%D0%BF%D0%BE%D0%BD%D0%B4%D0%BE-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%BD%D0%B5%D0%B9%D0%BA%D1%83%D0%BF%D0%BE%D0%BD-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BD%D0%B5%D0%B9%D0%BA%D1%83%D0%BF%D0%BE%D0%BD-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BD%D0%B5%D0%B9%D0%BA%D1%83%D0%BF%D0%BE%D0%BD%D0%BF%D0%BE%D1%81%D0%BB%D0%B5-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B0%D1%82%D0%B0%D0%BA%D1%83%D0%BF%D0%BE%D0%BD%D0%BF%D0%BE%D1%81%D0%BB%D0%B5-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D0%BB%D0%BA%D1%83%D0%BF%D0%BE%D0%BD-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B0%D1%82%D0%B0%D0%BA%D1%83%D0%BF%D0%BE%D0%BD%D0%B4%D0%BE-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%B1%D1%89%D0%BF%D0%BB%D0%B0%D1%82-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%B1%D1%89%D0%B4%D0%BE%D1%85%D0%BE%D0%B4-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D1%83%D0%BE-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B4%D0%BE%D0%B1-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BA%D0%B8%D0%B4%D0%BA%D0%B0-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/ru-ru/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%80%D1%83%D0%B1%D0%BB%D1%8C-%D0%B4%D0%B5%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D1%83%D0%B1%D0%BB%D1%8C-%D0%B4%D0%B5%D1%81-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D1%83%D0%B1%D0%BB%D1%8C-%D0%B4%D1%80%D0%BE%D0%B1%D1%8C-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BB%D0%B8%D1%82-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/ru-ru/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8D%D1%84%D1%84%D0%B5%D0%BA%D1%82-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/effect-function', }, ], functionParameter: { @@ -331,51 +336,51 @@ const locale: typeof enUS = { }, }, FV: { - description: 'Возвращает будущую стоимость инвестиции на основе постоянной процентной ставки', - abstract: 'Возвращает будущую стоимость инвестиции на основе постоянной процентной ставки', + description: 'БС — одна из финансовых функций , возвращающая будущую стоимость инвестиции на основе постоянной процентной ставки. В функции БС можно использовать как периодические постоянные платежи, так и единый общий платеж.', + abstract: 'БС — одна из финансовых функций , возвращающая будущую стоимость инвестиции на основе постоянной процентной ставки. В функции БС можно использовать как периодические постоянные платежи, так и единый общий платеж.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D1%81-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fv-function', }, ], functionParameter: { - rate: { name: 'cтавка', detail: 'Процентная ставка за период.' }, - nper: { name: 'кпер', detail: 'Общее количество периодов платежей по аннуитету.' }, - pmt: { name: 'плт', detail: 'Выплата, производимая в каждый период; это значение не может меняться в течение всего периода выплат.' }, - pv: { name: 'пс', detail: 'Приведенная к текущему моменту стоимость, т. е. общая сумма, которая на текущий момент равноценна ряду будущих платежей.' }, - type: { name: 'тип', detail: 'Число 0 или 1, обозначающее срок выплаты.' }, + rate: { name: 'cтавка', detail: 'Обязательно. Процентная ставка за период.' }, + nper: { name: 'кпер', detail: 'Обязательно. Общее количество периодов платежей по аннуитету.' }, + pmt: { name: 'плт', detail: 'Обязательно. Выплата, производимая в каждый период; это значение не может меняться в течение всего периода выплат. Обычно аргумент "плт" состоит из основного платежа и платежа по процентам, но не включает других налогов и сборов. Если он опущен, аргумент "пс" является обязательным.' }, + pv: { name: 'пс', detail: 'Дополнительные. Приведенная к текущему моменту стоимость, т. е. общая сумма, которая на текущий момент равноценна ряду будущих платежей. Если аргумент "пс" опущен, предполагается значение 0. В этом случае аргумент "плт" является обязательным.' }, + type: { name: 'тип', detail: 'Дополнительные. Число 0 или 1, обозначающее срок выплаты. Если аргумент "тип" опущен, предполагается значение 0.' }, }, }, FVSCHEDULE: { - description: 'Возвращает будущую стоимость первоначальной основной суммы после применения ряда (плана) ставок сложных процентов', - abstract: 'Возвращает будущую стоимость первоначальной основной суммы после применения ряда (плана) ставок сложных процентов', + description: 'Возвращает будущую стоимость первоначальной основной суммы после применения ряда (плана) ставок сложных процентов. Функция БЗРАСПИС используется для вычисления будущей стоимости инвестиции с переменной процентной ставкой.', + abstract: 'Возвращает будущую стоимость первоначальной основной суммы после применения ряда (плана) ставок сложных процентов. Функция БЗРАСПИС используется для вычисления будущей стоимости инвестиции с переменной процентной ставкой.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B7%D1%80%D0%B0%D1%81%D0%BF%D0%B8%D1%81-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: 'первичное', detail: 'Стоимость инвестиции на текущий момент.' }, - schedule: { name: 'план', detail: 'Массив применяемых процентных ставок.' }, + principal: { name: 'первичное', detail: 'Обязательно. Стоимость инвестиции на текущий момент.' }, + schedule: { name: 'план', detail: 'Обязательно. Массив применяемых процентных ставок.' }, }, }, INTRATE: { - description: 'Возвращает процентную ставку для полностью инвестированных ценных бумаг', - abstract: 'Возвращает процентную ставку для полностью инвестированных ценных бумаг', + description: 'Возвращает процентную ставку для полностью инвестированных ценных бумаг.', + abstract: 'Возвращает процентную ставку для полностью инвестированных ценных бумаг.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D0%BD%D0%BE%D1%80%D0%BC%D0%B0-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: 'дата согл', detail: 'Дата расчета за ценные бумаги.' }, - maturity: { name: 'дата вступления в силу', detail: 'Срок погашения ценных бумаг.' }, - investment: { name: 'инвестиция', detail: 'Объем инвестиции в ценные бумаги.' }, - redemption: { name: 'погашение', detail: 'Сумма, которая должна быть получена на момент погашения ценных бумаг.' }, - basis: { name: 'базис', detail: 'Используемый способ вычисления дня.' }, + settlement: { name: 'дата согл', detail: 'Обязательно. Дата расчета за ценные бумаги (дата продажи ценных бумаг покупателю, более поздняя, чем дата выпуска).' }, + maturity: { name: 'дата вступления в силу', detail: 'Обязательно. Срок погашения ценных бумаг. Эта дата определяет момент, когда истекает срок действия ценных бумаг.' }, + investment: { name: 'инвестиция', detail: 'Обязательно. Объем инвестиции в ценные бумаги.' }, + redemption: { name: 'погашение', detail: 'Обязательно. Сумма, которая должна быть получена на момент погашения ценных бумаг.' }, + basis: { name: 'базис', detail: 'Дополнительные. Используемый способ вычисления дня.' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BF%D0%BB%D1%82-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ipmt-function', }, ], functionParameter: { @@ -397,17 +402,17 @@ const locale: typeof enUS = { }, }, IRR: { - description: 'Возвращает внутреннюю ставку доходности для ряда потоков денежных средств, представленных их численными значениями', - abstract: 'Возвращает внутреннюю ставку доходности для ряда потоков денежных средств, представленных их численными значениями', + description: 'Возвращает внутреннюю ставку доходности для ряда потоков денежных средств, представленных их численными значениями. В отличие от аннуитета, денежные суммы в пределах этих потоков могут колебаться. Однако обязательным условием является регулярность поступлений (например, ежемесячно или ежегодно). Внутренняя ставка доходности — это процентная ставка, принимаемая для инвестиции, состоящей из платежей (отрицательные величины) и доходов (положительные величины), которые имеют место в следующие друг за другом и одинаковые по продолжительности периоды.', + abstract: 'Возвращает внутреннюю ставку доходности для ряда потоков денежных средств, представленных их численными значениями. В отличие от аннуитета, денежные суммы в пределах этих потоков могут колебаться. Однако обязательным условием является регулярность поступлений (например, ежемесячно или ежегодно). Внутренняя ставка доходности — это процентная ставка, принимаемая для инвестиции, состоящей из платежей (отрицательные величины) и доходов (положительные величины), которые имеют место в следующие друг за другом и одинаковые по продолжительности периоды.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%81%D0%B4-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/irr-function', }, ], functionParameter: { values: { name: 'значения', detail: 'Массив или ссылка на ячейки, содержащие числа, для которых требуется подсчитать внутреннюю ставку доходности.' }, - guess: { name: 'догадка', detail: 'A number that you guess is close to the result of IRR.' }, + guess: { name: 'предположение', detail: 'Число, которое, по вашему предположению, близко к результату IRR.' }, }, }, ISPMT: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%BF%D0%BB%D0%B0%D1%82-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B4%D0%BB%D0%B8%D1%82-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B2%D1%81%D0%B4-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D0%BC%D0%B8%D0%BD%D0%B0%D0%BB-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BF%D0%B5%D1%80-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/ru-ru/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D0%BF%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%BF%D1%81-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/ru-ru/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0%D0%BF%D0%B5%D1%80%D0%B2%D0%BD%D0%B5%D1%80%D0%B5%D0%B3-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%B5%D1%80%D0%B2%D0%BD%D0%B5%D1%80%D0%B5%D0%B3-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0%D0%BF%D0%BE%D1%81%D0%BB%D0%BD%D0%B5%D1%80%D0%B5%D0%B3-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D1%81%D0%BB%D0%BD%D0%B5%D1%80%D0%B5%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D1%81%D0%BB%D0%BD%D0%B5%D1%80%D0%B5%D0%B3-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/ru-ru/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D0%B4%D0%BB%D0%B8%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B4%D0%BB%D0%B8%D1%82-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BB%D1%82-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%81%D0%BF%D0%BB%D1%82-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%86%D0%B5%D0%BD%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0%D1%81%D0%BA%D0%B8%D0%B4%D0%BA%D0%B0-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0%D0%BF%D0%BE%D0%B3%D0%B0%D1%88-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%81-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B0-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D0%BB%D1%83%D1%87%D0%B5%D0%BD%D0%BE-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%8D%D0%BA%D0%B2-%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8D%D0%BA%D0%B2-%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B0-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D0%BF%D0%BB-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D1%81%D1%87-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/ru-ru/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%B2%D0%BD%D0%BE%D0%BA%D1%87%D0%B5%D0%BA-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%86%D0%B5%D0%BD%D0%B0%D0%BA%D1%87%D0%B5%D0%BA-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BD%D0%B0%D0%BA%D1%87%D0%B5%D0%BA-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BA%D1%87%D0%B5%D0%BA-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%83%D0%BE-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/ru-ru/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D1%82%D0%B2%D0%BD%D0%B4%D0%BE%D1%85-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D1%82%D0%BD%D0%B7-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D1%81%D0%BA%D0%B8%D0%B4%D0%BA%D0%B0-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D0%B3%D0%B0%D1%88-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D1%85%D0%BE%D0%B4%D0%BF%D0%BE%D0%B3%D0%B0%D1%88-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/financial/sk-SK.ts index dd523135ab..4e9014bef7 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/accrint-function-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/sk-sk/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/accrintm-function-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/amordegrc-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/sk-sk/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + cost: { name: 'obstarávacia_cena', detail: 'Obstarávacia cena majetku.' }, + datePurchased: { name: 'dátum_nákupu', detail: 'Dátum nákupu majetku.' }, + firstPeriod: { name: 'prvé_obdobie', detail: 'Dátum konca prvého obdobia.' }, + salvage: { name: 'zostatková_hodnota', detail: 'Zostatková hodnota na konci životnosti majetku.' }, + period: { name: 'obdobie', detail: 'Obdobie.' }, + rate: { name: 'sadzba', detail: 'Sadzba odpisovania.' }, + basis: { name: 'základ', detail: 'Základ roka, ktorý sa má použiť.' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/amorlinc-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coupdaybs-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coupdays-function-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coupdaysnc-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coupncd-function-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coupnum-function-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/couppcd-function-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cumipmt-function-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cumprinc-function-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/db-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ddb-function-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/disc-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/sk-sk/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dollarde-function-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dollarfr-function-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/duration-function-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/sk-sk/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/effect-function-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/effect-function', }, ], functionParameter: { @@ -331,69 +336,69 @@ const locale: typeof enUS = { }, }, FV: { - description: 'Vracia budúcu hodnotu investície', - abstract: 'Vracia budúcu hodnotu investície', + description: 'Funkcia FV , jedna z finančných funkcií , vypočíta budúcu hodnotu investície na základe konštantnej úrokovej sadzby. Funkciu FV môžete použiť pri pravidelných konštantných platbách alebo pri jednorazovej platbe.', + abstract: 'Funkcia FV , jedna z finančných funkcií , vypočíta budúcu hodnotu investície na základe konštantnej úrokovej sadzby. Funkciu FV môžete použiť pri pravidelných konštantných platbách alebo pri jednorazovej platbe.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fv-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fv-function', }, ], functionParameter: { - rate: { name: 'sadzba', detail: 'Úroková sadzba na obdobie.' }, - nper: { name: 'počet_období', detail: 'Celkový počet platobných období v anuite.' }, - pmt: { name: 'splátka', detail: 'Platba vykonaná v každom období; počas životnosti anuity sa nemôže meniť.' }, - pv: { name: 'súčasná_hodnota', detail: 'Súčasná hodnota, alebo jednorazová suma, ktorú má séria budúcich platieb dnes.' }, - type: { name: 'typ', detail: 'Číslo 0 alebo 1 a určuje, kedy sú platby splatné.' }, + rate: { name: 'sadzba', detail: 'Povinné. Úroková sadzba za dané obdobie.' }, + nper: { name: 'počet_období', detail: 'Povinné. Celkový počet platobných období v danom intervale.' }, + pmt: { name: 'splátka', detail: 'Povinné. Platba (splátka) uskutočnená v jednotlivých obdobiach, ktorá sa nemení počas daného intervalu. V typickom prípade splátka obsahuje hodnotu istiny a úrokov, ale neobsahuje iné poplatky ani dane. Ak sa argument plt vynechá, musíte zadať argument sh.' }, + pv: { name: 'súčasná_hodnota', detail: 'Voliteľný argument. Súčasná hodnota, čiže celková čiastka, určujúca súčasnú hodnotu budúcich platieb. Ak sa tento argument vynechá, predpokladá sa, že má hodnotu 0 (nula) a musíte zadať argument plt.' }, + type: { name: 'typ', detail: 'Voliteľný argument. Číslo 0 alebo 1, ktoré vyjadruje, kedy sú sumy splatné. Ak sa tento argument vynechá, predpokladá sa, že má hodnotu 0.' }, }, }, FVSCHEDULE: { - description: 'Vracia budúcu hodnotu počiatočnej istiny po uplatnení série zložených úrokových sadzieb', - abstract: 'Vracia budúcu hodnotu počiatočnej istiny po uplatnení série zložených úrokových sadzieb', + description: 'Vráti budúcu hodnotu začiatočnej istiny po priradení série zložených úrokových sadzieb. Funkcia FVSCHEDULE sa používa na výpočet budúcej hodnoty investície s premennou alebo nastaviteľnou sadzbou.', + abstract: 'Vráti budúcu hodnotu začiatočnej istiny po priradení série zložených úrokových sadzieb. Funkcia FVSCHEDULE sa používa na výpočet budúcej hodnoty investície s premennou alebo nastaviteľnou sadzbou.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fvschedule-function-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: 'istina', detail: 'Súčasná hodnota.' }, - schedule: { name: 'rozpis', detail: 'Pole úrokových sadzieb, ktoré sa majú použiť.' }, + principal: { name: 'istina', detail: 'Povinné. Súčasná hodnota.' }, + schedule: { name: 'rozpis', detail: 'Povinné. Séria zložených úrokových sadzieb.' }, }, }, INTRATE: { - description: 'Vracia úrokovú sadzbu pre plne investovaný cenný papier', - abstract: 'Vracia úrokovú sadzbu pre plne investovaný cenný papier', + description: 'Vráti úrokovú sadzbu plne investovaného cenného papiera.', + abstract: 'Vráti úrokovú sadzbu plne investovaného cenného papiera.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/intrate-function-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: 'dátum_vysporiadania', detail: 'Dátum vysporiadania cenného papiera.' }, - maturity: { name: 'dátum_splatnosti', detail: 'Dátum splatnosti cenného papiera.' }, - investment: { name: 'investícia', detail: 'Suma investovaná do cenného papiera.' }, - redemption: { name: 'výkupná_hodnota', detail: 'Suma, ktorá sa má prijať pri splatnosti.' }, - basis: { name: 'základ', detail: 'Typ základu počtu dní, ktorý sa má použiť.' }, + settlement: { name: 'dátum_vysporiadania', detail: 'Povinné. Dátum vyrovnania cenného papiera. Dátum vyrovnania cenného papiera je dátum predaja cenného papiera klientovi. Musí byť neskorší než dátum emisie.' }, + maturity: { name: 'dátum_splatnosti', detail: 'Povinné. Dátum splatnosti cenného papiera. Je to dátum, keď sa končí platnosť cenného papiera.' }, + investment: { name: 'investícia', detail: 'Povinné. Suma investovaná do cenného papiera.' }, + redemption: { name: 'výkupná_hodnota', detail: 'Povinné. Zaručená cena cenného papiera pri splatnosti.' }, + basis: { name: 'základ', detail: 'Voliteľný argument. Typ denného základu, ktorý chcete použiť.' }, }, }, IPMT: { - description: 'Vracia úrokovú platbu za investíciu pre zadané obdobie', - abstract: 'Vracia úrokovú platbu za investíciu pre zadané obdobie', + description: 'Vypočíta výšku platby úroku v určitom úrokovom období pri pravidelných konštantných splátkach a konštantnej úrokovej sadzbe.', + abstract: 'Vypočíta výšku platby úroku v určitom úrokovom období pri pravidelných konštantných splátkach a konštantnej úrokovej sadzbe.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ipmt-function-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ipmt-function', }, ], functionParameter: { - rate: { name: 'sadzba', detail: 'Úroková sadzba na obdobie.' }, - per: { name: 'obdobie', detail: 'Obdobie, pre ktoré chcete zistiť úrok, a musí byť v rozsahu 1 až nper.' }, - nper: { name: 'počet_období', detail: 'Celkový počet platobných období v anuite.' }, - pv: { name: 'súčasná_hodnota', detail: 'Súčasná hodnota, alebo jednorazová suma, ktorú má séria budúcich platieb dnes.' }, - fv: { name: 'budúca_hodnota', detail: 'Budúca hodnota, alebo hotovostný zostatok, ktorý chcete dosiahnuť po poslednej platbe.' }, - type: { name: 'typ', detail: 'Číslo 0 alebo 1 a určuje, kedy sú platby splatné.' }, + rate: { name: 'sadzba', detail: 'Povinné. Úroková sadzba za dané obdobie.' }, + per: { name: 'obdobie', detail: 'Povinné. Obdobie, pre ktoré chcete vypočítať úrok. Musí byť v intervale od 1 do hodnoty argumentu pobd.' }, + nper: { name: 'počet_období', detail: 'Povinné. Celkový počet platobných období v danom intervale.' }, + pv: { name: 'súčasná_hodnota', detail: 'Povinné. Súčasná hodnota, čiže celková čiastka určujúca súčasnú hodnotu budúcich platieb.' }, + fv: { name: 'budúca_hodnota', detail: 'Voliteľný argument. Budúca hodnota alebo hotovostný zostatok, ktorý chcete dosiahnuť po zaplatení poslednej platby. Ak je tento argument vynechaný, predpokladá sa, že má hodnotu 0 (budúca hodnota pôžičky pre uvedený príklad je 0).' }, + type: { name: 'typ', detail: 'Voliteľný argument. Číslo 0 alebo 1, ktoré vyjadruje, kedy sú sumy splatné. Ak sa tento argument vynechá, predpokladá sa, že má hodnotu 0.' }, }, }, IRR: { @@ -402,7 +407,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/irr-function', }, ], functionParameter: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ispmt-function-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mduration-function-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mirr-function-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/nominal-function-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/nper-function-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/sk-sk/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/npv-function-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/sk-sk/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oddfprice-function-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oddfyield-function-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oddlprice-function-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/oddlyield-function-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/sk-sk/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pmt-function-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ppmt-function-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/price-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pricedisc-function-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pricemat-function-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pv-function-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rate-function-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/received-function-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rri-function-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sln-function-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/syd-function-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/sk-sk/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tbilleq-function-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tbillprice-function-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tbillyield-function-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/vdb-function-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/sk-sk/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/xnpv-function-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/yield-function-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/yielddisc-function-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/yieldmat-function-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/financial/vi-VN.ts index 1040016a9c..3181adb49e 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + 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.' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/effect-function', }, ], functionParameter: { @@ -331,51 +336,51 @@ const locale: typeof enUS = { }, }, 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', + description: 'FV , một trong các hàm tài chính , tính toán giá trị tương lai của một khoản đầu tư dựa trên một mức lãi suất cố định. Bạn có thể sử dụng FV với các khoản thanh toán bằng nhau định kỳ, hoặc thanh toán một lần duy nhất.', + abstract: 'FV , một trong các hàm tài chính , tính toán giá trị tương lai của một khoản đầu tư dựa trên một mức lãi suất cố định. Bạn có thể sử dụng FV với các khoản thanh toán bằng nhau định kỳ, hoặc thanh toán một lần duy nhất.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fv-function', }, ], 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ỳ.' }, + rate: { name: 'lãi suất', detail: 'Yêu cầu. Lãi suất theo kỳ hạn.' }, + nper: { name: 'tổng số kỳ', detail: 'Yêu cầu. Tổng số kỳ hạn thanh toán trong một niên kim.' }, + pmt: { name: 'số tiền', detail: 'Yêu cầu. Khoản thanh toán cho mỗi kỳ; khoản này không đổi trong suốt vòng đời của niên kim. Thông thường, pmt có chứa tiền gốc và lãi, nhưng không chứa các khoản phí và thuế khác. Nếu pmt được bỏ qua, bạn phải đưa vào đối số pv.' }, + pv: { name: 'giá trị hiện tại', detail: 'Tùy chọn. Giá trị hiện tại, hoặc số tiền trả một lần hiện tại đáng giá ngang với một chuỗi các khoản thanh toán tương lai. Nếu bỏ qua đối số pv, thì nó được giả định là 0 (không) và bạn phải đưa vào đối số pmt.' }, + type: { name: 'loại', detail: 'Tùy chọn. Số 0 hoặc 1 chỉ rõ thời điểm thanh toán đến hạn. Nếu đối số kiểu bị bỏ qua, thì nó được giả định là 0.' }, }, }, 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', + description: 'Trả về giá trị tương lai của số tiền gốc ban đầu sau khi áp dụng một chuỗi các lãi suất kép. Dùng hàm FVSCHEDULE để tính toán giá trị tương lai của một khoản đầu tư với lãi suất biến đổi hoặc có thể điều chỉnh.', + abstract: 'Trả về giá trị tương lai của số tiền gốc ban đầu sau khi áp dụng một chuỗi các lãi suất kép. Dùng hàm FVSCHEDULE để tính toán giá trị tương lai của một khoản đầu tư với lãi suất biến đổi hoặc có thể điều chỉnh.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fvschedule-function', }, ], 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.' }, + principal: { name: 'hiệu trưởng', detail: 'Yêu cầu. Giá trị hiện tại.' }, + schedule: { name: 'mảng lãi suất', detail: 'Yêu cầu. Một mảng gồm các lãi suất sẽ á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', + description: 'Trả về lãi suất của một chứng khoán đã đầu tư toàn bộ.', + abstract: 'Trả về lãi suất của một chứng khoán đã đầu tư toàn bộ.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/intrate-function', }, ], 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.' }, + settlement: { name: 'ngày thanh toán', detail: 'Yêu cầu. Ngày thanh toán chứng khoán. Ngày thanh toán chứng khoán là ngày sau ngày phát hành khi chứng khoán được bán cho người mua.' }, + maturity: { name: 'ngày đáo hạn', detail: 'Yêu cầu. Ngày đáo hạn của chứng khoán. Ngày đáo hạn là ngày mà chứng khoán hết hạn.' }, + investment: { name: 'số tiền đầu', detail: 'Yêu cầu. Số tiền đã đầu tư vào chứng khoán.' }, + redemption: { name: 'giá thanh lý', detail: 'Yêu cầu. Số tiền sẽ nhận được khi đáo hạn.' }, + basis: { name: 'điểm chuẩn', detail: 'Tùy chọn. Loại cơ sở đếm ngày sẽ dùng.' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ipmt-function', }, ], functionParameter: { @@ -402,7 +407,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/irr-function', }, ], functionParameter: { @@ -411,19 +416,19 @@ const locale: typeof enUS = { }, }, 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', + description: 'Tính tiền lãi đã trả (hoặc đã nhận) cho kỳ hạn đã xác định của khoản vay (hoặc khoản đầu tư) với các khoản thanh toán nợ gốc.', + abstract: 'Tính tiền lãi đã trả (hoặc đã nhận) cho kỳ hạn đã xác định của khoản vay (hoặc khoản đầu tư) với các khoản thanh toán nợ gốc.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ispmt-function', }, ], 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.' }, + rate: { name: 'lãi suất', detail: 'Bắt buộc. Lãi suất của khoản đầu tư.' }, + per: { name: 'kỳ', detail: 'Bắt buộc. Kỳ hạn mà bạn muốn tính lãi và phải nằm trong khoảng từ 1 đến Nper.' }, + nper: { name: 'tổng số kỳ', detail: 'Bắt buộc. Tổng số kỳ thanh toán của khoản đầu tư.' }, + pv: { name: 'giá trị hiện tại', detail: 'Bắt buộc. Giá trị hiện tại của khoản đầu tư. Đối với khoản vay, Pv là số tiền vay.' }, }, }, MDURATION: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/financial/zh-CN.ts index 4d8667c693..befd1a476b 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/accrint-%E5%87%BD%E6%95%B0-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/zh-cn/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/accrintm-%E5%87%BD%E6%95%B0-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/amordegrc-%E5%87%BD%E6%95%B0-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/zh-cn/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + cost: { name: '成本', detail: '资产原值。' }, + datePurchased: { name: '购买日期', detail: '购入资产的日期。' }, + firstPeriod: { name: '首个期间', detail: '第一个期间结束时的日期。' }, + salvage: { name: '残值', detail: '资产在使用寿命结束时的残值。' }, + period: { name: '期间', detail: '期间。' }, + rate: { name: '折旧率', detail: '折旧率。' }, + basis: { name: '基准', detail: '要使用的年基准。' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/amorlinc-%E5%87%BD%E6%95%B0-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coupdaybs-%E5%87%BD%E6%95%B0-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coupdays-%E5%87%BD%E6%95%B0-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coupdaysnc-%E5%87%BD%E6%95%B0-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coupncd-%E5%87%BD%E6%95%B0-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coupnum-%E5%87%BD%E6%95%B0-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/couppcd-%E5%87%BD%E6%95%B0-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cumipmt-%E5%87%BD%E6%95%B0-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cumprinc-%E5%87%BD%E6%95%B0-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/db-%E5%87%BD%E6%95%B0-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ddb-%E5%87%BD%E6%95%B0-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/disc-%E5%87%BD%E6%95%B0-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/zh-cn/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dollarde-%E5%87%BD%E6%95%B0-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dollarfr-%E5%87%BD%E6%95%B0-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/duration-%E5%87%BD%E6%95%B0-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/zh-cn/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/effect-%E5%87%BD%E6%95%B0-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/effect-function', }, ], functionParameter: { @@ -336,7 +341,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fv-%E5%87%BD%E6%95%B0-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fv-function', }, ], functionParameter: { @@ -348,34 +353,34 @@ const locale: typeof enUS = { }, }, FVSCHEDULE: { - description: '返回应用一系列复利率计算的初始本金的未来值', - abstract: '返回应用一系列复利率计算的初始本金的未来值', + description: '返回应用一系列复利率计算的初始本金的未来值。 使用 FVSCHEDULE 通过变量或可调节利率计算某项投资未来的价值。', + abstract: '返回应用一系列复利率计算的初始本金的未来值。 使用 FVSCHEDULE 通过变量或可调节利率计算某项投资未来的价值。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fvschedule-%E5%87%BD%E6%95%B0-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: '本金', detail: '现值。' }, - schedule: { name: '利率数组', detail: '要应用的利率数组。' }, + principal: { name: '本金', detail: '必填。 现值。' }, + schedule: { name: '利率数组', detail: '必填。 要应用的利率数组。' }, }, }, INTRATE: { - description: '返回完全投资型债券的利率', - abstract: '返回完全投资型债券的利率', + description: '返回完全投资型证券的利率。', + abstract: '返回完全投资型证券的利率。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/intrate-%E5%87%BD%E6%95%B0-5cb34dde-a221-4cb6-b3eb-0b9e55e1316f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: '结算日', detail: '有价证券的结算日。' }, - maturity: { name: '到期日', detail: '有价证券的到期日。' }, - investment: { name: '投资额', detail: '有价证券的投资额。' }, - redemption: { name: '清偿价', detail: '有价证券到期时的兑换值。' }, - basis: { name: '基准', detail: '要使用的日计数基准类型。' }, + settlement: { name: '结算日', detail: '必填。 有价证券的结算日。 有价证券结算日是在发行日之后,有价证券卖给购买者的日期。' }, + maturity: { name: '到期日', detail: '必填。 有价证券的到期日。 到期日是有价证券有效期截止时的日期。' }, + investment: { name: '投资额', detail: '必填。 有价证券的投资额。' }, + redemption: { name: '清偿价', detail: '必填。 有价证券到期时的兑换值。' }, + basis: { name: '基准', detail: '选。 要使用的日计数基准类型。' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ipmt-%E5%87%BD%E6%95%B0-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ipmt-function', }, ], functionParameter: { @@ -402,7 +407,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/irr-%E5%87%BD%E6%95%B0-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/irr-function', }, ], functionParameter: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ispmt-%E5%87%BD%E6%95%B0-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mduration-%E5%87%BD%E6%95%B0-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mirr-%E5%87%BD%E6%95%B0-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/nominal-%E5%87%BD%E6%95%B0-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/nper-%E5%87%BD%E6%95%B0-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/zh-cn/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/npv-%E5%87%BD%E6%95%B0-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/zh-cn/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oddfprice-%E5%87%BD%E6%95%B0-d7d664a8-34df-4233-8d2b-922bcf6a69e1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oddfyield-%E5%87%BD%E6%95%B0-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oddlprice-%E5%87%BD%E6%95%B0-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/oddlyield-%E5%87%BD%E6%95%B0-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/zh-cn/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pduration-%E5%87%BD%E6%95%B0-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pmt-%E5%87%BD%E6%95%B0-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ppmt-%E5%87%BD%E6%95%B0-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/price-%E5%87%BD%E6%95%B0-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pricedisc-%E5%87%BD%E6%95%B0-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pricemat-%E5%87%BD%E6%95%B0-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pv-%E5%87%BD%E6%95%B0-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rate-%E5%87%BD%E6%95%B0-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/received-%E5%87%BD%E6%95%B0-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rri-%E5%87%BD%E6%95%B0-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sln-%E5%87%BD%E6%95%B0-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/syd-%E5%87%BD%E6%95%B0-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/zh-cn/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tbilleq-%E5%87%BD%E6%95%B0-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tbillprice-%E5%87%BD%E6%95%B0-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tbillyield-%E5%87%BD%E6%95%B0-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/vdb-%E5%87%BD%E6%95%B0-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/zh-cn/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/xirr-%E5%87%BD%E6%95%B0-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/xnpv-%E5%87%BD%E6%95%B0-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/xnpv-function', }, ], functionParameter: { @@ -889,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/yield-%E5%87%BD%E6%95%B0-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/yield-function', }, ], functionParameter: { @@ -908,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/yielddisc-%E5%87%BD%E6%95%B0-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -925,7 +930,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/yieldmat-%E5%87%BD%E6%95%B0-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/financial/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/financial/zh-TW.ts index 5ad2a994b3..01ad212c3d 100644 --- a/packages/sheets-formula/src/locale/function-list/financial/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/financial/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/accrint-%E5%87%BD%E6%95%B0-fe45d089-6722-4fb3-9379-e1f911d8dc74', + url: 'https://support.microsoft.com/zh-tw/excel/functions/accrint-function', }, ], functionParameter: { @@ -43,7 +43,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/accrintm-%E5%87%BD%E6%95%B0-f62f01f9-5754-4cc4-805b-0e70199328a7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/accrintm-function', }, ], functionParameter: { @@ -60,12 +60,17 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/amordegrc-%E5%87%BD%E6%95%B0-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51', + url: 'https://support.microsoft.com/zh-tw/excel/functions/amordegrc-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + cost: { name: '成本', detail: '資產的成本。' }, + datePurchased: { name: '購買日期', detail: '資產的購買日期。' }, + firstPeriod: { name: '首個週期', detail: '第一個週期結束的日期。' }, + salvage: { name: '殘值', detail: '資產耐用年限終了時的殘餘價值。' }, + period: { name: '週期', detail: '週期。' }, + rate: { name: '折舊率', detail: '折舊率。' }, + basis: { name: '基礎', detail: '要使用的年計數基礎。' }, }, }, AMORLINC: { @@ -74,7 +79,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/amorlinc-%E5%87%BD%E6%95%B0-7d417b45-f7f5-4dba-a0a5-3451a81079a8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/amorlinc-function', }, ], functionParameter: { @@ -93,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coupdaybs-%E5%87%BD%E6%95%B0-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coupdaybs-function', }, ], functionParameter: { @@ -109,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coupdays-%E5%87%BD%E6%95%B0-cc64380b-315b-4e7b-950c-b30b0a76f671', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coupdays-function', }, ], functionParameter: { @@ -125,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coupdaysnc-%E5%87%BD%E6%95%B0-5ab3f0b2-029f-4a8b-bb65-47d525eea547', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coupdaysnc-function', }, ], functionParameter: { @@ -141,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coupncd-%E5%87%BD%E6%95%B0-fd962fef-506b-4d9d-8590-16df5393691f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coupncd-function', }, ], functionParameter: { @@ -157,7 +162,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coupnum-%E5%87%BD%E6%95%B0-a90af57b-de53-4969-9c99-dd6139db2522', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coupnum-function', }, ], functionParameter: { @@ -173,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/couppcd-%E5%87%BD%E6%95%B0-2eb50473-6ee9-4052-a206-77a9a385d5b3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/couppcd-function', }, ], functionParameter: { @@ -189,7 +194,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cumipmt-%E5%87%BD%E6%95%B0-61067bb0-9016-427d-b95b-1a752af0e606', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cumipmt-function', }, ], functionParameter: { @@ -207,7 +212,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cumprinc-%E5%87%BD%E6%95%B0-94a4516d-bd65-41a1-bc16-053a6af4c04d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cumprinc-function', }, ], functionParameter: { @@ -225,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/db-%E5%87%BD%E6%95%B0-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/db-function', }, ], functionParameter: { @@ -242,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ddb-%E5%87%BD%E6%95%B0-519a7a37-8772-4c96-85c0-ed2c209717a5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ddb-function', }, ], functionParameter: { @@ -259,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/disc-%E5%87%BD%E6%95%B0-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53', + url: 'https://support.microsoft.com/zh-tw/excel/functions/disc-function', }, ], functionParameter: { @@ -276,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dollarde-%E5%87%BD%E6%95%B0-db85aab0-1677-428a-9dfd-a38476693427', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dollarde-function', }, ], functionParameter: { @@ -290,7 +295,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dollarfr-%E5%87%BD%E6%95%B0-0835d163-3023-4a33-9824-3042c5d4f495', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dollarfr-function', }, ], functionParameter: { @@ -304,7 +309,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/duration-%E5%87%BD%E6%95%B0-b254ea57-eadc-4602-a86a-c8e369334038', + url: 'https://support.microsoft.com/zh-tw/excel/functions/duration-function', }, ], functionParameter: { @@ -322,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/effect-%E5%87%BD%E6%95%B0-910d4e4c-79e2-4009-95e6-507e04f11bc4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/effect-function', }, ], functionParameter: { @@ -336,7 +341,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fv-%E5%87%BD%E6%95%B0-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fv-function', }, ], functionParameter: { @@ -348,34 +353,34 @@ const locale: typeof enUS = { }, }, FVSCHEDULE: { - description: '傳回應用一系列複利率計算的初始本金的未來值', - abstract: '傳回應用一系列複利率計算的初始本金的未來值', + description: '傳回初始資金在套用一系列複利率之後的未來值。 使用 FVSCHEDULE 以變動或可調整的利率來計算投資的未來值。', + abstract: '傳回初始資金在套用一系列複利率之後的未來值。 使用 FVSCHEDULE 以變動或可調整的利率來計算投資的未來值。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fvschedule-%E5%87%BD%E6%95%B0-bec29522-bd87-4082-bab9-a241f3fb251d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fvschedule-function', }, ], functionParameter: { - principal: { name: '初始資金', detail: '現值。' }, - schedule: { name: '利率陣列', detail: '要套用的利率陣列。' }, + principal: { name: '初始資金', detail: '必須。 這是現值。' }, + schedule: { name: '利率陣列', detail: '必須。 這是要套用的利率陣列。' }, }, }, INTRATE: { - description: '返回完全投資型債券的利率', - abstract: '返回完全投資型債券的利率', + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/intrate-function', }, ], functionParameter: { - settlement: { name: '結算日期', detail: '證券的結算日期。' }, - maturity: { name: '到期日期', detail: '證券的到期日期。' }, - investment: { name: '投資額', detail: '證券的投資額。' }, - redemption: { name: '贖回價', detail: '證券到期時的贖回價值。' }, - basis: { name: '基礎', detail: '要使用的日計數基礎類型。' }, + settlement: { name: '結算日期', detail: '必須。 這是證券的結算日期。 證券結算日期是證券交割給買方後的次日。' }, + maturity: { name: '到期日期', detail: '必須。 這是證券的到期日期。 到期日期為證券到期的日期。' }, + investment: { name: '投資額', detail: '必須。 這是證券的投資額。' }, + redemption: { name: '贖回價', detail: '必須。 這是到期時收回的金額。' }, + basis: { name: '基礎', detail: '可選的。 這是要使用的日計數基礎類型。' }, }, }, IPMT: { @@ -384,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ipmt-%E5%87%BD%E6%95%B0-5cce0ad6-8402-4a41-8d29-61a0b054cb6f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ipmt-function', }, ], functionParameter: { @@ -402,7 +407,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/irr-%E5%87%BD%E6%95%B0-64925eaa-9988-495b-b290-3ad0c163c1bc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/irr-function', }, ], functionParameter: { @@ -416,7 +421,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ispmt-%E5%87%BD%E6%95%B0-fa58adb6-9d39-4ce0-8f43-75399cea56cc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ispmt-function', }, ], functionParameter: { @@ -432,7 +437,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mduration-%E5%87%BD%E6%95%B0-b3786a69-4f20-469a-94ad-33e5b90a763c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mduration-function', }, ], functionParameter: { @@ -450,7 +455,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mirr-%E5%87%BD%E6%95%B0-b020f038-7492-4fb4-93c1-35c345b53524', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mirr-function', }, ], functionParameter: { @@ -465,7 +470,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/nominal-%E5%87%BD%E6%95%B0-7f1ae29b-6b92-435e-b950-ad8b190ddd2b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/nominal-function', }, ], functionParameter: { @@ -479,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/nper-%E5%87%BD%E6%95%B0-240535b5-6653-4d2d-bfcf-b6a38151d815', + url: 'https://support.microsoft.com/zh-tw/excel/functions/nper-function', }, ], functionParameter: { @@ -496,7 +501,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/npv-%E5%87%BD%E6%95%B0-8672cb67-2576-4d07-b67b-ac28acf2a568', + url: 'https://support.microsoft.com/zh-tw/excel/functions/npv-function', }, ], functionParameter: { @@ -511,7 +516,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oddfprice-%E5%87%BD%E6%95%B0-d7d664a8-34df-4233-8d2b​​-922bcf6a69e1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oddfprice-function', }, ], functionParameter: { @@ -532,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oddfyield-%E5%87%BD%E6%95%B0-66bc8b7b-6501-4c93-9ce3-2fd16220fe37', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oddfyield-function', }, ], functionParameter: { @@ -553,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oddlprice-%E5%87%BD%E6%95%B0-fb657749-d200-4902-afaf-ed5445027fc4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oddlprice-function', }, ], functionParameter: { @@ -573,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/oddlyield-%E5%87%BD%E6%95%B0-c873d088-cf40-435f-8d41-c8232fee9238', + url: 'https://support.microsoft.com/zh-tw/excel/functions/oddlyield-function', }, ], functionParameter: { @@ -593,7 +598,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pduration-%E5%87%BD%E6%95%B0-44f33460-5be5-4c90-b857-22308892adaf', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pduration-function', }, ], functionParameter: { @@ -608,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pmt-%E5%87%BD%E6%95%B0-0214da64-9a63-4996-bc20-214433fa6441', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pmt-function', }, ], functionParameter: { @@ -625,7 +630,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ppmt-%E5%87%BD%E6%95%B0-c370d9e3-7749-4ca4-beea-b06c6ac95e1b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ppmt-function', }, ], functionParameter: { @@ -643,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/price-%E5%87%BD%E6%95%B0-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/price-function', }, ], functionParameter: { @@ -662,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pricedisc-%E5%87%BD%E6%95%B0-d06ad7c1-380e-4be7-9fd9-75e3079acfd3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pricedisc-function', }, ], functionParameter: { @@ -679,7 +684,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pricemat-%E5%87%BD%E6%95%B0-52c3b4da-bc7e-476a-989f-a95f675cae77', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pricemat-function', }, ], functionParameter: { @@ -697,7 +702,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pv-%E5%87%BD%E6%95%B0-23879d31-0e02-4321-be01-da16e8168cbd', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pv-function', }, ], functionParameter: { @@ -714,7 +719,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rate-%E5%87%BD%E6%95%B0-9f665657-4a7e-4bb7-a030-83fc59e748ce', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rate-function', }, ], functionParameter: { @@ -732,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/received-%E5%87%BD%E6%95%B0-7a3f8b93-6611-4f81-8576-828312c9b5e5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/received-function', }, ], functionParameter: { @@ -749,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rri-%E5%87%BD%E6%95%B0-6f5822d8-7ef1-4233-944c-79e8172930f4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rri-function', }, ], functionParameter: { @@ -764,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sln-%E5%87%BD%E6%95%B0-cdb666e5-c1c6-40a7-806a-e695edc2f1c8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sln-function', }, ], functionParameter: { @@ -779,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/syd-%E5%87%BD%E6%95%B0-069f8106-b60b-4ca2-98e0-2a0f206bdb27', + url: 'https://support.microsoft.com/zh-tw/excel/functions/syd-function', }, ], functionParameter: { @@ -795,7 +800,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tbilleq-%E5%87%BD%E6%95%B0-2ab72d90-9b4d-4efe-9fc2-0f81f2c19c8c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tbilleq-function', }, ], functionParameter: { @@ -810,7 +815,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tbillprice-%E5%87%BD%E6%95%B0-eacca992-c29d-425a-9eb8-0513fe6035a2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tbillprice-function', }, ], functionParameter: { @@ -825,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tbillyield-%E5%87%BD%E6%95%B0-6d381232-f4b0-4cd5-8e97-45b9c03468ba', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tbillyield-function', }, ], functionParameter: { @@ -840,7 +845,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/vdb-%E5%87%BD%E6%95%B0-dde4e207-f3fa-488d-91d2-66d55e861d73', + url: 'https://support.microsoft.com/zh-tw/excel/functions/vdb-function', }, ], functionParameter: { @@ -859,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/xirr-%E5%87%BD%E6%95%B0-de1242ec-6477-445b-b11b-a303ad9adc9d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/xirr-function', }, ], functionParameter: { @@ -874,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/xnpv-%E5%87%BD%E6%95%B0-1b42bbf6-370f-4532-a0eb-d67c16b664b7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/xnpv-function', }, ], functionParameter: { @@ -888,7 +893,7 @@ const locale: typeof enUS = { abstract: '返回定期支付利息的債券的收益', links: [{ title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/yield-%E5%87%BD%E6%95%B0-f5f5ca43-c4bd-434f-8bd2-ed3c9727a4fe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/yield-function', }], functionParameter: { settlement: { name: '結算日期', detail: '證券的結算日期。' }, @@ -906,7 +911,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/yielddisc-%E5%87%BD%E6%95%B0-a9dbdbae-7dae-46de-b995-615faffaaed7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/yielddisc-function', }, ], functionParameter: { @@ -923,7 +928,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/yieldmat-%E5%87%BD%E6%95%B0-ba7d1809-0d33-4bcb-96c7-6c56ec62ef6f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/yieldmat-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/information/ar-SA.ts new file mode 100644 index 0000000000..3ac7a1ea1c --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/ar-SA.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'تُرجع الدالة CELL معلومات حول تنسيق الخلية أو موقعها أو محتوياتها. على سبيل المثال، إذا أردت التحقق من أن إحدى الخلايا تحتوي على قيمة رقمية بدلاً من نص قبل إجراء عملية حسابية عليها، فبإمكانك استخدام الصيغة التالية:', + abstract: 'تُرجع الدالة CELL معلومات حول تنسيق الخلية أو موقعها أو محتوياتها. على سبيل المثال، إذا أردت التحقق من أن إحدى الخلايا تحتوي على قيمة رقمية بدلاً من نص قبل إجراء عملية حسابية عليها، فبإمكانك استخدام الصيغة التالية:', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'وهي قيمة نصية تحدد نوع معلومات الخلية الذي تريد إرجاعه. تعرض القائمة التالية القيم المحتملة للوسيطة Info_type والنتائج المقابلة.' }, + reference: { name: 'reference', detail: 'وهي الخلية التي تريد معلومات حولها. إذا تم حذفها، يتم إرجاع المعلومات المحددة في الوسيطة info_type للخلية المحددة في وقت الحساب. إذا كانت الوسيطة المرجعية عبارة عن نطاق خلايا، فترجع الدالة CELL معلومات الخلية النشطة في النطاق المحدد. الهامه: على الرغم من أن المرجع من الناحية الفنية اختياري، إلا أنه يتم تشجيع تضمينه في الصيغة، إلا إذا كنت تفهم تأثير غيابه على نتيجة الصيغة وتريد تطبيق هذا التأثير. لا يؤدي حذف الوسيطة المرجعية إلى إنتاج معلومات حول خلية معينة بشكل موثوق، للأسباب التالية: في وضع الحساب التلقائي، عند تعديل خلية من قبل مستخدم، قد يتم تشغيل العملية الحسابية قبل تقدم التحديد أو بعده، اعتمادا على النظام الأساسي الذي تستخدمه ل Excel. على سبيل المثال، يقوم Excel for Windows حاليا بتشغيل الحساب قبل تغيير التحديد، ولكن Excel على الويب تشغيله بعد ذلك. عند Co-Authoring مع مستخدم آخر يقوم بإجراء تحرير، ستقوم هذه الدالة بالإبلاغ عن الخلية النشطة بدلا من المحرر. ستؤدي أي إعادة حساب، على سبيل المثال الضغط على F9، إلى إرجاع الدالة نتيجة جديدة على الرغم من عدم حدوث أي تحرير للخلية.' }, + }, + }, + ERROR_TYPE: { + description: 'تُرجع هذه الدالة رقماً يطابق إحدى قيم الخطأ في Microsoft Excel أو تُرجع الخطأ ‎#N/A في حال عدم وجود أي خطأ. يمكنك استخدام الدالة ERROR.TYPE في دالة IF لاختبار قيمة خطأ وإرجاع سلسلة نصية، كرسالة مثلاً، بدلاً من قيمة الخطأ.', + abstract: 'تُرجع هذه الدالة رقماً يطابق إحدى قيم الخطأ في Microsoft Excel أو تُرجع الخطأ ‎#N/A في حال عدم وجود أي خطأ. يمكنك استخدام الدالة ERROR.TYPE في دالة IF لاختبار قيمة خطأ وإرجاع سلسلة نصية، كرسالة مثلاً، بدلاً من قيمة الخطأ.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'مطلوب. قيمة الخطأ التي تريد البحث عن رقم التعريف الخاص بها. على الرغم من أن error_val قد تكون قيمة الخطأ الفعلية، فهي ستكون عادةً عبارة عن مرجع إلى خلية تحتوي على صيغة تريد اختبارها.' }, + }, + }, + INFO: { + description: 'إرجاع معلومات حول بيئة التشغيل الحالية.', + abstract: 'إرجاع معلومات حول بيئة التشغيل الحالية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'مطلوب. نص يحدد نوع المعلومات التي تريد إرجاعها.' }, + }, + }, + ISBETWEEN: { + description: 'تتحقق مما إذا كان الرقم المقدم يقع بين رقمين آخرين، بشكل شامل أو حصري.', + abstract: 'تتحقق مما إذا كان الرقم المقدم يقع بين رقمين آخرين، بشكل شامل أو حصري.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=ar', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'القيمة المراد اختبار وقوعها بين `lower_value` و`upper_value`.' }, + lowerValue: { name: 'lower_value', detail: 'الحد الأدنى لنطاق القيم الذي يمكن أن تقع ضمنه `value_to_compare`.' }, + upperValue: { name: 'upper_value', detail: 'الحد الأعلى لنطاق القيم الذي يمكن أن تقع ضمنه `value_to_compare`.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'ما إذا كان نطاق القيم يتضمن `lower_value`. القيمة الافتراضية TRUE.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'ما إذا كان نطاق القيم يتضمن `upper_value`. القيمة الافتراضية TRUE.' }, + }, + }, + ISBLANK: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISDATE: { + description: 'ترجع الدالة ISDATE ما إذا كانت القيمة تاريخاً.', + abstract: 'ترجع الدالة ISDATE ما إذا كانت القيمة تاريخاً.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=ar', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'القيمة المطلوب التحقق من أنها تاريخ.' }, + }, + }, + ISEMAIL: { + description: 'تتحقق الدالة ISEMAIL مما إذا كانت القيمة عنوان بريد إلكتروني صالحاً. فهي تتحقق من اتباع القيمة لتنسيق شائع لعناوين البريد الإلكتروني، لكنها لا تتحقق من وجود العنوان.', + abstract: 'تتحقق الدالة ISEMAIL مما إذا كانت القيمة عنوان بريد إلكتروني صالحاً. فهي تتحقق من اتباع القيمة لتنسيق شائع لعناوين البريد الإلكتروني، لكنها لا تتحقق من وجود العنوان.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=ar', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'القيمة المطلوب التحقق من أنها عنوان بريد إلكتروني.' }, + }, + }, + ISERR: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISERROR: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISEVEN: { + description: 'إرجاع القيمة TRUE إذا كان الرقم زوجياً، أو FALSE إذا كان الرقم فردياً.', + abstract: 'إرجاع القيمة TRUE إذا كان الرقم زوجياً، أو FALSE إذا كان الرقم فردياً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوبة. القيمة التي يجب اختبارها. إذا لم يكن الرقم عدداً صحيحاً، فسيتم اقتطاعه.' }, + }, + }, + ISFORMULA: { + description: 'تتحقق هذه الدالة من وجود مرجع إلى خلية تحتوي على صيغة، وتُرجع TRUE أو FALSE.', + abstract: 'تتحقق هذه الدالة من وجود مرجع إلى خلية تحتوي على صيغة، وتُرجع TRUE أو FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'مطلوب. المرجع هو مرجع إلى الخلية التي تريد اختبارها. يمكن أن يكون المرجع مرجع خلية أو صيغة أو اسما يشير إلى خلية.' }, + }, + }, + ISLOGICAL: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISNA: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISNONTEXT: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISNUMBER: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISODD: { + description: 'إرجاع القيمة TRUE إذا كان الرقم فردياً أو FALSE إذا كان الرقم زوجياً.', + abstract: 'إرجاع القيمة TRUE إذا كان الرقم فردياً أو FALSE إذا كان الرقم زوجياً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوبة. القيمة التي يجب اختبارها. إذا لم تكن قيمة الوسيطة Number عدداً صحيحاً، فسيتم اقتطاعها.' }, + }, + }, + ISOMITTED: { + description: 'التحقق من أن القيمة في LAMBDA مفقودة وإرجاع TRUE أو FALSE.', + abstract: 'التحقق من أن القيمة في LAMBDA مفقودة وإرجاع TRUE أو FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'الوسيطه', detail: 'القيمة التي تريد اختبارها، مثل معلمة LAMBDA.' }, + }, + }, + ISREF: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISTEXT: { + description: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + abstract: 'تقوم كل دالة من هذه الدالات، ويشار إليها جميعاً بدالات IS ، بالتحقق من القيمة المحددة وإرجاع TRUE أو FALSE استناداً إلى النتائج. تقوم الدالة ISBLANK مثلاً بإرجاع القيمة المنطقية TRUE إذا كانت وسيطة القيمة مرجعاً إلى خلية فارغة، وبخلاف ذلك فإنها تقوم بإرجاع FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. هي القيمة التي تريد اختبارها. يمكن لوسيطة القيمة أن تكون عبارة عن قيمة فارغة (خلية فارغة) أو قيمة خطأ أو قيمة منطقية أو نص أو رقم أو قيمة مرجعية أو اسم يشير إلى أي من هذه.' }, + }, + }, + ISURL: { + description: 'تتحقق مما إذا كانت القيمة عنوان URL صالحاً.', + abstract: 'تتحقق مما إذا كانت القيمة عنوان URL صالحاً.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=ar', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'القيمة المطلوب التحقق من أنها عنوان URL.' }, + }, + }, + N: { + description: 'تُرجع هذه الدالة قيمة محوّلة إلى رقم.', + abstract: 'تُرجع هذه الدالة قيمة محوّلة إلى رقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. القيمة التي تريد تحويلها. تحوّل الدالة N القيم المذكورة في الجدول التالي.' }, + }, + }, + NA: { + description: 'تُرجع هذه الدالة قيمة الخطأ ‎#N/A. #N/A هي قيمة الخطأ التي تعني "لا توجد قيمة متوفرة". استخدم NA لوضع علامة على الخلايا الفارغة. عن طريق إدخال ‎#N/A في الخلايا ذات المعلومات الناقصة، يمكنك تفادي مشكلة تضمين خلايا فارغة في عملياتك الحسابية عن طريق الخطأ. (عندما تشير الصيغة إلى خلية تحتوي على ‎#N/A، تُرجع الصيغة قيمة الخطأ ‎#N/A.)', + abstract: 'تُرجع هذه الدالة قيمة الخطأ ‎#N/A. #N/A هي قيمة الخطأ التي تعني "لا توجد قيمة متوفرة". استخدم NA لوضع علامة على الخلايا الفارغة. عن طريق إدخال ‎#N/A في الخلايا ذات المعلومات الناقصة، يمكنك تفادي مشكلة تضمين خلايا فارغة في عملياتك الحسابية عن طريق الخطأ. (عندما تشير الصيغة إلى خلية تحتوي على ‎#N/A، تُرجع الصيغة قيمة الخطأ ‎#N/A.)', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'ترجع الدالة SHEET رقم الورقة للورقة المحددة أو مرجعا آخر.', + abstract: 'ترجع الدالة SHEET رقم الورقة للورقة المحددة أو مرجعا آخر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'وسيطة اختيارية. استخدم هذا لتحديد اسم ورقة أو مرجع تريد الحصول على رقم الورقة له. وإلا، سترجع الدالة عدد الورقة التي تحتوي على الدالة SHEET.' }, + }, + }, + SHEETS: { + description: 'تُرجع هذه الدالة عدد الأوراق في مرجع.', + abstract: 'تُرجع هذه الدالة عدد الأوراق في مرجع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'تُرجع هذه الدالة نوع القيمة. استخدم الدالة TYPE عندما يستند سلوك دالة أخرى إلى نوع القيمة في خلية محددة.', + abstract: 'تُرجع هذه الدالة نوع القيمة. استخدم الدالة TYPE عندما يستند سلوك دالة أخرى إلى نوع القيمة في خلية محددة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. يمكنها أن تكون أي قيمة من قيم Microsoft Excel، كرقم ونص وقيمة منطقية، وهكذا.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/information/ca-ES.ts index a1daa0c26b..6bd1c1b57e 100644 --- a/packages/sheets-formula/src/locale/function-list/information/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/information/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/ca-es/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/ca-es/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,12 +50,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/ca-es/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + typeText: { name: 'Tipus de text', detail: 'Text que especifica el tipus d’informació que s’ha de retornar.' }, }, }, ISBETWEEN: { @@ -81,7 +80,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -120,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -133,7 +132,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/ca-es/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/ca-es/excel/functions/isformula-function', }, ], functionParameter: { @@ -172,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -185,7 +184,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -198,7 +197,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -211,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/ca-es/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,12 +236,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/ca-es/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + argument: { name: 'Argument', detail: 'Valor que es comprova per determinar si s’ha omès, com ara un paràmetre LAMBDA.' }, }, }, ISREF: { @@ -251,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -264,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ca-es/excel/functions/is-functions', }, ], functionParameter: { @@ -281,7 +279,7 @@ const locale: typeof enUS = { }, ], functionParameter: { - value: { name: 'valor', detail: 'El valor que s\'ha de verificar com a URL.' }, + value: { name: 'valor', detail: 'ISURL("www.google.com")' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/ca-es/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/ca-es/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/ca-es/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/ca-es/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/ca-es/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/de-DE.ts b/packages/sheets-formula/src/locale/function-list/information/de-DE.ts new file mode 100644 index 0000000000..fb11409f29 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/de-DE.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'Mit der Funktion ZELLE werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben. Wenn Sie beispielsweise vor dem Ausführen einer Berechnung für eine Zelle prüfen möchten, ob sie einen numerischen Wert und keinen Text enthält, können Sie die folgende Formel verwenden:', + abstract: 'Mit der Funktion ZELLE werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben. Wenn Sie beispielsweise vor dem Ausführen einer Berechnung für eine Zelle prüfen möchten, ob sie einen numerischen Wert und keinen Text enthält, können Sie die folgende Formel verwenden:', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Ein Textwert, der angibt, welcher Typ von Zellinformationen zurückgegeben werden soll. In der folgenden Liste werden die möglichen Werte für das Argument "Infotyp" und die entsprechenden Ergebnisse angezeigt.' }, + reference: { name: 'reference', detail: 'Die Zelle, zu der Sie Informationen wünschen. Wenn das Argument "Infotyp" ausgelassen wird, werden die darin angegebenen Informationen für die zum Zeitpunkt der Berechnung ausgewählte Zelle zurückgegeben. Wenn es sich bei dem Argument „Bezug“ um einen Zellbereich handelt, gibt die Funktion ZELLE die Informationen für die aktive Zelle im ausgewählten Bereich zurück. Wichtig: Obwohl ein Verweis technisch gesehen optional ist, wird die Aufnahme in ihre Formel empfohlen, es sei denn, Sie verstehen, welche Auswirkungen ihr Fehlen auf das Formelergebnis hat, und möchten, dass dieser Effekt vorhanden ist. Das Weglassen des Arguments Verweis liefert aus folgenden Gründen keine verlässlichen Informationen zu einer bestimmten Zelle: Im automatischen Berechnungsmodus kann die Berechnung, wenn eine Zelle von einer Person geändert wird, je nach verwendeter Excel-Plattform vor oder nach der Änderung der Auswahl ausgelöst werden. Beispielsweise löst Excel für Windows derzeit berechnungen aus, bevor die Auswahl geändert wird, aber Excel für das Web löst sie danach aus. Wenn Co-Authoring mit einem anderen Benutzer, der eine Bearbeitung vornimmt, meldet diese Funktion Ihre aktive Zelle und nicht die des Editors. Jede Neuberechnung für instance Drücken von F9 bewirkt, dass die Funktion ein neues Ergebnis zurückgibt, obwohl keine Zellbearbeitung erfolgt ist.' }, + }, + }, + ERROR_TYPE: { + description: 'Gibt eine Zahl zurück, die einem der Fehlerwerte in Microsoft Excel entspricht, oder den Fehlerwert #NV, wenn kein Fehler vorhanden ist. Sie können FEHLER.TYP in einer WENN-Funktion verwenden, um einen Fehlerwert zu ermitteln und eine Zeichenfolge, beispielsweise eine Meldung, anstelle des Fehlerwerts zurückzugeben.', + abstract: 'Gibt eine Zahl zurück, die einem der Fehlerwerte in Microsoft Excel entspricht, oder den Fehlerwert #NV, wenn kein Fehler vorhanden ist. Sie können FEHLER.TYP in einer WENN-Funktion verwenden, um einen Fehlerwert zu ermitteln und eine Zeichenfolge, beispielsweise eine Meldung, anstelle des Fehlerwerts zurückzugeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Erforderlich. Der Fehlerwert, dessen Identifikationsnummer Sie finden möchten. Obwohl error_val der tatsächliche Fehlerwert sein kann, handelt es sich in der Regel um einen Verweis auf eine Zelle, die eine Formel enthält, die Sie testen möchten.' }, + }, + }, + INFO: { + description: 'Gibt Informationen zur aktuellen Betriebssystemumgebung zurück.', + abstract: 'Gibt Informationen zur aktuellen Betriebssystemumgebung zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'Erforderlich. Text, der bestimmt, welche Art von Informationen Sie erhalten möchten' }, + }, + }, + ISBETWEEN: { + description: 'Prüft, ob eine angegebene Zahl einschließlich oder ausschließlich zwischen zwei anderen Zahlen liegt.', + abstract: 'Prüft, ob eine angegebene Zahl einschließlich oder ausschließlich zwischen zwei anderen Zahlen liegt.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=de', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'Der Wert, der darauf geprüft wird, ob er zwischen `lower_value` und `upper_value` liegt.' }, + lowerValue: { name: 'lower_value', detail: 'Die Untergrenze des Wertebereichs, in den `value_to_compare` fallen kann.' }, + upperValue: { name: 'upper_value', detail: 'Die Obergrenze des Wertebereichs, in den `value_to_compare` fallen kann.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Ob der Wertebereich `lower_value` einschließt. Standardmäßig TRUE.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Ob der Wertebereich `upper_value` einschließt. Standardmäßig TRUE.' }, + }, + }, + ISBLANK: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISDATE: { + description: 'Die Funktion ISDATE gibt zurück, ob ein Wert ein Datum ist.', + abstract: 'Die Funktion ISDATE gibt zurück, ob ein Wert ein Datum ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=de', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Der Wert, der als Datum überprüft werden soll.' }, + }, + }, + ISEMAIL: { + description: 'Mit der Funktion ISEMAIL wird geprüft, ob ein Wert eine gültige E-Mail-Adresse ist. Dabei wird geprüft, ob der Wert einem allgemein akzeptierten E-Mail-Adressformat entspricht, nicht jedoch, ob die Adresse tatsächlich existiert.', + abstract: 'Mit der Funktion ISEMAIL wird geprüft, ob ein Wert eine gültige E-Mail-Adresse ist. Dabei wird geprüft, ob der Wert einem allgemein akzeptierten E-Mail-Adressformat entspricht, nicht jedoch, ob die Adresse tatsächlich existiert.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=de', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Der Wert, der als E-Mail-Adresse überprüft werden soll.' }, + }, + }, + ISERR: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISERROR: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISEVEN: { + description: 'Gibt WAHR zurück, wenn die Zahl gerade ist, oder FALSCH, wenn die Zahl ungerade ist.', + abstract: 'Gibt WAHR zurück, wenn die Zahl gerade ist, oder FALSCH, wenn die Zahl ungerade ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der zu prüfende Wert. Ist "Zahl" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + ISFORMULA: { + description: 'Überprüft, ob ein Bezug auf eine Zelle verweist, die eine Formel enthält, und gibt WAHR oder FALSCH zurück.', + abstract: 'Überprüft, ob ein Bezug auf eine Zelle verweist, die eine Formel enthält, und gibt WAHR oder FALSCH zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Erforderlich. Ein Bezug auf die zu prüfende Zelle. Der Bezug kann ein Zellbezug, eine Formel oder ein Name sein, der auf eine Zelle verweist.' }, + }, + }, + ISLOGICAL: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISNA: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISNONTEXT: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISNUMBER: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISODD: { + description: 'Gibt WAHR zurück, wenn die Zahl ungerade ist, oder FALSCH, wenn die Zahl gerade ist.', + abstract: 'Gibt WAHR zurück, wenn die Zahl ungerade ist, oder FALSCH, wenn die Zahl gerade ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der zu prüfende Wert. Ist "Zahl" keine ganze Zahl, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + ISOMITTED: { + description: 'Überprüft, ob der Wert in einem LAMBDA fehlt , und gibt TRUE oder FALSE zurück.', + abstract: 'Überprüft, ob der Wert in einem LAMBDA fehlt , und gibt TRUE oder FALSE zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'Argument', detail: 'Der Wert, den Sie testen möchten, z. B. ein LAMBDA-Parameter.' }, + }, + }, + ISREF: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISTEXT: { + description: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + abstract: 'Mit jeder dieser Funktionen, die zusammen als IST -Funktionen bezeichnet werden, wird der angegebene Wert überprüft und je nach Ergebnis WAHR oder FALSCH zurückgegeben. Beispielsweise gibt die Funktion ISTLEER den Wahrheitswert WAHR zurück, wenn das Argument für den Wert einen Bezug auf eine leere Zelle darstellt. Andernfalls wird FALSCH zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, der geprüft werden soll. Das Argument für den Wert kann eine leere Zelle, ein Fehlerwert, ein Wahrheitswert, Text, eine Zahl, ein Bezugswert oder ein Name sein, der sich auf eine dieser Möglichkeiten bezieht.' }, + }, + }, + ISURL: { + description: 'Prüft, ob ein Wert eine gültige URL ist.', + abstract: 'Prüft, ob ein Wert eine gültige URL ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=de', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Der Wert, der als URL überprüft werden soll.' }, + }, + }, + N: { + description: 'Gibt den in eine Zahl umgewandelten Wert zurück.', + abstract: 'Gibt den in eine Zahl umgewandelten Wert zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der Wert, den Sie in eine Zahl umwandeln möchten. "N" wandelt Werte gemäß der folgenden Tabelle um.' }, + }, + }, + NA: { + description: 'Gibt den Fehlerwert #NV zurück. #N/A ist der Fehlerwert, der bedeutet, dass kein Wert verfügbar ist. Verwenden Sie NA, um leere Zellen zu markieren. Indem Sie #NV in Zellen eingeben, die keine Informationen enthalten, können Sie verhindern, dass leere Zellen unbeabsichtigt in Ihre Berechnungen einbezogen werden. (Wenn sich eine Formel auf eine Zelle bezieht, die den Wert #NV enthält, gibt die Formel den Fehlerwert #NV zurück.)', + abstract: 'Gibt den Fehlerwert #NV zurück. #N/A ist der Fehlerwert, der bedeutet, dass kein Wert verfügbar ist. Verwenden Sie NA, um leere Zellen zu markieren. Indem Sie #NV in Zellen eingeben, die keine Informationen enthalten, können Sie verhindern, dass leere Zellen unbeabsichtigt in Ihre Berechnungen einbezogen werden. (Wenn sich eine Formel auf eine Zelle bezieht, die den Wert #NV enthält, gibt die Formel den Fehlerwert #NV zurück.)', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'Die SHEET-Funktion gibt die Blattnummer des angegebenen Blatts oder einer anderen Referenz zurück.', + abstract: 'Die SHEET-Funktion gibt die Blattnummer des angegebenen Blatts oder einer anderen Referenz zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Optionales Argument. Verwenden Sie diese Option, um den Namen eines Blatts oder eines Verweises anzugeben, für das Sie die Blattnummer abrufen möchten. Andernfalls gibt die Funktion die Nummer des Blatts zurück, das die SHEET-Funktion enthält.' }, + }, + }, + SHEETS: { + description: 'Gibt die Anzahl der Blätter in einem Bezug zurück.', + abstract: 'Gibt die Anzahl der Blätter in einem Bezug zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Gibt eine Zahl zurück, die den Datentyp des angegebenen Werts anzeigt. Die Funktion TYP können Sie immer dann verwenden, wenn das weitere Verhalten einer Funktion vom Typ des in einer bestimmten Zelle enthaltenen Werts abhängt.', + abstract: 'Gibt eine Zahl zurück, die den Datentyp des angegebenen Werts anzeigt. Die Funktion TYP können Sie immer dann verwenden, wenn das weitere Verhalten einer Funktion vom Typ des in einer bestimmten Zelle enthaltenen Werts abhängt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Kann ein beliebiger Microsoft Excel-Wert sein, beispielsweise eine Zahl, ein Text, ein Wahrheitswert usw.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/en-US.ts b/packages/sheets-formula/src/locale/function-list/information/en-US.ts index 1ca631abcb..4d28cfedc4 100644 --- a/packages/sheets-formula/src/locale/function-list/information/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/information/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/en-us/excel/functions/cell-function', }, ], functionParameter: { @@ -35,7 +35,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/en-us/excel/functions/error-type-function', }, ], functionParameter: { @@ -48,12 +48,11 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/en-us/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + typeText: { name: 'Type_text', detail: 'Required. Text that specifies what type of information you want returned.' }, }, }, ISBETWEEN: { @@ -62,15 +61,15 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=en', }, ], 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.' }, + 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: { @@ -79,7 +78,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -87,12 +86,12 @@ const locale = { }, }, ISDATE: { - description: 'Returns whether a value is a date.', - abstract: 'Returns whether a value is a date.', + description: 'The ISDATE function returns whether a value is a date.', + abstract: 'The ISDATE function returns whether a value is a date.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=en', }, ], functionParameter: { @@ -100,12 +99,12 @@ const locale = { }, }, ISEMAIL: { - description: 'Checks if a value is a valid email address', - abstract: 'Checks if a value is a valid email address', + description: 'To check if a value is a valid email address, use the ISEMAIL function. This checks if the value follows a commonly accepted format for email addresses but doesn’t verify its existence.', + abstract: 'To check if a value is a valid email address, use the ISEMAIL function. This checks if the value follows a commonly accepted format for email addresses but doesn’t verify its existence.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=en', }, ], functionParameter: { @@ -118,7 +117,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -131,7 +130,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -139,16 +138,16 @@ const locale = { }, }, ISEVEN: { - description: 'Returns TRUE if the number is even', - abstract: 'Returns TRUE if the number is even', + description: 'Returns TRUE if number is even, or FALSE if number is odd.', + abstract: 'Returns TRUE if number is even, or FALSE if number is odd.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/en-us/excel/functions/iseven-function', }, ], functionParameter: { - value: { name: 'value', detail: 'The value to test. If number is not an integer, it is truncated.' }, + value: { name: 'value', detail: 'Required. The value to test. If number is not an integer, it is truncated.' }, }, }, ISFORMULA: { @@ -157,7 +156,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/en-us/excel/functions/isformula-function', }, ], functionParameter: { @@ -170,7 +169,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -183,7 +182,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -196,7 +195,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -209,7 +208,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -222,7 +221,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/en-us/excel/functions/isodd-function', }, ], functionParameter: { @@ -235,12 +234,11 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/en-us/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + argument: { name: 'argument', detail: 'The value you want to test, such as a LAMBDA parameter.' }, }, }, ISREF: { @@ -249,7 +247,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -262,7 +260,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/en-us/excel/functions/is-functions', }, ], functionParameter: { @@ -275,7 +273,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=en', }, ], functionParameter: { @@ -288,7 +286,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/en-us/excel/functions/n-function', }, ], functionParameter: { @@ -301,7 +299,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/en-us/excel/functions/na-function', }, ], functionParameter: { @@ -313,7 +311,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/en-us/excel/functions/sheet-function', }, ], functionParameter: { @@ -326,7 +324,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/en-us/excel/functions/sheets-function', }, ], functionParameter: { @@ -338,7 +336,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/en-us/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/es-ES.ts b/packages/sheets-formula/src/locale/function-list/information/es-ES.ts index b18c7b8b7a..7b8717da0f 100644 --- a/packages/sheets-formula/src/locale/function-list/information/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/information/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/es-es/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/es-es/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,17 +50,16 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/es-es/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + typeText: { name: 'Tipo de texto', detail: 'Texto que especifica el tipo de información que se devuelve.' }, }, }, ISBETWEEN: { - description: 'Comprueba si un número proporcionado se encuentra entre otros dos números, de forma inclusiva o exclusiva.', - abstract: 'Comprueba si un número proporcionado se encuentra entre otros dos números, de forma inclusiva o exclusiva.', + description: 'Comprueba si un número proporcionado se encuentra entre otros dos números, ya sea de forma inclusiva o exclusiva.', + abstract: 'Comprueba si un número proporcionado se encuentra entre otros dos números, ya sea de forma inclusiva o exclusiva.', links: [ { title: 'Instrucción', @@ -68,11 +67,11 @@ const locale: typeof enUS = { }, ], functionParameter: { - valueToCompare: { name: 'valor_a_comparar', detail: 'El valor a comprobar si está entre `valor_inferior` y `valor_superior`.' }, - lowerValue: { name: 'valor_inferior', detail: 'El límite inferior del rango de valores en el que puede caer `valor_a_comparar`.' }, - upperValue: { name: 'valor_superior', detail: 'El límite superior del rango de valores en el que puede caer `valor_a_comparar`.' }, - lowerValueIsInclusive: { name: 'valor_inferior_es_inclusivo', detail: 'Indica si el rango de valores incluye el `valor_inferior`. Por defecto es VERDADERO.' }, - upperValueIsInclusive: { name: 'valor_superior_es_inclusivo', detail: 'Indica si el rango de valores incluye el `valor_superior`. Por defecto es VERDADERO.' }, + valueToCompare: { name: 'valor_a_comparar', detail: 'Valor que se va a comprobar si se encuentra entre `valor_inferior` y `valor_superior`.' }, + lowerValue: { name: 'valor_inferior', detail: 'Límite inferior del intervalo de valores dentro del cual puede encontrarse el `valor_para_comparar`.' }, + upperValue: { name: 'valor_superior', detail: 'Límite superior del intervalo de valores dentro del cual puede encontrarse el `valor_para_comparar`.' }, + lowerValueIsInclusive: { name: 'valor_inferior_es_inclusivo', detail: 'Comprueba si el intervalo de valores incluye el `valor_inferior`; de manera predeterminada, está establecido en TRUE' }, + upperValueIsInclusive: { name: 'valor_superior_es_inclusivo', detail: 'Comprueba si el intervalo de valores incluye el `valor_superior`; de manera predeterminada, está establecido en TRUE' }, }, }, ISBLANK: { @@ -81,7 +80,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -89,8 +88,8 @@ const locale: typeof enUS = { }, }, ISDATE: { - description: 'Devuelve si un valor es una fecha.', - abstract: 'Devuelve si un valor es una fecha.', + description: 'La función ISDATE devuelve si el valor es una fecha.', + abstract: 'La función ISDATE devuelve si el valor es una fecha.', links: [ { title: 'Instrucción', @@ -98,12 +97,12 @@ const locale: typeof enUS = { }, ], functionParameter: { - value: { name: 'valor', detail: 'El valor que se verificará como fecha.' }, + value: { name: 'valor', detail: 'Valor que se comprueba si es una fecha.' }, }, }, ISEMAIL: { - description: 'Comprueba si un valor es una dirección de correo electrónico válida', - abstract: 'Comprueba si un valor es una dirección de correo electrónico válida', + description: 'Para comprobar si un valor es una dirección de correo válida, usa la función ISEMAIL. Comprueba si el valor sigue un formato aceptado habitualmente para las direcciones de correo, pero no verifica si existe.', + abstract: 'Para comprobar si un valor es una dirección de correo válida, usa la función ISEMAIL. Comprueba si el valor sigue un formato aceptado habitualmente para las direcciones de correo, pero no verifica si existe.', links: [ { title: 'Instrucción', @@ -111,7 +110,7 @@ const locale: typeof enUS = { }, ], functionParameter: { - value: { name: 'valor', detail: 'El valor que se verificará como una dirección de correo electrónico.' }, + value: { name: 'valor', detail: 'ISEMAIL("juangarcia@tunombre.com")' }, }, }, ISERR: { @@ -120,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -133,7 +132,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -141,29 +140,29 @@ const locale: typeof enUS = { }, }, ISEVEN: { - description: 'Devuelve VERDADERO si el número es par', - abstract: 'Devuelve VERDADERO si el número es par', + description: 'Devuelve VERDADERO si el número es par y FALSO si el número es impar.', + abstract: 'Devuelve VERDADERO si el número es par y FALSO si el número es impar.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/es-es/excel/functions/iseven-function', }, ], functionParameter: { - value: { name: 'valor', detail: 'El valor a probar. Si el número no es un entero, se trunca.' }, + value: { name: 'valor', detail: 'Obligatorio. El valor que se desea probar. Si el argumento número no es un entero, se trunca.' }, }, }, ISFORMULA: { - description: 'Devuelve VERDADERO si hay una referencia a una celda que contiene una fórmula', - abstract: 'Devuelve VERDADERO si hay una referencia a una celda que contiene una fórmula', + description: 'Comprueba si existe una referencia a una celda que contiene una fórmula y devuelve TRUE o FALSE.', + abstract: 'Comprueba si existe una referencia a una celda que contiene una fórmula y devuelve TRUE o FALSE.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/es-es/excel/functions/isformula-function', }, ], functionParameter: { - reference: { name: 'referencia', detail: 'Referencia es una referencia a la celda que desea probar.' }, + reference: { name: 'referencia', detail: 'Obligatorio. Referencia es una referencia a la celda que se desea probar. Referencia puede ser una referencia de celda, una fórmula o un nombre que hace referencia a una celda.' }, }, }, ISLOGICAL: { @@ -172,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -185,7 +184,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -198,7 +197,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -211,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/es-es/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,12 +236,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/es-es/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + argument: { name: 'Argumento', detail: 'Valor que se comprueba para determinar si se ha omitido, como un parámetro de LAMBDA.' }, }, }, ISREF: { @@ -251,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -264,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/es-es/excel/functions/is-functions', }, ], functionParameter: { @@ -281,7 +279,7 @@ const locale: typeof enUS = { }, ], functionParameter: { - value: { name: 'valor', detail: 'El valor que se verificará como una URL.' }, + value: { name: 'valor', detail: 'ISURL("www.google.com")' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/es-es/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/es-es/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/es-es/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/es-es/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/es-es/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/information/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/information/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/information/fr-FR.ts index 60a22638e2..18185d520d 100644 --- a/packages/sheets-formula/src/locale/function-list/information/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/information/fr-FR.ts @@ -14,8 +14,337 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + CELL: { + description: 'La fonction CELLULE renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule. Par exemple, si vous voulez vérifier qu’une cellule contient bien une valeur numérique et non du texte avant de l’inclure dans un calcul, vous pouvez utiliser la formule suivante :', + abstract: 'La fonction CELLULE renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule. Par exemple, si vous voulez vérifier qu’une cellule contient bien une valeur numérique et non du texte avant de l’inclure dans un calcul, vous pouvez utiliser la formule suivante :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Valeur de texte qui spécifie le type d’informations de cellule que vous voulez obtenir. La liste suivante affiche les valeurs possibles de l’argument type_info et les résultats correspondants.' }, + reference: { name: 'reference', detail: 'Représente la cellule dont vous voulez obtenir des informations. En cas d’omission, les informations spécifiées dans l’argument info_type sont retournées pour la cellule sélectionnée au moment du calcul. Si l’argument référence est une plage de cellules, la fonction CELL renvoie les informations relatives à la cellule active dans la plage sélectionnée. Important: Bien que la référence technique soit facultative, il est recommandé de l’inclure dans votre formule, sauf si vous comprenez l’effet de son absence sur le résultat de votre formule et que vous souhaitez que cet effet soit en place. L’omission de l’argument de référence ne produit pas de manière fiable des informations sur une cellule spécifique, pour les raisons suivantes : En mode de calcul automatique, lorsqu’une cellule est modifiée par un utilisateur, le calcul peut être déclenché avant ou après la progression de la sélection, en fonction de la plateforme que vous utilisez pour Excel. Par exemple, Excel pour Windows déclenche actuellement le calcul avant la modification de la sélection, mais Excel sur le Web le déclenche par la suite. Lorsque Co-Authoring avec un autre utilisateur qui effectue une modification, cette fonction signale votre cellule active plutôt que celle de l’éditeur. Tout recalcul, pour instance appuyant sur F9, entraîne le retour d’un nouveau résultat par la fonction même si aucune modification de cellule n’a eu lieu.' }, + }, + }, + ERROR_TYPE: { + description: 'Renvoie un nombre correspondant à l’une des valeurs d’erreur de Microsoft Excel ou la valeur #N/A s’il n’y a pas d’erreur. Vous pouvez utiliser la fonction TYPE.ERREUR dans une fonction SI pour tester une valeur d’erreur et renvoyer une chaîne de caractères telle qu’un message à la place de la valeur d’erreur.', + abstract: 'Renvoie un nombre correspondant à l’une des valeurs d’erreur de Microsoft Excel ou la valeur #N/A s’il n’y a pas d’erreur. Vous pouvez utiliser la fonction TYPE.ERREUR dans une fonction SI pour tester une valeur d’erreur et renvoyer une chaîne de caractères telle qu’un message à la place de la valeur d’erreur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Obligatoire. Il s’agit de la valeur d’erreur dont vous voulez trouver le numéro. Bien que l’argument valeur puisse être une valeur d’erreur proprement dite, il est généralement donné sous forme de référence à une cellule contenant une formule que vous souhaitez tester.' }, + }, + }, + INFO: { + description: 'Renvoie des informations sur l’environnement d’exploitation en cours.', + abstract: 'Renvoie des informations sur l’environnement d’exploitation en cours.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'Obligatoire. Représente le texte qui spécifie le type d’informations à renvoyer.' }, + }, + }, + ISBETWEEN: { + description: 'Vérifie si le nombre fourni est compris entre deux autres nombres (inclus ou exclus).', + abstract: 'Vérifie si le nombre fourni est compris entre deux autres nombres (inclus ou exclus).', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=fr', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'Valeur à tester comme se trouvant entre "valeur_inférieure" et "valeur_supérieure".' }, + lowerValue: { name: 'lower_value', detail: 'Limite inférieure de la plage de valeurs dans laquelle peut se trouver "valeur_à_comparer".' }, + upperValue: { name: 'upper_value', detail: 'Limite supérieure de la plage de valeurs dans laquelle peut se trouver "valeur_à_comparer".' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Détermine si la plage de valeurs inclut "valeur_inférieure". TRUE par défaut' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Détermine si la plage de valeurs inclut "valeur_supérieure". TRUE par défaut' }, + }, + }, + ISBLANK: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISDATE: { + description: 'La fonction ISDATE indique si une valeur est une date.', + abstract: 'La fonction ISDATE indique si une valeur est une date.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=fr', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valeur à vérifier en tant que date.' }, + }, + }, + ISEMAIL: { + description: 'Pour vérifier si une valeur est une adresse e-mail valide, utilisez la fonction ISEMAIL. Cette vérification permet de déterminer si la valeur suit un format d\'adresse e-mail couramment accepté, mais ne vérifie pas son existence.', + abstract: 'Pour vérifier si une valeur est une adresse e-mail valide, utilisez la fonction ISEMAIL. Cette vérification permet de déterminer si la valeur suit un format d\'adresse e-mail couramment accepté, mais ne vérifie pas son existence.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=fr', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'ISEMAIL("johndoe@yourname.com")' }, + }, + }, + ISERR: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISERROR: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISEVEN: { + description: 'Renvoie la valeur VRAI si le nombre est pair et FAUX s’il est impair.', + abstract: 'Renvoie la valeur VRAI si le nombre est pair et FAUX s’il est impair.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Représente la valeur à tester. Si nombre n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + ISFORMULA: { + description: 'Vérifie s’il existe une référence à une cellule qui contient une formule et renvoie VRAI ou FAUX.', + abstract: 'Vérifie s’il existe une référence à une cellule qui contient une formule et renvoie VRAI ou FAUX.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obligatoire. Référence est une référence à la cellule que vous souhaitez tester. Référence peut être une référence de cellule, une formule ou un nom qui fait référence à une cellule.' }, + }, + }, + ISLOGICAL: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISNA: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISNONTEXT: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISNUMBER: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISODD: { + description: 'Renvoie la valeur VRAI si nombre est impair et FAUX si nombre est pair.', + abstract: 'Renvoie la valeur VRAI si nombre est impair et FAUX si nombre est pair.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Représente la valeur à tester. Si nombre n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + ISOMITTED: { + description: 'Vérifie si la valeur d’un lambda est manquante et retourne TRUE ou FALSE.', + abstract: 'Vérifie si la valeur d’un lambda est manquante et retourne TRUE ou FALSE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'Argument', detail: 'Valeur que vous souhaitez tester, telle qu’un paramètre LAMBDA.' }, + }, + }, + ISREF: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISTEXT: { + description: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + abstract: 'Chacune de ces fonctions, regroupées sous l’appellation de fonctions EST , vérifie la valeur spécifiée et renvoie VRAI ou FAUX, selon le cas. Par exemple, la fonction ESTVIDE renvoie la valeur logique VRAI si l’argument valeur est une référence à une cellule vide et la valeur logique FAUX dans les autres cas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Valeur à tester. L’argument valeur peut être une valeur vide (cellule vide), d’erreur, une valeur logique, de texte, de nombre ou une valeur de référence ou un nom s’y référant.' }, + }, + }, + ISURL: { + description: 'Vérifie si une valeur est une URL valide.', + abstract: 'Vérifie si une valeur est une URL valide.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=fr', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'ISURL("www.google.com")' }, + }, + }, + N: { + description: 'Renvoie une valeur convertie en nombre.', + abstract: 'Renvoie une valeur convertie en nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Représente la valeur à convertir. N convertit les valeurs en suivant les règles décrites dans le tableau suivant.' }, + }, + }, + NA: { + description: 'Retourne la valeur d’erreur #N/A. #N/A est la valeur d’erreur qui signifie « aucune valeur n’est disponible ». Utilisez NA pour marquer des cellules vides. En entrant #N/A dans les cellules où vous manquez des informations, vous pouvez éviter le problème d’inclure involontairement des cellules vides dans vos calculs. (Lorsqu’une formule fait référence à une cellule contenant #N/A, la formule renvoie la valeur d’erreur #N/A.)', + abstract: 'Retourne la valeur d’erreur #N/A. #N/A est la valeur d’erreur qui signifie « aucune valeur n’est disponible ». Utilisez NA pour marquer des cellules vides. En entrant #N/A dans les cellules où vous manquez des informations, vous pouvez éviter le problème d’inclure involontairement des cellules vides dans vos calculs. (Lorsqu’une formule fait référence à une cellule contenant #N/A, la formule renvoie la valeur d’erreur #N/A.)', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'La fonction SHEET retourne le numéro de feuille de la feuille spécifiée ou une autre référence.', + abstract: 'La fonction SHEET retourne le numéro de feuille de la feuille spécifiée ou une autre référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument facultatif. Utilisez cette option pour spécifier le nom d’une feuille ou d’une référence pour laquelle vous souhaitez obtenir le numéro de feuille. Sinon, la fonction retourne le numéro de la feuille contenant la fonction SHEET.' }, + }, + }, + SHEETS: { + description: 'Renvoie le nombre de feuilles dans une référence.', + abstract: 'Renvoie le nombre de feuilles dans une référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Renvoie un nombre indiquant le type de données d’une valeur.', + abstract: 'Renvoie un nombre indiquant le type de données d’une valeur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Peut être n’importe quelle valeur, par exemple un nombre, du texte ou une valeur logique.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/id-ID.ts b/packages/sheets-formula/src/locale/function-list/information/id-ID.ts new file mode 100644 index 0000000000..9ab9a7769b --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/id-ID.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'Fungsi CELL mengembalikan informasi tentang pemformatan, lokasi, atau konten sel. Misalnya, jika ingin melakukan verifikasi bahwa sebuah sel berisi nilai numerik dan bukan teks sebelum Anda melakukan kalkulasi, gunakan rumus berikut:', + abstract: 'Fungsi CELL mengembalikan informasi tentang pemformatan, lokasi, atau konten sel. Misalnya, jika ingin melakukan verifikasi bahwa sebuah sel berisi nilai numerik dan bukan teks sebelum Anda melakukan kalkulasi, gunakan rumus berikut:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Nilai teks yang menentukan tipe informasi sel apa yang ingin Anda hasilkan. Daftar berikut menampilkan kemungkinan nilai argumen Info_type dan hasil-hasil terkait.' }, + reference: { name: 'reference', detail: 'Sel yang Anda inginkan informasinya. Jika dihilangkan, informasi yang ditentukan dalam argumen info_type dikembalikan untuk sel yang dipilih pada saat penghitungan. Jika argumen referensi adalah rentang sel, fungsi CELL mengembalikan informasi untuk sel aktif dalam rentang yang dipilih. Penting: Meskipun referensi teknis bersifat opsional, termasuk referensi dalam rumus Anda didorong, kecuali Anda memahami efek ketidakhadirannya pada hasil rumus Anda dan menginginkan efek tersebut di tempatnya. Menghilangkan argumen referensi tidak menghasilkan informasi tentang sel tertentu dengan andal, karena alasan berikut: Dalam mode penghitungan otomatis, ketika sel diubah oleh pengguna, penghitungan mungkin dipicu sebelum atau setelah pemilihan berlangsung, tergantung pada platform yang Anda gunakan untuk Excel. Misalnya, Excel untuk Windows saat ini memicu penghitungan sebelum perubahan pilihan, tetapi Excel untuk web memicunya sesudahnya. Ketika Co-Authoring dengan pengguna lain yang melakukan pengeditan, fungsi ini akan melaporkan sel aktif Anda daripada editor. Perhitungan ulang apa pun, misalnya menekan F9, akan menyebabkan fungsi mengembalikan hasil baru meskipun tidak ada pengeditan sel yang terjadi.' }, + }, + }, + ERROR_TYPE: { + description: 'Mengembalikan angka yang terkait ke salah satu nilai kesalahan dalam Microsoft Excel atau akan mengembalikan kesalahan #N/A jika tidak ada kesalahan. Anda dapat menggunakan ERROR.TYPE dalam fungsi IF untuk menguji nilai kesalahan dan mengembalikan string teks, seperti pesan, bukan nilai kesalahan.', + abstract: 'Mengembalikan angka yang terkait ke salah satu nilai kesalahan dalam Microsoft Excel atau akan mengembalikan kesalahan #N/A jika tidak ada kesalahan. Anda dapat menggunakan ERROR.TYPE dalam fungsi IF untuk menguji nilai kesalahan dan mengembalikan string teks, seperti pesan, bukan nilai kesalahan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Diperlukan. Nilai kesalahan yang angka pengidentifikasinya ingin Anda temukan. Meskipun error_val dapat menjadi nilai kesalahan aktual, biasanya nilai kesalahan itu akan menjadi referensi ke sel berisi rumus yang ingin Anda uji.' }, + }, + }, + INFO: { + description: 'Mengembalikan informasi tentang lingkungan operasi saat ini.', + abstract: 'Mengembalikan informasi tentang lingkungan operasi saat ini.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'Diperlukan. Teks yang menentukan tipe informasi apa yang Anda inginkan dikembalikan.' }, + }, + }, + ISBETWEEN: { + description: 'Memeriksa apakah angka yang diberikan berada di antara dua angka lain, secara inklusif atau eksklusif.', + abstract: 'Memeriksa apakah angka yang diberikan berada di antara dua angka lain, secara inklusif atau eksklusif.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=id', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'Nilai yang diuji apakah berada di antara `lower_value` dan `upper_value`.' }, + lowerValue: { name: 'lower_value', detail: 'Batas bawah rentang nilai yang dapat memuat `value_to_compare`.' }, + upperValue: { name: 'upper_value', detail: 'Batas atas rentang nilai yang dapat memuat `value_to_compare`.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Menentukan apakah rentang nilai mencakup `lower_value`. Secara default bernilai TRUE.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Menentukan apakah rentang nilai mencakup `upper_value`. Secara default bernilai TRUE.' }, + }, + }, + ISBLANK: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISDATE: { + description: 'Fungsi ISDATE mengembalikan apakah suatu nilai adalah tanggal.', + abstract: 'Fungsi ISDATE mengembalikan apakah suatu nilai adalah tanggal.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=id', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Nilai yang akan diverifikasi sebagai tanggal.' }, + }, + }, + ISEMAIL: { + description: 'Fungsi ISEMAIL memeriksa apakah suatu nilai merupakan alamat email yang valid. Fungsi ini memeriksa apakah nilai mengikuti format alamat email yang umum diterima, tetapi tidak memverifikasi keberadaannya.', + abstract: 'Fungsi ISEMAIL memeriksa apakah suatu nilai merupakan alamat email yang valid. Fungsi ini memeriksa apakah nilai mengikuti format alamat email yang umum diterima, tetapi tidak memverifikasi keberadaannya.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=id', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Nilai yang akan diverifikasi sebagai alamat email.' }, + }, + }, + ISERR: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISERROR: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISEVEN: { + description: 'Mengembalikan TRUE jika bilangannya genap, atau FALSE jika bilangannya ganjil.', + abstract: 'Mengembalikan TRUE jika bilangannya genap, atau FALSE jika bilangannya ganjil.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai untuk menguji. Jika bilangannya bukan bilangan bulat, maka bilangan tersebut dipotong.' }, + }, + }, + ISFORMULA: { + description: 'Memeriksa apakah ada referensi ke sel yang berisi rumus, dan mengembalikan TRUE atau FALSE.', + abstract: 'Memeriksa apakah ada referensi ke sel yang berisi rumus, dan mengembalikan TRUE atau FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Diperlukan. Reference adalah referensi ke sel yang ingin Anda uji. Referensi dapat berupa referensi sel, rumus, atau nama yang merujuk pada suatu sel.' }, + }, + }, + ISLOGICAL: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISNA: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISNONTEXT: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISNUMBER: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISODD: { + description: 'Mengembalikan TRUE jika bilangannya ganjil, atau FALSE jika bilangannya genap.', + abstract: 'Mengembalikan TRUE jika bilangannya ganjil, atau FALSE jika bilangannya genap.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai untuk menguji. Jika bilangan bukan bilangan bulat, maka bilangan tersebut dipotong.' }, + }, + }, + ISOMITTED: { + description: 'Memeriksa apakah nilai dalam LAMBDA hilang dan mengembalikan TRUE atau FALSE.', + abstract: 'Memeriksa apakah nilai dalam LAMBDA hilang dan mengembalikan TRUE atau FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'Argumen', detail: 'Nilai yang ingin Anda uji, seperti parameter LAMBDA.' }, + }, + }, + ISREF: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISTEXT: { + description: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + abstract: 'Masing-masing fungsi ini, secara kolektif disebut fungsi IS , memeriksa nilai tertentu dan mengembalikan TRUE atau FALSE bergantung pada hasilnya. Misalnya, fungsi ISBLANK mengembalikan nilai logika TRUE jika argumen nilainya merupakan referensi ke sel kosong; jika tidak maka fungsi ini mengembalikan FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji. Argumen nilai dapat berupa kesalahan, nilai logika, teks, angka, atau nilai referensi kosong (sel kosong), atau nama yang merujuk ke salah satu dari ini.' }, + }, + }, + ISURL: { + description: 'Memeriksa apakah suatu nilai adalah URL yang valid.', + abstract: 'Memeriksa apakah suatu nilai adalah URL yang valid.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=id', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Nilai yang akan diverifikasi sebagai URL.' }, + }, + }, + N: { + description: 'Mengembalikan nilai yang dikonversikan menjadi angka.', + abstract: 'Mengembalikan nilai yang dikonversikan menjadi angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda konversikan. N mengonversikan nilai yang terdapat dalam tabel berikut ini.' }, + }, + }, + NA: { + description: 'Mengembalikan nilai kesalahan #N/A. #N/A adalah nilai kesalahan yang berarti "tidak ada nilai yang tersedia." Gunakan NA untuk menandai sel kosong. Dengan memasukkan #N/A di sel tempat Anda kehilangan informasi, Anda bisa menghindari masalah tanpa sengaja menyertakan sel kosong dalam perhitungan Anda. (Saat rumus merujuk ke sel yang berisi #N/A, rumus mengembalikan nilai kesalahan #N/A.)', + abstract: 'Mengembalikan nilai kesalahan #N/A. #N/A adalah nilai kesalahan yang berarti "tidak ada nilai yang tersedia." Gunakan NA untuk menandai sel kosong. Dengan memasukkan #N/A di sel tempat Anda kehilangan informasi, Anda bisa menghindari masalah tanpa sengaja menyertakan sel kosong dalam perhitungan Anda. (Saat rumus merujuk ke sel yang berisi #N/A, rumus mengembalikan nilai kesalahan #N/A.)', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'Fungsi SHEET mengembalikan nomor lembar lembar atau referensi lain yang ditentukan.', + abstract: 'Fungsi SHEET mengembalikan nomor lembar lembar atau referensi lain yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argumen opsional. Gunakan ini untuk menentukan nama lembar atau referensi yang ingin Anda dapatkan nomor lembarnya. Jika tidak, fungsi akan mengembalikan jumlah lembar yang berisi fungsi SHEET.' }, + }, + }, + SHEETS: { + description: 'Mengembalikan jumlah lembar dalam sebuah referensi.', + abstract: 'Mengembalikan jumlah lembar dalam sebuah referensi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Mengembalikan tipe nilai. Gunakan TYPE saat perilaku fungsi lain bergantung pada tipe nilai di sel tertentu.', + abstract: 'Mengembalikan tipe nilai. Gunakan TYPE saat perilaku fungsi lain bergantung pada tipe nilai di sel tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Bisa berupa nilai Microsoft Excel apa pun, seperti angka, teks, nilai logika, dan lain-lain.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/it-IT.ts b/packages/sheets-formula/src/locale/function-list/information/it-IT.ts new file mode 100644 index 0000000000..e9d3198180 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/it-IT.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'La funzione CELLA restituisce informazioni sulla formattazione, la posizione o il contenuto di una cella. Se ad esempio si desidera verificare che in una cella sia contenuto un valore numerico anziché testo prima di eseguire un calcolo basato su tale cella, è possibile utilizzare la formula seguente:', + abstract: 'La funzione CELLA restituisce informazioni sulla formattazione, la posizione o il contenuto di una cella. Se ad esempio si desidera verificare che in una cella sia contenuto un valore numerico anziché testo prima di eseguire un calcolo basato su tale cella, è possibile utilizzare la formula seguente:', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Valore di testo che indica il tipo di dati della cella che devono essere restituiti. Nell\'elenco seguente vengono illustrati i possibili valori dell\'argomento Info e i risultati corrispondenti.' }, + reference: { name: 'reference', detail: 'Cella di cui si desidera ottenere informazioni. Se omesso, le informazioni specificate nell\'argomento info_type vengono restituite per la cella selezionata al momento del calcolo. Se l\'argomento rif è un intervallo di celle, la funzione CELLA restituirà le informazioni per la cella attiva nell\'intervallo selezionato. Importante: Anche se tecnicamente il riferimento è facoltativo, è consigliabile includerlo nella formula, a meno che non si capisca l\'effetto della sua assenza sul risultato della formula e non si voglia applicare tale effetto. Se si omette l\'argomento rif, le informazioni su una cella specifica non vengono produrrà in modo affidabile per i motivi seguenti: In modalità di calcolo automatico, quando una cella viene modificata da un utente, il calcolo può essere attivato prima o dopo l\'avanzamento della selezione, a seconda della piattaforma in uso per Excel. Ad esempio, Excel per Windows attiva attualmente il calcolo prima delle modifiche alla selezione, ma Excel per il web lo attiva in un secondo momento. Quando Co-Authoring con un altro utente che apporta una modifica, questa funzione segnala la cella attiva anziché quella dell\'editor. Qualsiasi ricalcolo, ad esempio premendo F9, farà sì che la funzione restituisca un nuovo risultato anche se non si è verificata alcuna modifica della cella.' }, + }, + }, + ERROR_TYPE: { + description: 'Restituisce un numero corrispondente a uno dei valori di errore di Microsoft Excel oppure restituisce l\'errore #N/D se non vi è alcun errore. È possibile utilizzare la funzione ERRORE.TIPO all\'interno di una funzione SE, in modo da determinare il tipo di errore verificatosi e restituire una stringa di testo, come un messaggio, invece del valore di errore.', + abstract: 'Restituisce un numero corrispondente a uno dei valori di errore di Microsoft Excel oppure restituisce l\'errore #N/D se non vi è alcun errore. È possibile utilizzare la funzione ERRORE.TIPO all\'interno di una funzione SE, in modo da determinare il tipo di errore verificatosi e restituire una stringa di testo, come un messaggio, invece del valore di errore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Obbligatorio. Valore di errore di cui si desidera trovare il numero di identificazione. Sebbene errore possa essere il valore di errore stesso, si tratta in genere di un riferimento a una cella contenente una formula che si desidera verificare.' }, + }, + }, + INFO: { + description: 'Restituisce informazioni sull\'ambiente operativo corrente.', + abstract: 'Restituisce informazioni sull\'ambiente operativo corrente.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'Obbligatorio. Testo che specifica il tipo di informazioni che si desidera venga restituito.' }, + }, + }, + ISBETWEEN: { + description: 'Verifica se un numero specificato è compreso tra altri due numeri, includendo o escludendo gli estremi.', + abstract: 'Verifica se un numero specificato è compreso tra altri due numeri, includendo o escludendo gli estremi.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=it', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'Valore da verificare per stabilire se è compreso tra `lower_value` e `upper_value`.' }, + lowerValue: { name: 'lower_value', detail: 'Limite inferiore dell\'intervallo di valori in cui può rientrare `value_to_compare`.' }, + upperValue: { name: 'upper_value', detail: 'Limite superiore dell\'intervallo di valori in cui può rientrare `value_to_compare`.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Indica se l\'intervallo di valori include `lower_value`. Per impostazione predefinita è VERO.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Indica se l\'intervallo di valori include `upper_value`. Per impostazione predefinita è VERO.' }, + }, + }, + ISBLANK: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISDATE: { + description: 'La funzione ISDATE indica se un valore è una data.', + abstract: 'La funzione ISDATE indica se un valore è una data.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=it', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valore da verificare come data.' }, + }, + }, + ISEMAIL: { + description: 'La funzione ISEMAIL verifica se un valore è un indirizzo e-mail valido. Controlla che il valore rispetti un formato comunemente accettato per gli indirizzi e-mail, ma non verifica che l\'indirizzo esista.', + abstract: 'La funzione ISEMAIL verifica se un valore è un indirizzo e-mail valido. Controlla che il valore rispetti un formato comunemente accettato per gli indirizzi e-mail, ma non verifica che l\'indirizzo esista.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=it', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valore da verificare come indirizzo e-mail.' }, + }, + }, + ISERR: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISERROR: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISEVEN: { + description: 'Restituisce VERO se num è pari oppure FALSO se num è dispari.', + abstract: 'Restituisce VERO se num è pari oppure FALSO se num è dispari.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. Se num non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + ISFORMULA: { + description: 'Controlla se esiste un riferimento a una cella che contiene una formula e restituisce VERO o FALSO.', + abstract: 'Controlla se esiste un riferimento a una cella che contiene una formula e restituisce VERO o FALSO.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obbligatorio. L\'argomento è un riferimento alla cella che si vuole verificare. Il valore può essere un riferimento di cella, una formula o un nome che fa riferimento a una cella.' }, + }, + }, + ISLOGICAL: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISNA: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISNONTEXT: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISNUMBER: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISODD: { + description: 'Restituisce VERO se num è dispari oppure FALSO se num è pari.', + abstract: 'Restituisce VERO se num è dispari oppure FALSO se num è pari.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. Se num non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + ISOMITTED: { + description: 'Controlla se il valore in un\'espressione LAMBDA non è presente e restituisce VERO o FALSO.', + abstract: 'Controlla se il valore in un\'espressione LAMBDA non è presente e restituisce VERO o FALSO.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'discussione', detail: 'Valore da testare, ad esempio un parametro LAMBDA.' }, + }, + }, + ISREF: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISTEXT: { + description: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + abstract: 'Ognuna di queste funzioni, definite collettivamente funzioni VAL , esamina il valore specificato e restituisce VERO o FALSO a seconda dell\'esito. La funzione VAL.VUOTO ad esempio restituirà il valore logico VERO se l\'argomento val è un riferimento a una cella vuota e il valore logico FALSO in caso contrario.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore da esaminare. L\'argomento val può essere una cella vuota, un valore logico, numerico, di errore, di testo o di riferimento oppure un nome che si riferisce a uno di questi valori.' }, + }, + }, + ISURL: { + description: 'Verifica se un valore è un URL valido.', + abstract: 'Verifica se un valore è un URL valido.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=it', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valore da verificare come URL.' }, + }, + }, + N: { + description: 'Restituisce un valore convertito in numero.', + abstract: 'Restituisce un valore convertito in numero.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore che si desidera convertire. NUM converte i valori elencati nella tabella seguente.' }, + }, + }, + NA: { + description: 'Restituisce il valore di errore #N/D. #N/D è il valore di errore che indica che non è disponibile alcun valore. Usare ND per contrassegnare le celle vuote. Immettendo #N/D nelle celle in cui mancano delle informazioni, si può evitare di includere inavvertitamente delle celle vuote nei calcoli. Quando una formula si riferisce a una cella contenente #N/D, restituisce il valore di errore #N/D.', + abstract: 'Restituisce il valore di errore #N/D. #N/D è il valore di errore che indica che non è disponibile alcun valore. Usare ND per contrassegnare le celle vuote. Immettendo #N/D nelle celle in cui mancano delle informazioni, si può evitare di includere inavvertitamente delle celle vuote nei calcoli. Quando una formula si riferisce a una cella contenente #N/D, restituisce il valore di errore #N/D.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'La funzione FOGLIO restituisce il numero del foglio specificato o di un altro riferimento.', + abstract: 'La funzione FOGLIO restituisce il numero del foglio specificato o di un altro riferimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argomento facoltativo. Consente di specificare il nome di un foglio o di un riferimento per il quale si desidera ottenere il numero del foglio. In caso contrario, la funzione restituirà il numero del foglio contenente la funzione FOGLIO.' }, + }, + }, + SHEETS: { + description: 'Restituisce il numero di fogli in un riferimento.', + abstract: 'Restituisce il numero di fogli in un riferimento.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Restituisce un numero indicante il tipo di dati di un valore. Utilizzare la funzione TIPO quando il comportamento di un\'altra funzione dipende dal tipo di valore contenuto in una determinata cella.', + abstract: 'Restituisce un numero indicante il tipo di dati di un valore. Utilizzare la funzione TIPO quando il comportamento di un\'altra funzione dipende dal tipo di valore contenuto in una determinata cella.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Qualsiasi valore di Microsoft Excel, ad esempio un numero, del testo, un valore logico e così via.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/information/ja-JP.ts index 990e68c9b5..8394b388b1 100644 --- a/packages/sheets-formula/src/locale/function-list/information/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/information/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cell-%E9%96%A2%E6%95%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/error-type-%E9%96%A2%E6%95%B0-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/ja-jp/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,51 +50,50 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/info-%E9%96%A2%E6%95%B0-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/ja-jp/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + typeText: { name: '検査の種類', detail: '返す情報の種類を指定する文字列です。' }, }, }, ISBETWEEN: { - description: '指定した値が他の 2 つの値の範囲内にあるかどうかを確認します', - abstract: '指定した値が他の 2 つの値の範囲内にあるかどうかを確認します', + description: '指定した値が他の 2 つの値の範囲内にあるかどうかを確認します(両端の値を含むかどうかを選択可能)。', + abstract: '指定した値が他の 2 つの値の範囲内にあるかどうかを確認します(両端の値を含むかどうかを選択可能)。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/10538337?hl=ja&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=ja', }, ], functionParameter: { valueToCompare: { name: '比較する値', detail: '\'最小値\' と \'最大値\' の範囲内にあるかどうかを確認する値です。' }, - lowerValue: { name: '最小値', detail: '\'比較する値\' が含まれる可能性のある値の範囲の下限を指定します。' }, - upperValue: { name: '最大値', detail: '\'比較する値\' が含まれる可能性のある値の範囲の上限を指定します。' }, + lowerValue: { name: '最小値', detail: '’比較する値\' が含まれる可能性のある値の範囲の下限を指定します。' }, + upperValue: { name: '最大値', detail: '’比較する値\' が含まれる可能性のある値の範囲の上限を指定します。' }, lowerValueIsInclusive: { name: '最小値を含む', detail: '値の範囲に \'最小値\' を含めるかどうかを指定します(デフォルトは TRUE)。' }, upperValueIsInclusive: { name: '最大値を含む', detail: '値の範囲に \'最大値\' を含めるかどうかを指定します(デフォルトは TRUE)。' }, }, }, ISBLANK: { - description: '対象が空白セルを参照するときに TRUE を返します。', - abstract: '対象が空白セルを参照するときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISDATE: { - description: 'は、値が日付かどうかを返します', - abstract: 'は、値が日付かどうかを返します', + description: 'ISDATE 関数は、値が日付かどうかを返します。', + abstract: 'ISDATE 関数は、値が日付かどうかを返します。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/9061381?hl=ja&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=ja', }, ], functionParameter: { @@ -102,42 +101,42 @@ const locale: typeof enUS = { }, }, ISEMAIL: { - description: '値が有効なメールアドレスであるかどうかを検証します', - abstract: '値が有効なメールアドレスであるかどうかを検証します', + description: '値が有効なメールアドレスかどうかを確認するには、ISEMAIL 関数を使用します。この関数は、値が一般的に受け入れられているメールアドレスの形式に準拠しているかどうかを確認しますが、実在するメールアドレスかどうかは検証しません。', + abstract: '値が有効なメールアドレスかどうかを確認するには、ISEMAIL 関数を使用します。この関数は、値が一般的に受け入れられているメールアドレスの形式に準拠しているかどうかを確認しますが、実在するメールアドレスかどうかは検証しません。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3256503?hl=ja&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=ja', }, ], functionParameter: { - value: { name: '値', detail: 'メールアドレスであるかどうかを検証する値です。' }, + value: { name: '値', detail: 'ISEMAIL("johndoe@yourname.com")' }, }, }, ISERR: { - description: '対象が #N/A 以外のエラー値のときに TRUE を返します。', - abstract: '対象が #N/A 以外のエラー値のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISERROR: { - description: '対象が任意のエラー値のときに TRUE を返します。', - abstract: '対象が任意のエラー値のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISEVEN: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/iseven-%E9%96%A2%E6%95%B0-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/ja-jp/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/isformula-%E9%96%A2%E6%95%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/isformula-function', }, ], functionParameter: { @@ -167,55 +166,55 @@ const locale: typeof enUS = { }, }, ISLOGICAL: { - description: '対象が論理値のときに TRUE を返します。', - abstract: '対象が論理値のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISNA: { - description: '対象がエラー値 #N/A のときに TRUE を返します。', - abstract: '対象がエラー値 #N/A のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISNONTEXT: { - description: '対象が文字列以外のときに TRUE を返します。', - abstract: '対象が文字列以外のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISNUMBER: { - description: '対象が数値のときに TRUE を返します。', - abstract: '対象が数値のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISODD: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/isodd-%E9%96%A2%E6%95%B0-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,38 +236,37 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/isomitted-%E9%96%A2%E6%95%B0-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + argument: { name: '引数', detail: 'LAMBDA のパラメーターなど、引数が省略されているかどうかを検査する値です。' }, }, }, ISREF: { - description: '対象がセル参照のときに TRUE を返します。', - abstract: '対象がセル参照のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISTEXT: { - description: '対象が文字列のときに TRUE を返します。', - abstract: '対象が文字列のときに TRUE を返します。', + description: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', + abstract: 'これらの各関数は、まとめて IS 関数と呼ばれ、指定された値をチェックして、その結果に従って TRUE または FALSE を返します。 たとえば、 ISBLANK 関数は、引数値が空白セルへの参照の場合に論理値 TRUE を返し、それ以外の場合に FALSE を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/is-%E9%96%A2%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ja-jp/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '値', detail: 'テストする値を指定します。テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, + value: { name: '値', detail: '必須。 テストする値を指定します。 テストの対象引数には、空白セル、エラー、論理値、文字列、数値、参照値、または対象となるデータを参照する名前を指定することができます。' }, }, }, ISURL: { @@ -277,11 +275,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3256501?hl=ja&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=ja', }, ], functionParameter: { - value: { name: '値', detail: 'URL であるかを検証する値を指定します。' }, + value: { name: '値', detail: 'ISURL("www.google.com")' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/n-%E9%96%A2%E6%95%B0-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/na-%E9%96%A2%E6%95%B0-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sheet-%E9%96%A2%E6%95%B0-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sheets-%E9%96%A2%E6%95%B0-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/type-%E9%96%A2%E6%95%B0-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/ja-jp/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/information/ko-KR.ts index 50fc445944..46c3f63dbb 100644 --- a/packages/sheets-formula/src/locale/function-list/information/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/information/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cell-함수-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/error-type-함수-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/ko-kr/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,94 +50,93 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/info-함수-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/ko-kr/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + typeText: { name: '유형 텍스트', detail: '반환할 정보 유형을 지정하는 텍스트입니다.' }, }, }, ISBETWEEN: { - description: '제공된 숫자가 포함적으로 또는 제외적으로 다른 두 숫자 사이에 있는지 확인합니다.', - abstract: '제공된 숫자가 포함적으로 또는 제외적으로 다른 두 숫자 사이에 있는지 확인합니다.', + description: '제공된 숫자가 다른 두 숫자 사이에 있는지 확인합니다. 다른 두 숫자는 각각 범위에 포함하거나 포함하지 않을 수 있습니다.', + abstract: '제공된 숫자가 다른 두 숫자 사이에 있는지 확인합니다. 다른 두 숫자는 각각 범위에 포함하거나 포함하지 않을 수 있습니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/10538337?hl=ko&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=ko', }, ], functionParameter: { - valueToCompare: { name: 'value_to_compare', detail: '`lower_value`와 `upper_value` 사이에 있는지 테스트할 값입니다.' }, - lowerValue: { name: 'lower_value', detail: '`value_to_compare`가 속할 수 있는 값 범위의 하한입니다.' }, - upperValue: { name: 'upper_value', detail: '`value_to_compare`가 속할 수 있는 값 범위의 상한입니다.' }, - lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: '값 범위에 `lower_value`가 포함되는지 여부입니다. 기본적으로 TRUE입니다.' }, - upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: '값 범위에 `upper_value`가 포함되는지 여부입니다. 기본적으로 TRUE입니다.' }, + valueToCompare: { name: 'value_to_compare', detail: '`낮은_값`과 `높은_값` 사이에서 테스트되는 값입니다.' }, + lowerValue: { name: 'lower_value', detail: '값 범위의 하한으로, `비교할_값`이 포함될 수 있습니다.' }, + upperValue: { name: 'upper_value', detail: '값 범위의 상한으로, `비교할_값`이 포함될 수 있습니다.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: '값 범위에 `낮은_값`이 포함되는지를 지정합니다. 기본값은 TRUE입니다.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: '값 범위에 `높은_값`이 포함되는지를 지정합니다. 기본값은 TRUE입니다.' }, }, }, ISBLANK: { - description: '값이 비어 있으면 TRUE를 반환합니다', - abstract: '값이 비어 있으면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISDATE: { - description: '값이 날짜인지 여부를 반환합니다.', - abstract: '값이 날짜인지 여부를 반환합니다.', + description: 'ISDATE 함수는 값이 날짜인지 여부를 반환합니다.', + abstract: 'ISDATE 함수는 값이 날짜인지 여부를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/9061381?hl=ko&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=ko', }, ], functionParameter: { - value: { name: 'value', detail: '날짜로 확인할 값입니다.' }, + value: { name: 'value', detail: '날짜인지 확인할 값입니다.' }, }, }, ISEMAIL: { - description: '값이 유효한 이메일 주소인지 확인합니다', - abstract: '값이 유효한 이메일 주소인지 확인합니다', + description: '값이 유효한 이메일 주소인지 확인하려면 ISEMAIL 함수를 사용합니다. 이 함수는 값이 일반적으로 허용되는 이메일 주소 형식을 따르는지 확인하지만 존재 여부는 확인하지 않습니다.', + abstract: '값이 유효한 이메일 주소인지 확인하려면 ISEMAIL 함수를 사용합니다. 이 함수는 값이 일반적으로 허용되는 이메일 주소 형식을 따르는지 확인하지만 존재 여부는 확인하지 않습니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3256503?hl=ko&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=ko', }, ], functionParameter: { - value: { name: 'value', detail: '이메일 주소로 확인할 값입니다.' }, + value: { name: 'value', detail: '유효한 이메일 주소인지 확인할 값입니다.' }, }, }, ISERR: { - description: '값이 #N/A를 제외한 오류 값이면 TRUE를 반환합니다', - abstract: '값이 #N/A를 제외한 오류 값이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISERROR: { - description: '값이 오류 값이면 TRUE를 반환합니다', - abstract: '값이 오류 값이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISEVEN: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/iseven-함수-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/ko-kr/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/isformula-함수-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/isformula-function', }, ], functionParameter: { @@ -167,55 +166,55 @@ const locale: typeof enUS = { }, }, ISLOGICAL: { - description: '값이 논리값이면 TRUE를 반환합니다', - abstract: '값이 논리값이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISNA: { - description: '값이 #N/A 오류 값이면 TRUE를 반환합니다', - abstract: '값이 #N/A 오류 값이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISNONTEXT: { - description: '값이 텍스트가 아니면 TRUE를 반환합니다', - abstract: '값이 텍스트가 아니면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISNUMBER: { - description: '값이 숫자이면 TRUE를 반환합니다', - abstract: '값이 숫자이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISODD: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/isodd-함수-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,51 +236,50 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/isomitted-함수-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + argument: { name: '인수', detail: 'LAMBDA 매개 변수처럼 인수가 생략되었는지 검사할 값입니다.' }, }, }, ISREF: { - description: '값이 참조이면 TRUE를 반환합니다', - abstract: '값이 참조이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISTEXT: { - description: '값이 텍스트이면 TRUE를 반환합니다', - abstract: '값이 텍스트이면 TRUE를 반환합니다', + description: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', + abstract: '이 문서에서 소개하는 여러 함수는 통틀어 IS 함수라고 불리며 각 함수에서는 값의 유형을 검사하고 그 결과에 따라 TRUE 또는 FALSE를 반환합니다. 예를 들어 ISBLANK 함수는 값 인수가 빈 셀에 대한 참조이면 논리값 TRUE를 반환하고, 그렇지 않으면 FALSE를 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/is-함수-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ko-kr/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'value', detail: '테스트하려는 값입니다. value 인수는 빈 값(빈 셀), 오류, 논리값, 텍스트, 숫자 또는 참조 값이거나 이들 중 하나를 참조하는 이름일 수 있습니다.' }, + value: { name: 'value', detail: '필수. 테스트할 값입니다. value 인수는 빈 셀, 오류, 논리값, 텍스트, 숫자, 참조 값 또는 이러한 항목을 가리키는 이름일 수 있습니다.' }, }, }, ISURL: { - description: '값이 유효한 URL인지 확인합니다.', - abstract: '값이 유효한 URL인지 확인합니다.', + description: '유효한 URL 값인지 확인합니다.', + abstract: '유효한 URL 값인지 확인합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3256501?hl=ko&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=ko', }, ], functionParameter: { - value: { name: 'value', detail: 'URL로 확인할 값입니다.' }, + value: { name: 'value', detail: '유효한 URL인지 확인할 값입니다.' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/n-함수-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/na-함수-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sheet-함수-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sheets-함수-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/type-함수-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/ko-kr/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/information/pl-PL.ts new file mode 100644 index 0000000000..fc656cab57 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/pl-PL.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'Funkcja KOMÓRKA zwraca informacje o formatowaniu, położeniu lub zawartości komórki. Na przykład aby przed wykonaniem obliczeń na komórce sprawdzić, czy zawiera ona wartość liczbową, a nie tekst, można użyć następującej formuły:', + abstract: 'Funkcja KOMÓRKA zwraca informacje o formatowaniu, położeniu lub zawartości komórki. Na przykład aby przed wykonaniem obliczeń na komórce sprawdzić, czy zawiera ona wartość liczbową, a nie tekst, można użyć następującej formuły:', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Jest to wartość tekstowa, określająca żądany typ informacji o komórce. Na poniższej liście przedstawiono możliwe wartości argumentu typ_info i odpowiadające im wyniki.' }, + reference: { name: 'reference', detail: 'Jest to komórka, o której chcesz uzyskać informacje. W przypadku pominięcia tego argumentu zostaną zwrócone informacje określone w info_type argumencie dla komórki wybranej w momencie obliczania. Jeśli argument odwołania jest zakresem komórek, funkcja KOMÓRKA zwraca informacje o aktywnej komórce w zaznaczonym zakresie. Ważne: Chociaż z technicznego punktu widzenia odwoływanie się do niego jest opcjonalne, zalecane jest uwzględnianie go w formule, chyba że rozumiesz wpływ jego braku na wynik formuły i chcesz, aby ten efekt został zastosowany. Pominięcie argumentu odwołania nie daje rzetelnych informacji o konkretnej komórce z następujących powodów: W automatycznym trybie obliczania, jeśli komórka jest modyfikowana przez użytkownika, obliczenie może zostać wyzwolone przed lub po zaznaczeniu, w zależności od platformy używanej do obsługi programu Excel. Na przykład obecnie program Excel dla systemu Windows wyzwala obliczanie przed zmianą wyboru, ale program Excel dla sieci Web wyzwala je później. W Co-Authoring z innym użytkownikiem, który dokonuje edycji, ta funkcja zgłosi Twoją aktywną komórkę, a nie komórki edytującej. Każde ponowne obliczenie, na przykład naciśnięcie klawisza F9, spowoduje, że funkcja zwróci nowy wynik, nawet jeśli nie nastąpiła żadna edycja komórki.' }, + }, + }, + ERROR_TYPE: { + description: 'Zwraca liczbę odpowiadającą jednej z wartości błędów w programie Microsoft Excel lub zwraca wartość błędu #N/D!, jeśli nie ma błędów. Funkcja NR.BŁĘDU może być stosowana z funkcją JEŻELI do testowania w poszukiwaniu wartości błędu; zwraca ona ciąg tekstowy, taki jak komunikat, zamiast wartości błędu.', + abstract: 'Zwraca liczbę odpowiadającą jednej z wartości błędów w programie Microsoft Excel lub zwraca wartość błędu #N/D!, jeśli nie ma błędów. Funkcja NR.BŁĘDU może być stosowana z funkcją JEŻELI do testowania w poszukiwaniu wartości błędu; zwraca ona ciąg tekstowy, taki jak komunikat, zamiast wartości błędu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Wymagane. Wartość błędu, której numer identyfikacyjny ma zostać odnaleziony. Chociaż argument wartość_błędu może być rzeczywistą wartością błędu, zwykle jest to odwołanie do komórki zawierającej formułę, która ma zostać przetestowana.' }, + }, + }, + INFO: { + description: 'Zwraca informacje o bieżącym środowisku operacyjnym.', + abstract: 'Zwraca informacje o bieżącym środowisku operacyjnym.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Typ_tekst', detail: 'Wymagane. Tekst określający typ zwracanych informacji.' }, + }, + }, + ISBETWEEN: { + description: 'Sprawdza, czy podana liczba znajduje się między dwiema innymi liczbami, z uwzględnieniem lub bez uwzględniania wartości granicznych.', + abstract: 'Sprawdza, czy podana liczba znajduje się między dwiema innymi liczbami, z uwzględnieniem lub bez uwzględniania wartości granicznych.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=pl', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'Wartość, która ma zostać sprawdzona pod kątem znajdowania się między `lower_value` i `upper_value`.' }, + lowerValue: { name: 'lower_value', detail: 'Dolna granica zakresu wartości, w którym może znajdować się `value_to_compare`.' }, + upperValue: { name: 'upper_value', detail: 'Górna granica zakresu wartości, w którym może znajdować się `value_to_compare`.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Czy zakres wartości obejmuje `lower_value`. Domyślnie TRUE.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Czy zakres wartości obejmuje `upper_value`. Domyślnie TRUE.' }, + }, + }, + ISBLANK: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISDATE: { + description: 'Funkcja ISDATE zwraca informację, czy wartość jest datą.', + abstract: 'Funkcja ISDATE zwraca informację, czy wartość jest datą.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=pl', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wartość, która ma zostać zweryfikowana jako data.' }, + }, + }, + ISEMAIL: { + description: 'Funkcja ISEMAIL sprawdza, czy wartość jest prawidłowym adresem e-mail. Weryfikuje zgodność z powszechnie przyjętym formatem adresu e-mail, ale nie jego istnienie.', + abstract: 'Funkcja ISEMAIL sprawdza, czy wartość jest prawidłowym adresem e-mail. Weryfikuje zgodność z powszechnie przyjętym formatem adresu e-mail, ale nie jego istnienie.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=pl', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wartość, która ma zostać zweryfikowana jako adres e-mail.' }, + }, + }, + ISERR: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISERROR: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISEVEN: { + description: 'Zwraca wartość PRAWDA, jeśli liczba jest parzysta, lub FAŁSZ, jeśli liczba jest nieparzysta.', + abstract: 'Zwraca wartość PRAWDA, jeśli liczba jest parzysta, lub FAŁSZ, jeśli liczba jest nieparzysta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument wymagany. Testowana wartość. Jeśli argument liczba nie jest liczbą całkowitą, jego wartość zostanie obcięta.' }, + }, + }, + ISFORMULA: { + description: 'Sprawdza, czy istnieje odwołanie do komórki zawierającej formułę, i zwraca wartość PRAWDA lub FAŁSZ.', + abstract: 'Sprawdza, czy istnieje odwołanie do komórki zawierającej formułę, i zwraca wartość PRAWDA lub FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Wymagane. Argument odwołanie jest odwołaniem do komórki, która ma zostać sprawdzona. Argument odwołanie może być odwołaniem do komórki, formułą lub nazwą odwołującą się do komórki.' }, + }, + }, + ISLOGICAL: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISNA: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISNONTEXT: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISNUMBER: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISODD: { + description: 'Zwraca wartość PRAWDA, jeśli liczba jest nieparzysta, lub FAŁSZ, jeśli liczba jest parzysta.', + abstract: 'Zwraca wartość PRAWDA, jeśli liczba jest nieparzysta, lub FAŁSZ, jeśli liczba jest parzysta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument wymagany. Testowana wartość. Jeśli argument liczba nie jest liczbą całkowitą, jego wartość zostanie obcięta.' }, + }, + }, + ISOMITTED: { + description: 'Sprawdza, czy brakuje wartości w funkcji LAMBDA , i zwraca wartość PRAWDA lub FAŁSZ.', + abstract: 'Sprawdza, czy brakuje wartości w funkcji LAMBDA , i zwraca wartość PRAWDA lub FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'Argument', detail: 'Wartość, którą chcesz przetestować, na przykład parametr LAMBDA.' }, + }, + }, + ISREF: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISTEXT: { + description: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + abstract: 'Każda z tych funkcji, określanych zbiorczo mianem funkcji CZY , sprawdza typ wartości i zwraca wartość PRAWDA lub FAŁSZ w zależności od wyniku. Na przykład funkcja CZY.PUSTA zwraca wartość logiczną PRAWDA, jeśli wartość jest odwołaniem do pustej komórki; w innym przypadku zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Jest to sprawdzana wartość. Wartość może być pusta (pusta komórka), może być wskazaniem błędu, wartością logiczną, tekstem, liczbą, odwołaniem lub nazwą odwołującą się do którejkolwiek z tych wartości.' }, + }, + }, + ISURL: { + description: 'Sprawdza, czy wartość jest prawidłowym adresem URL.', + abstract: 'Sprawdza, czy wartość jest prawidłowym adresem URL.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=pl', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wartość, która ma zostać zweryfikowana jako adres URL.' }, + }, + }, + N: { + description: 'Zwraca wartość skonwertowaną na liczbę.', + abstract: 'Zwraca wartość skonwertowaną na liczbę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Wartość, którą należy przekonwertować. Funkcja N konwertuje wartości podane w poniższej tabeli.' }, + }, + }, + NA: { + description: 'Zwraca wartość błędu #N/A. #N/D jest wartością błędu, która oznacza "nie jest dostępna żadna wartość". Użyj funkcji BRAK, aby oznaczyć puste komórki. Wprowadzając #N/A w komórkach, w których brakuje informacji, można uniknąć problemu przypadkowego uwzględniania pustych komórek w obliczeniach. (Jeśli formuła odwołuje się do komórki zawierającej #N/A, formuła zwraca wartość błędu #N/A).', + abstract: 'Zwraca wartość błędu #N/A. #N/D jest wartością błędu, która oznacza "nie jest dostępna żadna wartość". Użyj funkcji BRAK, aby oznaczyć puste komórki. Wprowadzając #N/A w komórkach, w których brakuje informacji, można uniknąć problemu przypadkowego uwzględniania pustych komórek w obliczeniach. (Jeśli formuła odwołuje się do komórki zawierającej #N/A, formuła zwraca wartość błędu #N/A).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'Funkcja ARKUSZ zwraca numer arkusza określonego arkusza lub innego odwołania.', + abstract: 'Funkcja ARKUSZ zwraca numer arkusza określonego arkusza lub innego odwołania.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument opcjonalny. Służy do określania nazwy arkusza lub odwołania, dla którego chcesz uzyskać numer arkusza. W przeciwnym razie funkcja zwróci numer arkusza zawierającego funkcję ARKUSZ.' }, + }, + }, + SHEETS: { + description: 'Zwraca liczbę arkuszy w odwołaniu.', + abstract: 'Zwraca liczbę arkuszy w odwołaniu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Zwraca typ wartości. Z funkcji TYP należy korzystać wtedy, gdy zachowanie innej funkcji zależy od typu wartości znajdującej się w określonej komórce.', + abstract: 'Zwraca typ wartości. Z funkcji TYP należy korzystać wtedy, gdy zachowanie innej funkcji zależy od typu wartości znajdującej się w określonej komórce.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Dowolna wartość używana przez program Microsoft Excel, taka jak liczba, wartość logiczna itp.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/information/pt-BR.ts new file mode 100644 index 0000000000..a18571f801 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/information/pt-BR.ts @@ -0,0 +1,350 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + CELL: { + description: 'A função CÉL retorna informações sobre a formatação, o local ou o conteúdo de uma célula. Por exemplo, se você deseja verificar se uma célula contém um valor numérico em vez de texto antes de realizar um cálculo nela, use a seguinte fórmula:', + abstract: 'A função CÉL retorna informações sobre a formatação, o local ou o conteúdo de uma célula. Por exemplo, se você deseja verificar se uma célula contém um valor numérico em vez de texto antes de realizar um cálculo nela, use a seguinte fórmula:', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/cell-function', + }, + ], + functionParameter: { + infoType: { name: 'info_type', detail: 'Um valor de texto que especifica que tipo de informações de célula você deseja retornar. A lista a seguir mostra os valores possíveis do argumento tipo_info e os resultados correspondentes.' }, + reference: { name: 'reference', detail: 'A célula sobre a qual você deseja informações. Se omitido, as informações especificadas no argumento info_type serão retornadas para a célula selecionada no momento do cálculo. Se o argumento de referência for um intervalo de células, a função CÉL retornará as informações para a célula ativa no intervalo selecionado. Importante: Embora tecnicamente a referência seja opcional, é recomendável incluí-la em sua fórmula, a menos que você entenda o efeito que sua ausência tem sobre o resultado da fórmula e queira que esse efeito seja aplicado. Omitir o argumento de referência não produz informações confiáveis sobre uma célula específica, pelos seguintes motivos: No modo de cálculo automático, quando uma célula é modificada por um usuário, o cálculo pode ser disparado antes ou depois do progresso da seleção, dependendo da plataforma que você estiver usando para o Excel. Por exemplo, o Excel para Windows atualmente dispara o cálculo antes das alterações de seleção, mas Excel para a Web o dispara posteriormente. Quando Co-Authoring com outro usuário que faz uma edição, esta função relatará sua célula ativa em vez da do editor. Qualquer recálculo, por exemplo, pressionando F9, fará com que a função retorne um novo resultado, mesmo que nenhuma edição de célula tenha ocorrido.' }, + }, + }, + ERROR_TYPE: { + description: 'Retorna um número que corresponde a um dos valores de erro do Microsoft Excel ou retorna o erro #N/D se não houver erro. Você pode usar TIPO.ERRO em uma função SE para testar um valor de erro e retornar uma cadeia de texto, como uma mensagem, em vez de um valor de erro.', + abstract: 'Retorna um número que corresponde a um dos valores de erro do Microsoft Excel ou retorna o erro #N/D se não houver erro. Você pode usar TIPO.ERRO em uma função SE para testar um valor de erro e retornar uma cadeia de texto, como uma mensagem, em vez de um valor de erro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/error-type-function', + }, + ], + functionParameter: { + errorVal: { name: 'error_val', detail: 'Necessário. O valor de erro cujo número de identificação você deseja localizar. Apesar de val_erro poder ser o valor de erro real, ele será normalmente uma referência a uma célula que contenha uma fórmula que se deseje testar.' }, + }, + }, + INFO: { + description: 'Retorna informações sobre o ambiente operacional atual.', + abstract: 'Retorna informações sobre o ambiente operacional atual.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/info-function', + }, + ], + functionParameter: { + typeText: { name: 'Type_text', detail: 'Necessário. O texto que especifica o tipo de informação a ser retornado.' }, + }, + }, + ISBETWEEN: { + description: 'Verifica se um número fornecido está entre outros dois números, de forma inclusiva ou exclusiva.', + abstract: 'Verifica se um número fornecido está entre outros dois números, de forma inclusiva ou exclusiva.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/10538337?hl=pt-BR', + }, + ], + functionParameter: { + valueToCompare: { name: 'value_to_compare', detail: 'O valor a testar para verificar se está entre `lower_value` e `upper_value`.' }, + lowerValue: { name: 'lower_value', detail: 'O limite inferior do intervalo de valores no qual `value_to_compare` pode estar.' }, + upperValue: { name: 'upper_value', detail: 'O limite superior do intervalo de valores no qual `value_to_compare` pode estar.' }, + lowerValueIsInclusive: { name: 'lower_value_is_inclusive', detail: 'Indica se o intervalo de valores inclui `lower_value`. Por padrão, é VERDADEIRO.' }, + upperValueIsInclusive: { name: 'upper_value_is_inclusive', detail: 'Indica se o intervalo de valores inclui `upper_value`. Por padrão, é VERDADEIRO.' }, + }, + }, + ISBLANK: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISDATE: { + description: 'A função ISDATE informa se um valor é uma data.', + abstract: 'A função ISDATE informa se um valor é uma data.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9061381?hl=pt-BR', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O valor a ser verificado como data.' }, + }, + }, + ISEMAIL: { + description: 'A função ISEMAIL verifica se um valor é um endereço de e-mail válido. Ela verifica se o valor segue um formato de e-mail geralmente aceito, mas não confirma se o endereço existe.', + abstract: 'A função ISEMAIL verifica se um valor é um endereço de e-mail válido. Ela verifica se o valor segue um formato de e-mail geralmente aceito, mas não confirma se o endereço existe.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256503?hl=pt-BR', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O valor a ser verificado como endereço de e-mail.' }, + }, + }, + ISERR: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISERROR: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISEVEN: { + description: 'Retorna VERDADEIRO se o número for par, ou FALSO caso o número seja ímpar.', + abstract: 'Retorna VERDADEIRO se o número for par, ou FALSO caso o número seja ímpar.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/iseven-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor a ser testado. Se núm não for um inteiro, será truncado.' }, + }, + }, + ISFORMULA: { + description: 'Verifica se há uma referência a uma célula que contenha uma fórmula e retorna VERDADEIRO ou FALSO.', + abstract: 'Verifica se há uma referência a uma célula que contenha uma fórmula e retorna VERDADEIRO ou FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/isformula-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Necessário. Referência é uma referência à célula que você deseja testar. Referência pode ser uma referência de célula, uma fórmula ou um nome que faça referência a uma célula.' }, + }, + }, + ISLOGICAL: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISNA: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISNONTEXT: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISNUMBER: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISODD: { + description: 'Retorna VERDADEIRO se núm for ímpar, ou FALSO se núm for par.', + abstract: 'Retorna VERDADEIRO se núm for ímpar, ou FALSO se núm for par.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/isodd-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor a ser testado. Se núm não for um inteiro, será truncado.' }, + }, + }, + ISOMITTED: { + description: 'Verifica se o valor em um LAMBDA está ausente e retorna TRUE ou FALSE.', + abstract: 'Verifica se o valor em um LAMBDA está ausente e retorna TRUE ou FALSE.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/isomitted-function', + }, + ], + functionParameter: { + argument: { name: 'Argumento', detail: 'O valor que você deseja testar, como um parâmetro LAMBDA.' }, + }, + }, + ISREF: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISTEXT: { + description: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + abstract: 'Cada uma dessas funções, chamada coletivamente de funções É , verifica o valor especificado e retorna VERDADEIRO ou FALSO, dependendo do resultado. Por exemplo, a função ÉCÉL.VAZIA retornará o valor lógico VERDADEIRO se o argumento de valor for uma referência a uma célula vazia; caso contrário, ele retornará FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/is-functions', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O valor que você deseja testar. O argumento de valor pode ser um espaço em branco (célula vazia), um erro, um valor lógico, um texto, um número ou um valor de referência ou ainda um nome que faz referência a qualquer um desses elementos.' }, + }, + }, + ISURL: { + description: 'Verifica se um valor é uma URL válida.', + abstract: 'Verifica se um valor é uma URL válida.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3256501?hl=pt-BR', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O valor a ser verificado como URL.' }, + }, + }, + N: { + description: 'Retorna um valor convertido em um número.', + abstract: 'Retorna um valor convertido em um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/n-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Necessário. O valor que você deseja converter. N converte os valores listados na tabela abaixo.' }, + }, + }, + NA: { + description: 'Retorna o valor de erro #N/D. #N/D é o valor de erro que significa que "não existe nenhum valor disponível". Utilize NA para marcar células vazias. Ao inserir #N/D nas células onde estão faltando informações, você pode evitar o problema de incluir, não intencionalmente, células vazias nos seus cálculos. Quando uma fórmula se refere a uma célula que contém #N/D, a fórmula retornará o valor de erro #N/D.', + abstract: 'Retorna o valor de erro #N/D. #N/D é o valor de erro que significa que "não existe nenhum valor disponível". Utilize NA para marcar células vazias. Ao inserir #N/D nas células onde estão faltando informações, você pode evitar o problema de incluir, não intencionalmente, células vazias nos seus cálculos. Quando uma fórmula se refere a uma célula que contém #N/D, a fórmula retornará o valor de erro #N/D.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/na-function', + }, + ], + functionParameter: { + }, + }, + SHEET: { + description: 'A função SHEET retorna o número da planilha especificada ou outra referência.', + abstract: 'A função SHEET retorna o número da planilha especificada ou outra referência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sheet-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argumento opcional. Use isso para especificar o nome de uma planilha ou uma referência para a qual você deseja obter o número da planilha. Caso contrário, a função retornará o número da planilha que contém a função SHEET.' }, + }, + }, + SHEETS: { + description: 'Retorna o número de PLANS em uma referência.', + abstract: 'Retorna o número de PLANS em uma referência.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sheets-function', + }, + ], + functionParameter: { + }, + }, + TYPE: { + description: 'Retorna o tipo de valor. Use TIPO quando o comportamento de outra função depender do tipo de valor de uma determinada célula.', + abstract: 'Retorna o tipo de valor. Use TIPO quando o comportamento de outra função depender do tipo de valor de uma determinada célula.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/type-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Necessário. Pode ser qualquer valor do Microsoft Excel, como um número, texto, valor lógico e assim por diante.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/information/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/information/ru-RU.ts index b5a8519675..0d985012da 100644 --- a/packages/sheets-formula/src/locale/function-list/information/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/information/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%8F%D1%87%D0%B5%D0%B9%D0%BA%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8F%D1%87%D0%B5%D0%B9%D0%BA%D0%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D0%B8%D0%BF-%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D0%B8-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/ru-ru/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,51 +50,50 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D0%BD%D1%84%D0%BE%D1%80%D0%BC-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/ru-ru/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'first' }, - number2: { name: 'число2', detail: 'second' }, + typeText: { name: 'Type_text', detail: 'Обязательно. Текст, определяющий тип возвращаемой информации.' }, }, }, ISBETWEEN: { - description: 'Проверяет, относится ли указанное значение к интервалу между двумя числами (включительно или не включительно)', - abstract: 'Проверяет, относится ли указанное значение к интервалу между двумя числами (включительно или не включительно)', + description: 'Проверяет, относится ли указанное значение к интервалу между двумя числами (включительно или не включительно).', + abstract: 'Проверяет, относится ли указанное значение к интервалу между двумя числами (включительно или не включительно).', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/10538337?hl=ru&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=ru', }, ], functionParameter: { - valueToCompare: { name: 'значение для сравнения', detail: 'Значение, которое нужно проверить на принадлежность к интервалу от "наименьшее значение" до "наибольшее значение".' }, - lowerValue: { name: 'наименьшее значение', detail: 'Нижняя граница диапазона значений, к которому может относиться значение "значение для сравнения".' }, - upperValue: { name: 'наибольшее значение', detail: 'Верхняя граница диапазона значений, к которому может относиться значение "значение для сравнения".' }, - lowerValueIsInclusive: { name: 'наименьшее значение вклюительно', detail: 'Указывает, входит ли в диапазон значение "наименьшее значение". Значение по умолчанию: TRUE.' }, - upperValueIsInclusive: { name: 'наибольшее значение вклюительно', detail: 'Указывает, входит ли в диапазон значение "наибольшее значение". Значение по умолчанию: TRUE.' }, + valueToCompare: { name: 'значение для сравнения', detail: 'Значение, которое нужно проверить на принадлежность к интервалу от lower_value до upper_value.' }, + lowerValue: { name: 'наименьшее значение', detail: 'Нижняя граница диапазона значений, к которому может относиться значение value_to_compare.' }, + upperValue: { name: 'наибольшее значение', detail: 'Верхняя граница диапазона значений, к которому может относиться значение value_to_compare.' }, + lowerValueIsInclusive: { name: 'наименьшее значение вклюительно', detail: 'Указывает, входит ли в диапазон значение lower_value. Значение по умолчанию: TRUE.' }, + upperValueIsInclusive: { name: 'наибольшее значение вклюительно', detail: 'Указывает, входит ли в диапазон значение upper_value. Значение по умолчанию: TRUE.' }, }, }, ISBLANK: { - description: 'Возвращает TRUE, если значение пустое', - abstract: 'Возвращает TRUE, если значение пустое.', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISDATE: { - description: 'Определяет, является ли указанное значение датой', - abstract: 'Определяет, является ли указанное значение датой', + description: 'Функция ISDATE определяет, является ли указанное значение датой.', + abstract: 'Функция ISDATE определяет, является ли указанное значение датой.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/9061381?hl=ru&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=ru', }, ], functionParameter: { @@ -102,55 +101,55 @@ const locale: typeof enUS = { }, }, ISEMAIL: { - description: 'Проверяет, является ли значение допустимым адресом электронной почты', - abstract: 'Проверяет, является ли значение допустимым адресом электронной почты', + description: 'Функция ISEMAIL проверяет, является ли значение допустимым адресом электронной почты. Она подтверждает только соответствие значения общепринятому формату адресов электронной почты, но не существование адреса.', + abstract: 'Функция ISEMAIL проверяет, является ли значение допустимым адресом электронной почты. Она подтверждает только соответствие значения общепринятому формату адресов электронной почты, но не существование адреса.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3256503?hl=ru&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=ru', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, для которого необходимо проверить, является ли оно адресом электронной почты.' }, + value: { name: 'значение', detail: 'ISEMAIL("ivanpetrov@vashe-imya.ru")' }, }, }, ISERR: { - description: 'Возвращает значение TRUE, если значение представляет собой любое значение ошибки, кроме #N/A', - abstract: 'Возвращает значение TRUE, если значение представляет собой любое значение ошибки, кроме #N/A', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISERROR: { - description: 'Возвращает TRUE, если значение является любым значением ошибки.', - abstract: 'Возвращает TRUE, если значение является любым значением ошибки.', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISEVEN: { - description: 'Возвращает значение TRUE, если число четное.', - abstract: 'Возвращает значение TRUE, если число четное.', + description: 'Возвращает значение ИСТИНА, если число четное, и значение ЛОЖЬ, если число нечетное.', + abstract: 'Возвращает значение ИСТИНА, если число четное, и значение ЛОЖЬ, если число нечетное.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D1%87%D1%91%D1%82%D0%BD-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/ru-ru/excel/functions/iseven-function', }, ], functionParameter: { - value: { name: 'значение', detail: 'Проверяемое значение. Если число не является целым, оно усекается.' }, + value: { name: 'значение', detail: 'Обязательный аргумент. Проверяемое значение. Если число не является целым, оно усекается.' }, }, }, ISFORMULA: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5%D1%84%D0%BE%D1%80%D0%BC%D1%83%D0%BB%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D1%84%D0%BE%D1%80%D0%BC%D1%83%D0%BB%D0%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/isformula-function', }, ], functionParameter: { @@ -167,55 +166,55 @@ const locale: typeof enUS = { }, }, ISLOGICAL: { - description: 'Возвращает TRUE, если значение является логическим значением', - abstract: 'Возвращает TRUE, если значение является логическим значением', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISNA: { - description: 'Возвращает значение TRUE, если значение равно значению ошибки #N/A', - abstract: 'Возвращает значение TRUE, если значение равно значению ошибки #N/A', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISNONTEXT: { - description: 'Возвращает TRUE, если значение не является текстом', - abstract: 'Возвращает TRUE, если значение не является текстом', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISNUMBER: { - description: 'Возвращает TRUE, если значение является числом', - abstract: 'Возвращает TRUE, если значение является числом', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISODD: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D0%BD%D0%B5%D1%87%D1%91%D1%82-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,51 +236,50 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-isomitted-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'first' }, - number2: { name: 'число2', detail: 'second' }, + argument: { name: 'Аргумент', detail: 'Значение, которое требуется проверить, например параметр LAMBDA.' }, }, }, ISREF: { - description: 'Возвращает TRUE, если значение является ссылкой', - abstract: 'Возвращает TRUE, если значение является ссылкой', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISTEXT: { - description: 'Возвращает TRUE, если значение является текстом', - abstract: 'Возвращает TRUE, если значение является текстом', + description: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', + abstract: 'Каждая из функций Е проверяет указанное значение и возвращает в зависимости от результата значение ИСТИНА или ЛОЖЬ. Например, функция ЕПУСТО возвращает логическое значение ИСТИНА, если проверяемое значение является ссылкой на пустую ячейку; в противном случае возвращается логическое значение ЛОЖЬ.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-%D0%B5-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/ru-ru/excel/functions/is-functions', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, которое вы хотите проверить. Аргументом «Значение» может быть пустая ячейка, ошибка, логическое значение, текст, число, ссылочное значение или имя, ссылающееся на любой из них.' }, + value: { name: 'значение', detail: 'Обязательно. Проверяемое значение. Значением этого аргумента может быть пустая ячейка, значение ошибки, логическое значение, текст, число, ссылка на любой из перечисленных объектов или имя такого объекта.' }, }, }, ISURL: { - description: 'Проверяет, является ли значение допустимым URL', + description: 'Проверяет, является ли значение допустимым URL.', abstract: 'Проверяет, является ли значение допустимым URL.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3256501?hl=ru&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=ru', }, ], functionParameter: { - value: { name: 'значение', detail: 'Значение, для которого необходимо проверить, является ли оно URL.' }, + value: { name: 'значение', detail: 'ISURL("www.google.com")' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B4-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BB%D0%B8%D1%81%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%B8%D1%81%D1%82-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BB%D0%B8%D1%81%D1%82%D1%8B-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%B8%D1%81%D1%82%D1%8B-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%82%D0%B8%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D0%B8%D0%BF-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/ru-ru/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/information/sk-SK.ts index 0af129512b..5653ae0513 100644 --- a/packages/sheets-formula/src/locale/function-list/information/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/information/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/sk-sk/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,12 +50,11 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/sk-sk/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + typeText: { name: 'Typ textu', detail: 'Text určujúci typ informácie, ktorá sa má vrátiť.' }, }, }, ISBETWEEN: { @@ -64,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=sk', }, ], functionParameter: { @@ -81,7 +80,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -94,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=sk', }, ], functionParameter: { @@ -107,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=sk', }, ], functionParameter: { @@ -120,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -133,7 +132,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -141,16 +140,16 @@ const locale: typeof enUS = { }, }, ISEVEN: { - description: 'Vracia TRUE, ak je číslo párne', - abstract: 'Vracia TRUE, ak je číslo párne', + description: 'Vráti hodnotu TRUE, ak je číslo párne. Vráti hodnotu FALSE, ak je číslo nepárne.', + abstract: 'Vráti hodnotu TRUE, ak je číslo párne. Vráti hodnotu FALSE, ak je číslo nepárne.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/sk-sk/excel/functions/iseven-function', }, ], functionParameter: { - value: { name: 'hodnota', detail: 'Hodnota, ktorú chcete otestovať. Ak číslo nie je celé, skráti sa.' }, + value: { name: 'hodnota', detail: 'Povinné. Hodnota, ktorá sa má testovať. Ak číslo nie je celým číslom, skráti sa.' }, }, }, ISFORMULA: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/isformula-function', }, ], functionParameter: { @@ -172,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -185,7 +184,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -198,7 +197,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -211,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,12 +236,11 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + argument: { name: 'Argument', detail: 'Hodnota, pri ktorej sa testuje vynechanie, napríklad parameter funkcie LAMBDA.' }, }, }, ISREF: { @@ -251,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -264,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/sk-sk/excel/functions/is-functions', }, ], functionParameter: { @@ -277,7 +275,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=sk', }, ], functionParameter: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/na-function', }, ], functionParameter: {}, @@ -314,7 +312,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sheet-function', }, ], functionParameter: { @@ -327,7 +325,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sheets-function', }, ], functionParameter: {}, @@ -338,7 +336,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/sk-sk/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/information/vi-VN.ts index 699b2fc5d2..836bbf69c1 100644 --- a/packages/sheets-formula/src/locale/function-list/information/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/information/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/error-type-function', }, ], functionParameter: { @@ -45,34 +45,33 @@ const locale: typeof enUS = { }, }, INFO: { - description: 'Returns information about the current operating environment', - abstract: 'Returns information about the current operating environment', + description: 'Trả về thông tin về môi trường điều hành hiện thời.', + abstract: 'Trả về thông tin về môi trường điều hành hiện thời.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/vi-vn/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + typeText: { name: 'Type_text', detail: 'Yêu cầu. Văn bản chỉ rõ kiểu thông tin bạn muốn được trả về.' }, }, }, 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', + description: 'Kiểm tra xem một số đã cho có nằm giữa hai số khác (lớn hơn hoặc bằng giới hạn dưới và nhỏ hơn hoặc bằng giới hạn trên; hoặc lớn hơn giới hạn dưới và nhỏ hơn giới hạn trên) hay không.', + abstract: 'Kiểm tra xem một số đã cho có nằm giữa hai số khác (lớn hơn hoặc bằng giới hạn dưới và nhỏ hơn hoặc bằng giới hạn trên; hoặc lớn hơn giới hạn dưới và nhỏ hơn giới hạn trên) hay không.', links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/10538337?hl=vi&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=vi', }, ], 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.' }, + 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: { @@ -81,7 +80,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -89,12 +88,12 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Hàm ISDATE xác định xem một giá trị có phải là ngày không.', + abstract: 'Hàm ISDATE 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', + url: 'https://support.google.com/docs/answer/9061381?hl=vi', }, ], functionParameter: { @@ -102,16 +101,16 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Để kiểm tra xem một giá trị có phải là địa chỉ email hợp lệ hay không, hãy sử dụng hàm ISEMAIL. Hàm này kiểm tra xem giá trị có tuân theo định dạng thường được chấp nhận cho địa chỉ email hay không nhưng không xác minh sự tồn tại của địa chỉ đó.', + abstract: 'Để kiểm tra xem một giá trị có phải là địa chỉ email hợp lệ hay không, hãy sử dụng hàm ISEMAIL. Hàm này kiểm tra xem giá trị có tuân theo định dạng thường được chấp nhận cho địa chỉ email hay không nhưng không xác minh sự tồn tại của địa chỉ đó.', links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3256503?hl=vi&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=vi', }, ], functionParameter: { - value: { name: 'Giá trị', detail: 'Giá trị được xác minh là một địa chỉ email.' }, + value: { name: 'Giá trị', detail: 'Hàm ISEMAIL("johndoe@yourname.com")' }, }, }, ISERR: { @@ -120,7 +119,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -133,7 +132,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/isformula-function', }, ], functionParameter: { @@ -172,7 +171,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -185,7 +184,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -198,7 +197,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -211,7 +210,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/isodd-function', }, ], functionParameter: { @@ -232,17 +231,16 @@ const locale: typeof enUS = { }, }, 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', + description: 'Kiểm tra xem giá trị trong LAMBDA bị thiếu hay không và trả về TRUE hoặc FALSE.', + abstract: 'Kiểm tra xem giá trị trong LAMBDA bị thiếu hay không và trả về TRUE hoặc FALSE.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/vi-vn/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + argument: { name: 'Tranh luận', detail: 'Giá trị bạn muốn kiểm tra, chẳng hạn như tham số LAMBDA.' }, }, }, ISREF: { @@ -251,7 +249,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -264,7 +262,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/is-functions', }, ], functionParameter: { @@ -277,11 +275,11 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3256501?hl=vi&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=vi', }, ], functionParameter: { - value: { name: 'Giá trị', detail: 'Giá trị được xác minh là một URL.' }, + value: { name: 'Giá trị', detail: 'ISURL("www.google.com")' }, }, }, N: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/information/zh-CN.ts index 2d1fc9fb5a..6ef88392d0 100644 --- a/packages/sheets-formula/src/locale/function-list/information/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/information/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cell-%E5%87%BD%E6%95%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/error-type-%E5%87%BD%E6%95%B0-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/zh-cn/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,51 +50,50 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/info-%E5%87%BD%E6%95%B0-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/zh-cn/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + typeText: { name: '类型文本', detail: '指定要返回的信息类型的文本。' }, }, }, ISBETWEEN: { - description: '检查所提供的数值是否介于其他两个数字之间', - abstract: '检查所提供的数值是否介于其他两个数字之间', + description: '检查所提供的数值是否介于其他两个数字之间(含端值,还是不含端值)。', + abstract: '检查所提供的数值是否介于其他两个数字之间(含端值,还是不含端值)。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/10538337?hl=zh-Hans&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=zh-Hans', }, ], functionParameter: { - valueToCompare: { name: '比较值', detail: '要测试的值,看是否介于“最小值”和“最大值”之间。' }, - lowerValue: { name: '最小值', detail: '范围的下限值,“比较值”的值可能落入这个范围内。' }, - upperValue: { name: '最大值', detail: '范围的上限值,“比较值”的值可能落入这个范围内。' }, - lowerValueIsInclusive: { name: '包括最小值', detail: '用于指定值的范围是否包含“最小值”。默认情况下为“TRUE”。' }, - upperValueIsInclusive: { name: '包括最大值', detail: '用于指定值的范围是否包含“最大值”。默认情况下为“TRUE”。' }, + valueToCompare: { name: '比较值', detail: '要测试的值,看是否介于“lower_value”和“upper_value”之间。' }, + lowerValue: { name: '最小值', detail: '范围的下限值,“value_to_compare”的值可能落入这个范围内。' }, + upperValue: { name: '最大值', detail: '范围的上限值,“value_to_compare”的值可能落入这个范围内。' }, + lowerValueIsInclusive: { name: '包括最小值', detail: '用于指定值的范围是否包含“lower_value”。默认情况下为“TRUE”' }, + upperValueIsInclusive: { name: '包括最大值', detail: '用于指定值的范围是否包含“upper_value”。默认情况下为“TRUE”' }, }, }, ISBLANK: { - description: '如果值为空,则返回 TRUE', - abstract: '如果值为空,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISDATE: { - description: '返回某个值是否为日期', - abstract: '返回某个值是否为日期', + description: 'ISDATE 函数会返回某个值是否为日期。', + abstract: 'ISDATE 函数会返回某个值是否为日期。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9061381?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=zh-Hans', }, ], functionParameter: { @@ -102,12 +101,12 @@ const locale: typeof enUS = { }, }, ISEMAIL: { - description: '检查输入的值是否为有效的电子邮件地址', - abstract: '检查输入的值是否为有效的电子邮件地址', + description: '如需检查某个值是否为有效的邮箱,请使用 ISEMAIL 函数。此函数会检查该值是否符合常见的邮箱格式,但不会验证该地址是否实际存在。', + abstract: '如需检查某个值是否为有效的邮箱,请使用 ISEMAIL 函数。此函数会检查该值是否符合常见的邮箱格式,但不会验证该地址是否实际存在。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3256503?hl=zh-Hans&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=zh-Hans', }, ], functionParameter: { @@ -115,29 +114,29 @@ const locale: typeof enUS = { }, }, ISERR: { - description: '如果值为除 #N/A 以外的任何错误值,则返回 TRUE', - abstract: '如果值为除 #N/A 以外的任何错误值,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISERROR: { - description: '如果值为任何错误值,则返回 TRUE', - abstract: '如果值为任何错误值,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISEVEN: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/iseven-%E5%87%BD%E6%95%B0-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/zh-cn/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,7 +158,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/isformula-%E5%87%BD%E6%95%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/isformula-function', }, ], functionParameter: { @@ -167,55 +166,55 @@ const locale: typeof enUS = { }, }, ISLOGICAL: { - description: '如果值为逻辑值,则返回 TRUE', - abstract: '如果值为逻辑值,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISNA: { - description: '如果值为错误值 #N/A,则返回 TRUE', - abstract: '如果值为错误值 #N/A,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISNONTEXT: { - description: '如果值不是文本,则返回 TRUE', - abstract: '如果值不是文本,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISNUMBER: { - description: '如果值为数字,则返回 TRUE', - abstract: '如果值为数字,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISODD: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/isodd-%E5%87%BD%E6%95%B0-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,47 +236,46 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/isomitted-%E5%87%BD%E6%95%B0-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + argument: { name: '参数', detail: '要检查是否被省略的值,例如 LAMBDA 参数。' }, }, }, ISREF: { - description: '如果值为引用值,则返回 TRUE', - abstract: '如果值为引用值,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISTEXT: { - description: '如果值为文本,则返回 TRUE', - abstract: '如果值为文本,则返回 TRUE', + description: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', + abstract: '这些函数统称为 IS 函数,此类函数可检验指定值并根据结果返回 TRUE 或 FALSE。 例如,如果参数 value 引用的是空单元格,则 ISBLANK 函数返回逻辑值 TRUE;否则,返回 FALSE。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-cn/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要测试的值。参数值可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, + value: { name: '值', detail: '必填。 指的是要测试的值。 参数 value 可以是空白(空单元格)、错误值、逻辑值、文本、数字、引用值,或者引用要测试的以上任意值的名称。' }, }, }, ISURL: { - description: '检查某个值是否为有效网址', - abstract: '检查某个值是否为有效网址', + description: '检查某个值是否为有效网址。', + abstract: '检查某个值是否为有效网址。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3256501?hl=zh-Hans&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=zh-Hans', }, ], functionParameter: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/n-%E5%87%BD%E6%95%B0-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/na-%E5%87%BD%E6%95%B0-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sheet-%E5%87%BD%E6%95%B0-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sheets-%E5%87%BD%E6%95%B0-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/type-%E5%87%BD%E6%95%B0-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/zh-cn/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/information/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/information/zh-TW.ts index d1a57d5283..036fc6cb4f 100644 --- a/packages/sheets-formula/src/locale/function-list/information/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/information/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cell-%E5%87%BD%E6%95%B0-51bd39a5-f338-4dbe-a33f-955d67c2b2cf', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cell-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/error-type-%E5%87%BD%E6%95%B0-10958677-7c8d-44f7-ae77-b9a9ee6eefaa', + url: 'https://support.microsoft.com/zh-tw/excel/functions/error-type-function', }, ], functionParameter: { @@ -50,51 +50,50 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/info-%E5%87%BD%E6%95%B0-725f259a-0e4b-49b3-8b52-58815c69acae', + url: 'https://support.microsoft.com/zh-tw/excel/functions/info-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + typeText: { name: '類型文字', detail: '指定要傳回資訊類型的文字。' }, }, }, ISBETWEEN: { - description: '檢查提供的數字是否介於另外兩個值之間', - abstract: '檢查提供的數字是否介於另外兩個值之間', + description: '檢查提供的數字是否介於另外兩個值之間 (無論是否包含這兩個值)。', + abstract: '檢查提供的數字是否介於另外兩個值之間 (無論是否包含這兩個值)。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/10538337?hl=zh-Hant&sjid=7730820672019533290-AP', + url: 'https://support.google.com/docs/answer/10538337?hl=zh-Hant', }, ], functionParameter: { - valueToCompare: { name: '比較值', detail: '要比較的值,以查看該值是否介於「最小值」和「最大值」之間。' }, - lowerValue: { name: '最小值', detail: '範圍的下限值,「比較值」可能落在這個範圍內。' }, - upperValue: { name: '最大值', detail: '範圍的上限值,「比較值」可能落在這個範圍內。' }, - lowerValueIsInclusive: { name: '包括最小值', detail: '用於指定「最小值」這個值是否包含在範圍中 (預設是 TRUE)。' }, - upperValueIsInclusive: { name: '包括最大值', detail: '用於指定「最大值」這個值是否包含在範圍中 (預設是 TRUE)。' }, + valueToCompare: { name: '比較值', detail: '要比較的值,以查看該值是否介於「lower_value」和「upper_value」之間。' }, + lowerValue: { name: '最小值', detail: '範圍的下限值,「value_to_compare」可能落在這個範圍內。' }, + upperValue: { name: '最大值', detail: '範圍的上限值,「value_to_compare」可能落在這個範圍內。' }, + lowerValueIsInclusive: { name: '包括最小值', detail: '用於指定「lower_value」這個值是否包含在範圍中 (預設是 TRUE)' }, + upperValueIsInclusive: { name: '包括最大值', detail: '用於指定「upper_value」這個值是否包含在範圍中 (預設是 TRUE)' }, }, }, ISBLANK: { - description: '如果值為空,則傳回 TRUE', - abstract: '若值為空,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISDATE: { - description: '針對特定值是否可轉換為日期傳回結果', - abstract: '針對特定值是否可轉換為日期傳回結果', + description: 'ISDATE 函式會針對特定值是否可轉換為日期傳回結果。', + abstract: 'ISDATE 函式會針對特定值是否可轉換為日期傳回結果。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/9061381?hl=zh-Hant&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9061381?hl=zh-Hant', }, ], functionParameter: { @@ -102,42 +101,42 @@ const locale: typeof enUS = { }, }, ISEMAIL: { - description: '檢查某個值是否為有效的電子郵件地址', - abstract: '檢查某個值是否為有效的電子郵件地址', + description: '如要檢查值是否為有效的電子郵件地址,請使用 ISEMAIL 函式。這項檢查會確認值是否符合一般接受的電子郵件地址格式,但不會驗證該地址是否存在。', + abstract: '如要檢查值是否為有效的電子郵件地址,請使用 ISEMAIL 函式。這項檢查會確認值是否符合一般接受的電子郵件地址格式,但不會驗證該地址是否存在。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3256503?hl=zh-Hant&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/3256503?hl=zh-Hant', }, ], functionParameter: { - value: { name: '值', detail: '要驗證是否為電子郵件地址的值。' }, + value: { name: '值', detail: 'ISEMAIL("johndoe@yourname.com")' }, }, }, ISERR: { - description: '如果值為 #N/A 以外的任何錯誤值,則傳回 TRUE', - abstract: '如果值為 #N/A 以外的任何錯誤值,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISERROR: { - description: '如果值為任何錯誤值,則傳回 TRUE', - abstract: '如果值為任何錯誤值,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISEVEN: { @@ -146,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/iseven-%E5%87%BD%E6%95%B0-aa15929a-d77b-4fbb-92f4-2f479af55356', + url: 'https://support.microsoft.com/zh-tw/excel/functions/iseven-function', }, ], functionParameter: { @@ -159,63 +158,63 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/isformula-%E5%87%BD%E6%95%B0-e4d1355f-7121-4ef2-801e-3839bfd6b1e5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/isformula-function', }, ], functionParameter: { - reference: { name: '參照', detail: '是要測試之儲存格的參照。' }, + reference: { name: '參照', detail: '必須。 參考是指你想測試的儲存格。 參考可以是儲存格參考、公式,或是指向儲存格的名稱。' }, }, }, ISLOGICAL: { - description: '如果值為邏輯值,則傳回 TRUE', - abstract: '如果值為邏輯值,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISNA: { - description: '如果值為錯誤值 #N/A,則傳回 TRUE', - abstract: '如果值為錯誤值 #N/A,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISNONTEXT: { - description: '如果值不是文本,則傳回 TRUE', - abstract: '如果值不是文本,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISNUMBER: { - description: '如果值為數字,則傳回 TRUE', - abstract: '如果值為數字,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISODD: { @@ -224,7 +223,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/isodd-%E5%87%BD%E6%95%B0-1208a56d-4f10-4f44-a5fc-648cafd6c07a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/isodd-function', }, ], functionParameter: { @@ -237,47 +236,46 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/isomitted-%E5%87%BD%E6%95%B0-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/isomitted-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + argument: { name: '引數', detail: '要檢查是否省略的值,例如 LAMBDA 參數。' }, }, }, ISREF: { - description: '如果值為參考值,則傳回 TRUE', - abstract: '如果值為參考值,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: ' 指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISTEXT: { - description: '如果值為文本,則傳回 TRUE', - abstract: '如果值為文本,則傳回 TRUE', + description: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', + abstract: '這些函數統稱為 IS 函數,每個函數都會檢查指定的值,並根據結果傳回 TRUE 或 FALSE。 例如,如果數值引數為空白儲存格的參照, ISBLANK 函數就會傳回邏輯值 TRUE;否則便傳回 FALSE。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/is-%E5%87%BD%E6%95%B0-0f2d7971-6019-40a0-a171-f2d869135665', + url: 'https://support.microsoft.com/zh-tw/excel/functions/is-functions', }, ], functionParameter: { - value: { name: '值', detail: '指的是要測試的值。參數值可以是空白(空白儲存格)、錯誤值、邏輯值、文字、數字、參考值,或引用要測試的以上任意值的名稱。' }, + value: { name: '值', detail: '必須。 這是要檢定的值。 Value 引數可以是空的 (空白儲存格)、錯誤、邏輯值、文字、數字,或參照值,或是上述任何項目的名稱。' }, }, }, ISURL: { - description: '檢查特定值是否為有效的網址', - abstract: '檢查特定值是否為有效的網址', + description: '檢查特定值是否為有效的網址。', + abstract: '檢查特定值是否為有效的網址。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3256501?hl=zh-Hant&sjid=7312884847858065932-AP', + url: 'https://support.google.com/docs/answer/3256501?hl=zh-Hant', }, ], functionParameter: { @@ -290,7 +288,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/n-%E5%87%BD%E6%95%B0-a624cad1-3635-4208-b54a-29733d1278c9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/n-function', }, ], functionParameter: { @@ -303,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/na-%E5%87%BD%E6%95%B0-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/na-function', }, ], functionParameter: { @@ -315,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sheet-%E5%87%BD%E6%95%B0-44718b6f-8b87-47a1-a9d6-b701c06cff24', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sheet-function', }, ], functionParameter: { @@ -328,7 +326,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sheets-%E5%87%BD%E6%95%B0-770515eb-e1e8-45ce-8066-b557e5e4b80b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sheets-function', }, ], functionParameter: { @@ -340,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/type-%E5%87%BD%E6%95%B0-45b4e688-4bc3-48b3-a105-ffa892995899', + url: 'https://support.microsoft.com/zh-tw/excel/functions/type-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/logical/ar-SA.ts new file mode 100644 index 0000000000..4498e81ea7 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/ar-SA.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'ترجع الدالة ‏AND‏ القيمة TRUE إذا تم تقييم كافة الوسيطات الخاصة بها بالقيمة TRUE، وترجع القيمة FALSE إذا تم تقييم واحدة أو أكثر من الوسيطات الخاصة بها بالقيمة FALSE.', + abstract: 'ترجع الدالة ‏AND‏ القيمة TRUE إذا تم تقييم كافة الوسيطات الخاصة بها بالقيمة TRUE، وترجع القيمة FALSE إذا تم تقييم واحدة أو أكثر من الوسيطات الخاصة بها بالقيمة FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'الشرط الأول الذي تريد اختباره، ويمكن أن تكون نتيجته TRUE أو FALSE.' }, + logical2: { name: 'logical2', detail: 'شروط إضافية تريد اختبارها، ويمكن أن تكون نتيجتها TRUE أو FALSE، بحد أقصى 255 شرطاً.' }, + }, + }, + BYCOL: { + description: 'تطبيق LAMBDA على كل عمود وإرجاع صفيف من النتائج. على سبيل المثال، إذا كان الصفيف الأصلي 3 أعمدة في صفين، فإن الصفيف الذي يتم إرجاعه هو 3 أعمدة في صف واحد.', + abstract: 'تطبيق LAMBDA على كل عمود وإرجاع صفيف من النتائج. على سبيل المثال، إذا كان الصفيف الأصلي 3 أعمدة في صفين، فإن الصفيف الذي يتم إرجاعه هو 3 أعمدة في صف واحد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'صفيف يُعالج عموداً بعمود.' }, + lambda: { name: 'lambda', detail: 'دالة LAMBDA تأخذ عموداً كمعلمة واحدة وتحسب نتيجة واحدة. تأخذ LAMBDA معلمة واحدة: عموداً من array.' }, + }, + }, + BYROW: { + description: 'تطبيق LAMBDA على كل صف وإرجاع صفيف من النتائج. على سبيل المثال، إذا كان الصفيف الأصلي 3 أعمدة في صفين، يكون الصفيف الذي تم إرجاعه عموداً واحداً في صفين.', + abstract: 'تطبيق LAMBDA على كل صف وإرجاع صفيف من النتائج. على سبيل المثال، إذا كان الصفيف الأصلي 3 أعمدة في صفين، يكون الصفيف الذي تم إرجاعه عموداً واحداً في صفين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'صفيف يُعالج صفاً بصف.' }, + lambda: { name: 'lambda', detail: 'دالة LAMBDA تأخذ صفاً كمعلمة واحدة وتحسب نتيجة واحدة. تأخذ LAMBDA معلمة واحدة: صفاً من array.' }, + }, + }, + FALSE: { + description: 'تُرجع القيمة المنطقية FALSE.', + abstract: 'تُرجع القيمة المنطقية FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'على سبيل المثال، تشير =IF(C2="Yes",1,2) أنه إذا كان IF(C2 = نعم، يتم إرجاع 1، وبخلاف ذلك يتم إرجاع 2).', + abstract: 'على سبيل المثال، تشير =IF(C2="Yes",1,2) أنه إذا كان IF(C2 = نعم، يتم إرجاع 1، وبخلاف ذلك يتم إرجاع 2).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'القيمة التي تريد اختبارها.' }, + valueIfTrue: { name: 'value_if_true', detail: 'القيمة التي تريد إرجاعها إذا كانت نتيجة logical_test TRUE.' }, + valueIfFalse: { name: 'value_if_false', detail: 'القيمة التي تريد إرجاعها إذا كانت نتيجة logical_test هي FALSE.' }, + }, + }, + IFERROR: { + description: 'يمكنك استخدام الدالة IFERROR لمعالجة الأخطاء في صيغة. ترجع الدالة IFERROR قيمة تحددها إذا تم تقييم صيغة إلى خطأ؛ وإلا، فإنه يرجع نتيجة الصيغة.', + abstract: 'يمكنك استخدام الدالة IFERROR لمعالجة الأخطاء في صيغة. ترجع الدالة IFERROR قيمة تحددها إذا تم تقييم صيغة إلى خطأ؛ وإلا، فإنه يرجع نتيجة الصيغة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. الوسيطة التي يتم فحصها بحثاً عن خطأ.' }, + valueIfError: { name: 'value_if_error', detail: 'مطلوب. القيمة التي يجب إرجاعها إذا تم تقييم الصيغة إلى خطأ. يتم تقييم أنواع الخطأ التالية: ‎#N/A أو ‎#VALUE!‎ أو ‎#REF!‎ أو ‎#DIV/0!‎ أو ‎#NUM!‎ أو ‎#NAME?‎ أو ‎#NULL!‎.' }, + }, + }, + IFNA: { + description: 'ترجع الدالة IFNA القيمة التي تحددها إذا كانت الصيغة ترجع قيمة الخطأ #N/A؛ وإلا فإنه يرجع نتيجة الصيغة.', + abstract: 'ترجع الدالة IFNA القيمة التي تحددها إذا كانت الصيغة ترجع قيمة الخطأ #N/A؛ وإلا فإنه يرجع نتيجة الصيغة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'الوسيطة التي تم التحقق منها لقيمة الخطأ #N/A.' }, + valueIfNa: { name: 'value_if_na', detail: 'القيمة المراد إرجاعها إذا تم تقييم الصيغة إلى قيمة الخطأ #N/A.' }, + }, + }, + IFS: { + description: 'تتحقق الدالة IFS مما إذا تم استيفاء شرط واحد أو أكثر، وتُرجع القيمة التي تتوافق مع شرط TRUE الأول. يمكن تستبدل IFS العديد من عبارات IF المتداخلة، وتكون القراءة أسهل بكثير مع الشروط المتعددة.', + abstract: 'تتحقق الدالة IFS مما إذا تم استيفاء شرط واحد أو أكثر، وتُرجع القيمة التي تتوافق مع شرط TRUE الأول. يمكن تستبدل IFS العديد من عبارات IF المتداخلة، وتكون القراءة أسهل بكثير مع الشروط المتعددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'شرط نتيجته TRUE أو FALSE.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'النتيجة التي تُرجع إذا كانت نتيجة logical_test1 هي TRUE. يمكن أن تكون فارغة.' }, + logicalTest2: { name: 'logical_test2', detail: 'شرط نتيجته TRUE أو FALSE.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'النتيجة التي تُرجع إذا كانت نتيجة logical_testN هي TRUE. يقابل كل value_if_trueN الشرط logical_testN، ويمكن أن تكون فارغة.' }, + }, + }, + LAMBDA: { + description: 'يمكنك إنشاء دالة لصيغة شائعة الاستخدام، وإزالة الحاجة إلى نسخ ولصق هذه الصيغة (التي يمكن أن تكون عرضة للخطأ)، وإضافة وظائفك الخاصة بشكل فعال إلى مكتبة دالات Excel الأصلية. علاوة على ذلك، لا تتطلب دالة LAMBDA VBA أو وحدات الماكرو أو JavaScript، لذلك يمكن لغير المبرمجين أيضا الاستفادة من استخدامها.', + abstract: 'يمكنك إنشاء دالة لصيغة شائعة الاستخدام، وإزالة الحاجة إلى نسخ ولصق هذه الصيغة (التي يمكن أن تكون عرضة للخطأ)، وإضافة وظائفك الخاصة بشكل فعال إلى مكتبة دالات Excel الأصلية. علاوة على ذلك، لا تتطلب دالة LAMBDA VBA أو وحدات الماكرو أو JavaScript، لذلك يمكن لغير المبرمجين أيضا الاستفادة من استخدامها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'قيمة تريد تمريرها إلى الدالة، مثل مرجع خلية أو سلسلة أو رقم. يمكنك إدخال ما يصل إلى 253 معلمة. هذه الوسيطة اختيارية.' }, + calculation: { name: 'calculation', detail: 'الصيغة التي تريد تنفيذها والعودة كنتيجة للدالة. يجب أن تكون الوسيطة الأخيرة، ويجب أن تعيد نتيجة. هذه الوسيطة مطلوبة.' }, + }, + }, + LET: { + description: 'تعين LET الدالة أسماء لنتائج الحساب. يسمح ذلك بتخزين القيم أو العمليات الحسابية الوسيطة أو تعريف الأسماء داخل صيغة. تنطبق هذه الأسماء فقط ضمن نطاق الدالة LET . على غرار المتغيرات في البرمجة، LET يتم إنجازها من خلال بناء جملة الصيغة الأصلية في Excel.', + abstract: 'تعين LET الدالة أسماء لنتائج الحساب. يسمح ذلك بتخزين القيم أو العمليات الحسابية الوسيطة أو تعريف الأسماء داخل صيغة. تنطبق هذه الأسماء فقط ضمن نطاق الدالة LET . على غرار المتغيرات في البرمجة، LET يتم إنجازها من خلال بناء جملة الصيغة الأصلية في Excel.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'الاسم الأول المراد تعيينه. يجب أن يبدأ بحرف، وألا يكون ناتج صيغة أو متعارضاً مع صياغة النطاق.' }, + nameValue1: { name: 'name_value1', detail: 'القيمة المعيّنة إلى name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'أحد الخيارين التاليين:\n1. عملية حسابية تستخدم كل الأسماء داخل LET. يجب أن تكون هذه الوسيطة الأخيرة في LET.\n2. اسم ثانٍ لتعيينه إلى name_value ثانٍ. إذا حُدّد اسم، تصبح name_value2 وcalculation_or_name3 مطلوبتين.' }, + nameValue2: { name: 'name_value2', detail: 'القيمة المعيّنة إلى calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'أحد الخيارين التاليين:\n1. عملية حسابية تستخدم كل الأسماء داخل LET. يجب أن تكون الوسيطة الأخيرة في LET عملية حسابية.\n2. اسم ثالث لتعيينه إلى name_value ثالث. إذا حُدّد اسم، تصبح name_value3 وcalculation_or_name4 مطلوبتين.' }, + }, + }, + MAKEARRAY: { + description: 'إرجاع صفيف محسوب لحجم صف وعمود محدد، عن طريق تطبيق دالة LAMBDA .', + abstract: 'إرجاع صفيف محسوب لحجم صف وعمود محدد، عن طريق تطبيق دالة LAMBDA .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'عدد صفوف الصفيف. يجب أن يكون أكبر من صفر.' }, + number2: { name: 'cols', detail: 'عدد أعمدة الصفيف. يجب أن يكون أكبر من صفر.' }, + value3: { name: 'lambda', detail: 'دالة LAMBDA تُستدعى لإنشاء الصفيف. تأخذ LAMBDA معلمتين: row (فهرس صف الصفيف) وcol (فهرس عمود الصفيف).' }, + }, + }, + MAP: { + description: 'إرجاع صفيف تم تكوينه عن طريق تعيين كل قيمة في الصفيف (الصفيفات) إلى قيمة جديدة عن طريق تطبيق LAMBDA لإنشاء قيمة جديدة.', + abstract: 'إرجاع صفيف تم تكوينه عن طريق تعيين كل قيمة في الصفيف (الصفيفات) إلى قيمة جديدة عن طريق تطبيق LAMBDA لإنشاء قيمة جديدة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'الصفيف الأول المراد تعيينه.' }, + array2: { name: 'array2', detail: 'الصفيف الثاني المراد تعيينه.' }, + lambda: { name: 'lambda', detail: 'دالة LAMBDA يجب أن تكون الوسيطة الأخيرة، وأن تتضمن معلمة لكل صفيف مُمرَّر.' }, + }, + }, + NOT: { + description: 'تعكس الدالة NOT قيمة الوسيطة الخاصة بها.', + abstract: 'تعكس الدالة NOT قيمة الوسيطة الخاصة بها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'الشرط الذي تريد عكس منطقه، ويمكن أن تكون نتيجته TRUE أو FALSE.' }, + }, + }, + OR: { + description: 'ترجع دالة OR القيمة TRUE إذا كان تقييم أي من وسيطاتها TRUE، وترجع FALSE إذا كان تقييم أي من وسيطاتها FALSE.', + abstract: 'ترجع دالة OR القيمة TRUE إذا كان تقييم أي من وسيطاتها TRUE، وترجع FALSE إذا كان تقييم أي من وسيطاتها FALSE.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'الشرط الأول الذي تريد اختباره، ويمكن أن تكون نتيجته TRUE أو FALSE.' }, + logical2: { name: 'logical2', detail: 'شروط إضافية تريد اختبارها، ويمكن أن تكون نتيجتها TRUE أو FALSE، بحد أقصى 255 شرطاً.' }, + }, + }, + REDUCE: { + description: 'تختزل مصفوفة إلى قيمة متراكمة بتطبيق LAMBDA على كل قيمة وإرجاع القيمة الإجمالية في المُجمّع.', + abstract: 'تختزل مصفوفة إلى قيمة متراكمة بتطبيق LAMBDA على كل قيمة وإرجاع القيمة الإجمالية في المُجمّع.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'يحدد قيمة البداية للمُجمّع.' }, + array: { name: 'array', detail: 'صفيف المراد اختزاله.' }, + lambda: { name: 'lambda', detail: 'دالة LAMBDA تُستدعى لاختزال الصفيف. تأخذ LAMBDA ثلاث معلمات: 1. القيمة المتراكمة التي تُرجع كنتيجة نهائية. 2. القيمة الحالية من الصفيف. 3. العملية الحسابية المطبقة على كل عنصر في الصفيف.' }, + }, + }, + SCAN: { + description: 'يقوم بفحص صفيف عن طريق تطبيق LAMBDA على كل قيمة وإرجاع صفيف يحتوي على كل قيمة وسيطة.', + abstract: 'يقوم بفحص صفيف عن طريق تطبيق LAMBDA على كل قيمة وإرجاع صفيف يحتوي على كل قيمة وسيطة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'يحدد قيمة البداية للمُجمّع.' }, + array: { name: 'array', detail: 'صفيف المراد فحصه.' }, + lambda: { name: 'lambda', detail: 'دالة LAMBDA تُستدعى لفحص الصفيف. تأخذ LAMBDA ثلاث معلمات: 1. القيمة المتراكمة. 2. القيمة الحالية من الصفيف. 3. العملية الحسابية المطبقة على كل عنصر في الصفيف.' }, + }, + }, + SWITCH: { + description: 'تقيّم تعبيراً مقابل قائمة قيم وترجع النتيجة المقابلة لأول قيمة مطابقة. وإذا لم توجد مطابقة، فقد ترجع قيمة افتراضية اختيارية.', + abstract: 'تقيّم تعبيراً مقابل قائمة قيم وترجع النتيجة المقابلة لأول قيمة مطابقة. وإذا لم توجد مطابقة، فقد ترجع قيمة افتراضية اختيارية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'القيمة (مثل رقم أو تاريخ أو نص) التي ستُقارن بـ value1 إلى value126.' }, + value1: { name: 'value1', detail: 'قيمة تُقارن بـ expression.' }, + result1: { name: 'result1', detail: 'القيمة التي تُرجع عندما تطابق وسيطة valueN المقابلة expression. يجب توفير resultN لكل وسيطة valueN مقابلة.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'القيمة التي تُرجع إذا لم يُعثر على تطابق في تعبيرات valueN. تُعرَّف وسيطة Default بعدم وجود تعبير resultN مقابل لها، ويجب أن تكون الوسيطة الأخيرة في الدالة.' }, + result2: { name: 'result2', detail: 'القيمة التي تُرجع عندما تطابق وسيطة valueN المقابلة expression. يجب توفير resultN لكل وسيطة valueN مقابلة.' }, + }, + }, + TRUE: { + description: 'إرجاع القيمة المنطقية TRUE. يمكنك استخدام هذه الدالة عندما تريد إرجاع القيمة TRUE استنادا إلى شرط. على سبيل المثال:', + abstract: 'إرجاع القيمة المنطقية TRUE. يمكنك استخدام هذه الدالة عندما تريد إرجاع القيمة TRUE استنادا إلى شرط. على سبيل المثال:', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'ترجع الدالة XOR قيمة حصرية منطقية أو لكافة الوسيطات.', + abstract: 'ترجع الدالة XOR قيمة حصرية منطقية أو لكافة الوسيطات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'الشرط الأول الذي تريد اختباره، ويمكن أن تكون نتيجته TRUE أو FALSE.' }, + logical2: { name: 'logical2', detail: 'شروط إضافية تريد اختبارها، ويمكن أن تكون نتيجتها TRUE أو FALSE، بحد أقصى 255 شرطاً.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/logical/ca-ES.ts index 75b306dfed..af0eeea623 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/ca-es/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/ca-es/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/ca-es/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/ca-es/excel/functions/false-function', }, ], functionParameter: {}, @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/ca-es/excel/functions/if-function', }, ], functionParameter: { @@ -97,7 +97,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/ca-es/excel/functions/iferror-function', }, ], functionParameter: { @@ -111,7 +111,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/ca-es/excel/functions/ifna-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/ca-es/excel/functions/ifs-function', }, ], functionParameter: { @@ -141,7 +141,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/ca-es/excel/functions/lambda-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/ca-es/excel/functions/let-function', }, ], functionParameter: { @@ -178,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/ca-es/excel/functions/makearray-function', }, ], functionParameter: { @@ -196,7 +196,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/ca-es/excel/functions/map-function', }, ], functionParameter: { @@ -211,7 +211,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/ca-es/excel/functions/not-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/ca-es/excel/functions/or-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/ca-es/excel/functions/reduce-function', }, ], functionParameter: { @@ -253,7 +253,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/ca-es/excel/functions/scan-function', }, ], functionParameter: { @@ -268,7 +268,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/ca-es/excel/functions/switch-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/ca-es/excel/functions/true-function', }, ], functionParameter: {}, @@ -296,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/ca-es/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/de-DE.ts b/packages/sheets-formula/src/locale/function-list/logical/de-DE.ts new file mode 100644 index 0000000000..76efe090c8 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/de-DE.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'Die Funktion UND gibt den Wert WAHR zurück, wenn alle Argumente als WAHR bewertet werden. Werden ein oder mehrere Argumente als FALSCH bewertet, gibt die Funktion den Wert FALSCH zurück.', + abstract: 'Die Funktion UND gibt den Wert WAHR zurück, wenn alle Argumente als WAHR bewertet werden. Werden ein oder mehrere Argumente als FALSCH bewertet, gibt die Funktion den Wert FALSCH zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Die erste Bedingung, die Sie testen möchten und die WAHR oder FALSCH ergeben kann.' }, + logical2: { name: 'logical2', detail: 'Weitere Bedingungen, die Sie testen möchten und die WAHR oder FALSCH ergeben können, bis zu maximal 255 Bedingungen.' }, + }, + }, + BYCOL: { + description: 'Wendet einen LAMBDA-Wert auf jede Spalte an und gibt ein Array der Ergebnisse zurück. Wenn das ursprüngliche Array beispielsweise aus 3 Spalten mal 2 Zeilen besteht, enthält das zurückgegebene Array 3 Spalten mal 1 Zeilen.', + abstract: 'Wendet einen LAMBDA-Wert auf jede Spalte an und gibt ein Array der Ergebnisse zurück. Wenn das ursprüngliche Array beispielsweise aus 3 Spalten mal 2 Zeilen besteht, enthält das zurückgegebene Array 3 Spalten mal 1 Zeilen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Eine Matrix, die nach Spalten aufgeteilt wird.' }, + lambda: { name: 'lambda', detail: 'Ein LAMBDA, das eine Spalte als einzelnen Parameter annimmt und ein Ergebnis berechnet. LAMBDA übernimmt einen einzelnen Parameter: eine Spalte aus array.' }, + }, + }, + BYROW: { + description: 'Wendet eine LAMBDA auf jede Zeile an und gibt ein Array der Ergebnisse zurück. Wenn das ursprüngliche Array beispielsweise aus 3 Spalten mal 2 Zeilen besteht, enthält das zurückgegebene Array 1 Spalte mal 2 Zeilen.', + abstract: 'Wendet eine LAMBDA auf jede Zeile an und gibt ein Array der Ergebnisse zurück. Wenn das ursprüngliche Array beispielsweise aus 3 Spalten mal 2 Zeilen besteht, enthält das zurückgegebene Array 1 Spalte mal 2 Zeilen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Eine Matrix, die nach Zeilen aufgeteilt wird.' }, + lambda: { name: 'lambda', detail: 'Ein LAMBDA, das eine Zeile als einzelnen Parameter annimmt und ein Ergebnis berechnet. LAMBDA übernimmt einen einzelnen Parameter: eine Zeile aus array.' }, + }, + }, + FALSE: { + description: 'Gibt den Wahrheitswert FALSCH zurück.', + abstract: 'Gibt den Wahrheitswert FALSCH zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Beispiel: Bei "=WENN(C2="Ja";1;2)" lautet die Anweisung: WENN(C2 = Ja, 1 zurückgeben, andernfalls 2 zurückgeben).', + abstract: 'Beispiel: Bei "=WENN(C2="Ja";1;2)" lautet die Anweisung: WENN(C2 = Ja, 1 zurückgeben, andernfalls 2 zurückgeben).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'Die zu prüfende Bedingung.' }, + valueIfTrue: { name: 'value_if_true', detail: 'Der Wert, der zurückgegeben werden soll, wenn das Ergebnis von logical_test TRUE ist.' }, + valueIfFalse: { name: 'value_if_false', detail: 'Der Wert, der zurückgegeben werden soll, wenn das Ergebnis von logical_test FALSE ist.' }, + }, + }, + IFERROR: { + description: 'Sie können die Funktion WENNFEHLER verwenden, um Fehler in einer Formel zu behandeln. WENNFEHLER gibt einen Wert zurück, den Sie angeben, wenn eine Formel einen Fehler auswertet. Andernfalls wird das Ergebnis der Formel zurückgegeben.', + abstract: 'Sie können die Funktion WENNFEHLER verwenden, um Fehler in einer Formel zu behandeln. WENNFEHLER gibt einen Wert zurück, den Sie angeben, wenn eine Formel einen Fehler auswertet. Andernfalls wird das Ergebnis der Formel zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Das Argument, das auf einen Fehler geprüft wird' }, + valueIfError: { name: 'value_if_error', detail: 'Erforderlich. Der zurückzugebende Wert, wenn die Formel als Fehler ausgewertet wird. Die folgenden Fehlertypen werden ausgewertet: #N/V, #WERT!, #BEZUG!, #DIV/0!, #ZAHL!, #NAME?, oder #NULL!.' }, + }, + }, + IFNA: { + description: 'Die IFNA-Funktion gibt den wert zurück, den Sie angeben, wenn eine Formel den #N/A-Fehlerwert zurückgibt. andernfalls wird das Ergebnis der Formel zurückgegeben.', + abstract: 'Die IFNA-Funktion gibt den wert zurück, den Sie angeben, wenn eine Formel den #N/A-Fehlerwert zurückgibt. andernfalls wird das Ergebnis der Formel zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Das Argument, das auf den Fehlerwert "#N/V" geprüft wird.' }, + valueIfNa: { name: 'value_if_na', detail: 'Der zurückzugebende Wert, wenn die Formel zum Fehlerwert "#N/V" ausgewertet wird.' }, + }, + }, + IFS: { + description: 'Die IFS-Funktion überprüft, ob eine oder mehrere Bedingungen erfüllt sind, und gibt einen Wert zurück, der der ersten TRUE-Bedingung entspricht. WENNS kann als Ersatz für zahlreiche geschachtelte WENN-Anweisungen dienen und ist einfacher zu lesen, wenn mehrere Bedingungen verwendet werden.', + abstract: 'Die IFS-Funktion überprüft, ob eine oder mehrere Bedingungen erfüllt sind, und gibt einen Wert zurück, der der ersten TRUE-Bedingung entspricht. WENNS kann als Ersatz für zahlreiche geschachtelte WENN-Anweisungen dienen und ist einfacher zu lesen, wenn mehrere Bedingungen verwendet werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Eine Bedingung, die WAHR oder FALSCH ergibt.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'Ergebnis, das zurückgegeben wird, wenn logical_test1 WAHR ergibt. Kann leer sein.' }, + logicalTest2: { name: 'logical_test2', detail: 'Eine Bedingung, die WAHR oder FALSCH ergibt.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'Ergebnis, das zurückgegeben wird, wenn logical_testN WAHR ergibt. Jedes value_if_trueN entspricht einer Bedingung logical_testN. Kann leer sein.' }, + }, + }, + LAMBDA: { + description: 'Sie können eine Funktion für eine häufig verwendete Formel erstellen, die Notwendigkeit des Kopierens und Einfügens dieser Formel beseitigen (was fehleranfällig sein kann) und effektiv Ihre eigenen Funktionen zur Bibliothek nativer Excel-Funktionen hinzufügen. Darüber hinaus sind für eine LAMBDA-Funktion weder VBA noch Makros oder JavaScript erforderlich. Daher können auch Nicht-Programmierer von deren Verwendung profitieren.', + abstract: 'Sie können eine Funktion für eine häufig verwendete Formel erstellen, die Notwendigkeit des Kopierens und Einfügens dieser Formel beseitigen (was fehleranfällig sein kann) und effektiv Ihre eigenen Funktionen zur Bibliothek nativer Excel-Funktionen hinzufügen. Darüber hinaus sind für eine LAMBDA-Funktion weder VBA noch Makros oder JavaScript erforderlich. Daher können auch Nicht-Programmierer von deren Verwendung profitieren.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Ein Wert, der an die Funktion übergeben werden soll, z. B. ein Zellbezug, eine Zeichenfolge oder eine Zahl. Sie können bis zu 253 Parameter eingeben. Dieses Argument ist optional.' }, + calculation: { name: 'calculation', detail: 'Die Formel, die ausgeführt und als Ergebnis der Funktion zurückgegeben werden soll. Dies muss das letzte Argument sein und es muss ein Ergebnis zurückgeben. Dieses Argument ist erforderlich.' }, + }, + }, + LET: { + description: 'Die LET Funktion weist Den Berechnungsergebnissen Namen zu. Auf diese Weise können Zwischenberechnungen, Werte oder definierte Namen innerhalb einer Formel gespeichert werden. Diese Namen gelten nur innerhalb des Bereichs der LET Funktion. Ähnlich wie Variablen bei der Programmierung LET wird durch die native Formelsyntax von Excel erreicht.', + abstract: 'Die LET Funktion weist Den Berechnungsergebnissen Namen zu. Auf diese Weise können Zwischenberechnungen, Werte oder definierte Namen innerhalb einer Formel gespeichert werden. Diese Namen gelten nur innerhalb des Bereichs der LET Funktion. Ähnlich wie Variablen bei der Programmierung LET wird durch die native Formelsyntax von Excel erreicht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'Der erste zuzuweisende Name. Muss mit einem Buchstaben beginnen. Darf nicht das Ergebnis einer Formel sein oder mit der Bereichssyntax kollidieren.' }, + nameValue1: { name: 'name_value1', detail: 'Der Wert, der name1 zugewiesen wird.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'Eines der Folgenden:\n1. Eine Berechnung, die alle Namen innerhalb der LET-Funktion verwendet. Dies muss das letzte Argument der LET-Funktion sein.\n2. Ein zweiter Name, dem ein zweiter name_value zugewiesen wird. Wenn ein Name angegeben wird, sind name_value2 und calculation_or_name3 erforderlich.' }, + nameValue2: { name: 'name_value2', detail: 'Der Wert, der calculation_or_name2 zugewiesen wird.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'Eines der Folgenden:\n1. Eine Berechnung, die alle Namen innerhalb der LET-Funktion verwendet. Das letzte Argument der LET-Funktion muss eine Berechnung sein.\n2. Ein dritter Name, dem ein dritter name_value zugewiesen wird. Wenn ein Name angegeben wird, sind name_value3 und calculation_or_name4 erforderlich.' }, + }, + }, + MAKEARRAY: { + description: 'Gibt ein berechnetes Array einer angegebenen Zeilen- und Spaltengröße zurück, indem eine LAMBDA-Funktion angewendet wird.', + abstract: 'Gibt ein berechnetes Array einer angegebenen Zeilen- und Spaltengröße zurück, indem eine LAMBDA-Funktion angewendet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'Die Anzahl der Zeilen in der Matrix. Muss größer als null sein.' }, + number2: { name: 'cols', detail: 'Die Anzahl der Spalten in der Matrix. Muss größer als null sein.' }, + value3: { name: 'lambda', detail: 'Ein LAMBDA, das zum Erstellen der Matrix aufgerufen wird. LAMBDA übernimmt zwei Parameter: row (den Zeilenindex der Matrix) und col (den Spaltenindex der Matrix).' }, + }, + }, + MAP: { + description: 'Gibt ein Array zurück, das gebildet wird, indem jeder Wert in den Arrays einem neuen Wert zugeordnet wird, indem ein LAMBDA-Wert angewendet wird, um einen neuen Wert zu erstellen.', + abstract: 'Gibt ein Array zurück, das gebildet wird, indem jeder Wert in den Arrays einem neuen Wert zugeordnet wird, indem ein LAMBDA-Wert angewendet wird, um einen neuen Wert zu erstellen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Eine zuzuordnende Matrix array1.' }, + array2: { name: 'array2', detail: 'Eine zuzuordnende Matrix array2.' }, + lambda: { name: 'lambda', detail: 'Ein LAMBDA, das das letzte Argument sein muss und für jede übergebene Matrix einen Parameter haben muss.' }, + }, + }, + NOT: { + description: 'Bei der Funktion NICHT wird der Wert des Arguments umgekehrt.', + abstract: 'Bei der Funktion NICHT wird der Wert des Arguments umgekehrt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'Die Bedingung, deren Logik Sie umkehren möchten und die WAHR oder FALSCH ergeben kann.' }, + }, + }, + OR: { + description: 'Die Funktion ODER gibt den Wert WAHR zurück, wenn eines der Argumente als WAHR bewertet wird. Wenn alle Argumente als FALSCH bewertet werden, gibt die Funktion den Wert FALSCH zurück.', + abstract: 'Die Funktion ODER gibt den Wert WAHR zurück, wenn eines der Argumente als WAHR bewertet wird. Wenn alle Argumente als FALSCH bewertet werden, gibt die Funktion den Wert FALSCH zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Die erste Bedingung, die Sie testen möchten und die WAHR oder FALSCH ergeben kann.' }, + logical2: { name: 'logical2', detail: 'Weitere Bedingungen, die Sie testen möchten und die WAHR oder FALSCH ergeben können, bis zu maximal 255 Bedingungen.' }, + }, + }, + REDUCE: { + description: 'Reduziert ein Array auf einen akkumulierten Wert, indem ein LAMBDA-Wert auf jeden Wert angewendet und der Gesamtwert im Akkumulator zurückgegeben wird.', + abstract: 'Reduziert ein Array auf einen akkumulierten Wert, indem ein LAMBDA-Wert auf jeden Wert angewendet und der Gesamtwert im Akkumulator zurückgegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Legt den Anfangswert für den Akkumulator fest.' }, + array: { name: 'array', detail: 'Eine zu reduzierende Matrix.' }, + lambda: { name: 'lambda', detail: 'Ein LAMBDA, das zum Reduzieren der Matrix aufgerufen wird. LAMBDA übernimmt drei Parameter: 1. den aufsummierten und als Endergebnis zurückgegebenen Wert, 2. den aktuellen Wert aus der Matrix und 3. die auf jedes Element der Matrix angewendete Berechnung.' }, + }, + }, + SCAN: { + description: 'Scannt ein Array, indem ein LAMBDA-Wert auf jeden Wert angewendet wird, und gibt ein Array zurück, das über jeden Zwischenwert verfügt.', + abstract: 'Scannt ein Array, indem ein LAMBDA-Wert auf jeden Wert angewendet wird, und gibt ein Array zurück, das über jeden Zwischenwert verfügt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Legt den Startwert für den Akkumulator fest.' }, + array: { name: 'array', detail: 'Ein zu überprüfende Array.' }, + lambda: { name: 'lambda', detail: 'Ein LAMBDA-Wert, der aufgerufen wird, um das Array zu reduzieren. Der LAMBDA-Parameter akzeptiert drei Parameter: Akku Der Wert, der sich summiert hat und als Endergebnis zurückgegeben wird. Wert Der aktuelle Wert aus dem Array. Körper Die Berechnung, die auf jedes Element im Array angewendet wird.' }, + }, + }, + SWITCH: { + description: 'Die SWITCH-Funktion wertet einen Wert (als Ausdruck bezeichnet) anhand einer Liste von Werten aus und gibt das Ergebnis zurück, das dem ersten übereinstimmenden Wert entspricht. Wenn es keine Übereinstimmung gibt, kann ein optionaler Standardwert zurückgegeben werden.', + abstract: 'Die SWITCH-Funktion wertet einen Wert (als Ausdruck bezeichnet) anhand einer Liste von Werten aus und gibt das Ergebnis zurück, das dem ersten übereinstimmenden Wert entspricht. Wenn es keine Übereinstimmung gibt, kann ein optionaler Standardwert zurückgegeben werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'Expression ist der Wert (etwa eine Zahl, ein Datum oder Text), der mit value1 bis value126 verglichen wird.' }, + value1: { name: 'value1', detail: 'ValueN ist ein Wert, der mit expression verglichen wird.' }, + result1: { name: 'result1', detail: 'ResultN ist der Wert, der zurückgegeben wird, wenn das entsprechende Argument valueN mit expression übereinstimmt. Für jedes entsprechende Argument valueN muss ein ResultN angegeben werden.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'Default ist der Wert, der zurückgegeben wird, wenn in den Ausdrücken valueN keine Übereinstimmung gefunden wird. Das Argument Default ist daran erkennbar, dass kein entsprechender Ausdruck resultN vorhanden ist. Default muss das letzte Argument der Funktion sein.' }, + result2: { name: 'result2', detail: 'ResultN ist der Wert, der zurückgegeben wird, wenn das entsprechende Argument valueN mit expression übereinstimmt. Für jedes entsprechende Argument valueN muss ein ResultN angegeben werden.' }, + }, + }, + TRUE: { + description: 'Gibt den Wahrheitswert WAHR zurück. Sie können diese Funktion verwenden, wenn Sie den Wert TRUE basierend auf einer Bedingung zurückgeben möchten. Beispiel:', + abstract: 'Gibt den Wahrheitswert WAHR zurück. Sie können diese Funktion verwenden, wenn Sie den Wert TRUE basierend auf einer Bedingung zurückgeben möchten. Beispiel:', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'Die XOR-Funktion gibt ein logisches exklusives Or aller Argumente zurück.', + abstract: 'Die XOR-Funktion gibt ein logisches exklusives Or aller Argumente zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Die erste Bedingung, die Sie testen möchten und die WAHR oder FALSCH ergeben kann.' }, + logical2: { name: 'logical2', detail: 'Weitere Bedingungen, die Sie testen möchten und die WAHR oder FALSCH ergeben können, bis zu maximal 255 Bedingungen.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/en-US.ts b/packages/sheets-formula/src/locale/function-list/logical/en-US.ts index f318067541..0cf94dc673 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/en-us/excel/functions/and-function', }, ], functionParameter: { @@ -35,7 +35,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/en-us/excel/functions/bycol-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/en-us/excel/functions/byrow-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/en-us/excel/functions/false-function', }, ], functionParameter: {}, @@ -74,7 +74,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/en-us/excel/functions/if-function', }, ], functionParameter: { @@ -95,7 +95,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/en-us/excel/functions/iferror-function', }, ], functionParameter: { @@ -109,7 +109,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/en-us/excel/functions/ifna-function', }, ], functionParameter: { @@ -123,7 +123,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/en-us/excel/functions/ifs-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/en-us/excel/functions/lambda-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/en-us/excel/functions/let-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/en-us/excel/functions/makearray-function', }, ], functionParameter: { @@ -194,7 +194,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/en-us/excel/functions/map-function', }, ], functionParameter: { @@ -209,7 +209,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/en-us/excel/functions/not-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/en-us/excel/functions/or-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/en-us/excel/functions/reduce-function', }, ], functionParameter: { @@ -251,7 +251,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/en-us/excel/functions/scan-function', }, ], functionParameter: { @@ -266,7 +266,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/en-us/excel/functions/switch-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/en-us/excel/functions/true-function', }, ], functionParameter: {}, @@ -294,7 +294,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/en-us/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/es-ES.ts b/packages/sheets-formula/src/locale/function-list/logical/es-ES.ts index 4b9478cdfb..3b21bc067b 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/es-es/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/es-es/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/es-es/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/es-es/excel/functions/false-function', }, ], functionParameter: {}, @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/es-es/excel/functions/if-function', }, ], functionParameter: { @@ -97,7 +97,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/es-es/excel/functions/iferror-function', }, ], functionParameter: { @@ -111,7 +111,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/es-es/excel/functions/ifna-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/es-es/excel/functions/ifs-function', }, ], functionParameter: { @@ -141,7 +141,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/es-es/excel/functions/lambda-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/es-es/excel/functions/let-function', }, ], functionParameter: { @@ -178,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/es-es/excel/functions/makearray-function', }, ], functionParameter: { @@ -196,7 +196,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/es-es/excel/functions/map-function', }, ], functionParameter: { @@ -211,7 +211,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/es-es/excel/functions/not-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/es-es/excel/functions/or-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/es-es/excel/functions/reduce-function', }, ], functionParameter: { @@ -253,7 +253,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/es-es/excel/functions/scan-function', }, ], functionParameter: { @@ -268,7 +268,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/es-es/excel/functions/switch-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/es-es/excel/functions/true-function', }, ], functionParameter: {}, @@ -296,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/es-es/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/logical/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/logical/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/logical/fr-FR.ts index 60a22638e2..19568b045e 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/fr-FR.ts @@ -14,8 +14,282 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + AND: { + description: 'La fonction ET renvoie la valeur VRAI si tous ses arguments produisent un résultat vrai, et la valeur FAUX si au moins l’un des arguments produit un résultat faux.', + abstract: 'La fonction ET renvoie la valeur VRAI si tous ses arguments produisent un résultat vrai, et la valeur FAUX si au moins l’un des arguments produit un résultat faux.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Première condition à tester, pouvant prendre la valeur TRUE ou FALSE.' }, + logical2: { name: 'logical2', detail: 'Conditions supplémentaires à tester, pouvant prendre la valeur TRUE ou FALSE, dans la limite de 255 conditions.' }, + }, + }, + BYCOL: { + description: 'Applique une expression LAMBDA à chaque colonne et retourne un tableau des résultats. Par exemple, si le tableau d’origine est de 3 colonnes par 2 lignes, le tableau retourné est de 3 colonnes par 1 ligne.', + abstract: 'Applique une expression LAMBDA à chaque colonne et retourne un tableau des résultats. Par exemple, si le tableau d’origine est de 3 colonnes par 2 lignes, le tableau retourné est de 3 colonnes par 1 ligne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau à séparer par colonne.' }, + lambda: { name: 'lambda', detail: 'Lambda qui prend une colonne comme paramètre unique et calcule un résultat. LambDA accepte un seul paramètre :' }, + }, + }, + BYROW: { + description: 'Applique un lambda à chaque ligne et retourne un tableau des résultats. Par exemple, si le tableau d’origine est de 3 colonnes par 2 lignes, le tableau retourné est de 1 colonne par 2 lignes.', + abstract: 'Applique un lambda à chaque ligne et retourne un tableau des résultats. Par exemple, si le tableau d’origine est de 3 colonnes par 2 lignes, le tableau retourné est de 1 colonne par 2 lignes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau à séparer par ligne.' }, + lambda: { name: 'lambda', detail: 'Lambda qui prend une ligne comme paramètre unique et calcule un résultat. LambDA accepte un seul paramètre :' }, + }, + }, + FALSE: { + description: 'Renvoie la valeur logique FAUX.', + abstract: 'Renvoie la valeur logique FAUX.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Par exemple, SI(C2="Oui";1;2) indique SI(C2 = Oui, renvoyer un 1, sinon renvoyer un 2)', + abstract: 'Par exemple, SI(C2="Oui";1;2) indique SI(C2 = Oui, renvoyer un 1, sinon renvoyer un 2)', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'Condition que vous souhaitez tester.' }, + valueIfTrue: { name: 'value_if_true', detail: 'Valeur que vous souhaitez retourner si le résultat de logical_test est TRUE.' }, + valueIfFalse: { name: 'value_if_false', detail: 'Valeur que vous souhaitez retourner si le résultat de logical_test est FALSE.' }, + }, + }, + IFERROR: { + description: 'Vous pouvez utiliser la fonction SIERREUR pour gérer les erreurs dans une formule. La fonction SIERREUR renvoie une valeur que vous spécifiez si une formule génère une erreur ; sinon, elle renvoie le résultat de la formule.', + abstract: 'Vous pouvez utiliser la fonction SIERREUR pour gérer les erreurs dans une formule. La fonction SIERREUR renvoie une valeur que vous spécifiez si une formule génère une erreur ; sinon, elle renvoie le résultat de la formule.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Représente l’argument vérifié.' }, + valueIfError: { name: 'value_if_error', detail: 'Obligatoire. Représente la valeur à renvoyer si une formule génère une erreur. Les types d’erreur suivants sont évalués : #N/A, #VALEUR!, #REF!, #DIV/0!, #NOMBRE!, #NOM?, ou #NUL!.' }, + }, + }, + IFNA: { + description: 'La fonction IFNA retourne la valeur que vous spécifiez si une formule retourne la valeur d’erreur #N/A ; sinon, elle retourne le résultat de la formule.', + abstract: 'La fonction IFNA retourne la valeur que vous spécifiez si une formule retourne la valeur d’erreur #N/A ; sinon, elle retourne le résultat de la formule.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'L’argument dans lequel la valeur d’erreur #N/A est contrôlée.' }, + valueIfNa: { name: 'value_if_na', detail: 'La valeur à retourner si la formule produit une valeur d’erreur #N/A.' }, + }, + }, + IFS: { + description: 'La fonction SI.CONDITIONS vérifie si une ou plusieurs conditions sont remplies et renvoie une valeur correspondant à la première condition vraie. L’utilisation de cette fonction revient à utiliser plusieurs instructions SI imbriquées, mais elle reste bien plus facile à lire quand plusieurs conditions se suivent.', + abstract: 'La fonction SI.CONDITIONS vérifie si une ou plusieurs conditions sont remplies et renvoie une valeur correspondant à la première condition vraie. L’utilisation de cette fonction revient à utiliser plusieurs instructions SI imbriquées, mais elle reste bien plus facile à lire quand plusieurs conditions se suivent.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Condition qui renvoie TRUE ou FALSE.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'Résultat à renvoyer si logical_test1 renvoie TRUE. Peut être vide.' }, + logicalTest2: { name: 'logical_test2', detail: 'Condition qui renvoie TRUE ou FALSE.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'Résultat à renvoyer si logical_testN renvoie TRUE. Chaque value_if_trueN correspond à une condition logical_testN. Peut être vide.' }, + }, + }, + LAMBDA: { + description: 'Vous pouvez créer une fonction pour une formule couramment utilisée. Cela vous permet de ne plus copier-coller cette formule, ce qui peut entraîner des erreurs. Vous pouvez également ajouter de façon efficace vos propres fonctions à la bibliothèque de fonctions Excel native. En outre, une fonction LAMBDA ne nécessite pas de VBA, de macros ou de JavaScript, de sorte que les non-programmeurs peuvent également tirer parti de son utilisation.', + abstract: 'Vous pouvez créer une fonction pour une formule couramment utilisée. Cela vous permet de ne plus copier-coller cette formule, ce qui peut entraîner des erreurs. Vous pouvez également ajouter de façon efficace vos propres fonctions à la bibliothèque de fonctions Excel native. En outre, une fonction LAMBDA ne nécessite pas de VBA, de macros ou de JavaScript, de sorte que les non-programmeurs peuvent également tirer parti de son utilisation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Une valeur que vous souhaitez transmettre à la fonction, comme une référence de cellule, une chaîne ou un nombre. Vous pouvez entrer jusqu’à 253 paramètres. Cet argument est facultatif.' }, + calculation: { name: 'calculation', detail: 'La formule que vous souhaitez exécuter et renvoyer comme résultat de la fonction. Cette formule doit être le dernier argument et doit renvoyer un résultat. Il s’agit d’un argument obligatoire.' }, + }, + }, + LET: { + description: 'La LET fonction affecte des noms aux résultats de calcul. Cela permet de stocker des calculs intermédiaires, des valeurs ou de définir des noms à l\'intérieur d\'une formule. Ces noms s’appliquent uniquement dans l’étendue de la LET fonction. À l’instar des variables en programmation, LET s’effectue par le biais de la syntaxe de formule native d’Excel.', + abstract: 'La LET fonction affecte des noms aux résultats de calcul. Cela permet de stocker des calculs intermédiaires, des valeurs ou de définir des noms à l\'intérieur d\'une formule. Ces noms s’appliquent uniquement dans l’étendue de la LET fonction. À l’instar des variables en programmation, LET s’effectue par le biais de la syntaxe de formule native d’Excel.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'Premier nom à attribuer. Il doit commencer par une lettre. Il ne peut pas être le résultat d’une formule ni entrer en conflit avec la syntaxe de plage.' }, + nameValue1: { name: 'name_value1', detail: 'Valeur attribuée à name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'L’un des éléments suivants :\n1. Un calcul utilisant tous les noms de la fonction LET. Il doit être le dernier argument de LET.\n2. Un deuxième nom auquel attribuer un deuxième name_value. Si un nom est spécifié, name_value2 et calculation_or_name3 deviennent obligatoires.' }, + nameValue2: { name: 'name_value2', detail: 'Valeur attribuée à calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'L’un des éléments suivants :\n1. Un calcul utilisant tous les noms de la fonction LET. Le dernier argument de LET doit être un calcul.\n2. Un troisième nom auquel attribuer un troisième name_value. Si un nom est spécifié, name_value3 et calculation_or_name4 deviennent obligatoires.' }, + }, + }, + MAKEARRAY: { + description: 'Retourne un tableau calculé d’une taille de ligne et de colonne spécifiée, en appliquant une fonction LAMBDA .', + abstract: 'Retourne un tableau calculé d’une taille de ligne et de colonne spécifiée, en appliquant une fonction LAMBDA .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'Nombre de lignes dans le tableau. Doit être supérieur à zéro.' }, + number2: { name: 'cols', detail: 'Nombre de colonnes dans le tableau. Doit être supérieur à zéro.' }, + value3: { name: 'lambda', detail: 'Lambda appelé pour créer le tableau. Le LAMBDA prend deux paramètres : Ligne Index de ligne du tableau. col Index de colonne du tableau.' }, + }, + }, + MAP: { + description: 'Retourne un tableau formé en mappant chaque valeur du ou des tableaux à une nouvelle valeur en appliquant une expression LAMBDA pour créer une valeur.', + abstract: 'Retourne un tableau formé en mappant chaque valeur du ou des tableaux à une nouvelle valeur en appliquant une expression LAMBDA pour créer une valeur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Tableau array1 à mapper.' }, + array2: { name: 'array2', detail: 'Tableau array2 à mapper.' }, + lambda: { name: 'lambda', detail: 'Expression LAMBDA qui doit être le dernier argument et comporter un paramètre pour chaque tableau transmis.' }, + }, + }, + NOT: { + description: 'Inverse la logique de son argument.', + abstract: 'Inverse la logique de son argument.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'Condition dont vous souhaitez inverser la logique et qui peut prendre la valeur TRUE ou FALSE.' }, + }, + }, + OR: { + description: 'La fonction OU renvoie VRAI si l’un de ses arguments a pour résultat VRAI, et renvoie FAUX si l’un de ses arguments a pour résultat FAUX.', + abstract: 'La fonction OU renvoie VRAI si l’un de ses arguments a pour résultat VRAI, et renvoie FAUX si l’un de ses arguments a pour résultat FAUX.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Première condition à tester, pouvant prendre la valeur TRUE ou FALSE.' }, + logical2: { name: 'logical2', detail: 'Conditions supplémentaires à tester, pouvant prendre la valeur TRUE ou FALSE, dans la limite de 255 conditions.' }, + }, + }, + REDUCE: { + description: 'Réduit un tableau à une valeur cumulée en appliquant un LAMBDA à chaque valeur et en retournant la valeur totale dans l’accumulateur.', + abstract: 'Réduit un tableau à une valeur cumulée en appliquant un LAMBDA à chaque valeur et en retournant la valeur totale dans l’accumulateur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Définit la valeur de départ de l’accumulateur.' }, + array: { name: 'array', detail: 'Tableau à réduire.' }, + lambda: { name: 'lambda', detail: 'Lambda appelé pour réduire le tableau. Le lambda prend trois paramètres : Accumulateur Valeur cumulée et retournée comme résultat final. Valeur Valeur actuelle du tableau. Corps Calcul appliqué à chaque élément du tableau.' }, + }, + }, + SCAN: { + description: 'Analyse un tableau en appliquant un LAMBDA à chaque valeur et retourne un tableau qui a chaque valeur intermédiaire.', + abstract: 'Analyse un tableau en appliquant un LAMBDA à chaque valeur et retourne un tableau qui a chaque valeur intermédiaire.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Définit la valeur de départ de l’accumulateur.' }, + array: { name: 'array', detail: 'Tableau à analyser.' }, + lambda: { name: 'lambda', detail: 'Lambda appelé pour réduire le tableau. Le lambda prend trois paramètres : Accumulateur Valeur cumulée et retournée comme résultat final. Valeur Valeur actuelle du tableau. Corps Calcul appliqué à chaque élément du tableau.' }, + }, + }, + SWITCH: { + description: 'Évalue une expression par rapport à une liste de valeurs et renvoie le résultat correspondant à la première valeur qui concorde. En l’absence de concordance, une valeur par défaut facultative peut être renvoyée.', + abstract: 'Évalue une expression par rapport à une liste de valeurs et renvoie le résultat correspondant à la première valeur qui concorde. En l’absence de concordance, une valeur par défaut facultative peut être renvoyée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'Expression est la valeur (un nombre, une date ou du texte, par exemple) comparée à value1…value126.' }, + value1: { name: 'value1', detail: 'ValueN est une valeur comparée à expression.' }, + result1: { name: 'result1', detail: 'ResultN est la valeur renvoyée lorsque l’argument valueN correspondant concorde avec expression. Un ResultN doit être fourni pour chaque argument valueN correspondant.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'Default est la valeur renvoyée lorsqu’aucune concordance n’est trouvée dans les expressions valueN. L’argument Default est identifié par l’absence d’expression resultN correspondante. Default doit être le dernier argument de la fonction.' }, + result2: { name: 'result2', detail: 'ResultN est la valeur renvoyée lorsque l’argument valueN correspondant concorde avec expression. Un ResultN doit être fourni pour chaque argument valueN correspondant.' }, + }, + }, + TRUE: { + description: 'Renvoie la valeur logique VRAI.', + abstract: 'Renvoie la valeur logique VRAI.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/true-function', + }, + ], + functionParameter: {}, + }, + XOR: { + description: 'Renvoie VRAI si un nombre impair de ses arguments est évalué à VRAI, et FAUX si un nombre pair de ses arguments est évalué à VRAI.', + abstract: 'Renvoie VRAI si un nombre impair de ses arguments est évalué à VRAI, et FAUX si un nombre pair de ses arguments est évalué à VRAI.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Première condition à tester, pouvant prendre la valeur TRUE ou FALSE.' }, + logical2: { name: 'logical2', detail: 'Conditions supplémentaires à tester, pouvant prendre la valeur TRUE ou FALSE, dans la limite de 255 conditions.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/id-ID.ts b/packages/sheets-formula/src/locale/function-list/logical/id-ID.ts new file mode 100644 index 0000000000..ac78cc6e95 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/id-ID.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'Fungsi AND mengembalikan TRUE jika semua argumennya mengevaluasi ke TRUE, dan mengembalikan FALSE jika satu atau beberapa argumen mengevaluasi ke FALSE.', + abstract: 'Fungsi AND mengembalikan TRUE jika semua argumennya mengevaluasi ke TRUE, dan mengembalikan FALSE jika satu atau beberapa argumen mengevaluasi ke FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Kondisi pertama yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE.' }, + logical2: { name: 'logical2', detail: 'Kondisi tambahan yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE, hingga maksimum 255 kondisi.' }, + }, + }, + BYCOL: { + description: 'Menerapkan LAMBDA ke setiap kolom dan mengembalikan larik hasil. Misalnya, jika array asli adalah 3 kolom kali 2 baris, array yang dikembalikan adalah 3 kolom kali 1 baris.', + abstract: 'Menerapkan LAMBDA ke setiap kolom dan mengembalikan larik hasil. Misalnya, jika array asli adalah 3 kolom kali 2 baris, array yang dikembalikan adalah 3 kolom kali 1 baris.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array yang akan dipisahkan berdasarkan kolom.' }, + lambda: { name: 'lambda', detail: 'LAMBDA yang menerima satu kolom sebagai parameter tunggal dan menghitung satu hasil. Parameternya adalah kolom dari array.' }, + }, + }, + BYROW: { + description: 'Menerapkan LAMBDA ke setiap baris dan mengembalikan larik hasil. Misalnya, jika array asli adalah 3 kolom kali 2 baris, array yang dikembalikan adalah 1 kolom kali 2 baris.', + abstract: 'Menerapkan LAMBDA ke setiap baris dan mengembalikan larik hasil. Misalnya, jika array asli adalah 3 kolom kali 2 baris, array yang dikembalikan adalah 1 kolom kali 2 baris.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array yang akan dipisahkan berdasarkan baris.' }, + lambda: { name: 'lambda', detail: 'LAMBDA yang menerima satu baris sebagai parameter tunggal dan menghitung satu hasil. Parameternya adalah baris dari array.' }, + }, + }, + FALSE: { + description: 'Mengembalikan nilai logis FALSE.', + abstract: 'Mengembalikan nilai logis FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Sebagai contoh, =IF(C2=”Ya”,1,2) artinya JIKA(C2 = Ya, maka berikan 1, jika tidak berikan 2).', + abstract: 'Sebagai contoh, =IF(C2=”Ya”,1,2) artinya JIKA(C2 = Ya, maka berikan 1, jika tidak berikan 2).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'Kondisi yang ingin Anda uji.' }, + valueIfTrue: { name: 'value_if_true', detail: 'Nilai yang ingin Anda kembalikan jika hasil logical_test adalah TRUE.' }, + valueIfFalse: { name: 'value_if_false', detail: 'Nilai yang ingin Anda kembalikan jika hasil dari logical_test adalah FALSE.' }, + }, + }, + IFERROR: { + description: 'Anda dapat menggunakan fungsi IFERROR untuk menangani kesalahan dalam rumus. IFERROR mengembalikan nilai yang Anda tentukan jika rumus mengevaluasi kesalahan; jika tidak, rumus akan mengembalikan hasil rumus.', + abstract: 'Anda dapat menggunakan fungsi IFERROR untuk menangani kesalahan dalam rumus. IFERROR mengembalikan nilai yang Anda tentukan jika rumus mengevaluasi kesalahan; jika tidak, rumus akan mengembalikan hasil rumus.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Argumen yang diperiksa apakah ada kesalahan.' }, + valueIfError: { name: 'value_if_error', detail: 'Diperlukan. Nilai yang dikembalikan jika rumus mengevaluasi ke kesalahan. Jenis-jenis kesalahan berikut ini dievaluasi : #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, atau #NULL!.' }, + }, + }, + IFNA: { + description: 'Fungsi IFNA mengembalikan nilai yang Anda tentukan jika rumus mengembalikan nilai kesalahan #N/A; jika tidak, rumus akan mengembalikan hasil rumus.', + abstract: 'Fungsi IFNA mengembalikan nilai yang Anda tentukan jika rumus mengembalikan nilai kesalahan #N/A; jika tidak, rumus akan mengembalikan hasil rumus.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argumen yang diperiksa ada tidaknya nilai kesalahan #N/A.' }, + valueIfNa: { name: 'value_if_na', detail: 'Nilai yang harus dikembalikan jika rumus mengevaluasi dengan nilai kesalahan #N/A.' }, + }, + }, + IFS: { + description: 'Fungsi IFS memeriksa apakah satu atau beberapa kondisi terpenuhi dan mengembalikan nilai yang sesuai dengan kondisi TRUE pertama. IFS dapat menggantikan beberapa pernyataan IF yang bertumpuk, dan jauh lebih mudah dibaca dengan beberapa kondisi.', + abstract: 'Fungsi IFS memeriksa apakah satu atau beberapa kondisi terpenuhi dan mengembalikan nilai yang sesuai dengan kondisi TRUE pertama. IFS dapat menggantikan beberapa pernyataan IF yang bertumpuk, dan jauh lebih mudah dibaca dengan beberapa kondisi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Kondisi yang mengevaluasi ke TRUE atau FALSE.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'Hasil yang dikembalikan jika logical_test1 mengevaluasi ke TRUE. Dapat kosong.' }, + logicalTest2: { name: 'logical_test2', detail: 'Kondisi yang mengevaluasi ke TRUE atau FALSE.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'Hasil yang dikembalikan jika logical_testN mengevaluasi ke TRUE. Setiap value_if_trueN sesuai dengan kondisi logical_testN dan dapat kosong.' }, + }, + }, + LAMBDA: { + description: 'Anda dapat membuat fungsi untuk rumus yang umum digunakan, menghilangkan kebutuhan untuk menyalin dan menempelkan rumus ini (yang mungkin rentan terhadap kesalahan), dan secara efektif menambahkan fungsi Anda sendiri ke pustaka fungsi Asli Excel. Selain itu, fungsi LAMBDA tidak memerlukan VBA, makro, atau JavaScript, sehingga non-programmer juga dapat memanfaatkan penggunaannya.', + abstract: 'Anda dapat membuat fungsi untuk rumus yang umum digunakan, menghilangkan kebutuhan untuk menyalin dan menempelkan rumus ini (yang mungkin rentan terhadap kesalahan), dan secara efektif menambahkan fungsi Anda sendiri ke pustaka fungsi Asli Excel. Selain itu, fungsi LAMBDA tidak memerlukan VBA, makro, atau JavaScript, sehingga non-programmer juga dapat memanfaatkan penggunaannya.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Nilai yang ingin Anda berikan ke fungsi, seperti referensi sel, string, atau angka. Anda dapat memasukkan hingga 253 parameter. Argumen ini bersifat opsional.' }, + calculation: { name: 'calculation', detail: 'Rumus yang ingin Anda jalankan dan kembalikan sebagai hasil dari fungsi. Argumen harus berupa argumen terakhir dan harus mengembalikan hasil. Argumen ini diperlukan.' }, + }, + }, + LET: { + description: 'Fungsi menetapkan LET nama untuk hasil penghitungan. Ini memungkinkan penyimpanan penghitungan, nilai, atau penentuan nama menengah di dalam rumus. Nama ini hanya berlaku dalam lingkup LET fungsi. Mirip dengan variabel dalam pemrograman, LET dicapai melalui sintaks rumus asli Excel.', + abstract: 'Fungsi menetapkan LET nama untuk hasil penghitungan. Ini memungkinkan penyimpanan penghitungan, nilai, atau penentuan nama menengah di dalam rumus. Nama ini hanya berlaku dalam lingkup LET fungsi. Mirip dengan variabel dalam pemrograman, LET dicapai melalui sintaks rumus asli Excel.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'Nama pertama yang akan ditetapkan. Harus dimulai dengan huruf dan tidak boleh merupakan hasil rumus atau berbenturan dengan sintaks rentang.' }, + nameValue1: { name: 'name_value1', detail: 'Nilai yang ditetapkan ke name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'Penghitungan yang menggunakan semua nama dalam LET dan harus menjadi argumen terakhir, atau nama kedua yang ditetapkan ke name_value2.' }, + nameValue2: { name: 'name_value2', detail: 'Nilai yang ditetapkan ke calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'Penghitungan yang menggunakan semua nama dalam LET dan harus menjadi argumen terakhir, atau nama ketiga yang ditetapkan ke name_value3.' }, + }, + }, + MAKEARRAY: { + description: 'Mengembalikan array terhitung dari ukuran baris dan kolom yang ditentukan, dengan menerapkan fungsi LAMBDA .', + abstract: 'Mengembalikan array terhitung dari ukuran baris dan kolom yang ditentukan, dengan menerapkan fungsi LAMBDA .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'Jumlah baris dalam array. Harus lebih besar dari nol.' }, + number2: { name: 'cols', detail: 'Jumlah kolom dalam array. Harus lebih besar dari nol.' }, + value3: { name: 'lambda', detail: 'LAMBDA yang dipanggil untuk membuat array. Menerima dua parameter: row, indeks baris array, dan col, indeks kolom array.' }, + }, + }, + MAP: { + description: 'Mengembalikan array yang dibentuk dengan memetakan setiap nilai dalam array ke nilai baru dengan menerapkan LAMBDA untuk membuat nilai baru.', + abstract: 'Mengembalikan array yang dibentuk dengan memetakan setiap nilai dalam array ke nilai baru dengan menerapkan LAMBDA untuk membuat nilai baru.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Array pertama yang akan dipetakan.' }, + array2: { name: 'array2', detail: 'Array kedua yang akan dipetakan.' }, + lambda: { name: 'lambda', detail: 'LAMBDA yang harus menjadi argumen terakhir dan memiliki parameter untuk setiap array yang diteruskan.' }, + }, + }, + NOT: { + description: 'Fungsi NOT membalikkan nilai argumennya.', + abstract: 'Fungsi NOT membalikkan nilai argumennya.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'Kondisi yang logikanya ingin dibalik, yang dapat mengevaluasi ke TRUE atau FALSE.' }, + }, + }, + OR: { + description: 'Fungsi OR mengembalikan TRUE jika semua argumennya mengevaluasi ke TRUE, dan mengembalikan FALSE jika semua argumennya mengevaluasi ke FALSE.', + abstract: 'Fungsi OR mengembalikan TRUE jika semua argumennya mengevaluasi ke TRUE, dan mengembalikan FALSE jika semua argumennya mengevaluasi ke FALSE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Kondisi pertama yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE.' }, + logical2: { name: 'logical2', detail: 'Kondisi tambahan yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE, hingga maksimum 255 kondisi.' }, + }, + }, + REDUCE: { + description: 'Mengurangi array ke nilai akumulasi dengan menerapkan LAMBDA ke setiap nilai dan mengembalikan nilai total dalam akumulator.', + abstract: 'Mengurangi array ke nilai akumulasi dengan menerapkan LAMBDA ke setiap nilai dan mengembalikan nilai total dalam akumulator.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Menetapkan nilai awal untuk akumulator.' }, + array: { name: 'array', detail: 'Array yang akan direduksi.' }, + lambda: { name: 'lambda', detail: 'LAMBDA yang dipanggil untuk mereduksi array. Menerima nilai akumulasi, nilai saat ini dari array, dan penghitungan yang diterapkan ke setiap elemen.' }, + }, + }, + SCAN: { + description: 'Memindai array dengan menerapkan LAMBDA ke setiap nilai dan mengembalikan array yang memiliki setiap nilai menengah.', + abstract: 'Memindai array dengan menerapkan LAMBDA ke setiap nilai dan mengembalikan array yang memiliki setiap nilai menengah.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Mengatur nilai awal untuk akumulator.' }, + array: { name: 'array', detail: 'Array yang akan dipindai.' }, + lambda: { name: 'lambda', detail: 'LAMBDA yang disebut untuk mengurangi array. LAMBDA mengambil tiga parameter: Akumulator Nilai dijumlahkan dan dikembalikan sebagai hasil akhir. Nilai Nilai saat ini dari array. Tubuh Penghitungan yang diterapkan ke setiap elemen dalam array.' }, + }, + }, + SWITCH: { + description: 'Fungsi SWITCH mengevaluasi satu nilai (disebut ekspresi ) terhadap daftar nilai, dan mengembalikan hasil yang terkait dengan nilai cocok pertama. Jika tidak terdapat kecocokan, nilai default opsional mungkin akan dikembalikan.', + abstract: 'Fungsi SWITCH mengevaluasi satu nilai (disebut ekspresi ) terhadap daftar nilai, dan mengembalikan hasil yang terkait dengan nilai cocok pertama. Jika tidak terdapat kecocokan, nilai default opsional mungkin akan dikembalikan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'Nilai, misalnya angka, tanggal, atau teks, yang akan dibandingkan dengan value1 hingga value126.' }, + value1: { name: 'value1', detail: 'Nilai yang akan dibandingkan dengan expression.' }, + result1: { name: 'result1', detail: 'Nilai yang dikembalikan saat argumen valueN yang sesuai cocok dengan expression. Harus disediakan untuk setiap valueN.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'Nilai yang dikembalikan bila tidak ada kecocokan pada ekspresi valueN. Harus menjadi argumen terakhir fungsi.' }, + result2: { name: 'result2', detail: 'Nilai yang dikembalikan saat argumen valueN yang sesuai cocok dengan expression. Harus disediakan untuk setiap valueN.' }, + }, + }, + TRUE: { + description: 'Mengembalikan nilai logika TRUE. Anda bisa menggunakan fungsi ini saat Anda ingin mengembalikan nilai TRUE berdasarkan kondisi. Misalnya:', + abstract: 'Mengembalikan nilai logika TRUE. Anda bisa menggunakan fungsi ini saat Anda ingin mengembalikan nilai TRUE berdasarkan kondisi. Misalnya:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'Fungsi XOR mengembalikan logika Exclusive Or dari semua argumen.', + abstract: 'Fungsi XOR mengembalikan logika Exclusive Or dari semua argumen.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Kondisi pertama yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE.' }, + logical2: { name: 'logical2', detail: 'Kondisi tambahan yang ingin diuji, yang dapat mengevaluasi ke TRUE atau FALSE, hingga maksimum 255 kondisi.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/it-IT.ts b/packages/sheets-formula/src/locale/function-list/logical/it-IT.ts new file mode 100644 index 0000000000..d27beac1a2 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/it-IT.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'La funzione E restituisce VERO se tutti gli argomenti restituiscono VERO e restituisce FALSO se uno o più argomenti restituiscono FALSO.', + abstract: 'La funzione E restituisce VERO se tutti gli argomenti restituiscono VERO e restituisce FALSO se uno o più argomenti restituiscono FALSO.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Prima condizione da verificare, che può restituire VERO o FALSO.' }, + logical2: { name: 'logical2', detail: 'Condizioni aggiuntive da verificare, che possono restituire VERO o FALSO, fino a un massimo di 255.' }, + }, + }, + BYCOL: { + description: 'Applica una funzione LAMBDA a ogni colonna e restituisce una matrice dei risultati. Ad esempio, se la matrice originale è di 3 colonne per 2 righe, la matrice restituita sarà di 3 colonne per 1 riga.', + abstract: 'Applica una funzione LAMBDA a ogni colonna e restituisce una matrice dei risultati. Ad esempio, se la matrice originale è di 3 colonne per 2 righe, la matrice restituita sarà di 3 colonne per 1 riga.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da separare per colonna.' }, + lambda: { name: 'lambda', detail: 'Funzione LAMBDA che accetta una colonna come unico parametro e calcola un risultato. Il parametro è una colonna della matrice.' }, + }, + }, + BYROW: { + description: 'Applica una funzione LAMBDA a ogni riga e restituisce una matrice dei risultati. Ad esempio, se la matrice originale è di 3 colonne per 2 righe, la matrice restituita sarà di 1 colonna per 2 righe.', + abstract: 'Applica una funzione LAMBDA a ogni riga e restituisce una matrice dei risultati. Ad esempio, se la matrice originale è di 3 colonne per 2 righe, la matrice restituita sarà di 1 colonna per 2 righe.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da separare per riga.' }, + lambda: { name: 'lambda', detail: 'Funzione LAMBDA che accetta una riga come unico parametro e calcola un risultato. Il parametro è una riga della matrice.' }, + }, + }, + FALSE: { + description: 'Restituisce il valore logico FALSO.', + abstract: 'Restituisce il valore logico FALSO.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Ad esempio, =SE(C2="Sì";1;2) significa: SE(C2 = Sì, allora restituisci 1, altrimenti restituisci 2).', + abstract: 'Ad esempio, =SE(C2="Sì";1;2) significa: SE(C2 = Sì, allora restituisci 1, altrimenti restituisci 2).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'Condizione da testare.' }, + valueIfTrue: { name: 'value_if_true', detail: 'Valore che si desidera venga restituito se il risultato di logical_test è VERO.' }, + valueIfFalse: { name: 'value_if_false', detail: 'Valore che si desidera venga restituito se il risultato di logical_test è FALSO.' }, + }, + }, + IFERROR: { + description: 'È possibile usare la funzione SE.ERRORE per gestire gli errori in una formula. SE.ERRORE restituisce un valore specificato dall\'utente se la formula restituisce un errore. In caso contrario, restituisce il risultato della formula.', + abstract: 'È possibile usare la funzione SE.ERRORE per gestire gli errori in una formula. SE.ERRORE restituisce un valore specificato dall\'utente se la formula restituisce un errore. In caso contrario, restituisce il risultato della formula.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Argomento in cui viene verificata la presenza di un errore.' }, + valueIfError: { name: 'value_if_error', detail: 'Obbligatorio. Valore da restituire se la formula fornisce come risultato un errore. Vengono valutati i tipi di errore seguenti: #N/D, #VALORE!, #RIF!, #DIV/0!, #NUM!, #NOME? o #NULLO!.' }, + }, + }, + IFNA: { + description: 'La funzione SE.NON.DISP restituisce il valore specificato se una formula restituisce il valore di errore #N/D; in caso contrario, restituisce il risultato della formula.', + abstract: 'La funzione SE.NON.DISP restituisce il valore specificato se una formula restituisce il valore di errore #N/D; in caso contrario, restituisce il risultato della formula.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argomento in cui viene verificata la presenza del valore di errore #N/D.' }, + valueIfNa: { name: 'value_if_na', detail: 'Valore da restituire se la formula fornisce come risultato un valore di errore #N/D.' }, + }, + }, + IFS: { + description: 'La funzione PIÙ.SE controlla se vengono soddisfatte una o più condizioni e restituisce un valore che corrisponde alla prima condizione VERA. PIÙ.SE può essere usata al posto di più istruzioni SE annidate ed è molto più facile da leggere in presenza di più condizioni.', + abstract: 'La funzione PIÙ.SE controlla se vengono soddisfatte una o più condizioni e restituisce un valore che corrisponde alla prima condizione VERA. PIÙ.SE può essere usata al posto di più istruzioni SE annidate ed è molto più facile da leggere in presenza di più condizioni.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Condizione che restituisce VERO o FALSO.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'Risultato da restituire se logical_test1 restituisce VERO. Può essere vuoto.' }, + logicalTest2: { name: 'logical_test2', detail: 'Condizione che restituisce VERO o FALSO.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'Risultato da restituire se logical_testN restituisce VERO. Ogni value_if_trueN corrisponde a una condizione logical_testN e può essere vuoto.' }, + }, + }, + LAMBDA: { + description: 'È possibile creare una funzione per una formula di uso comune, eliminare la necessità di copiare e incollare la formula (che può essere soggetta ad errori) e aggiungere le proprie funzioni alla libreria di funzioni nativa di Excel. Inoltre, una funzione LAMBDA non richiede VBA, macro o JavaScript, quindi anche i non programmatori possono trarre vantaggio dal suo uso.', + abstract: 'È possibile creare una funzione per una formula di uso comune, eliminare la necessità di copiare e incollare la formula (che può essere soggetta ad errori) e aggiungere le proprie funzioni alla libreria di funzioni nativa di Excel. Inoltre, una funzione LAMBDA non richiede VBA, macro o JavaScript, quindi anche i non programmatori possono trarre vantaggio dal suo uso.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Un valore da passare alla funzione, ad esempio un riferimento di cella, una stringa o un numero. È possibile immettere fino a 253 parametri. Questo argomento è facoltativo.' }, + calculation: { name: 'calculation', detail: 'La formula da eseguire e restituire come risultato della funzione. Deve essere l\'ultimo argomento e deve restituire un risultato. Questo argomento è obbligatorio.' }, + }, + }, + LET: { + description: 'La LET funzione assegna nomi ai risultati del calcolo. Questo consente di archiviare calcoli intermedi e valori o di definire i nomi all\'interno di una formula. Questi nomi si applicano solo all\'interno dell\'ambito della LET funzione. Analogamente alle variabili nella programmazione, LET viene eseguita tramite la sintassi nativa della formula di Excel.', + abstract: 'La LET funzione assegna nomi ai risultati del calcolo. Questo consente di archiviare calcoli intermedi e valori o di definire i nomi all\'interno di una formula. Questi nomi si applicano solo all\'interno dell\'ambito della LET funzione. Analogamente alle variabili nella programmazione, LET viene eseguita tramite la sintassi nativa della formula di Excel.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'Primo nome da assegnare. Deve iniziare con una lettera e non può essere il risultato di una formula né entrare in conflitto con la sintassi degli intervalli.' }, + nameValue1: { name: 'name_value1', detail: 'Valore assegnato a name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'Calcolo che usa tutti i nomi della funzione LET e deve essere l\'ultimo argomento, oppure un secondo nome da assegnare a name_value2.' }, + nameValue2: { name: 'name_value2', detail: 'Valore assegnato a calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'Calcolo che usa tutti i nomi della funzione LET e deve essere l\'ultimo argomento, oppure un terzo nome da assegnare a name_value3.' }, + }, + }, + MAKEARRAY: { + description: 'Restituisce una matrice calcolata di una dimensione di riga e colonna specificata applicando una funzione LAMBDA .', + abstract: 'Restituisce una matrice calcolata di una dimensione di riga e colonna specificata applicando una funzione LAMBDA .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'Numero di righe della matrice. Deve essere maggiore di zero.' }, + number2: { name: 'cols', detail: 'Numero di colonne della matrice. Deve essere maggiore di zero.' }, + value3: { name: 'lambda', detail: 'Funzione LAMBDA chiamata per creare la matrice. Accetta due parametri: row, indice della riga, e col, indice della colonna.' }, + }, + }, + MAP: { + description: 'Restituisce una matrice costituita dal mapping di ogni valore delle matrici a un nuovo valore applicando un\'espressione LAMBDA per creare un nuovo valore.', + abstract: 'Restituisce una matrice costituita dal mapping di ogni valore delle matrici a un nuovo valore applicando un\'espressione LAMBDA per creare un nuovo valore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Prima matrice da mappare.' }, + array2: { name: 'array2', detail: 'Seconda matrice da mappare.' }, + lambda: { name: 'lambda', detail: 'Funzione LAMBDA che deve essere l\'ultimo argomento e avere un parametro per ogni matrice fornita.' }, + }, + }, + NOT: { + description: 'La funzione NON inverte il valore dell\'argomento.', + abstract: 'La funzione NON inverte il valore dell\'argomento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'Condizione di cui si desidera invertire la logica, che può restituire VERO o FALSO.' }, + }, + }, + OR: { + description: 'La funzione O restituisce VERO se uno degli argomenti restituisce VERO e restituisce FALSO se tutti gli argomenti restituiscono FALSO.', + abstract: 'La funzione O restituisce VERO se uno degli argomenti restituisce VERO e restituisce FALSO se tutti gli argomenti restituiscono FALSO.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Prima condizione da verificare, che può restituire VERO o FALSO.' }, + logical2: { name: 'logical2', detail: 'Condizioni aggiuntive da verificare, che possono restituire VERO o FALSO, fino a un massimo di 255.' }, + }, + }, + REDUCE: { + description: 'Riduce una matrice a un valore accumulato applicando un\'espressione LAMBDA a ogni valore e restituendo il valore totale nell\'accumulatore.', + abstract: 'Riduce una matrice a un valore accumulato applicando un\'espressione LAMBDA a ogni valore e restituendo il valore totale nell\'accumulatore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Imposta il valore iniziale dell\'accumulatore.' }, + array: { name: 'array', detail: 'Matrice da ridurre.' }, + lambda: { name: 'lambda', detail: 'Funzione LAMBDA chiamata per ridurre la matrice. Accetta il valore accumulato, il valore corrente della matrice e il calcolo applicato a ogni elemento.' }, + }, + }, + SCAN: { + description: 'Analizza una matrice applicando un\'espressione LAMBDA a ogni valore e restituisce una matrice con ogni valore intermedio.', + abstract: 'Analizza una matrice applicando un\'espressione LAMBDA a ogni valore e restituisce una matrice con ogni valore intermedio.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Imposta il valore iniziale dell\'accumulatore.' }, + array: { name: 'array', detail: 'Matrice da analizzare.' }, + lambda: { name: 'lambda', detail: 'Espressione LAMBDA chiamata per ridurre la matrice. La funzione LAMBDA accetta tre parametri: Accumulatore Il valore è stato sommato e restituito come risultato finale. Valore Valore corrente della matrice. Corpo Calcolo applicato a ogni elemento della matrice.' }, + }, + }, + SWITCH: { + description: 'La funzione SWITCH valuta un valore, chiamato espressione , rispetto a un elenco di valori e restituisce il risultato che equivale al primo valore corrispondente. Se non ci sono valori corrispondenti, verrà restituito un valore predefinito facoltativo.', + abstract: 'La funzione SWITCH valuta un valore, chiamato espressione , rispetto a un elenco di valori e restituisce il risultato che equivale al primo valore corrispondente. Se non ci sono valori corrispondenti, verrà restituito un valore predefinito facoltativo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'Valore, ad esempio numero, data o testo, da confrontare con value1 fino a value126.' }, + value1: { name: 'value1', detail: 'Valore da confrontare con expression.' }, + result1: { name: 'result1', detail: 'Valore da restituire quando l\'argomento valueN corrispondente coincide con expression. Deve essere fornito per ogni valueN.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'Valore da restituire se non viene trovata alcuna corrispondenza nelle espressioni valueN. Deve essere l\'ultimo argomento della funzione.' }, + result2: { name: 'result2', detail: 'Valore da restituire quando l\'argomento valueN corrispondente coincide con expression. Deve essere fornito per ogni valueN.' }, + }, + }, + TRUE: { + description: 'Restituisce il valore logico VERO. È possibile usare questa funzione quando si vuole restituire il valore VERO in base a una condizione. Ad esempio:', + abstract: 'Restituisce il valore logico VERO. È possibile usare questa funzione quando si vuole restituire il valore VERO in base a una condizione. Ad esempio:', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'La funzione XOR restituisce un or esclusivo logico di tutti gli argomenti.', + abstract: 'La funzione XOR restituisce un or esclusivo logico di tutti gli argomenti.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Prima condizione da verificare, che può restituire VERO o FALSO.' }, + logical2: { name: 'logical2', detail: 'Condizioni aggiuntive da verificare, che possono restituire VERO o FALSO, fino a un massimo di 255.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/logical/ja-JP.ts index d7841e6ec5..9b4cdabfe6 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/and-%E9%96%A2%E6%95%B0-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bycol-%E9%96%A2%E6%95%B0-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/byrow-%E9%96%A2%E6%95%B0-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/false-%E9%96%A2%E6%95%B0-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/ja-jp/excel/functions/false-function', }, ], functionParameter: {}, @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/if-%E9%96%A2%E6%95%B0-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/if-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/iferror-%E9%96%A2%E6%95%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/ja-jp/excel/functions/iferror-function', }, ], functionParameter: { @@ -105,7 +105,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ifna-%E9%96%A2%E6%95%B0-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ifna-function', }, ], functionParameter: { @@ -119,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ifs-%E9%96%A2%E6%95%B0-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ifs-function', }, ], functionParameter: { @@ -135,7 +135,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lambda-%E9%96%A2%E6%95%B0-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lambda-function', }, ], functionParameter: { @@ -155,7 +155,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/let-%E9%96%A2%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/ja-jp/excel/functions/let-function', }, ], functionParameter: { @@ -172,7 +172,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/makearray-%E9%96%A2%E6%95%B0-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/ja-jp/excel/functions/makearray-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/map-%E9%96%A2%E6%95%B0-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/ja-jp/excel/functions/map-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/not-%E9%96%A2%E6%95%B0-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/ja-jp/excel/functions/not-function', }, ], functionParameter: { @@ -218,7 +218,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/or-%E9%96%A2%E6%95%B0-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/or-function', }, ], functionParameter: { @@ -232,7 +232,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/reduce-%E9%96%A2%E6%95%B0-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/reduce-function', }, ], functionParameter: { @@ -247,7 +247,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/scan-%E9%96%A2%E6%95%B0-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/ja-jp/excel/functions/scan-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/switch-%E9%96%A2%E6%95%B0-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/switch-function', }, ], functionParameter: { @@ -279,7 +279,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/true-%E9%96%A2%E6%95%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/true-function', }, ], functionParameter: {}, @@ -290,7 +290,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/xor-%E9%96%A2%E6%95%B0-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/ja-jp/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/logical/ko-KR.ts index f7a82e26d9..08228d0356 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/and-함수-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/bycol-함수-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/byrow-함수-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/false-함수-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/ko-kr/excel/functions/false-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/if-함수-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/if-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/iferror-함수-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/ko-kr/excel/functions/iferror-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ifna-함수-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ifna-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ifs-함수-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ifs-function', }, ], functionParameter: { @@ -136,7 +136,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lambda-함수-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lambda-function', }, ], functionParameter: { @@ -145,20 +145,20 @@ const locale: typeof enUS = { }, }, LET: { - description: '계산 결과에 이름을 할당합니다', - abstract: '계산 결과에 이름을 할당합니다', + description: '함수는 LET 계산 결과에 이름을 할당합니다. 이를 통해 수식 안에 중간 계산, 값을 저장하거나 이름을 정의할 수 있습니다. 이러한 이름은 함수 범위 내에서만 적용됩니다 LET . 프로그래밍 LET 의 변수와 마찬가지로 은 Excel의 네이티브 수식 구문을 통해 수행됩니다.', + abstract: '함수는 LET 계산 결과에 이름을 할당합니다. 이를 통해 수식 안에 중간 계산, 값을 저장하거나 이름을 정의할 수 있습니다. 이러한 이름은 함수 범위 내에서만 적용됩니다 LET . 프로그래밍 LET 의 변수와 마찬가지로 은 Excel의 네이티브 수식 구문을 통해 수행됩니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/let-함수-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/ko-kr/excel/functions/let-function', }, ], functionParameter: { name1: { name: 'name1', detail: '첫 번째 이름입니다. 유효한 Excel 이름으로 시작해야 합니다.' }, nameValue1: { name: 'name_value1', detail: '이름 1에 할당된 값입니다.' }, - calculationOrName2: { name: 'calculation_or_name2', detail: 'One of the following:\n1.A calculation that uses all names within the LET function. This must be the last argument in the LET function.\n2.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:\n1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation.\n2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: '다음 중 하나입니다. LET 함수의 모든 이름을 사용하는 계산이며 LET 함수의 마지막 인수여야 합니다. 또는 두 번째 name_value에 할당할 두 번째 이름이며, 이름을 지정하면 name_value2와 calculation_or_name3가 필요합니다.' }, + nameValue2: { name: 'name_value2', detail: 'calculation_or_name2에 할당된 값입니다.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: '다음 중 하나입니다. LET 함수의 모든 이름을 사용하는 계산이며 LET 함수의 마지막 인수는 계산이어야 합니다. 또는 세 번째 name_value에 할당할 세 번째 이름이며, 이름을 지정하면 name_value3와 calculation_or_name4가 필요합니다.' }, }, }, MAKEARRAY: { @@ -167,12 +167,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/makearray-함수-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/ko-kr/excel/functions/makearray-function', }, ], 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.' }, + number1: { name: 'rows', detail: '배열의 행 수입니다. 0보다 커야 합니다.' }, + number2: { name: 'cols', detail: '배열의 열 수입니다. 0보다 커야 합니다.' }, 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).', @@ -185,12 +185,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/map-함수-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/ko-kr/excel/functions/map-function', }, ], functionParameter: { array1: { name: 'array1', detail: '매핑할 배열입니다.' }, - array2: { name: 'array2', detail: 'An array2 to be mapped.' }, + array2: { name: 'array2', detail: '매핑할 두 번째 배열입니다.' }, lambda: { name: 'lambda', detail: '각 배열에서 하나의 값을 받아들이고 하나의 결과를 반환하는 LAMBDA입니다.' }, }, }, @@ -200,7 +200,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/not-함수-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/ko-kr/excel/functions/not-function', }, ], functionParameter: { @@ -213,7 +213,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/or-함수-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/or-function', }, ], functionParameter: { @@ -227,7 +227,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/reduce-함수-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/reduce-function', }, ], functionParameter: { @@ -242,7 +242,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/scan-함수-d58dfd11-9969-4439-8730-1f22e81cc0f5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/scan-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/switch-함수-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/switch-function', }, ], functionParameter: { @@ -274,7 +274,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/true-함수-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/true-function', }, ], functionParameter: { @@ -286,7 +286,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/xor-함수-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/ko-kr/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/logical/pl-PL.ts new file mode 100644 index 0000000000..c5e7ca2ace --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/pl-PL.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'Funkcja ORAZ zwraca wartość PRAWDA, jeśli wszystkie jej argumenty mają wartość PRAWDA, lub FAŁSZ, jeśli choć jeden z jej argumentów ma wartość FAŁSZ.', + abstract: 'Funkcja ORAZ zwraca wartość PRAWDA, jeśli wszystkie jej argumenty mają wartość PRAWDA, lub FAŁSZ, jeśli choć jeden z jej argumentów ma wartość FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Pierwszy warunek, który chcesz przetestować i który może przyjąć wartość TRUE lub FALSE.' }, + logical2: { name: 'logical2', detail: 'Dodatkowe warunki, które chcesz przetestować i które mogą przyjąć wartość TRUE lub FALSE, maksymalnie 255 warunków.' }, + }, + }, + BYCOL: { + description: 'Stosuje funkcję LAMBDA do każdej kolumny i zwraca tablicę wyników. Jeśli na przykład oryginalna tablica składa się z 3 kolumn na 2 wiersze, zwrócona tablica będzie składać się z 3 kolumn na 1 wiersz.', + abstract: 'Stosuje funkcję LAMBDA do każdej kolumny i zwraca tablicę wyników. Jeśli na przykład oryginalna tablica składa się z 3 kolumn na 2 wiersze, zwrócona tablica będzie składać się z 3 kolumn na 1 wiersz.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica, która ma zostać podzielona według kolumn.' }, + lambda: { name: 'lambda', detail: 'Funkcja LAMBDA przyjmująca kolumnę jako pojedynczy parametr i obliczająca jeden wynik. LAMBDA przyjmuje jeden parametr: kolumnę z array.' }, + }, + }, + BYROW: { + description: 'Stosuje funkcję LAMBDA do każdego wiersza i zwraca tablicę wyników. Jeśli na przykład oryginalna tablica składa się z 3 kolumn na 2 wiersze, zwrócona tablica to 1 kolumna na 2 wiersze.', + abstract: 'Stosuje funkcję LAMBDA do każdego wiersza i zwraca tablicę wyników. Jeśli na przykład oryginalna tablica składa się z 3 kolumn na 2 wiersze, zwrócona tablica to 1 kolumna na 2 wiersze.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica, która ma zostać podzielona według wierszy.' }, + lambda: { name: 'lambda', detail: 'Funkcja LAMBDA przyjmująca wiersz jako pojedynczy parametr i obliczająca jeden wynik. LAMBDA przyjmuje jeden parametr: wiersz z array.' }, + }, + }, + FALSE: { + description: 'Zwraca wartość logiczną FAŁSZ.', + abstract: 'Zwraca wartość logiczną FAŁSZ.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Na przykład działanie formuły =JEŻELI(C2="Tak";1;2) jest następujące: JEŻELI(C2 = Tak, to zwróć wartość 1, a w przeciwnym razie zwróć wartość 2).', + abstract: 'Na przykład działanie formuły =JEŻELI(C2="Tak";1;2) jest następujące: JEŻELI(C2 = Tak, to zwróć wartość 1, a w przeciwnym razie zwróć wartość 2).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'Warunek, który ma zostać sprawdzony.' }, + valueIfTrue: { name: 'value_if_true', detail: 'Wartość, która ma zostać zwrócona, jeśli wynik logical_test ma wartość PRAWDA.' }, + valueIfFalse: { name: 'value_if_false', detail: 'Wartość, która ma zostać zwrócona, jeśli wynik logical_test ma wartość FAŁSZ.' }, + }, + }, + IFERROR: { + description: 'Za pomocą funkcji JEŻELI.BŁĄD można obsługiwać błędy w formule. Funkcja JEŻELI.BŁĄD zwraca określoną wartość, jeśli wynikiem formuły jest błąd. W przeciwnym razie zwraca wynik formuły.', + abstract: 'Za pomocą funkcji JEŻELI.BŁĄD można obsługiwać błędy w formule. Funkcja JEŻELI.BŁĄD zwraca określoną wartość, jeśli wynikiem formuły jest błąd. W przeciwnym razie zwraca wynik formuły.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Argument sprawdzany w poszukiwaniu błędu.' }, + valueIfError: { name: 'value_if_error', detail: 'Wymagane. Wartość, która ma zostać zwrócona, jeśli wynikiem formuły jest błąd. Obliczane są następujące typy błędów: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, lub #NULL!.' }, + }, + }, + IFNA: { + description: 'Funkcja JEŻELI.ND zwraca określoną wartość, jeśli formuła zwraca wartość błędu #N/D! w przeciwnym razie zwraca wynik formuły.', + abstract: 'Funkcja JEŻELI.ND zwraca określoną wartość, jeśli formuła zwraca wartość błędu #N/D! w przeciwnym razie zwraca wynik formuły.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Argument sprawdzany pod kątem wartości błędu #N/D.' }, + valueIfNa: { name: 'value_if_na', detail: 'Wartość zwracana, jeśli wynikiem formuły jest wartość błędu #N/D.' }, + }, + }, + IFS: { + description: 'Funkcja WARUNKI sprawdza, czy spełniony jest co najmniej jeden warunek, i zwraca wartość odpowiadającą pierwszemu warunkowi TYPU PRAWDA. Funkcja WARUNKI może zastąpić wiele zagnieżdżonych instrukcji JEŻELI i jest znacznie łatwiejsza do odczytu w przypadku wielu warunków.', + abstract: 'Funkcja WARUNKI sprawdza, czy spełniony jest co najmniej jeden warunek, i zwraca wartość odpowiadającą pierwszemu warunkowi TYPU PRAWDA. Funkcja WARUNKI może zastąpić wiele zagnieżdżonych instrukcji JEŻELI i jest znacznie łatwiejsza do odczytu w przypadku wielu warunków.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Warunek, który zwraca TRUE lub FALSE.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'Wynik zwracany, jeśli logical_test1 zwraca TRUE. Może być pusty.' }, + logicalTest2: { name: 'logical_test2', detail: 'Warunek, który zwraca TRUE lub FALSE.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'Wynik zwracany, jeśli logical_testN zwraca TRUE. Każdy value_if_trueN odpowiada warunkowi logical_testN. Może być pusty.' }, + }, + }, + LAMBDA: { + description: 'Możesz utworzyć funkcję dla często używanej formuły, wyeliminować konieczność jej kopiowania i wklejania (co zwiększa ryzyko błędu), a także dodawać własne funkcje do biblioteki natywnych funkcji programu Excel. Ponadto funkcja LAMBDA nie wymaga języka VBA, makr ani języka JavaScript, więc mogą również korzystać z niej niebędący programistami.', + abstract: 'Możesz utworzyć funkcję dla często używanej formuły, wyeliminować konieczność jej kopiowania i wklejania (co zwiększa ryzyko błędu), a także dodawać własne funkcje do biblioteki natywnych funkcji programu Excel. Ponadto funkcja LAMBDA nie wymaga języka VBA, makr ani języka JavaScript, więc mogą również korzystać z niej niebędący programistami.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Wartość, która ma zostać przekazana do funkcji, na przykład odwołanie do komórki, ciąg lub liczba. Możesz wprowadzić maksymalnie 253 parametry. Ten argument jest opcjonalny.' }, + calculation: { name: 'calculation', detail: 'Formuła, która ma zostać wykonywana i zwrócona jako wynik funkcji. Musi to być ostatni argument i musi zwracać wynik. Jest to argument wymagany.' }, + }, + }, + LET: { + description: 'Funkcja LET przypisuje nazwy do wyników obliczeń. Dzięki temu w formule przechowywane są pośrednie obliczenia, wartości i nazwy definiujące. Te nazwy mają zastosowanie tylko w zakresie LET funkcji. Podobnie jak zmienne w programowaniu są LET realizowane za pomocą natywnej składni formuły programu Excel.', + abstract: 'Funkcja LET przypisuje nazwy do wyników obliczeń. Dzięki temu w formule przechowywane są pośrednie obliczenia, wartości i nazwy definiujące. Te nazwy mają zastosowanie tylko w zakresie LET funkcji. Podobnie jak zmienne w programowaniu są LET realizowane za pomocą natywnej składni formuły programu Excel.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'Pierwsza nazwa do przypisania. Musi zaczynać się od litery. Nie może być wynikiem formuły ani kolidować ze składnią zakresu.' }, + nameValue1: { name: 'name_value1', detail: 'Wartość przypisana do name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'Jedno z następujących:\n1. Obliczenie używające wszystkich nazw w funkcji LET. Musi być ostatnim argumentem funkcji LET.\n2. Druga nazwa, do której przypisuje się drugą wartość name_value. Jeśli zostanie podana nazwa, argumenty name_value2 i calculation_or_name3 stają się wymagane.' }, + nameValue2: { name: 'name_value2', detail: 'Wartość przypisana do calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'Jedno z następujących:\n1. Obliczenie używające wszystkich nazw w funkcji LET. Ostatni argument funkcji LET musi być obliczeniem.\n2. Trzecia nazwa, do której przypisuje się trzecią wartość name_value. Jeśli zostanie podana nazwa, argumenty name_value3 i calculation_or_name4 stają się wymagane.' }, + }, + }, + MAKEARRAY: { + description: 'Zwraca obliczoną tablicę o określonym rozmiarze wiersza i kolumny, stosując funkcję LAMBDA .', + abstract: 'Zwraca obliczoną tablicę o określonym rozmiarze wiersza i kolumny, stosując funkcję LAMBDA .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'Liczba wierszy w tablicy. Musi być większa od zera.' }, + number2: { name: 'cols', detail: 'Liczba kolumn w tablicy. Musi być większa od zera.' }, + value3: { name: 'lambda', detail: 'Funkcja LAMBDA wywoływana w celu utworzenia tablicy. LAMBDA przyjmuje dwa parametry: row (indeks wiersza tablicy) oraz col (indeks kolumny tablicy).' }, + }, + }, + MAP: { + description: 'Zwraca tablicę utworzoną przez mapowanie każdej wartości w tablicach na nową wartość przez zastosowanie funkcji LAMBDA w celu utworzenia nowej wartości.', + abstract: 'Zwraca tablicę utworzoną przez mapowanie każdej wartości w tablicach na nową wartość przez zastosowanie funkcji LAMBDA w celu utworzenia nowej wartości.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Tablica array1 do mapowania.' }, + array2: { name: 'array2', detail: 'Tablica array2 do mapowania.' }, + lambda: { name: 'lambda', detail: 'Funkcja LAMBDA, która musi być ostatnim argumentem i musi mieć parametr dla każdej przekazanej tablicy.' }, + }, + }, + NOT: { + description: 'Funkcja NIE odwraca wartość swojego argumentu.', + abstract: 'Funkcja NIE odwraca wartość swojego argumentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'Warunek, którego logikę chcesz odwrócić i który może przyjąć wartość TRUE lub FALSE.' }, + }, + }, + OR: { + description: 'Funkcja LUB zwraca wartość PRAWDA, jeśli dowolny z jej argumentów ma wartość PRAWDA, lub FAŁSZ, jeśli wszystkie z jej argumentów mają wartość FAŁSZ.', + abstract: 'Funkcja LUB zwraca wartość PRAWDA, jeśli dowolny z jej argumentów ma wartość PRAWDA, lub FAŁSZ, jeśli wszystkie z jej argumentów mają wartość FAŁSZ.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Pierwszy warunek, który chcesz przetestować i który może przyjąć wartość TRUE lub FALSE.' }, + logical2: { name: 'logical2', detail: 'Dodatkowe warunki, które chcesz przetestować i które mogą przyjąć wartość TRUE lub FALSE, maksymalnie 255 warunków.' }, + }, + }, + REDUCE: { + description: 'Zmniejsza tablicę do wartości skumulowanej, stosując funkcję LAMBDA do każdej wartości i zwracając całkowitą wartość w akumulatorze.', + abstract: 'Zmniejsza tablicę do wartości skumulowanej, stosując funkcję LAMBDA do każdej wartości i zwracając całkowitą wartość w akumulatorze.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Ustawia wartość początkową akumulatora.' }, + array: { name: 'array', detail: 'Tablica, która ma zostać zmniejszona.' }, + lambda: { name: 'lambda', detail: 'Funkcja LAMBDA wywoływana w celu zmniejszenia tablicy. Funkcja LAMBDA przyjmuje trzy parametry: Akumulator Wartość zsumowana i zwrócona jako wynik końcowy. Wartość Bieżąca wartość z tablicy. Ciała Obliczenie zastosowane do każdego elementu w tablicy.' }, + }, + }, + SCAN: { + description: 'Skanuje tablicę, stosując funkcję LAMBDA do każdej wartości i zwraca tablicę, która ma każdą wartość pośrednią.', + abstract: 'Skanuje tablicę, stosując funkcję LAMBDA do każdej wartości i zwraca tablicę, która ma każdą wartość pośrednią.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Ustawia wartość początkową akumulatora.' }, + array: { name: 'array', detail: 'Tablica do skanowania.' }, + lambda: { name: 'lambda', detail: 'Funkcja LAMBDA wywoływana do skanowania tablicy. LAMBDA przyjmuje trzy parametry: 1. zsumowaną wartość zwracaną jako wynik końcowy, 2. bieżącą wartość z tablicy oraz 3. obliczenie zastosowane do każdego elementu tablicy.' }, + }, + }, + SWITCH: { + description: 'Funkcja PRZEŁĄCZ ocenia jedną wartość (nazywaną wyrażeniem ), korzystając z listy wartości, i zwraca wynik odpowiadający pierwszej zgodnej wartości. W przypadku braku dopasowania może zostać zwrócona opcjonalna wartość domyślna.', + abstract: 'Funkcja PRZEŁĄCZ ocenia jedną wartość (nazywaną wyrażeniem ), korzystając z listy wartości, i zwraca wynik odpowiadający pierwszej zgodnej wartości. W przypadku braku dopasowania może zostać zwrócona opcjonalna wartość domyślna.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'Expression to wartość (np. liczba, data lub tekst), która będzie porównywana z value1…value126.' }, + value1: { name: 'value1', detail: 'ValueN to wartość porównywana z expression.' }, + result1: { name: 'result1', detail: 'ResultN to wartość zwracana, gdy odpowiedni argument valueN pasuje do expression. Dla każdego odpowiedniego argumentu valueN należy podać ResultN.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'Default to wartość zwracana, gdy w wyrażeniach valueN nie zostanie znalezione dopasowanie. Argument Default jest rozpoznawany po braku odpowiadającego mu wyrażenia resultN. Default musi być ostatnim argumentem funkcji.' }, + result2: { name: 'result2', detail: 'ResultN to wartość zwracana, gdy odpowiedni argument valueN pasuje do expression. Dla każdego odpowiedniego argumentu valueN należy podać ResultN.' }, + }, + }, + TRUE: { + description: 'Zwraca wartość logiczną PRAWDA. Tej funkcji można używać, gdy chcesz zwrócić wartość PRAWDA na podstawie warunku. Na przykład:', + abstract: 'Zwraca wartość logiczną PRAWDA. Tej funkcji można używać, gdy chcesz zwrócić wartość PRAWDA na podstawie warunku. Na przykład:', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'Funkcja XOR zwraca wartość logiczną wykluczania lub wszystkich argumentów.', + abstract: 'Funkcja XOR zwraca wartość logiczną wykluczania lub wszystkich argumentów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'Pierwszy warunek, który chcesz przetestować i który może przyjąć wartość TRUE lub FALSE.' }, + logical2: { name: 'logical2', detail: 'Dodatkowe warunki, które chcesz przetestować i które mogą przyjąć wartość TRUE lub FALSE, maksymalnie 255 warunków.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/logical/pt-BR.ts new file mode 100644 index 0000000000..5d38c14d85 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/logical/pt-BR.ts @@ -0,0 +1,296 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AND: { + description: 'A função E retornará VERDADEIRO se todos os seus argumentos forem avaliados como VERDADEIRO e retornará FALSO se um ou mais argumentos forem avaliados como FALSO.', + abstract: 'A função E retornará VERDADEIRO se todos os seus argumentos forem avaliados como VERDADEIRO e retornará FALSO se um ou mais argumentos forem avaliados como FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/and-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'A primeira condição que você deseja testar, que pode resultar em VERDADEIRO ou FALSO.' }, + logical2: { name: 'logical2', detail: 'Condições adicionais que você deseja testar, que podem resultar em VERDADEIRO ou FALSO, até o máximo de 255 condições.' }, + }, + }, + BYCOL: { + description: 'Aplica um LAMBDA a cada coluna e devolve uma matriz dos resultados. Por exemplo, se a matriz original é 3 colunas por 2 linhas, a matriz retornada é 3 colunas por 1 linha.', + abstract: 'Aplica um LAMBDA a cada coluna e devolve uma matriz dos resultados. Por exemplo, se a matriz original é 3 colunas por 2 linhas, a matriz retornada é 3 colunas por 1 linha.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bycol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Uma matriz a ser separada por coluna.' }, + lambda: { name: 'lambda', detail: 'Um LAMBDA que recebe uma coluna como único parâmetro e calcula um resultado. O parâmetro é uma coluna da matriz.' }, + }, + }, + BYROW: { + description: 'Aplica um LAMBDA a cada linha e retorna uma matriz dos resultados. Por exemplo, se a matriz original é de 3 colunas por 2 linhas, a matriz devolvida é de 1 coluna por 2 linhas.', + abstract: 'Aplica um LAMBDA a cada linha e retorna uma matriz dos resultados. Por exemplo, se a matriz original é de 3 colunas por 2 linhas, a matriz devolvida é de 1 coluna por 2 linhas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/byrow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Uma matriz a ser separada por linha.' }, + lambda: { name: 'lambda', detail: 'Um LAMBDA que recebe uma linha como único parâmetro e calcula um resultado. O parâmetro é uma linha da matriz.' }, + }, + }, + FALSE: { + description: 'Retorna o valor lógico FALSO.', + abstract: 'Retorna o valor lógico FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/false-function', + }, + ], + functionParameter: { + }, + }, + IF: { + description: 'Por exemplo, =SE(C2 =”Sim”, 1,2) diz SE(C2 = Sim, então retorne a 1, caso contrário retorne a 2).', + abstract: 'Por exemplo, =SE(C2 =”Sim”, 1,2) diz SE(C2 = Sim, então retorne a 1, caso contrário retorne a 2).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/if-function', + }, + ], + functionParameter: { + logicalTest: { name: 'logical_test', detail: 'A condição que você deseja testar.' }, + valueIfTrue: { name: 'value_if_true', detail: 'O valor que você deseja retornar se o resultado de logical_test for TRUE.' }, + valueIfFalse: { name: 'value_if_false', detail: 'O valor que você deseja retornar se o resultado de logical_test for FALSO.' }, + }, + }, + IFERROR: { + description: 'Você pode usar a função SEERRO para lidar com erros em uma fórmula. SEERRO retornará um valor que você especificará se uma fórmula for avaliada como um erro; caso contrário, ele retornará o resultado da fórmula.', + abstract: 'Você pode usar a função SEERRO para lidar com erros em uma fórmula. SEERRO retornará um valor que você especificará se uma fórmula for avaliada como um erro; caso contrário, ele retornará o resultado da fórmula.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/iferror-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obrigatório. O argumento verificado quanto ao erro.' }, + valueIfError: { name: 'value_if_error', detail: 'Obrigatório. O valor a ser retornado se a fórmula for avaliada como um erro. Os seguintes tipos de erro são avaliados: # n/d, #VALOR!, #REF!, #DIV/0!, #NÚM!, #NOME? ou #NOME!.' }, + }, + }, + IFNA: { + description: 'A função IFNA retorna o valor que você especifica se uma fórmula retorna o valor de erro #N/A; caso contrário, ele retorna o resultado da fórmula.', + abstract: 'A função IFNA retorna o valor que você especifica se uma fórmula retorna o valor de erro #N/A; caso contrário, ele retorna o resultado da fórmula.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ifna-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O argumento que é verificado para o valor de erro #N/D.' }, + valueIfNa: { name: 'value_if_na', detail: 'O valor a retornar se a fórmula é avaliada com o valor de erro #N/D.' }, + }, + }, + IFS: { + description: 'A função SES verifica se uma ou mais condições são satisfeitas e retorna um valor que corresponde à primeira condição VERDADEIRO. A função SES pode ser usada como substituta de várias instruções SE aninhadas, além de ser muito mais fácil de ser lida quando condições múltiplas são usadas.', + abstract: 'A função SES verifica se uma ou mais condições são satisfeitas e retorna um valor que corresponde à primeira condição VERDADEIRO. A função SES pode ser usada como substituta de várias instruções SE aninhadas, além de ser muito mais fácil de ser lida quando condições múltiplas são usadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ifs-function', + }, + ], + functionParameter: { + logicalTest1: { name: 'logical_test1', detail: 'Uma condição que resulta em VERDADEIRO ou FALSO.' }, + valueIfTrue1: { name: 'value_if_true1', detail: 'O resultado retornado se logical_test1 resultar em VERDADEIRO. Pode estar vazio.' }, + logicalTest2: { name: 'logical_test2', detail: 'Uma condição que resulta em VERDADEIRO ou FALSO.' }, + valueIfTrue2: { name: 'value_if_true2', detail: 'O resultado retornado se logical_testN resultar em VERDADEIRO. Cada value_if_trueN corresponde a uma condição logical_testN e pode estar vazio.' }, + }, + }, + LAMBDA: { + description: 'Você pode criar uma função para uma fórmula comumente usada, eliminar a necessidade de copiar e colar essa fórmula (que pode ser propensa a erros) e adicionar efetivamente suas próprias funções à biblioteca de funções nativas do Excel. Além disso, uma função LAMBDA não requer VBA, macros ou JavaScript, pelo que os não programadores também podem beneficiar da sua utilização.', + abstract: 'Você pode criar uma função para uma fórmula comumente usada, eliminar a necessidade de copiar e colar essa fórmula (que pode ser propensa a erros) e adicionar efetivamente suas próprias funções à biblioteca de funções nativas do Excel. Além disso, uma função LAMBDA não requer VBA, macros ou JavaScript, pelo que os não programadores também podem beneficiar da sua utilização.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/lambda-function', + }, + ], + functionParameter: { + parameter: { name: 'parameter', detail: 'Um valor que você deseja passar para a função, como uma referência de célula, cadeia de caracteres ou número. Você pode incluir até 253 destinatários. O segundo argumento é opcional.' }, + calculation: { name: 'calculation', detail: 'A fórmula que você deseja executar e retornar como resultado da função. Ele deve ser o último argumento e deve retornar um resultado. Esse argumento é necessário.' }, + }, + }, + LET: { + description: 'A LET função atribui nomes a resultados de cálculo. Isso permite armazenar cálculos intermediários, valores ou definir nomes dentro de uma fórmula. Estes nomes só se aplicam no âmbito da LET função. Semelhante às variáveis na programação, LET é realizado através da sintaxe da fórmula nativa do Excel.', + abstract: 'A LET função atribui nomes a resultados de cálculo. Isso permite armazenar cálculos intermediários, valores ou definir nomes dentro de uma fórmula. Estes nomes só se aplicam no âmbito da LET função. Semelhante às variáveis na programação, LET é realizado através da sintaxe da fórmula nativa do Excel.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/let-function', + }, + ], + functionParameter: { + name1: { name: 'name1', detail: 'O primeiro nome a atribuir. Deve começar com uma letra e não pode ser o resultado de uma fórmula nem conflitar com a sintaxe de intervalo.' }, + nameValue1: { name: 'name_value1', detail: 'O valor atribuído a name1.' }, + calculationOrName2: { name: 'calculation_or_name2', detail: 'Um cálculo que usa todos os nomes de LET e deve ser seu último argumento, ou um segundo nome a atribuir a name_value2.' }, + nameValue2: { name: 'name_value2', detail: 'O valor atribuído a calculation_or_name2.' }, + calculationOrName3: { name: 'calculation_or_name3', detail: 'Um cálculo que usa todos os nomes de LET e deve ser seu último argumento, ou um terceiro nome a atribuir a name_value3.' }, + }, + }, + MAKEARRAY: { + description: 'Retorna uma matriz calculada de uma linha especificada e tamanho de coluna, aplicando uma função LAMBDA .', + abstract: 'Retorna uma matriz calculada de uma linha especificada e tamanho de coluna, aplicando uma função LAMBDA .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/makearray-function', + }, + ], + functionParameter: { + number1: { name: 'rows', detail: 'O número de linhas da matriz. Deve ser maior que zero.' }, + number2: { name: 'cols', detail: 'O número de colunas da matriz. Deve ser maior que zero.' }, + value3: { name: 'lambda', detail: 'O LAMBDA chamado para criar a matriz. Recebe dois parâmetros: row, o índice da linha, e col, o índice da coluna.' }, + }, + }, + MAP: { + description: 'Devolve uma matriz formada ao mapear cada valor nas matrizes para um novo valor ao aplicar um LAMBDA para criar um novo valor.', + abstract: 'Devolve uma matriz formada ao mapear cada valor nas matrizes para um novo valor ao aplicar um LAMBDA para criar um novo valor.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/map-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Uma primeira matriz a ser mapeada.' }, + array2: { name: 'array2', detail: 'Uma segunda matriz a ser mapeada.' }, + lambda: { name: 'lambda', detail: 'Um LAMBDA que deve ser o último argumento e ter um parâmetro para cada matriz fornecida.' }, + }, + }, + NOT: { + description: 'A função NÃO inverte o valor do argumento.', + abstract: 'A função NÃO inverte o valor do argumento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/not-function', + }, + ], + functionParameter: { + logical: { name: 'logical', detail: 'A condição cuja lógica você deseja inverter, que pode resultar em VERDADEIRO ou FALSO.' }, + }, + }, + OR: { + description: 'A função OU retornará VERDADEIRO se qualquer um dos argumentos for avaliado como VERDADEIRO e retornará FALSO se todos os argumentos forem avaliados como FALSO.', + abstract: 'A função OU retornará VERDADEIRO se qualquer um dos argumentos for avaliado como VERDADEIRO e retornará FALSO se todos os argumentos forem avaliados como FALSO.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/or-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'A primeira condição que você deseja testar, que pode resultar em VERDADEIRO ou FALSO.' }, + logical2: { name: 'logical2', detail: 'Condições adicionais que você deseja testar, que podem resultar em VERDADEIRO ou FALSO, até o máximo de 255 condições.' }, + }, + }, + REDUCE: { + description: 'Reduz uma matriz a um valor acumulado aplicando um LAMBDA a cada valor e retornando o valor total no acumulador.', + abstract: 'Reduz uma matriz a um valor acumulado aplicando um LAMBDA a cada valor e retornando o valor total no acumulador.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/reduce-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Define o valor inicial do acumulador.' }, + array: { name: 'array', detail: 'Uma matriz a ser reduzida.' }, + lambda: { name: 'lambda', detail: 'Um LAMBDA chamado para reduzir a matriz. Recebe três parâmetros: o valor acumulado, o valor atual da matriz e o cálculo aplicado a cada elemento.' }, + }, + }, + SCAN: { + description: 'Verifica uma matriz aplicando um LAMBDA a cada valor e retorna uma matriz que tem cada valor intermediário.', + abstract: 'Verifica uma matriz aplicando um LAMBDA a cada valor e retorna uma matriz que tem cada valor intermediário.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/scan-function', + }, + ], + functionParameter: { + initialValue: { name: 'initial_value', detail: 'Define o valor inicial do acumulador.' }, + array: { name: 'array', detail: 'Uma matriz a ser examinada.' }, + lambda: { name: 'lambda', detail: 'Um LAMBDA que é chamado para reduzir a matriz. O LAMBDA usa três parâmetros: Acumulador O valor totalizado e retornado como o resultado final. Valor O valor atual da matriz. Corpo O cálculo aplicado a cada elemento na matriz.' }, + }, + }, + SWITCH: { + description: 'A função PARÂMETRO avalia um valor (chamado de expressão) em relação a uma lista de valores e retorna o resultado correspondente ao primeiro valor coincidente. Se não houver nenhuma correspondência, um valor padrão opcional poderá ser retornado.', + abstract: 'A função PARÂMETRO avalia um valor (chamado de expressão) em relação a uma lista de valores e retorna o resultado correspondente ao primeiro valor coincidente. Se não houver nenhuma correspondência, um valor padrão opcional poderá ser retornado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/switch-function', + }, + ], + functionParameter: { + expression: { name: 'expression', detail: 'O valor, como número, data ou texto, que será comparado com value1 a value126.' }, + value1: { name: 'value1', detail: 'Um valor que será comparado com expression.' }, + result1: { name: 'result1', detail: 'O valor retornado quando o argumento valueN correspondente coincidir com expression. Deve ser fornecido para cada valueN.' }, + defaultOrValue2: { name: 'default_or_value2', detail: 'O valor retornado se não houver correspondência nas expressões valueN. Deve ser o último argumento da função.' }, + result2: { name: 'result2', detail: 'O valor retornado quando o argumento valueN correspondente coincidir com expression. Deve ser fornecido para cada valueN.' }, + }, + }, + TRUE: { + description: 'Retorna o valor lógico VERDADEIRO. Pode utilizar esta função quando pretender devolver o valor VERDADEIRO com base numa condição. Por exemplo:', + abstract: 'Retorna o valor lógico VERDADEIRO. Pode utilizar esta função quando pretender devolver o valor VERDADEIRO com base numa condição. Por exemplo:', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/true-function', + }, + ], + functionParameter: { + }, + }, + XOR: { + description: 'A função XOR devolve um Exclusivo lógico Ou de todos os argumentos.', + abstract: 'A função XOR devolve um Exclusivo lógico Ou de todos os argumentos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/xor-function', + }, + ], + functionParameter: { + logical1: { name: 'logical1', detail: 'A primeira condição que você deseja testar, que pode resultar em VERDADEIRO ou FALSO.' }, + logical2: { name: 'logical2', detail: 'Condições adicionais que você deseja testar, que podem resultar em VERDADEIRO ou FALSO, até o máximo de 255 condições.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/logical/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/logical/ru-RU.ts index a654a01408..8f81899e5c 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-bycol-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-byrow-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%BE%D0%B6%D1%8C-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/ru-ru/excel/functions/false-function', }, ], functionParameter: {}, @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5%D1%81%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D1%81%D0%BB%D0%B8-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/if-function', }, ], functionParameter: { @@ -97,7 +97,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D1%81%D0%BB%D0%B8%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D0%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/ru-ru/excel/functions/iferror-function', }, ], functionParameter: { @@ -111,7 +111,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B5%D1%81%D0%BD%D0%B4-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B5%D1%81%D0%BD%D0%B4-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ifna-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%83%D1%81%D0%BB%D0%BE%D0%B2%D0%B8%D1%8F-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ifs-function', }, ], functionParameter: { @@ -141,7 +141,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-lambda-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lambda-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-let-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/ru-ru/excel/functions/let-function', }, ], functionParameter: { @@ -178,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-makearray-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/ru-ru/excel/functions/makearray-function', }, ], functionParameter: { @@ -196,7 +196,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-map-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/ru-ru/excel/functions/map-function', }, ], functionParameter: { @@ -211,7 +211,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B5-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/ru-ru/excel/functions/not-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B8%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D0%BB%D0%B8-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/or-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-reduce-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/reduce-function', }, ], functionParameter: { @@ -253,7 +253,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-scan-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/ru-ru/excel/functions/scan-function', }, ], functionParameter: { @@ -268,7 +268,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/switch-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-switch-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/switch-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D1%81%D1%82%D0%B8%D0%BD%D0%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/true-function', }, ], functionParameter: {}, @@ -296,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B8%D1%81%D0%BA%D0%BB%D0%B8%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D1%81%D0%BA%D0%BB%D0%B8%D0%BB%D0%B8-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/ru-ru/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/logical/sk-SK.ts index 5d8d5da782..70b1ce7542 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/and-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/and-function', }, ], functionParameter: { @@ -40,7 +40,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bycol-function-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bycol-function', }, ], functionParameter: { @@ -57,7 +57,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/byrow-function-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/byrow-function', }, ], functionParameter: { @@ -74,7 +74,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/sk-sk/excel/functions/false-function', }, ], functionParameter: {}, @@ -85,7 +85,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/if-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/iferror-function-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/sk-sk/excel/functions/iferror-function', }, ], functionParameter: { @@ -123,7 +123,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ifna-function-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ifna-function', }, ], functionParameter: { @@ -137,7 +137,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ifs-function', }, ], functionParameter: { @@ -156,7 +156,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lambda-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/sk-sk/excel/functions/let-function', }, ], functionParameter: { @@ -202,7 +202,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/sk-sk/excel/functions/makearray-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/sk-sk/excel/functions/map-function', }, ], functionParameter: { @@ -235,7 +235,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/sk-sk/excel/functions/not-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/or-function', }, ], functionParameter: { @@ -265,7 +265,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/reduce-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/sk-sk/excel/functions/scan-function', }, ], functionParameter: { @@ -301,7 +301,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/switch-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/true-function', }, ], functionParameter: {}, @@ -338,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/sk-sk/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/logical/vi-VN.ts index ddf9bfb6b5..855ee167bd 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/vi-VN.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { AND: { - description: 'Returns TRUE if all of its arguments are TRUE', - abstract: 'Returns TRUE if all of its arguments are TRUE', + description: 'Hàm AND trả về TRUE nếu tất cả các tham đối của hàm là TRUE, trả về FALSE nếu một hoặc nhiều tham đối là FALSE.', + abstract: 'Hàm AND trả về TRUE nếu tất cả các tham đối của hàm là TRUE, trả về FALSE nếu một hoặc nhiều tham đối là FALSE.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/false-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/if-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/iferror-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ifna-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ifs-function', }, ], functionParameter: { @@ -136,7 +136,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lambda-function', }, ], functionParameter: { @@ -151,12 +151,12 @@ const locale: typeof enUS = { }, }, 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', + description: 'Hàm LET gán tên cho kết quả tính toán. Hàm này cho phép lưu trữ các phép tính trung gian, giá trị hoặc xác định các tên bên trong công thức. Những tên này chỉ áp dụng trong phạm vi của LET hàm. Tương tự như các biến trong lập trình, được LET thực hiện thông qua cú pháp công thức gốc của Excel.', + abstract: 'Hàm LET gán tên cho kết quả tính toán. Hàm này cho phép lưu trữ các phép tính trung gian, giá trị hoặc xác định các tên bên trong công thức. Những tên này chỉ áp dụng trong phạm vi của LET hàm. Tương tự như các biến trong lập trình, được LET thực hiện thông qua cú pháp công thức gốc của Excel.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/let-function', }, ], functionParameter: { @@ -173,7 +173,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/makearray-function', }, ], functionParameter: { @@ -191,7 +191,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/map-function', }, ], functionParameter: { @@ -206,7 +206,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/not-function', }, ], functionParameter: { @@ -219,7 +219,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/or-function', }, ], functionParameter: { @@ -233,7 +233,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/reduce-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/scan-function', }, ], functionParameter: { @@ -263,7 +263,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/switch-function', }, ], functionParameter: { @@ -280,7 +280,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/true-function', }, ], functionParameter: { @@ -292,7 +292,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/logical/zh-CN.ts index 0c9a05f0da..a14a50ee67 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/and-%E5%87%BD%E6%95%B0-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bycol-%E5%87%BD%E6%95%B0-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/byrow-%E5%87%BD%E6%95%B0-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/false-%E5%87%BD%E6%95%B0-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/zh-cn/excel/functions/false-function', }, ], functionParameter: {}, @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/if-%E5%87%BD%E6%95%B0-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/if-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/iferror-%E5%87%BD%E6%95%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/zh-cn/excel/functions/iferror-function', }, ], functionParameter: { @@ -105,7 +105,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ifna-%E5%87%BD%E6%95%B0-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ifna-function', }, ], functionParameter: { @@ -119,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ifs-%E5%87%BD%E6%95%B0-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ifs-function', }, ], functionParameter: { @@ -136,7 +136,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lambda-%E5%87%BD%E6%95%B0-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lambda-function', }, ], functionParameter: { @@ -156,7 +156,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/let-%E5%87%BD%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/zh-cn/excel/functions/let-function', }, ], functionParameter: { @@ -173,7 +173,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/makearray-%E5%87%BD%E6%95%B0-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/zh-cn/excel/functions/makearray-function', }, ], functionParameter: { @@ -191,7 +191,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/map-%E5%87%BD%E6%95%B0-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/zh-cn/excel/functions/map-function', }, ], functionParameter: { @@ -206,7 +206,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/not-%E5%87%BD%E6%95%B0-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/zh-cn/excel/functions/not-function', }, ], functionParameter: { @@ -219,7 +219,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/or-%E5%87%BD%E6%95%B0-7d17ad14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/or-function', }, ], functionParameter: { @@ -233,7 +233,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/reduce-%E5%87%BD%E6%95%B0-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/reduce-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/scan-%E5%87%BD%E6%95%B0-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/zh-cn/excel/functions/scan-function', }, ], functionParameter: { @@ -263,7 +263,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/switch-%E5%87%BD%E6%95%B0-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/switch-function', }, ], functionParameter: { @@ -280,7 +280,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/true-%E5%87%BD%E6%95%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/true-function', }, ], functionParameter: {}, @@ -291,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/xor-%E5%87%BD%E6%95%B0-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/zh-cn/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/logical/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/logical/zh-TW.ts index b803dabd15..f1a4f4301b 100644 --- a/packages/sheets-formula/src/locale/function-list/logical/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/logical/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/and-%E5%87%BD%E6%95%B0-5f19b2e8-e1df-4408-897a-ce285a19e9d9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/and-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bycol-%E5%87%BD%E6%95%B0-58463999-7de5-49ce-8f38-b7f7a2192bfb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bycol-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/byrow-%E5%87%BD%E6%95%B0-2e04c677-78c8-4e6b-8c10-a4602f2602bb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/byrow-function', }, ], functionParameter: { @@ -65,7 +65,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/false-%E5%87%BD%E6%95%B0-2d58dfa5-9c03-4259-bf8f-f0ae14346904', + url: 'https://support.microsoft.com/zh-tw/excel/functions/false-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/if-%E5%87%BD%E6%95%B0-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/if-function', }, ], functionParameter: { @@ -92,7 +92,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/iferror-%E5%87%BD%E6%95%B0-c526fd07-caeb-47b8-8bb6-63f3e417f611', + url: 'https://support.microsoft.com/zh-tw/excel/functions/iferror-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ifna-%E5%87%BD%E6%95%B0-6626c961-a569-42fc-a49d-79b4951fd461', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ifna-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ifs-%E5%87%BD%E6%95%B0-36329a26-37b2-467c-972b-4a39bd951d45', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ifs-function', }, ], functionParameter: { @@ -137,7 +137,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lambda-%E5%87%BD%E6%95%B0-bd212d27-1cd1-4321-a34a-ccbf254b8b67', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lambda-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/let-%E5%87%BD%E6%95%B0-34842dd8-b92b-4d3f-b325-b8b8f9908999', + url: 'https://support.microsoft.com/zh-tw/excel/functions/let-function', }, ], functionParameter: { @@ -174,7 +174,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/makearray-%E5%87%BD%E6%95%B0-b80da5ad-b338-4149-a523-5b221da09097', + url: 'https://support.microsoft.com/zh-tw/excel/functions/makearray-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/map-%E5%87%BD%E6%95%B0-48006093-f97c-47c1-bfcc-749263bb1f01', + url: 'https://support.microsoft.com/zh-tw/excel/functions/map-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/not-%E5%87%BD%E6%95%B0-9cfc6011-a054-40c7-a140-cd4ba2d87d77', + url: 'https://support.microsoft.com/zh-tw/excel/functions/not-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/or-%E5%87%BD%E6%95%B0-7d17a​​d14-8700-4281-b308-00b131e22af0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/or-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/reduce-%E5%87%BD%E6%95%B0-42e39910-b345-45f3-84b8-0642b568b7cb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/reduce-function', }, ], functionParameter: { @@ -249,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/scan-%E5%87%BD%E6%95%B0-d58dfd11-9969-4439-b2dc-e7062724de29', + url: 'https://support.microsoft.com/zh-tw/excel/functions/scan-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/switch-%E5%87%BD%E6%95%B0-47ab33c0-28ce-4530-8a45-d532ec4aa25e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/switch-function', }, ], functionParameter: { @@ -281,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/true-%E5%87%BD%E6%95%B0-7652c6e3-8987-48d0-97cd-ef223246b3fb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/true-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/xor-%E5%87%BD%E6%95%B0-1548d4c2-5e47-4f77-9a92-0533bba14f37', + url: 'https://support.microsoft.com/zh-tw/excel/functions/xor-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/lookup/ar-SA.ts new file mode 100644 index 0000000000..c7df8f4aca --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/ar-SA.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'يمكنك استخدام الدالة ADDRESS للحصول على عنوان إحدى الخلايا في ورقة العمل، عند معرفة رقم صف ورقم عمود محددين. على سبيل المثال، ترجع ADDRESS(2,3) $C$2 . كمثال آخر، ترجع ADDRESS(77,300) $KN$77 . وتستطيع استخدام دالات أخرى، مثل الدالتين ROW و COLUMN ، لتوفير وسيطتي رقم الصف ورقم العمود للدالة ADDRESS .', + abstract: 'يمكنك استخدام الدالة ADDRESS للحصول على عنوان إحدى الخلايا في ورقة العمل، عند معرفة رقم صف ورقم عمود محددين. على سبيل المثال، ترجع ADDRESS(2,3) $C$2 . كمثال آخر، ترجع ADDRESS(77,300) $KN$77 . وتستطيع استخدام دالات أخرى، مثل الدالتين ROW و COLUMN ، لتوفير وسيطتي رقم الصف ورقم العمود للدالة ADDRESS .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'مطلوب. وهي قيمة رقمية تحدد رقم الصف المراد استخدامه في مرجع الخلية.' }, + column_num: { name: 'column number', detail: 'مطلوب. وهي قيمة رقمية تحدد رقم العمود المراد استخدامه في مرجع الخلية.' }, + abs_num: { name: 'type of reference', detail: 'الاختياري. وهي قيمة رقمية تحدد نوع المرجع المراد إرجاعه.' }, + a1: { name: 'style of reference', detail: 'الاختياري. وهي قيمة منطقية تحدد نمط المرجع A1 أو R1C1. في النمط A1، تتم تسمية الأعمدة أبجدياً، وتتم تسمية الصفوف رقمياً. وفي نمط المرجع R1C1، تتم تسمية كل من الأعمدة والصفوف رقمياً. إذا كانت الوسيطة A1 تساوي TRUE أو تم إهمالها، فستُرجع الدالة ADDRESS مرجعاً بنمط A1، وإذا كانت تساوي FALSE، فستُرجع الدالة ADDRESS مرجعاً بنمط R1C1. ملاحظة لتغيير نمط المرجع الذي يستخدمه Excel، انقر فوق علامة التبويب ملف ، وانقر فوق خيارات ، ثم انقر فوق الصيغ . وضمن استخدام الصيغ ، حدد خانة الاختيار نمط المرجع R1C1 أو قم بإلغاء تحديدها.' }, + sheet_text: { name: 'worksheet name', detail: 'الاختياري. وهي قيمة نصية تحدد اسم ورقة العمل المراد استخدامها كمرجع خارجي. على سبيل المثال، ترجع الصيغة =ADDRESS(1,1,,,"Sheet2") Sheet2!$A$1 . إذا تم حذف الوسيطة sheet_text ، فلن يتم استخدام أي اسم ورقة، ويشير العنوان الذي تم إرجاعه بواسطة الدالة إلى خلية على الورقة الحالية.' }, + }, + }, + AREAS: { + description: 'تُرجع عدد النواحي في مرجع. تعد الناحية نطاقاً من الخلايا المتجاورة أو خلية مفردة.', + abstract: 'تُرجع عدد النواحي في مرجع. تعد الناحية نطاقاً من الخلايا المتجاورة أو خلية مفردة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'مطلوب. وهي مرجع لخلية أو نطاق خلايا ويمكن أن تشير إلى نواحٍ متعددة. إذا كنت تريد تحديد عدة مراجع كوسيطة مفردة، فعليك تضمين مجموعات إضافية من الأقواس حتى لا يفسر Microsoft Excel الفاصلة على أنها فاصل حقول. انظر المثال التالي.' }, + }, + }, + CHOOSE: { + description: 'تستخدم index_num لإرجاع قيمة من قائمة وسيطات القيم. استخدم CHOOSE لتحديد قيمة من القيم الـ 254 استناداً إلى رقم الفهرس. على سبيل المثال، إذا كانت القيم من value1 إلى value7 تمثل أيام الأسبوع، فتُرجع CHOOSE أحد الأيام عند استخدام رقم بين 1 و7 كـ index_num.', + abstract: 'تستخدم index_num لإرجاع قيمة من قائمة وسيطات القيم. استخدم CHOOSE لتحديد قيمة من القيم الـ 254 استناداً إلى رقم الفهرس. على سبيل المثال، إذا كانت القيم من value1 إلى value7 تمثل أيام الأسبوع، فتُرجع CHOOSE أحد الأيام عند استخدام رقم بين 1 و7 كـ index_num.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'يحدد وسيطة القيمة المختارة. يجب أن يكون index_num رقماً بين 1 و254، أو صيغة أو مرجعاً إلى خلية تحتوي على رقم بين 1 و254.\nإذا كان index_num يساوي 1، تُرجع CHOOSE value1؛ وإذا كان 2 تُرجع value2، وهكذا.\nإذا كان index_num أقل من 1 أو أكبر من رقم آخر قيمة في القائمة، تُرجع CHOOSE الخطأ #VALUE!.\nإذا كان index_num كسراً، فيُقتطع إلى أصغر عدد صحيح قبل استخدامه.' }, + value1: { name: 'value1', detail: 'تختار CHOOSE قيمة أو إجراءً لتنفيذه استناداً إلى index_num. يمكن أن تكون الوسيطات أرقاماً أو مراجع خلايا أو أسماء معرفة أو صيغاً أو دالات أو نصاً.' }, + value2: { name: 'value2', detail: 'من 1 إلى 254 وسيطة قيمة.' }, + }, + }, + CHOOSECOLS: { + description: 'يتم إرجاع الأعمدة المُحدَّدة من صفيف.', + abstract: 'يتم إرجاع الأعمدة المُحدَّدة من صفيف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف الذي يحتوي على الأعمدة التي سيتم إرجاعها في الصفيف الجديد. مطلوبة.' }, + colNum1: { name: 'col_num1', detail: 'العمود الأول الذي سيتم إرجاعه. مطلوبة.' }, + colNum2: { name: 'col_num2', detail: 'أعمدة إضافية سيتم إرجاعها. اختيارية.' }, + }, + }, + CHOOSEROWS: { + description: 'يتم إرجاع الصفوف المحددة من صفيف.', + abstract: 'يتم إرجاع الصفوف المحددة من صفيف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف الذي يحتوي على الأعمدة التي سيتم إرجاعها في الصفيف الجديد. مطلوبة.' }, + rowNum1: { name: 'row_num1', detail: 'رقم الصف الأول الذي سيتم إرجاعه. مطلوبة.' }, + rowNum2: { name: 'row_num2', detail: 'أرقام صفوف إضافية سيتم إرجاعها. اختيارية.' }, + }, + }, + COLUMN: { + description: 'ترجع الدالة COLUMN رقم العمود لمرجع الخلية المحدد. على سبيل المثال، ترجع الصيغة =COLUMN(D10) 4، لأن العمود D هو العمود الرابع.', + abstract: 'ترجع الدالة COLUMN رقم العمود لمرجع الخلية المحدد. على سبيل المثال، ترجع الصيغة =COLUMN(D10) 4، لأن العمود D هو العمود الرابع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'الخلية أو نطاق الخلايا الذي تريد إرجاع رقم عموده.' }, + }, + }, + COLUMNS: { + description: 'إرجاع عدد الأعمدة في صفيف أو مرجع.', + abstract: 'إرجاع عدد الأعمدة في صفيف أو مرجع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. صفيف أو صيغة صفيف، أو مرجع لنطاق خلايا تريد عدد الأعمدة له.' }, + }, + }, + DROP: { + description: 'يستثني عددا محددا من الصفوف أو الأعمدة من بداية الصفيف أو نهايته. قد تجد هذه الدالة مفيدة لإزالة الرؤوس والتذييلات في تقرير Excel لإرجاع البيانات فقط.', + abstract: 'يستثني عددا محددا من الصفوف أو الأعمدة من بداية الصفيف أو نهايته. قد تجد هذه الدالة مفيدة لإزالة الرؤوس والتذييلات في تقرير Excel لإرجاع البيانات فقط.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف الذي سيتم إسقاط الصفوف أو الأعمدة منه.' }, + rows: { name: 'rows', detail: 'عدد الصفوف التي يجب إسقاطها. يتم إسقاط قيمة سالبة من نهاية الصفيف.' }, + columns: { name: 'columns', detail: 'عدد الأعمدة المراد استبعادها. يتم إسقاط قيمة سالبة من نهاية الصفيف.' }, + }, + }, + EXPAND: { + description: 'توسيع صفيف أو لوحته لأبعاد الصفوف والأعمدة المحددة.', + abstract: 'توسيع صفيف أو لوحته لأبعاد الصفوف والأعمدة المحددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف المراد توسيعه.' }, + rows: { name: 'rows', detail: 'عدد الصفوف في الصفيف الموسع. إذا كان مفقودًا، فلن يتم توسيع الصفوف.' }, + columns: { name: 'columns', detail: 'عدد الأعمدة في الصفيف الموسع. إذا كان مفقودًا، فلن يتم توسيع الأعمدة.' }, + padWith: { name: 'pad_with', detail: 'القيمة التي سيتم لوحة بها. الإعداد الافتراضي هو #N/A.' }, + }, + }, + FILTER: { + description: 'في المثال التالي استخدمنا الصيغة =FILTER(A5:D20,C5:C20=H2,"") لإرجاع كافة سجلات Apple، كما هو محدد في الخلية H2، وإذا لم تكن هناك تفاح، فسترجع سلسلة فارغة ("").', + abstract: 'في المثال التالي استخدمنا الصيغة =FILTER(A5:D20,C5:C20=H2,"") لإرجاع كافة سجلات Apple، كما هو محدد في الخلية H2، وإذا لم تكن هناك تفاح، فسترجع سلسلة فارغة ("").', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف، أو النطاق المطلوب فرزه' }, + include: { name: 'include', detail: 'صفيف "منطقي" يكون ارتفاعه أو عرضه مثل الصفيف' }, + ifEmpty: { name: 'if_empty', detail: 'القيمة المطلوب إرجاعها إذا كانت كل القيم في الصفيف المضمن فارغة (لا يقوم عامل التصفية بإرجاع أي شيء)' }, + }, + }, + FORMULATEXT: { + description: 'تُرجع هذه الدالة الصيغة كسلسلة.', + abstract: 'تُرجع هذه الدالة الصيغة كسلسلة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'مطلوب. مرجع إلى خلية أو نطاق خلايا.' }, + }, + }, + GETPIVOTDATA: { + description: 'تُرجع البيانات المرئية المخزنة في PivotTable.', + abstract: 'تُرجع البيانات المرئية المخزنة في PivotTable.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'اسم حقل PivotTable الذي يحتوي على البيانات التي تريد استردادها. يجب أن يكون هذا في علامات اقتباس. مثال: =GETPIVOTDATA("Sales", A3). هنا، "المبيعات" هو حقل القيم الذي نريد استرداده. نظرا لعدم تحديد أي حقل آخر، ترجع GETPIVOTDATA إجمالي مبلغ المبيعات.' }, + pivotTable: { name: 'pivotTable', detail: 'مرجع إلى أي خلية أو نطاق من الخلايا أو نطاق مسمى من الخلايا في PivotTable. يتم استخدام هذه المعلومات لتحديد أي PivotTable يحتوي على البيانات التي تريد استردادها. مثال: =GETPIVOTDATA("Sales", A3). هنا، A3 هو مرجع داخل PivotTable ويخبر الصيغة التي PivotTable لاستخدامها.' }, + field1: { name: 'field1', detail: 'أزواج أسماء الحقول وأسماء العناصر من 1 حتى 126 التي تصف البيانات التي تريد استردادها. يمكن وضع الأزواج بأي ترتيب. يجب تضمين أسماء الحقول وأسماء العناصر بخلاف التواريخ والأرقام بين علامات اقتباس. مثال: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). هنا، "Month" هو الحقل و"Mar" هو العنصر. لتحديد عناصر متعددة لحقل، قم بإحاطتها بأقواس متعرجة (على سبيل المثال: {"Mar"، "Apr"}). بالنسبة ل OLAP PivotTables ، يمكن أن تحتوي العناصر على الاسم المصدر للبعد وكذلك اسم مصدر العنصر. قد يظهر زوج حقل وعنصر PivotTable لـ OLAP، كما يلي: "[المنتج]"،"[المنتج].[كافة المنتجات].[الأطعمة].[المنتجات المخبوزة]"' }, + item1: { name: 'item1', detail: 'أزواج أسماء الحقول وأسماء العناصر من 1 حتى 126 التي تصف البيانات التي تريد استردادها. يمكن وضع الأزواج بأي ترتيب. يجب تضمين أسماء الحقول وأسماء العناصر بخلاف التواريخ والأرقام بين علامات اقتباس. مثال: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). هنا، "Month" هو الحقل و"Mar" هو العنصر. لتحديد عناصر متعددة لحقل، قم بإحاطتها بأقواس متعرجة (على سبيل المثال: {"Mar"، "Apr"}). بالنسبة ل OLAP PivotTables ، يمكن أن تحتوي العناصر على الاسم المصدر للبعد وكذلك اسم مصدر العنصر. قد يظهر زوج حقل وعنصر PivotTable لـ OLAP، كما يلي: "[المنتج]"،"[المنتج].[كافة المنتجات].[الأطعمة].[المنتجات المخبوزة]"' }, + }, + }, + HLOOKUP: { + description: 'يبحث عن قيمة في الصف العلوي من جدول أو صفيف من القيم، ثم يرجع قيمة في العمود نفسه من صف تحدده في الجدول أو الصفيف. استخدم HLOOKUP عندما تكون قيم المقارنة موجودة في أحد الصفوف أعلى جدول بيانات، وتريد البحث من أعلى إلى أسفل في عدد معين من الصفوف. استخدم VLOOKUP عندما تكون قيم المقارنة موجودة في عمود إلى يمين البيانات التي تريد البحث عنها.', + abstract: 'يبحث عن قيمة في الصف العلوي من جدول أو صفيف من القيم، ثم يرجع قيمة في العمود نفسه من صف تحدده في الجدول أو الصفيف. استخدم HLOOKUP عندما تكون قيم المقارنة موجودة في أحد الصفوف أعلى جدول بيانات، وتريد البحث من أعلى إلى أسفل في عدد معين من الصفوف. استخدم VLOOKUP عندما تكون قيم المقارنة موجودة في عمود إلى يمين البيانات التي تريد البحث عنها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'مطلوب. قيمة يجب البحث عنها في الصف الأول من الجدول. يمكن أن تكون Lookup_value قيمة أو مرجعاً أو سلسلة نصية.' }, + tableArray: { name: 'table_array', detail: 'مطلوب. جدول من المعلومات يتم البحث فيه عن البيانات. استخدم مرجعاً لنطاق أو اسم نطاق. يمكن أن تكون القيم في الصف الأول من table_array نصاً أو أرقاماً أو قيماً منطقية. إذا كانت قيمة range_lookup تساوي TRUE، فيجب وضع القيم في الصف الأول من table_array بترتيب تصاعدي: ... -2، -1، 0، 1، 2، ...، أ-ي، FALSE،‏ TRUE؛ وإلا فقد لا تُرجع الدالة HLOOKUP القيمة الصحيحة. إذا كانت قيمة range_lookup تساوي FALSE، فلا حاجة لإجراء فرز في table_array. إن النصوص ذات الأحرف الكبيرة مكافئة للنصوص ذات الأحرف الصغيرة. يمكنك فرز القيم بترتيب تصاعدي، من اليمين إلى اليسار. لمزيد من المعلومات، راجع فرز البيانات في نطاق أو جدول .' }, + rowIndexNum: { name: 'row_index_num', detail: 'مطلوب. رقم الصف في table_array التي سيتم إرجاع القيمة المطابقة منها. ترجع row_index_num من 1 قيمة الصف الأول في table_array، row_index_num من 2 ترجع قيمة الصف الثاني في table_array، وهكذا. إذا كان row_index_num أقل من 1، فترجع الدالة HLOOKUP #VALUE! قيمة الخطأ؛ إذا كان row_index_num أكبر من عدد الصفوف في table_array، فترجع الدالة HLOOKUP #REF! وهي قيمة خطأ.' }, + rangeLookup: { name: 'range_lookup', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كنت تريد من HLOOKUP البحث عن مطابقة تامة أم مطابقة تقريبية. إذا كانت هذه القيمة تساوي TRUE أو محذوفة، فيتم إرجاع مطابقة تقريبية. وبعبارة أخرى، في حالة عدم وجود مطابقة تامة، يتم إرجاع القيمة الكبرى التالية الأصغر من lookup_value. إذا كانت هذه القيمة تساوي FALSE، فتبحث الدالة HLOOKUP عن مطابقة تامة. وإذا لم يتم العثور على واحدة، فيتم إرجاع قيمة الخطأ ‎#N/A.' }, + }, + }, + HSTACK: { + description: 'إلحاق الصفائف أفقياً وبتسلسل لإرجاع صفيف أكبر.', + abstract: 'إلحاق الصفائف أفقياً وبتسلسل لإرجاع صفيف أكبر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'الصفائف المراد إلحاقها.' }, + array2: { name: 'array', detail: 'الصفائف المراد إلحاقها.' }, + }, + }, + HYPERLINK: { + description: 'تنشئ ارتباطاً تشعبياً داخل خلية.', + abstract: 'تنشئ ارتباطاً تشعبياً داخل خلية.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=ar', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'عنوان URL الكامل لموضع الارتباط، بين علامتي اقتباس، أو مرجع إلى خلية تحتوي على هذا العنوان. لا تُسمح إلا بأنواع ارتباط معينة: http:// وhttps:// وmailto: وaim: وftp:// وgopher:// وtelnet:// وnews://. إذا استُخدم بروتوكول آخر، يظهر link_label في الخلية دون ارتباط تشعبي. وإذا لم يُحدد بروتوكول، يُفترض http:// ويُضاف إلى url.' }, + linkLabel: { name: 'link_label', detail: '[اختياري — url افتراضياً] النص المعروض في الخلية كارتباط، بين علامتي اقتباس، أو مرجع إلى خلية تحتوي على تلك التسمية. إذا كان link_label مرجعاً إلى خلية فارغة، يُعرض url كرابط إذا كان صالحاً، أو كنص عادي في غير ذلك. إذا كان link_label سلسلة فارغة (""), تبدو الخلية فارغة مع بقاء الارتباط متاحاً بالنقر أو بالانتقال إلى الخلية.' }, + }, + }, + IMAGE: { + description: 'تدرج الدالة IMAGE الصور في خلايا من موقع مصدر إلى جانب النص البديل. يمكنك بعد ذلك نقل الخلايا وتغيير حجمها وفرزها وتصفيتها واستخدام الصور ضمن جدول Excel. استخدم هذه الدالة لتحسين قوائم البيانات بشكل مرئي مثل قوائم المخزون والألعاب والموظفين والمفاهيم الرياضية.', + abstract: 'تدرج الدالة IMAGE الصور في خلايا من موقع مصدر إلى جانب النص البديل. يمكنك بعد ذلك نقل الخلايا وتغيير حجمها وفرزها وتصفيتها واستخدام الصور ضمن جدول Excel. استخدم هذه الدالة لتحسين قوائم البيانات بشكل مرئي مثل قوائم المخزون والألعاب والموظفين والمفاهيم الرياضية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'مسار URL لملف الصورة باستخدام بروتوكول "https".' }, + altText: { name: 'alt_text', detail: 'نص بديل يصف الصورة لأغراض إمكانية الوصول.' }, + sizing: { name: 'sizing', detail: 'يحدد أبعاد الصورة.' }, + height: { name: 'height', detail: 'الارتفاع المخصص للصورة بالبكسل.' }, + width: { name: 'width', detail: 'العرض المخصص للصورة بالبكسل.' }, + }, + }, + INDEX: { + description: 'إرجاع قيمة عنصر في جدول أو صفيف، تم تحديده بواسطة فهارس أرقام الصفوف والأعمدة.', + abstract: 'إرجاع قيمة عنصر في جدول أو صفيف، تم تحديده بواسطة فهارس أرقام الصفوف والأعمدة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'مرجع إلى نطاق خلية واحد أو أكثر.' }, + rowNum: { name: 'row_num', detail: 'رقم الصف في reference الذي سيُرجع مرجعاً منه.' }, + columnNum: { name: 'column_num', detail: 'رقم العمود في reference الذي سيُرجع مرجعاً منه.' }, + areaNum: { name: 'area_num', detail: 'يختار نطاقاً في reference يُرجع منه تقاطع row_num وcolumn_num.' }, + }, + }, + INDIRECT: { + description: 'إرجاع المرجع المحدد بواسطة سلسلة نصية. يتم تقييم المراجع مباشرةً لعرض محتوياتها. استخدم INDIRECT عندما تريد تغيير مرجع إلى خلية داخل صيغة دون تغيير الصيغة نفسها.', + abstract: 'إرجاع المرجع المحدد بواسطة سلسلة نصية. يتم تقييم المراجع مباشرةً لعرض محتوياتها. استخدم INDIRECT عندما تريد تغيير مرجع إلى خلية داخل صيغة دون تغيير الصيغة نفسها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'مطلوب. مرجع لخلية تحتوي على مرجع نمط A1، مرجع نمط R1C1، اسم معرف كمرجع، أو مرجع لخلية كسلسلة نصية. إذا لم تكن الوسيطة ref_text مرجع خلية صحيحة، فسترجع الدالة INDIRECT قيمة الخطأ #REF!. إذا كانت الوسيطة ref_text تشير إلى مصنف آخر (مرجع خارجي)، يجب أن يكون المصنف الآخر مفتوحاً. إذا لم يكن المصنف المصدر مفتوحاً، فسترجع الدالة INDIRECT قيمة الخطأ #REF!. ملاحظة المراجع الخارجية غير معتمدة في Excel Web App. إذا كانت الوسيطة ref_text تشير إلى نطاق خلايا خارج حد الصف 1048576 أو حد العمود 16384 (XFD)، ترجع INDIRECT قيمة الخطأ #REF!.' }, + a1: { name: 'a1', detail: 'الاختياري. قيمة منطقية تحدد نوع المرجع الذى تم احتواؤه فى الخلية ref_text. إذا كانت a1 تساوي TRUE أو تم حذفها، يتم تفسير ref_text كمرجع نمط A1. إذا كانت a1 تساوي FALSE، يتم تفسير ref_text كمرجع نمط R1C1.' }, + }, + }, + LOOKUP: { + description: 'يبحث نموذج الخط المتجه للدالة LOOKUP في نطاق صف واحد أو عمود واحد (ويُعرف ذلك بالخط المتجه) عن قيمة ما ويرجع قيمة من الموضع نفسه في نطاق ثانٍ من صف واحد أو عمود واحد.', + abstract: 'يبحث نموذج الخط المتجه للدالة LOOKUP في نطاق صف واحد أو عمود واحد (ويُعرف ذلك بالخط المتجه) عن قيمة ما ويرجع قيمة من الموضع نفسه في نطاق ثانٍ من صف واحد أو عمود واحد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'قيمة تبحث LOOKUP عنها في المتجه الأول. يمكن أن تكون lookup_value رقماً أو نصاً أو قيمة منطقية أو اسماً أو مرجعاً يشير إلى قيمة.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'نطاق لا يحتوي إلا على صف واحد أو عمود واحد.' }, + resultVector: { name: 'result_vector', detail: 'نطاق لا يحتوي إلا على صف واحد أو عمود واحد. يجب أن تكون وسيطة result_vector بالحجم نفسه لـ lookup_vector.' }, + }, + }, + MATCH: { + description: 'تبحث الدالة مطابقة عن عنصر محدد في نطاق من الخلايا، ثم تُرجع الموضع النسبي لذلك العنصر في النطاق. على سبيل المثال، إذا احتوى النطاق A1:A3 على القيم 5 و25 و38، فستُرجع الصيغة ‎=MATCH(25,A1:A3,0)‎ الرقم 2، لأن 25 هو العنصر الثاني في النطاق.', + abstract: 'تبحث الدالة مطابقة عن عنصر محدد في نطاق من الخلايا، ثم تُرجع الموضع النسبي لذلك العنصر في النطاق. على سبيل المثال، إذا احتوى النطاق A1:A3 على القيم 5 و25 و38، فستُرجع الصيغة ‎=MATCH(25,A1:A3,0)‎ الرقم 2، لأن 25 هو العنصر الثاني في النطاق.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'يعثر MATCH على أكبر قيمة أقل من أو تساوي lookup_value . يجب وضع القيم الموجودة في الوسيطة lookup_array بترتيب تصاعدي، على سبيل المثال: ...-2، -1، 0، 1، 2، ...، A-Z، FALSE، TRUE.' }, + lookupArray: { name: 'lookup_array', detail: 'يعثر MATCH على القيمة الأولى التي تساوي تماما lookup_value . يمكن أن تكون القيم الموجودة في الوسيطة lookup_array بأي ترتيب.' }, + matchType: { name: 'match_type', detail: 'يعثر MATCH على أصغر قيمة أكبر من أو تساوي lookup_value . يجب وضع القيم في الوسيطة lookup_array بترتيب تنازلي، على سبيل المثال: TRUE، FALSE، Z-A، ... 2 و1 و0 و-1 و-2 و...وما إلى ذلك.' }, + }, + }, + OFFSET: { + description: 'تُرجع هذه الدالة مرجعاً إلى نطاق يتكوّن من عدد معين من الصفوف والأعمدة من خلية أو نطاق من الخلايا. يكون المرجع الذي يتم إرجاعه عبارة عن خلية واحدة أو نطاق من الخلايا. ويمكنك تحديد عدد الصفوف وعدد الأعمدة التي سيتم إرجاعها.', + abstract: 'تُرجع هذه الدالة مرجعاً إلى نطاق يتكوّن من عدد معين من الصفوف والأعمدة من خلية أو نطاق من الخلايا. يكون المرجع الذي يتم إرجاعه عبارة عن خلية واحدة أو نطاق من الخلايا. ويمكنك تحديد عدد الصفوف وعدد الأعمدة التي سيتم إرجاعها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'مطلوب. المرجع الذي تريد إنشاء الإزاحة منه. يجب أن يشير المرجع إلى خلية أو نطاق من الخلايا المتجاورة؛ وإلا، ترجع الدالة OFFSET #VALUE! وهي قيمة خطأ.' }, + rows: { name: 'rows', detail: 'مطلوب. عدد الصفوف، للأعلى أو للأسفل، التي تريد أن تشير إليها الخلية العلوية اليمنى. يؤدي استخدام 5 كوسيطة الصفوف إلى تعيين وقوع الخلية العلوية اليمنى في المرجع أسفل المرجع بخمسة صفوف. من الممكن أن تكون قيمة وسيطة الصفوف موجبة (أي أسفل مرجع البدء) أو سالبة (أي أعلى مرجع البدء).' }, + cols: { name: 'columns', detail: 'مطلوب. عدد الأعمدة، إلى اليمين أو اليسار، التي تريد أن تشير الخلية العلوية اليمنى من النتيجة إليها. يؤدي استخدام 5 كوسيطة الأعمدة إلى تعيين وقوع الخلية العلوية اليمنى في المرجع إلى يسار المرجع بمقدار خمسة صفوف. من الممكن أن تكون قيمة وسيطة الأعمدة موجبة (أي إلى يسار مرجع البدء) أو سالبة (أي إلى يمين مرجع البدء).' }, + height: { name: 'height', detail: 'الاختياري. الارتفاع، في عدد الصفوف، الذي تريده للمرجع الذي يتم إرجاعه. يجب أن تكون قيمة الارتفاع رقماً موجباً.' }, + width: { name: 'width', detail: 'الاختياري. العرض، في عدد الأعمدة، الذي تريده للمرجع الذي يتم إرجاعه. يجب أن تكون قيمة العرض رقماً موجباً.' }, + }, + }, + ROW: { + description: 'تُرجع هذه الدالة رقم صف المرجع.', + abstract: 'تُرجع هذه الدالة رقم صف المرجع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'الاختياري. الخلية أو نطاق الخلايا التي تريد إرجاع رقم صفها. إذا تم حذف الوسيطة reference، فسيُفتراض أنها مرجع الخلية حيث تظهر الدالة ROW. إذا كان المرجع عبارة عن نطاق من الخلايا، وإذا تم إدخال ROW كصفيف عمودي، فترجع ROW أرقام صفوف المرجع كصفيف عمودي. لا يمكن للوسيطة Reference أن تشير إلى نواحٍ متعددة.' }, + }, + }, + ROWS: { + description: 'إرجاع عدد الصفوف في مرجع أو صفيف.', + abstract: 'إرجاع عدد الصفوف في مرجع أو صفيف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. صفيف أو صيغة صفيف أو مرجع لنطاق خلايا تريد عدد الصفوف له.' }, + }, + }, + RTD: { + description: 'تقوم باسترداد بيانات الوقت الحقيقي من برنامج يعتمد التنفيذ التلقائي لـ COM.', + abstract: 'تقوم باسترداد بيانات الوقت الحقيقي من برنامج يعتمد التنفيذ التلقائي لـ COM.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'مطلوب. اسم ProgID للوظيفة الإضافية أتمتة COM المسجلة التي تم تثبيتها على الكمبيوتر المحلي. ضع الاسم بين علامتي اقتباس.' }, + server: { name: 'server', detail: 'مطلوب. وهي عبارة عن اسم الخادم الذي يجب تشغيل الوظيفة الإضافية عليه. وإذا لم يكن هناك أي خادم، وكان البرنامج قيد التشغيل محلياً، فاترك الوسيطة فارغة. وإلا، فأدخل علامتي اقتباس ("") حول اسم الخادم. أما عند استخدام الدالة RTD داخل Visual Basic for Applications (VBA)‎، فمن الضروري استخدام علامات اقتباس مزدوجة أو الخاصية NullString الموجودة في VBA للخادم، حتى إذا كان هذا الخادم قيد التشغيل محلياً.' }, + topic1: { name: 'topic1', detail: 'Topic1 مطلوب، والمواضيع اللاحقة اختيارية. وهي معلمات من 1 إلى 253 تمثل معاً جزءاً فريداً من بيانات الوقت الحقيقي.' }, + topic2: { name: 'topic2', detail: 'Topic1 مطلوب، والمواضيع اللاحقة اختيارية. وهي معلمات من 1 إلى 253 تمثل معاً جزءاً فريداً من بيانات الوقت الحقيقي.' }, + }, + }, + SORT: { + description: 'في هذا المثال، نقوم بالفرز حسب المنطقة ومندوب المبيعات والمنتج بشكل فردي باستخدام = SORT (A2: A17)، التي يتم نسخها عبر الخلايا F2 وH2 وJ2.', + abstract: 'في هذا المثال، نقوم بالفرز حسب المنطقة ومندوب المبيعات والمنتج بشكل فردي باستخدام = SORT (A2: A17)، التي يتم نسخها عبر الخلايا F2 وH2 وJ2.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'نطاق أو صفيف لإجراء الفرز' }, + sortIndex: { name: 'sort_index', detail: 'رقم يشير إلى الصف أو العمود للفرز حسب' }, + sortOrder: { name: 'sort_order', detail: 'رقم يشير إلى ترتيب الفرز المطلوب 1 لترتيب تصاعدي (افتراضي)، -1 لترتيب تنازلي' }, + byCol: { name: 'by_col', detail: 'قيمة منطقية تشير إلى اتجاه الفرز المطلوب؛ FALSE للفرز حسب الصف (افتراضي)، TRUE للفرز حسب العمود' }, + }, + }, + SORTBY: { + description: 'في هذا المثال، قمنا بفرز قائمة بأسماء الأشخاص حسب عمرهم، بترتيب تصاعدي.', + abstract: 'في هذا المثال، قمنا بفرز قائمة بأسماء الأشخاص حسب عمرهم، بترتيب تصاعدي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف أو النطاق المطلوب فرزه' }, + byArray1: { name: 'by_array1', detail: 'الصفيف أو النطاق المطلوب فرزه' }, + sortOrder1: { name: 'sort_order1', detail: 'الترتيب المطلوب استخدامه للفرز. 1 للتصاعدي، -1 للتنازلي. الافتراضي تصاعدي.' }, + byArray2: { name: 'by_array2', detail: 'الصفيف أو النطاق المطلوب فرزه' }, + sortOrder2: { name: 'sort_order2', detail: 'الترتيب المطلوب استخدامه للفرز. 1 للتصاعدي، -1 للتنازلي. الافتراضي تصاعدي.' }, + }, + }, + TAKE: { + description: 'إرجاع عدد محدد من الصفوف أو الأعمدة المتجاورة من بداية الصفيف أو نهايته.', + abstract: 'إرجاع عدد محدد من الصفوف أو الأعمدة المتجاورة من بداية الصفيف أو نهايته.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف الذي يجب أخذ الصفوف أو الأعمدة منه.' }, + rows: { name: 'rows', detail: 'عدد الصفوف التي يجب أخذها. تأخذ القيمة السالبة من نهاية الصفيف.' }, + columns: { name: 'columns', detail: 'عدد الأعمدة التي يجب أخذها. تأخذ القيمة السالبة من نهاية الصفيف.' }, + }, + }, + TOCOL: { + description: 'إرجاع ARRAY في عمود واحد.', + abstract: 'إرجاع ARRAY في عمود واحد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف أو المرجع المراد إرجاعه كعمود.' }, + ignore: { name: 'ignore', detail: 'ما إذا كان يجب تجاهل أنواع معينة من القيم. افتراضياً لا تُتجاهل أي قيم. حدد أحد الآتي:\n0 الاحتفاظ بكل القيم (افتراضي)\n1 تجاهل الخلايا الفارغة\n2 تجاهل الأخطاء\n3 تجاهل الخلايا الفارغة والأخطاء' }, + scanByColumn: { name: 'scan_by_column', detail: 'يفحص الصفيف حسب العمود. افتراضياً يُفحص الصفيف حسب الصف. يحدد الفحص ما إذا كانت القيم مرتبة حسب الصف أو العمود.' }, + }, + }, + TOROW: { + description: 'إرجاع الصفيف في صفٍ واحد.', + abstract: 'إرجاع الصفيف في صفٍ واحد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف أو المرجع المراد إرجاعه كصف.' }, + ignore: { name: 'ignore', detail: 'ما إذا كان يجب تجاهل أنواع معينة من القيم. افتراضياً لا تُتجاهل أي قيم. حدد أحد الآتي:\n0 الاحتفاظ بكل القيم (افتراضي)\n1 تجاهل الخلايا الفارغة\n2 تجاهل الأخطاء\n3 تجاهل الخلايا الفارغة والأخطاء' }, + scanByColumn: { name: 'scan_by_column', detail: 'يفحص الصفيف حسب العمود. افتراضياً يُفحص الصفيف حسب الصف. يحدد الفحص ما إذا كانت القيم مرتبة حسب الصف أو العمود.' }, + }, + }, + TRANSPOSE: { + description: 'في بعض الأحيان ترغب في تبديل الخلايا أو تدويرها. يمكنك إجراء ذلك عن طريق نسخ خيار تبديل الموضع ولصقه واستخدامه . لكن القيام بذلك سيؤدي إلى إنشاء بيانات مكررة. وإذا لم تكن ترغب في ذلك، يمكنك كتابة صيغة بدلاً من ذلك باستخدام الدالة TRANSPOSE. على سبيل المثال، في الصور التالية، تأخذ الصيغة =TRANSPOSE‏(A1:B4)‏ الخلايا من A1 إلى B4 وتقوم بترتيبها أفقياً.', + abstract: 'في بعض الأحيان ترغب في تبديل الخلايا أو تدويرها. يمكنك إجراء ذلك عن طريق نسخ خيار تبديل الموضع ولصقه واستخدامه . لكن القيام بذلك سيؤدي إلى إنشاء بيانات مكررة. وإذا لم تكن ترغب في ذلك، يمكنك كتابة صيغة بدلاً من ذلك باستخدام الدالة TRANSPOSE. على سبيل المثال، في الصور التالية، تأخذ الصيغة =TRANSPOSE‏(A1:B4)‏ الخلايا من A1 إلى B4 وتقوم بترتيبها أفقياً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'نطاق خلايا أو صفيف في ورقة عمل.' }, + }, + }, + UNIQUE: { + description: 'إرجاع أسماء فريدة من قائمة الأسماء', + abstract: 'إرجاع أسماء فريدة من قائمة الأسماء', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'النطاق أو الصفيف الذي سيتم إرجاع صفوف أو أعمدة فريدة منه' }, + byCol: { name: 'by_col', detail: 'الوسيطة by_col هي قيمة منطقية تشير إلى كيفية المقارنة. سيقوم TRUE بمقارنة الأعمدة مقابل بعضها البعض وإرجاع الأعمدة الفريدة سيقوم FALSE (أو تم حذفه) بمقارنة الصفوف مقابل بعضها البعض وإرجاع الصفوف الفريدة' }, + exactlyOnce: { name: 'exactly_once', detail: 'الوسيطة exactly_once هي قيمة منطقية ستعيد الصفوف أو الأعمدة التي تحدث مرة واحدة بالضبط في النطاق أو الصفيف. هذا هو مفهوم قاعدة البيانات الفريد. سيعيد TRUE جميع الصفوف أو الأعمدة المميزة التي تحدث مرة واحدة بالضبط من النطاق أو الصفيف سيعيد FALSE (أو تم حذفه) جميع الصفوف أو الأعمدة المميزة من النطاق أو الصفيف' }, + }, + }, + VLOOKUP: { + description: 'استخدام الدالة VLOOKUP للبحث عن قيمة في جدول.', + abstract: 'استخدام الدالة VLOOKUP للبحث عن قيمة في جدول.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'القيمة التي تريد البحث عنها. يجب أن تكون في العمود الأول من نطاق الخلايا المحدد في table_array.' }, + tableArray: { name: 'table_array', detail: 'نطاق الخلايا الذي تبحث فيه VLOOKUP عن lookup_value وقيمة الإرجاع. يمكنك استخدام نطاق مسمى أو جدول، كما يمكنك استخدام أسماء بدلاً من مراجع الخلايا.' }, + colIndexNum: { name: 'col_index_num', detail: 'رقم العمود الذي يحتوي على قيمة الإرجاع، بدءاً من 1 للعمود الموجود في أقصى يسار table_array.' }, + rangeLookup: { name: 'range_lookup', detail: 'قيمة منطقية تحدد ما إذا كانت VLOOKUP تبحث عن تطابق تقريبي أو تام: تطابق تقريبي — 1/TRUE، وتطابق تام — 0/FALSE.' }, + }, + }, + VSTACK: { + description: 'تلحق الصفائف عمودياً وبتسلسل لترجع صفيفاً أكبر.', + abstract: 'تلحق الصفائف عمودياً وبتسلسل لترجع صفيفاً أكبر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'الصفائف المراد إلحاقها.' }, + array2: { name: 'array', detail: 'الصفائف المراد إلحاقها.' }, + }, + }, + WRAPCOLS: { + description: 'التفاف صف أو عمود القيم المقدم بواسطة الأعمدة بعد عدد محدد من العناصر.', + abstract: 'التفاف صف أو عمود القيم المقدم بواسطة الأعمدة بعد عدد محدد من العناصر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'المتجه أو المرجع المراد التفافه.' }, + wrapCount: { name: 'wrap_count', detail: 'الحد الأقصى لعدد القيم لكل عمود.' }, + padWith: { name: 'pad_with', detail: 'القيمة التي سيتم لوحة بها. الإعداد الافتراضي هو #N/A.' }, + }, + }, + WRAPROWS: { + description: 'يلف الصف أو العمود المتوفر للقيم حسب الصفوف بعد عدد محدد من العناصر لتكوين صفيف جديد.', + abstract: 'يلف الصف أو العمود المتوفر للقيم حسب الصفوف بعد عدد محدد من العناصر لتكوين صفيف جديد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'المتجه أو المرجع المراد التفافه.' }, + wrapCount: { name: 'wrap_count', detail: 'الحد الأقصى لعدد القيم لكل صف.' }, + padWith: { name: 'pad_with', detail: 'القيمة التي سيتم لوحة بها. الإعداد الافتراضي هو #N/A.' }, + }, + }, + XLOOKUP: { + description: 'استخدم الدالة XLOOKUP للعثور على الأشياء في جدول أو نطاق حسب الصف. على سبيل المثال، ابحث عن سعر جزء السيارات حسب رقم الجزء، أو ابحث عن اسم موظف استنادا إلى معرف الموظف الخاص به. باستخدام XLOOKUP، يمكنك البحث في عمود واحد عن مصطلح بحث وإرجاع نتيجة من الصف نفسه في عمود آخر، بغض النظر عن الجانب الذي يعمل عليه عمود الإرجاع.', + abstract: 'استخدم الدالة XLOOKUP للعثور على الأشياء في جدول أو نطاق حسب الصف. على سبيل المثال، ابحث عن سعر جزء السيارات حسب رقم الجزء، أو ابحث عن اسم موظف استنادا إلى معرف الموظف الخاص به. باستخدام XLOOKUP، يمكنك البحث في عمود واحد عن مصطلح بحث وإرجاع نتيجة من الصف نفسه في عمود آخر، بغض النظر عن الجانب الذي يعمل عليه عمود الإرجاع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'القيمة التي يجب البحث عنها *إذا تم حذفه، ترجع XLOOKUP الخلايا الفارغة التي يعثر عليها في lookup_array .' }, + lookupArray: { name: 'lookup_array', detail: 'الصفيف أو النطاق المراد البحث فيه' }, + returnArray: { name: 'return_array', detail: 'الصفيف أو النطاق المراد إرجاعه' }, + ifNotFound: { name: 'if_not_found', detail: 'في حالة عدم العثور على تطابق صحيح، قم بإعادة النص [if_not_found] الذي توفره. إذا لم يتم العثور على تطابق صالح، وكان [if_not_found] مفقودا، يتم إرجاع #N/A .' }, + matchMode: { name: 'match_mode', detail: 'حدد نوع المطابقة: 0 - المطابقة الدقيقة. إذا لم يتم العثور على أي منها، فارجع #N/A. هذا هو الإعداد الافتراضي. -1 - التطابق الدقيق. إذا لم يتم العثور على أي عنصر، فسترجع العنصر الأصغر التالي. 1 - التطابق الدقيق. إذا لم يتم العثور على أي عنصر، فسترجع العنصر الأكبر التالي. 2 - تطابق أحرف البدل حيث *و?و ~ لها معنى خاص .' }, + searchMode: { name: 'search_mode', detail: 'حدد وضع البحث لاستخدامه: 1 - إجراء بحث بدءا من العنصر الأول. هذا هو الإعداد الافتراضي. -1 - إجراء بحث عكسي بدءا من العنصر الأخير. 2 - إجراء بحث ثنائي يعتمد على lookup_array يتم فرزها بترتيب تصاعدي . إذا لم يتم فرزها، فسيتم إرجاع نتائج غير صالحة. -2 - إجراء بحث ثنائي يعتمد على lookup_array يتم فرزها بترتيب تنازلي . إذا لم يتم فرزها، فسيتم إرجاع نتائج غير صالحة.' }, + }, + }, + XMATCH: { + description: 'افترض أن لدينا قائمة بالمنتجات في الخلايا من C3 إلى C7 ونرغب في تحديد مكان وجود المنتج من الخلية E3 في القائمة. هنا، سنستخدم XMATCH لتحديد موضع العنصر داخل قائمة.', + abstract: 'افترض أن لدينا قائمة بالمنتجات في الخلايا من C3 إلى C7 ونرغب في تحديد مكان وجود المنتج من الخلية E3 في القائمة. هنا، سنستخدم XMATCH لتحديد موضع العنصر داخل قائمة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'قيمة البحث' }, + lookupArray: { name: 'lookup_array', detail: 'الصفيف أو النطاق المراد البحث فيه' }, + matchMode: { name: 'match_mode', detail: 'حدد نوع المطابقة: 0 - المطابقة الدقيقة (افتراضي) -1 - مطابقة تامة أو أصغر عنصر تالية 1 - المطابقة الدقيقة أو العنصر الأكبر التالي 2 - تطابق أحرف البدل حيث *و?و ~ لها معنى خاص .' }, + searchMode: { name: 'search_mode', detail: 'حدد نوع البحث: 1 - البحث من الأول إلى الأخير (افتراضي) -1 - البحث من الأخير إلى الأول (البحث العكسي). 2 - إجراء بحث ثنائي يعتمد على lookup_array يتم فرزها بترتيب تصاعدي . إذا لم يتم فرزها، فسيتم إرجاع نتائج غير صالحة. -2 - إجراء بحث ثنائي يعتمد على lookup_array يتم فرزها بترتيب تنازلي . إذا لم يتم فرزها، فسيتم إرجاع نتائج غير صالحة.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/lookup/ca-ES.ts index 2a91d26d43..ae8f084710 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/ca-es/excel/functions/address-function', }, ], functionParameter: { @@ -55,7 +55,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/ca-es/excel/functions/areas-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/ca-es/excel/functions/choose-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/ca-es/excel/functions/choosecols-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/ca-es/excel/functions/chooserows-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/ca-es/excel/functions/column-function', }, ], functionParameter: { @@ -126,7 +126,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/ca-es/excel/functions/columns-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/ca-es/excel/functions/drop-function', }, ], functionParameter: { @@ -154,7 +154,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/ca-es/excel/functions/expand-function', }, ], functionParameter: { @@ -170,7 +170,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/ca-es/excel/functions/filter-function', }, ], functionParameter: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/ca-es/excel/functions/formulatext-function', }, ], functionParameter: { @@ -198,12 +198,14 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/ca-es/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + dataField: { name: 'Camp de dades', detail: 'Nom del camp de dades que conté les dades que voleu recuperar.' }, + pivotTable: { name: 'Taula dinàmica', detail: 'Referència a una cel·la, un interval o un interval amb nom d’una taula dinàmica.' }, + field1: { name: 'Camp 1', detail: 'Opcional. Nom del primer camp que descriu les dades.' }, + item1: { name: 'Element 1', detail: 'Opcional. Nom del primer element del camp.' }, }, }, HLOOKUP: { @@ -212,7 +214,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/ca-es/excel/functions/hlookup-function', }, ], functionParameter: { @@ -240,7 +242,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/ca-es/excel/functions/hstack-function', }, ], functionParameter: { @@ -249,17 +251,17 @@ const locale: typeof enUS = { }, }, HYPERLINK: { - description: 'Crea un hiperenllaç dins d\'una cel·la.', - abstract: 'Crea un hiperenllaç dins d\'una cel·la.', + description: 'Crea un enllaç dins d\'una cel·la.', + abstract: 'Crea un enllaç dins d\'una cel·la.', links: [ { title: 'Instrucció', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=ca', + url: 'https://support.google.com/docs/answer/3093313?hl=ca', }, ], functionParameter: { - url: { name: 'url', detail: 'L\'URL complet de la ubicació de l\'enllaç tancat entre cometes, o una referència a una cel·la que contingui aquest URL.' }, - linkLabel: { name: 'etiqueta_enllaç', detail: 'El text a mostrar a la cel·la com a enllaç, tancat entre cometes, o una referència a una cel·la que contingui aquesta etiqueta.' }, + url: { name: 'url', detail: 'URL complet de la ubicació de l\'enllaç entre cometes o referència a una cel·la que conté l\'URL. Només es permeten determinats tipus d\'enllaç. Es permeten http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// i news:// ; la resta estan explícitament prohibits. Si s\'especifica un altre protocol, es mostrarà link_label a la cel·la, però no estarà enllaçat. Si no s\'especifica cap protocol, s\'assumeix que és http:// i es col·loca davant d\' url .' }, + linkLabel: { name: 'etiqueta_enllaç', detail: '( OPCIONAL: url de manera predeterminada ) : text que es mostra a la cel·la com a enllaç, entre cometes, o bé referència a una cel·la que contingui aquesta etiqueta. Si etiqueta_enllaç és una referència a una cel·la buida, url es mostrarà com a enllaç si és vàlid o com a text sense format en cas contrari. Si link_label és el literal de cadena buida (""), la cel·la es mostrarà buida, però igualment podreu accedir a l\'enllaç fent clic a la cel·la o movent-vos-hi.' }, }, }, IMAGE: { @@ -268,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/ca-es/excel/functions/image-function', }, ], functionParameter: { @@ -285,7 +287,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/ca-es/excel/functions/index-function', }, ], functionParameter: { @@ -301,7 +303,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/ca-es/excel/functions/indirect-function', }, ], functionParameter: { @@ -315,7 +317,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/ca-es/excel/functions/lookup-function', }, ], functionParameter: { @@ -339,7 +341,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/ca-es/excel/functions/match-function', }, ], functionParameter: { @@ -354,7 +356,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/ca-es/excel/functions/offset-function', }, ], functionParameter: { @@ -371,7 +373,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/ca-es/excel/functions/row-function', }, ], functionParameter: { @@ -384,7 +386,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/ca-es/excel/functions/rows-function', }, ], functionParameter: { @@ -397,12 +399,14 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/ca-es/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + progId: { name: 'Identificador de programa', detail: 'Nom de l’identificador de programa del complement d’automatització COM instal·lat localment.' }, + server: { name: 'Servidor', detail: 'Nom del servidor on s’executa el complement; useu una cadena buida per al servidor local.' }, + topic1: { name: 'Tema 1', detail: 'Primer text que especifica les dades en temps real que s’han de recuperar.' }, + topic2: { name: 'Tema 2', detail: 'Opcional. Textos addicionals que especifiquen les dades en temps real.' }, }, }, SORT: { @@ -411,7 +415,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/ca-es/excel/functions/sort-function', }, ], functionParameter: { @@ -427,7 +431,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/ca-es/excel/functions/sortby-function', }, ], functionParameter: { @@ -444,7 +448,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/ca-es/excel/functions/take-function', }, ], functionParameter: { @@ -459,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/ca-es/excel/functions/tocol-function', }, ], functionParameter: { @@ -474,7 +478,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/ca-es/excel/functions/torow-function', }, ], functionParameter: { @@ -489,7 +493,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/ca-es/excel/functions/transpose-function', }, ], functionParameter: { @@ -502,7 +506,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/ca-es/excel/functions/unique-function', }, ], functionParameter: { @@ -517,7 +521,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/ca-es/excel/functions/vlookup-function', }, ], functionParameter: { @@ -545,7 +549,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/ca-es/excel/functions/vstack-function', }, ], functionParameter: { @@ -559,7 +563,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/ca-es/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -574,7 +578,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/ca-es/excel/functions/wraprows-function', }, ], functionParameter: { @@ -589,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/ca-es/excel/functions/xlookup-function', }, ], functionParameter: { @@ -619,7 +623,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/ca-es/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/de-DE.ts b/packages/sheets-formula/src/locale/function-list/lookup/de-DE.ts new file mode 100644 index 0000000000..cdb585dfb2 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/de-DE.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'Sie können die Funktion ADRESSE verwenden, um die Adresse einer Zelle eines Arbeitsblatts anhand bestimmter Zeilen- und Spaltennummern abzurufen. Address (2,3) gibt beispielsweise $C$ 2 zurück. Als weiteres Beispiel gibt ADDRESS(77.300) $KN$77 zurück. Sie können andere Funktionen verwenden, z. B. die Funktionen ZEILE und SPALTE , um die Argumente für die Zeilen- und Spaltennummer für die Funktion ADRESSE bereitzustellen.', + abstract: 'Sie können die Funktion ADRESSE verwenden, um die Adresse einer Zelle eines Arbeitsblatts anhand bestimmter Zeilen- und Spaltennummern abzurufen. Address (2,3) gibt beispielsweise $C$ 2 zurück. Als weiteres Beispiel gibt ADDRESS(77.300) $KN$77 zurück. Sie können andere Funktionen verwenden, z. B. die Funktionen ZEILE und SPALTE , um die Argumente für die Zeilen- und Spaltennummer für die Funktion ADRESSE bereitzustellen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Erforderlich. Ein numerischer Wert, der die Zeilennummer angibt, die für den Zellbezug verwendet werden soll.' }, + column_num: { name: 'column number', detail: 'Erforderlich. Ein numerischer Wert, der die Spaltennummer angibt, die für den Zellbezug verwendet werden soll.' }, + abs_num: { name: 'type of reference', detail: 'Optional. Ein numerischer Wert, der angibt, welcher Bezugstyp zurückgegeben werden soll.' }, + a1: { name: 'style of reference', detail: 'Optional. Ein Wahrheitswert, der angibt, ob der jeweilige Bezug in der A1- oder der Z1S1-Schreibweise ausgegeben werden soll. Bei der A1-Schreibweise werden Spalten alphabetisch und Zeilen numerisch beschriftet. Bei der Z1S1-Schreibweise werden sowohl Spalten als auch Zeilen numerisch beschriftet. Ist das A1-Argument mit WAHR belegt oder nicht angegeben, liegt der von der Funktion ADRESSE gelieferte Bezug in A1-Schreibweise vor. Ist das A1-Argument mit FALSCH belegt, liegt der von der Funktion ADRESSE gelieferte Bezug in der Z1S1-Schreibweise vor. Hinweis Zum Ändern der von Excel verwendeten Bezugsart klicken Sie auf die Registerkarte Datei , klicken Sie auf Optionen und dann auf Formeln . Aktivieren oder deaktivieren Sie unter Arbeiten mit Formeln das Kontrollkästchen Z1S1-Bezugsart .' }, + sheet_text: { name: 'worksheet name', detail: 'Optional. Ein Textwert, der den Namen des Arbeitsblatts angibt, das als externer Bezug verwendet werden soll. Die Formel =ADDRESS(1;1,,,"Sheet2") gibt beispielsweise Sheet2!$A$1 zurück. Wenn das argument sheet_text nicht angegeben wird, wird kein Blattname verwendet, und die von der Funktion zurückgegebene Adresse verweist auf eine Zelle auf dem aktuellen Blatt.' }, + }, + }, + AREAS: { + description: 'Gibt die Anzahl der innerhalb eines Bezuges aufgeführten Bereiche zurück. Ein Bereich (Teilbereich) kann sowohl aus mehreren zusammenhängenden Zellen (Zellbereich) als auch aus nur einer Zelle bestehen.', + abstract: 'Gibt die Anzahl der innerhalb eines Bezuges aufgeführten Bereiche zurück. Ein Bereich (Teilbereich) kann sowohl aus mehreren zusammenhängenden Zellen (Zellbereich) als auch aus nur einer Zelle bestehen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Erforderlich. Ein Bezug auf eine Zelle oder einen Zellbereich, der sich auf mehrere Bereiche gleichzeitig beziehen kann. Für den Fall, dass Sie mehrere Bezüge als ein Argument angeben möchten, müssen Sie ein zusätzliches Klammernpaar einfügen, damit Microsoft Excel nicht versucht, die Semikolons als Listentrennzeichen zu interpretieren. Das folgende Beispiel verdeutlicht dies.' }, + }, + }, + CHOOSE: { + description: 'Verwendet Index, um einen Wert aus der Liste der Werteargumente zurückzugeben. Verwenden Sie WAHL, um bis zu 254 Werte auf der Grundlage der Indexnummer auszuwählen. Wenn beispielsweise Wert1 bis Wert7 Tage der Woche sind, gibt WAHL einen der Tage zurück, wenn eine Zahl zwischen 1 und 7 als Index verwendet wird.', + abstract: 'Verwendet Index, um einen Wert aus der Liste der Werteargumente zurückzugeben. Verwenden Sie WAHL, um bis zu 254 Werte auf der Grundlage der Indexnummer auszuwählen. Wenn beispielsweise Wert1 bis Wert7 Tage der Woche sind, gibt WAHL einen der Tage zurück, wenn eine Zahl zwischen 1 und 7 als Index verwendet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Gibt an, welches Wertargument ausgewählt wird. index_num muss eine Zahl zwischen 1 und 254, eine Formel oder ein Bezug auf eine Zelle mit einer Zahl zwischen 1 und 254 sein.\nWenn index_num 1 ist, gibt CHOOSE value1 zurück; bei 2 value2 usw.\nIst index_num kleiner als 1 oder größer als die Nummer des letzten Werts in der Liste, gibt CHOOSE den Fehlerwert #VALUE! zurück.\nIst index_num ein Bruch, wird er vor der Verwendung auf die nächstkleinere ganze Zahl gekürzt.' }, + value1: { name: 'value1', detail: 'CHOOSE wählt anhand von index_num einen Wert oder eine auszuführende Aktion aus. Die Argumente können Zahlen, Zellbezüge, definierte Namen, Formeln, Funktionen oder Text sein.' }, + value2: { name: 'value2', detail: '1 bis 254 Wertargumente.' }, + }, + }, + CHOOSECOLS: { + description: 'Gibt die angegebenen Spalten aus einem Array zurück.', + abstract: 'Gibt die angegebenen Spalten aus einem Array zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array, das die Spalten enthält, die im neuen Array zurückgegeben werden sollen. Erforderlich.' }, + colNum1: { name: 'col_num1', detail: 'Die erste Spalte, die zurückgegeben werden soll. Erforderlich.' }, + colNum2: { name: 'col_num2', detail: 'Zusätzliche Spalten, die zurückgegeben werden sollen. Optional.' }, + }, + }, + CHOOSEROWS: { + description: 'Gibt die angegebenen Zeilen aus einem Array zurück.', + abstract: 'Gibt die angegebenen Zeilen aus einem Array zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array, das die Spalten enthält, die im neuen Array zurückgegeben werden sollen. Erforderlich.' }, + rowNum1: { name: 'row_num1', detail: 'Die nummer der ersten Zeile, die zurückgegeben werden soll. Erforderlich.' }, + rowNum2: { name: 'row_num2', detail: 'Zusätzliche Zeilennummern, die zurückgegeben werden sollen. Optional.' }, + }, + }, + COLUMN: { + description: 'Die COLUMN-Funktion gibt die Spaltennummer des angegebenen Zellbezugs zurück. Beispielsweise gibt die Formel =COLUMN(D10) 4 zurück, da Spalte D die vierte Spalte ist.', + abstract: 'Die COLUMN-Funktion gibt die Spaltennummer des angegebenen Zellbezugs zurück. Beispielsweise gibt die Formel =COLUMN(D10) 4 zurück, da Spalte D die vierte Spalte ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Die Zelle oder der Zellbereich, für die bzw. den Sie die Spaltennummer zurückgeben möchten.' }, + }, + }, + COLUMNS: { + description: 'Gibt die Anzahl der Spalten in einem Array oder Verweis zurück.', + abstract: 'Gibt die Anzahl der Spalten in einem Array oder Verweis zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array oder eine Arrayformel oder ein Verweis auf einen Zellbereich, für den Sie die Anzahl der Spalten verwenden möchten.' }, + }, + }, + DROP: { + description: 'Schließt eine angegebene Anzahl von Zeilen oder Spalten vom Anfang oder Ende einer Matrix aus. Diese Funktion kann hilfreich sein, um Kopf- und Fußzeilen in einem Excel-Bericht zu entfernen, um nur die Daten zurückzugeben.', + abstract: 'Schließt eine angegebene Anzahl von Zeilen oder Spalten vom Anfang oder Ende einer Matrix aus. Diese Funktion kann hilfreich sein, um Kopf- und Fußzeilen in einem Excel-Bericht zu entfernen, um nur die Daten zurückzugeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array, aus dem Zeilen oder Spalten gelöscht werden sollen.' }, + rows: { name: 'rows', detail: 'Die Anzahl der zu löschenden Zeilen. Ein negativer Wert wird vom Ende der Matrix entfernt.' }, + columns: { name: 'columns', detail: 'Die Anzahl der auszuschließenden Spalten. Ein negativer Wert wird vom Ende der Matrix entfernt.' }, + }, + }, + EXPAND: { + description: 'Erweitert oder füllt ein Array auf die angegebenen Zeilen- und Spaltenmaße auf.', + abstract: 'Erweitert oder füllt ein Array auf die angegebenen Zeilen- und Spaltenmaße auf.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das zu erweiternde Array.' }, + rows: { name: 'rows', detail: 'Die Anzahl der Zeilen im erweiterten Array. Wenn nicht angegeben, werden die Zeilen nicht erweitert.' }, + columns: { name: 'columns', detail: 'Die Anzahl der Spalten im erweiterten Array. Wenn nicht angegeben, werden die Spalten nicht erweitert.' }, + padWith: { name: 'pad_with', detail: 'Der Wert, mit dem auf der Füllung polstert werden soll. Der Standardwert lautet #N/A.' }, + }, + }, + FILTER: { + description: 'Im folgenden Beispiel wird die Formel = FILTER(A5:D20;C5:C20=H2; "") verwendet, um alle Datensätze für "Apfel" zurückzugeben, wie in Zelle H2 ausgewählt. Wenn keine Äpfel vorhanden sind, wird eine leere Zeichenfolge ("") zurückgegeben.', + abstract: 'Im folgenden Beispiel wird die Formel = FILTER(A5:D20;C5:C20=H2; "") verwendet, um alle Datensätze für "Apfel" zurückzugeben, wie in Zelle H2 ausgewählt. Wenn keine Äpfel vorhanden sind, wird eine leere Zeichenfolge ("") zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array oder der Bereich, das/der gefiltert werden soll' }, + include: { name: 'include', detail: 'Ein boolesches Array, dessen Höhe oder Breite mit dem Array identisch ist' }, + ifEmpty: { name: 'if_empty', detail: 'Der Wert, der zurückgegeben werden soll, wenn alle Werte im eingeschlossenen Array leer sind (Filter gibt nichts zurück)' }, + }, + }, + FORMULATEXT: { + description: 'Gibt eine Formel als eine Zeichenfolge zurück.', + abstract: 'Gibt eine Formel als eine Zeichenfolge zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Erforderlich. Ein Bezug auf eine Zelle oder einen Zellbereich.' }, + }, + }, + GETPIVOTDATA: { + description: 'Gibt sichtbare Daten zurück, die in einer PivotTable gespeichert sind.', + abstract: 'Gibt sichtbare Daten zurück, die in einer PivotTable gespeichert sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'Der Name der PivotTable, die die Daten enthält, die Sie abrufen möchten. Dies muss in Anführungszeichen stehen. Beispiel: =GETPIVOTDATA("Sales", A3). Hier ist "Sales" das Feld Werte, das abgerufen werden soll. Da kein anderes Feld angegeben ist, gibt GETPIVOTDATA den Gesamtumsatz zurück.' }, + pivotTable: { name: 'pivotTable', detail: 'Stellt einen Bezug auf eine Zelle, einen Zellbereich oder einen benannten Zellbereich in einer PivotTable dar. Mit diesen Informationen wird ermittelt, welche PivotTable die Daten enthält, die Sie abrufen möchten. Beispiel: =GETPIVOTDATA("Sales", A3). Hier ist A3 ein Verweis innerhalb der PivotTable und teilt der Formel mit, welche PivotTable verwendet werden soll.' }, + field1: { name: 'field1', detail: 'Stehen für Paare aus Feld- und Elementnamen (zwischen 1 und 126), die die Daten beschreiben, die Sie abrufen möchten. Diese Paare können in einer beliebigen Reihenfolge auftreten. Feld- und Elementnamen, die nicht aus Datumsangaben oder Zahlen bestehen, müssen in Anführungszeichen eingeschlossen sein. Beispiel: =GETPIVOTDATA("Sales"; A3, "Month", "Mar"). Hier ist "Month" das Feld und "Mar" ist das Element. Um mehrere Elemente für ein Feld anzugeben, schließen Sie sie in geschweifte Klammern ein (z. B. {"Mar", "Apr"}). Für OLAP-PivotTables können Elemente den Quellnamen der Dimension sowie den Quellnamen des Elements enthalten. Ein Paar aus Feld und Element könnte für eine OLAP-PivotTable wie folgt aussehen: "[Produkt]";"[Produkt].[Alle Produkte].[Lebensmittel].[Backwaren]"' }, + item1: { name: 'item1', detail: 'Stehen für Paare aus Feld- und Elementnamen (zwischen 1 und 126), die die Daten beschreiben, die Sie abrufen möchten. Diese Paare können in einer beliebigen Reihenfolge auftreten. Feld- und Elementnamen, die nicht aus Datumsangaben oder Zahlen bestehen, müssen in Anführungszeichen eingeschlossen sein. Beispiel: =GETPIVOTDATA("Sales"; A3, "Month", "Mar"). Hier ist "Month" das Feld und "Mar" ist das Element. Um mehrere Elemente für ein Feld anzugeben, schließen Sie sie in geschweifte Klammern ein (z. B. {"Mar", "Apr"}). Für OLAP-PivotTables können Elemente den Quellnamen der Dimension sowie den Quellnamen des Elements enthalten. Ein Paar aus Feld und Element könnte für eine OLAP-PivotTable wie folgt aussehen: "[Produkt]";"[Produkt].[Alle Produkte].[Lebensmittel].[Backwaren]"' }, + }, + }, + HLOOKUP: { + description: 'Sucht nach einem Wert in der obersten Zeile einer Tabelle oder einer Matrix und gibt dann einen Wert in derselben Spalte einer Zeile zurück, die Sie in der Tabelle oder der Matrix angeben. Verwenden Sie WVERWEIS, wenn sich die Vergleichswerte in einer Zeile am Anfang einer Datentabelle befinden und Sie eine bestimmte Anzahl von Spalten nach unten durchsuchen möchten. Verwenden Sie SVERWEIS, wenn sich die Vergleichswerte in einer Spalte links neben den Daten befinden, die Sie durchsuchen möchten.', + abstract: 'Sucht nach einem Wert in der obersten Zeile einer Tabelle oder einer Matrix und gibt dann einen Wert in derselben Spalte einer Zeile zurück, die Sie in der Tabelle oder der Matrix angeben. Verwenden Sie WVERWEIS, wenn sich die Vergleichswerte in einer Zeile am Anfang einer Datentabelle befinden und Sie eine bestimmte Anzahl von Spalten nach unten durchsuchen möchten. Verwenden Sie SVERWEIS, wenn sich die Vergleichswerte in einer Spalte links neben den Daten befinden, die Sie durchsuchen möchten.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Erforderlich. Der Wert, der in der ersten Zeile der Tabelle gefunden werden soll. "Suchkriterium" kann ein Wert, ein Bezug oder eine Zeichenfolge sein.' }, + tableArray: { name: 'table_array', detail: 'Erforderlich. Eine Tabelle mit Informationen, in der Daten gesucht werden. Verwenden Sie einen Bezug auf einen Bereich oder einen Bereichsnamen. Bei den Werten in der ersten Zeile von "Matrix" kann es sich um Text, Zahlen oder Wahrheitswerte handeln. Wenn "Bereich_Verweis" WAHR ist, müssen die Werte in der ersten Zeile von "Matrix" in aufsteigender Reihenfolge angeordnet werden: ..., -2, -1, 0, 1, 2, ..., A-Z, FALSCH, WAHR; andernfalls gibt WVERWEIS möglicherweise nicht den richtigen Wert zurück. Wenn "Bereich_Verweis" FALSCH ist, muss "Matrix" nicht sortiert werden. Bei Zeichenfolgen (Texten) wird nicht zwischen Groß- und Kleinbuchstaben unterschieden. Sortieren Sie die Werte in aufsteigender Reihenfolge von links nach rechts. Weitere Informationen finden Sie unter Sortieren von Daten in einem Bereich oder einer Tabelle .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Erforderlich. Die Nummer der Zeile in "Matrix", aus der der entsprechende Wert zurückgegeben wird. Ein Zeilenindex von 1 gibt den ersten Zeilenwert in "Matrix" zurück, ein Zeilenindex von 2 gibt den zweiten Zeilenwert in "Matrix" zurück usw. Wenn "Zeilenindex" kleiner als 1 ist, gibt WVERWEIS den Fehlerwert #WERT! zurück; wenn "Zeilenindex" größer als die Anzahl der Zeilen in "Matrix" ist, gibt WVERWEIS den Fehlerwert #BEZUG! zurück.' }, + rangeLookup: { name: 'range_lookup', detail: 'Optional. Ein Wahrheitswert, der angibt, ob WVERWEIS eine genaue Entsprechung oder eine ungefähre Entsprechung suchen soll. Wenn dieser Parameter WAHR ist oder weggelassen wird, wird eine ungefähre Entsprechung zurückgegeben. Anders ausgedrückt, wird der nächstgrößere Wert zurückgegeben, der kleiner als "Suchkriterium" ist, wenn keine genaue Entsprechung gefunden wird. Ist der Parameter FALSCH, sucht WVERWEIS eine genaue Entsprechung. Wenn keine gefunden wird, wird der Fehlerwert #NV zurückgegeben.' }, + }, + }, + HSTACK: { + description: 'Fügt Arrays horizontal und nacheinander an, um ein größeres Array zurückzugeben.', + abstract: 'Fügt Arrays horizontal und nacheinander an, um ein größeres Array zurückzugeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Die anzufügenden Matrizen.' }, + array2: { name: 'array', detail: 'Die anzufügenden Matrizen.' }, + }, + }, + HYPERLINK: { + description: 'Erstellt einen Hyperlink innerhalb einer Zelle.', + abstract: 'Erstellt einen Hyperlink innerhalb einer Zelle.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=de', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'Die vollständige, in Anführungszeichen eingeschlossene URL des Linkziels oder ein Bezug auf eine Zelle mit einer solchen URL. Nur bestimmte Linktypen sind zulässig: http://, https://, mailto:, aim:, ftp://, gopher://, telnet:// und news://. Andere sind ausdrücklich nicht zulässig. Bei einem anderen Protokoll wird link_label in der Zelle angezeigt, aber nicht verlinkt. Wenn kein Protokoll angegeben ist, wird http:// angenommen und url vorangestellt.' }, + linkLabel: { name: 'link_label', detail: '[ OPTIONAL – standardmäßig url ] – Der in der Zelle als Link anzuzeigende Text in Anführungszeichen oder ein Bezug auf eine Zelle mit einem solchen Text. Verweist link_label auf eine leere Zelle, wird url als Link angezeigt, wenn sie gültig ist, andernfalls als Text. Ist link_label die leere Zeichenfolge (""), erscheint die Zelle leer, der Link bleibt jedoch per Klick oder Zellnavigation erreichbar.' }, + }, + }, + IMAGE: { + description: 'Die Funktion BILD fügt Bilder zusammen mit Alternativtext aus einer Quellposition in Zellen ein. Anschließend können Sie Zellen verschieben und deren Größe ändern, sie sortieren und filtern und mit Bildern in einer Excel-Tabelle arbeiten. Verwenden Sie diese Funktion, um Listen von Daten, z. B. Bestände, Spiele, Mitarbeiter und mathematische Konzepte, visuell zu verbessern.', + abstract: 'Die Funktion BILD fügt Bilder zusammen mit Alternativtext aus einer Quellposition in Zellen ein. Anschließend können Sie Zellen verschieben und deren Größe ändern, sie sortieren und filtern und mit Bildern in einer Excel-Tabelle arbeiten. Verwenden Sie diese Funktion, um Listen von Daten, z. B. Bestände, Spiele, Mitarbeiter und mathematische Konzepte, visuell zu verbessern.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'Der URL-Pfad der Bilddatei mit dem Protokoll „https“.' }, + altText: { name: 'alt_text', detail: 'Alternativtext, der das Bild für die Barrierefreiheit beschreibt.' }, + sizing: { name: 'sizing', detail: 'Gibt die Bildabmessungen an.' }, + height: { name: 'height', detail: 'Die benutzerdefinierte Höhe des Bilds in Pixeln.' }, + width: { name: 'width', detail: 'Die benutzerdefinierte Breite des Bilds in Pixeln.' }, + }, + }, + INDEX: { + description: 'Gibt den Wert eines Elements in einer Tabelle oder einem Array zurück, ausgewählt anhand der Zeilen- und Spaltennummerindizes.', + abstract: 'Gibt den Wert eines Elements in einer Tabelle oder einem Array zurück, ausgewählt anhand der Zeilen- und Spaltennummerindizes.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Ein Bezug auf einen oder mehrere Zellbereiche.' }, + rowNum: { name: 'row_num', detail: 'Die Nummer der Zeile in reference, aus der ein Bezug zurückgegeben werden soll.' }, + columnNum: { name: 'column_num', detail: 'Die Nummer der Spalte in reference, aus der ein Bezug zurückgegeben werden soll.' }, + areaNum: { name: 'area_num', detail: 'Wählt einen Bereich in reference aus, aus dem die Schnittmenge von row_num und column_num zurückgegeben wird.' }, + }, + }, + INDIRECT: { + description: 'Gibt den Bezug eines Textwerts zurück. Bezüge werden sofort ausgewertet, sodass die zu ihnen gehörenden Werte angezeigt werden. Verwenden Sie die INDIREKT-Funktion, um den Bezug auf eine in einer Formel befindliche Zelle zu ändern ohne die Formel selbst zu ändern.', + abstract: 'Gibt den Bezug eines Textwerts zurück. Bezüge werden sofort ausgewertet, sodass die zu ihnen gehörenden Werte angezeigt werden. Verwenden Sie die INDIREKT-Funktion, um den Bezug auf eine in einer Formel befindliche Zelle zu ändern ohne die Formel selbst zu ändern.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Erforderlich. Der Bezug auf eine Zelle, die einen Bezug in der A1-Schreibweise, einen Bezug in der Z1S1-Schreibweise, einen definierten Namen als Bezug oder einen Zellbezug als Zeichenfolge enthält. Gibt "Bezug" einen unzulässigen Zellbezug an, gibt INDIREKT den Fehlerwert #BEZUG! zurück. Verweist "Bezug" auf eine andere Arbeitsmappe (ein externer Bezug) muss diese Arbeitsmappe geöffnet sein. Ist die Quellarbeitsmappe nicht geöffnet, gibt die INDIREKT-Funktion den Fehlerwert #BEZUG! zurück. Hinweis Externe Verweise werden in Excel Web App nicht unterstützt. Wenn sich ref_text auf einen Zellbereich außerhalb des Zeilenlimits von 1.048.576 oder dem Spaltengrenzwert von 16.384 (XFD) bezieht, gibt INDIRECT eine #REF! was zu einem #BEZUG!-Fehler führt.' }, + a1: { name: 'a1', detail: 'Optional. Ein Wahrheitswert, der angibt, welche Art von Bezug in der Zelle enthalten ist Ist "A1" gleich WAHR oder nicht angegeben, wird "Bezug" als ein Bezug interpretiert, der in der A1-Schreibweise vorliegt. Ist "A1" gleich FALSCH, wird "Bezug" als ein Bezug interpretiert, der in der Z1S1-Schreibweise vorliegt.' }, + }, + }, + LOOKUP: { + description: 'Die Vektorversion von VERWEIS durchsucht einen Bereich mit einer Zeile oder einer Spalte (auch als Vektor bezeichnet) nach einem Wert und gibt einen Wert von derselben Position in einem zweiten Bereich mit einer Zeile oder einer Spalte zurück.', + abstract: 'Die Vektorversion von VERWEIS durchsucht einen Bereich mit einer Zeile oder einer Spalte (auch als Vektor bezeichnet) nach einem Wert und gibt einen Wert von derselben Position in einem zweiten Bereich mit einer Zeile oder einer Spalte zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Ein Wert, nach dem LOOKUP im ersten Vektor sucht. lookup_value kann eine Zahl, Text, ein Wahrheitswert oder ein Name bzw. Bezug sein, der auf einen Wert verweist.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Ein Bereich, der nur eine Zeile oder eine Spalte enthält.' }, + resultVector: { name: 'result_vector', detail: 'Ein Bereich, der nur eine Zeile oder Spalte enthält. result_vector muss dieselbe Größe wie lookup_vector haben.' }, + }, + }, + MATCH: { + description: 'Die Funktion VERGLEICH sucht nach einem bestimmten Element in einem Bereich von Zellen und gibt dann die relative Position dieses Elements in dem Bereich zurück. Ein Beispiel: Wenn der Bereich A1:A3 die Werte "5", "25" und "38" enthält, gibt die Formel =VERGLEICH(25;A1:A3;0) den Wert "2" zurück, weil "25" der zweite Wert im Bereich ist.', + abstract: 'Die Funktion VERGLEICH sucht nach einem bestimmten Element in einem Bereich von Zellen und gibt dann die relative Position dieses Elements in dem Bereich zurück. Ein Beispiel: Wenn der Bereich A1:A3 die Werte "5", "25" und "38" enthält, gibt die Formel =VERGLEICH(25;A1:A3;0) den Wert "2" zurück, weil "25" der zweite Wert im Bereich ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'MATCH findet den größten Wert, der kleiner oder gleich lookup_value ist. Die Werte im lookup_array Argument müssen in aufsteigender Reihenfolge platziert werden, z. B. ...-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE.' }, + lookupArray: { name: 'lookup_array', detail: 'MATCH findet den ersten Wert, der genau gleich lookup_value ist. Die Werte im lookup_array Argument können in beliebiger Reihenfolge angegeben werden.' }, + matchType: { name: 'match_type', detail: 'MATCH findet den kleinsten Wert, der größer oder gleich lookup_value ist. Die Werte im lookup_array Argument müssen in absteigender Reihenfolge platziert werden, z. B.: TRUE, FALSE, Z-A, ... 2, 1, 0, -1, -2, ... usw.' }, + }, + }, + OFFSET: { + description: 'Gibt einen Bezug zurück, der gegenüber dem angegebenen Bezug versetzt ist. Der zurückgegebene Bezug kann eine einzelne Zelle oder ein Zellbereich sein. Sie können die Anzahl der zurückzugebenden Zeilen und Spalten festlegen.', + abstract: 'Gibt einen Bezug zurück, der gegenüber dem angegebenen Bezug versetzt ist. Der zurückgegebene Bezug kann eine einzelne Zelle oder ein Zellbereich sein. Sie können die Anzahl der zurückzugebenden Zeilen und Spalten festlegen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Erforderlich. Der Verweis, auf dem der Offset basieren soll. Bezug muss sich auf eine Zelle oder einen Bereich angrenzender Zellen beziehen; Andernfalls gibt OFFSET die #VALUE! zurück.' }, + rows: { name: 'rows', detail: 'Erforderlich. Die Anzahl der Zeilen, um die Sie die obere linke Eckzelle des Bereichs nach oben oder nach unten verschieben möchten. Entspricht das Argument Zeilen beispielsweise 5, bedeutet dies, dass die obere linke Ecke des neuen Bezugs fünf Zeilen unterhalb von Bezug liegt. Das Argument Zeilen kann sowohl einen positiven (unterhalb des Ausgangsbezugs liegen) als auch einen negativen Wert annehmen (oberhalb des Ausgangsbezugs liegen).' }, + cols: { name: 'columns', detail: 'Erforderlich. Die Anzahl der Spalten, um die Sie die obere linke Eckzelle des Bereichs nach links oder nach rechts verschieben möchten. Ist das Argument Spalten beispielsweise gleich 5, so bedeutet dies, dass die obere linke Ecke des neuen Bezugs fünf Spalten rechts von Bezug liegt. Spalten kann sowohl einen positiven (rechts des Ausgangsbezugs liegen) als auch einen negativen Wert annehmen (links des Ausgangsbezugs liegen).' }, + height: { name: 'height', detail: 'Optional. Die Höhe des neuen Bezugs in Zeilen. Für "Höhe" muss ein positiver Wert angegeben werden.' }, + width: { name: 'width', detail: 'Optional. Die Breite des neuen Bezugs in Spalten. Für "Breite" muss ein positiver Wert angegeben werden.' }, + }, + }, + ROW: { + description: 'Gibt die Zeilennummer eines Bezugs zurück.', + abstract: 'Gibt die Zeilennummer eines Bezugs zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Optional. Die Zelle oder der Zellbereich, für die Sie die Zeilennummer verwenden möchten. Fehlt das Argument "Bezug", wird es als Bezug der Zelle angenommen, in der die Funktion ZEILE steht. Wenn reference ein Zellbereich ist und ROW als vertikales Array eingegeben wird, gibt ROW die Zeilennummern des Bezugs als vertikales Array zurück. "Bezug" darf sich nicht auf mehrere Bereiche beziehen.' }, + }, + }, + ROWS: { + description: 'Gibt die Anzahl der Zeilen in einem Verweis oder Array zurück.', + abstract: 'Gibt die Anzahl der Zeilen in einem Verweis oder Array zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array, eine Arrayformel oder ein Verweis auf einen Zellbereich, für den Sie die Anzahl der Zeilen verwenden möchten.' }, + }, + }, + RTD: { + description: 'Ruft Echtzeitdaten aus einem Programm ab, das die COM-Automatisierung unterstützt', + abstract: 'Ruft Echtzeitdaten aus einem Programm ab, das die COM-Automatisierung unterstützt', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Erforderlich. Der Name der ProgID eines registrierten COM-Automatisierungs-Add-Ins, das auf dem lokalen Computer installiert wurde. Schließen Sie den Namen in Anführungszeichen ein.' }, + server: { name: 'server', detail: 'Erforderlich. Der Name des Servers, auf dem das Add-In ausgeführt werden soll. Wenn kein Server vorhanden ist und das Programm lokal ausgeführt wird, dann geben Sie keinen Wert für das Argument ein. Andernfalls schließen Sie den Servernamen in Anführungszeichen ("") ein. Wenn Sie RTD in Visual Basic for Applications (VBA) verwenden, sind für den Server doppelte Anführungszeichen oder die VBA-Eigenschaft NullString erforderlich, auch wenn der Server lokal ausgeführt wird.' }, + topic1: { name: 'topic1', detail: 'Topic1 ist erforderlich, nachfolgende Themen sind optional. 1 bis 253 Parameter, die zusammen einen eindeutigen Teil der Echtzeitdaten darstellen.' }, + topic2: { name: 'topic2', detail: 'Topic1 ist erforderlich, nachfolgende Themen sind optional. 1 bis 253 Parameter, die zusammen einen eindeutigen Teil der Echtzeitdaten darstellen.' }, + }, + }, + SORT: { + description: 'In diesem Beispiel wurde nach "Region", "Vertriebsmitarbeiter" und "Produkt " einzeln mit =SORTIEREN(A2:A17) sortiert und über die Zellen F2, H2 und J2 kopiert.', + abstract: 'In diesem Beispiel wurde nach "Region", "Vertriebsmitarbeiter" und "Produkt " einzeln mit =SORTIEREN(A2:A17) sortiert und über die Zellen F2, H2 und J2 kopiert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Der Bereich oder das Array, der/das sortiert werden soll' }, + sortIndex: { name: 'sort_index', detail: 'Eine Zahl, die die Zeile oder Spalte angibt, nach der sortiert werden soll' }, + sortOrder: { name: 'sort_order', detail: 'Eine Zahl, die die gewünschte Sortierreihenfolge angibt: "1" für aufsteigende Reihenfolge (Standard), "-1" für absteigende Reihenfolge' }, + byCol: { name: 'by_col', detail: 'Ein Wahrheitswert, der die gewünschte Sortierrichtung angibt: FALSCH zum Sortieren nach Zeile (Standard), WAHR zum Sortieren nach Spalte' }, + }, + }, + SORTBY: { + description: 'In diesem Beispiel wird eine Liste mit den Namen von Personen nach deren Alter in aufsteigender Reihenfolge sortiert.', + abstract: 'In diesem Beispiel wird eine Liste mit den Namen von Personen nach deren Alter in aufsteigender Reihenfolge sortiert.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array oder der Bereich, das/der sortiert werden soll' }, + byArray1: { name: 'by_array1', detail: 'Das Array oder der Bereich, nach dem sortiert werden soll' }, + sortOrder1: { name: 'sort_order1', detail: 'Die Reihenfolge, in der sortiert werden soll. 1 für "aufsteigend", -1 für "absteigend". Standard ist "aufsteigend".' }, + byArray2: { name: 'by_array2', detail: 'Die Matrix oder der Bereich, nach der bzw. dem sortiert werden soll' }, + sortOrder2: { name: 'sort_order2', detail: 'Die Reihenfolge, in der sortiert werden soll. 1 für "aufsteigend", -1 für "absteigend". Standard ist "aufsteigend".' }, + }, + }, + TAKE: { + description: 'Gibt eine bestimmte Anzahl zusammenhängender Zeilen oder Spalten ab dem Anfang oder Ende einer Matrix zurück.', + abstract: 'Gibt eine bestimmte Anzahl zusammenhängender Zeilen oder Spalten ab dem Anfang oder Ende einer Matrix zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Das Array, aus dem Zeilen oder Spalten entnommen werden sollen.' }, + rows: { name: 'rows', detail: 'Die Anzahl der zu nehmenden Zeilen. Bei einem negativen Wert erfolgt die Übernahme vom Ende des Arrays.' }, + columns: { name: 'columns', detail: 'Die Anzahl der zu nehmenden Spalten. Bei einem negativen Wert erfolgt die Übernahme vom Ende des Arrays.' }, + }, + }, + TOCOL: { + description: 'Gibt das Array in einer einzelnen Spalte zurück.', + abstract: 'Gibt das Array in einer einzelnen Spalte zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Die Matrix oder der Bezug, die bzw. der als Spalte zurückgegeben werden soll.' }, + ignore: { name: 'ignore', detail: 'Gibt an, ob bestimmte Werttypen ignoriert werden. Standardmäßig werden keine Werte ignoriert. Geben Sie einen der folgenden Werte an:\n0 Alle Werte beibehalten (Standard)\n1 Leere Zellen ignorieren\n2 Fehler ignorieren\n3 Leere Zellen und Fehler ignorieren' }, + scanByColumn: { name: 'scan_by_column', detail: 'Durchsucht die Matrix spaltenweise. Standardmäßig wird die Matrix zeilenweise durchsucht. Die Durchsuchung bestimmt, ob die Werte zeilen- oder spaltenweise angeordnet werden.' }, + }, + }, + TOROW: { + description: 'Gibt die Matrix in einer einzelnen Zeile zurück.', + abstract: 'Gibt die Matrix in einer einzelnen Zeile zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Die Matrix oder der Bezug, die bzw. der als Zeile zurückgegeben werden soll.' }, + ignore: { name: 'ignore', detail: 'Gibt an, ob bestimmte Werttypen ignoriert werden. Standardmäßig werden keine Werte ignoriert. Geben Sie einen der folgenden Werte an:\n0 Alle Werte beibehalten (Standard)\n1 Leere Zellen ignorieren\n2 Fehler ignorieren\n3 Leere Zellen und Fehler ignorieren' }, + scanByColumn: { name: 'scan_by_column', detail: 'Durchsucht die Matrix spaltenweise. Standardmäßig wird die Matrix zeilenweise durchsucht. Die Durchsuchung bestimmt, ob die Werte zeilen- oder spaltenweise angeordnet werden.' }, + }, + }, + TRANSPOSE: { + description: 'Es kann vorkommen, dass Sie Zellen wechseln oder drehen müssen. Zu diesem Zweck können Sie die Zellen kopieren, einfügen und dann die Option "Transponieren" verwenden . Auf diese Weise werden jedoch Duplikate erstellt. Wenn Sie dies verhindern möchten, können Sie eine Formel anstelle von MTRANS verwenden. In der folgenden Abbildung werden mit der Formel =MTRANS(A1:B4) beispielsweise die Zellen A1 bis B4 horizontal angeordnet.', + abstract: 'Es kann vorkommen, dass Sie Zellen wechseln oder drehen müssen. Zu diesem Zweck können Sie die Zellen kopieren, einfügen und dann die Option "Transponieren" verwenden . Auf diese Weise werden jedoch Duplikate erstellt. Wenn Sie dies verhindern möchten, können Sie eine Formel anstelle von MTRANS verwenden. In der folgenden Abbildung werden mit der Formel =MTRANS(A1:B4) beispielsweise die Zellen A1 bis B4 horizontal angeordnet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Ein Zellbereich oder eine Matrix in einem Arbeitsblatt.' }, + }, + }, + UNIQUE: { + description: 'Zurückgeben von eindeutigen Namen aus einer Liste von Namen', + abstract: 'Zurückgeben von eindeutigen Namen aus einer Liste von Namen', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Der Bereich oder das Array, aus dem eindeutige Zeilen oder Spalten zurückgegeben werden sollen' }, + byCol: { name: 'by_col', detail: 'Das Argument "nach_Spalte" ist ein logischer Wert, der angibt, wie verglichen werden soll. WAHR vergleicht Spalten miteinander und gibt die eindeutigen Spalten zurück. FALSCH (oder ausgelassen) vergleicht Zeilen miteinander und gibt die eindeutigen Zeilen zurück.' }, + exactlyOnce: { name: 'exactly_once', detail: 'Das Argument "genau_einmal" ist ein logischer Wert, der Zeilen oder Spalten zurückgibt, die im Bereich oder Array genau einmal vorkommen. Dies ist das Datenbankkonzept von EINDEUTIG. WAHR gibt alle unterschiedlichen Zeilen oder Spalten aus dem Bereich oder Array zurück, die exakt einmal vorkommen. FALSCH (oder ausgelassen) gibt alle unterschiedlichen Zeilen oder Spalten aus dem Bereich oder Array zurück.' }, + }, + }, + VLOOKUP: { + description: 'Verwenden Sie die Funktion SVERWEIS zum Nachschlagen eines Werts in einer Tabelle.', + abstract: 'Verwenden Sie die Funktion SVERWEIS zum Nachschlagen eines Werts in einer Tabelle.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Der Wert, nach dem Sie suchen möchten. Er muss sich in der ersten Spalte des Zellbereichs befinden, den Sie im Argument table_array angeben.' }, + tableArray: { name: 'table_array', detail: 'Der Zellbereich, in dem VLOOKUP nach lookup_value und dem Rückgabewert sucht. Sie können einen benannten Bereich oder eine Tabelle verwenden und im Argument Namen statt Zellbezügen einsetzen.' }, + colIndexNum: { name: 'col_index_num', detail: 'Die Spaltennummer (beginnend bei 1 für die äußerste linke Spalte von table_array), die den Rückgabewert enthält.' }, + rangeLookup: { name: 'range_lookup', detail: 'Ein Wahrheitswert, der angibt, ob VLOOKUP eine ungefähre oder exakte Übereinstimmung finden soll: ungefähre Übereinstimmung – 1/TRUE, exakte Übereinstimmung – 0/FALSE.' }, + }, + }, + VSTACK: { + description: 'Fügt Arrays vertikal und nacheinander an, um ein größeres Array zurückzugeben.', + abstract: 'Fügt Arrays vertikal und nacheinander an, um ein größeres Array zurückzugeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Die anzufügenden Matrizen.' }, + array2: { name: 'array', detail: 'Die anzufügenden Matrizen.' }, + }, + }, + WRAPCOLS: { + description: 'Umbricht die bereitgestellte Zeile oder Spalte mit Werten spaltenweise nach einer angegebenen Anzahl von Elementen, um ein neues Array zu bilden.', + abstract: 'Umbricht die bereitgestellte Zeile oder Spalte mit Werten spaltenweise nach einer angegebenen Anzahl von Elementen, um ein neues Array zu bilden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Der zu umschließende Vektor oder Verweis.' }, + wrapCount: { name: 'wrap_count', detail: 'Die maximale Anzahl von Werten für jede Spalte.' }, + padWith: { name: 'pad_with', detail: 'Der Wert, mit dem auf der Füllung polstert werden soll. Der Standardwert lautet #N/A.' }, + }, + }, + WRAPROWS: { + description: 'Umbricht die bereitgestellte Zeile oder Spalte mit Werten zeilenweise nach einer angegebenen Anzahl von Elementen, um ein neues Array zu bilden.', + abstract: 'Umbricht die bereitgestellte Zeile oder Spalte mit Werten zeilenweise nach einer angegebenen Anzahl von Elementen, um ein neues Array zu bilden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Der zu umschließende Vektor oder Verweis.' }, + wrapCount: { name: 'wrap_count', detail: 'Die maximale Anzahl von Werten für jede Zeile.' }, + padWith: { name: 'pad_with', detail: 'Der Wert, mit dem auf der Füllung polstert werden soll. Der Standardwert lautet #N/A.' }, + }, + }, + XLOOKUP: { + description: 'Verwenden Sie die XVERWEIS Funktion, wenn Sie Elemente in einer Tabelle oder einem Bereich nach Zeile suchen. Sie können z. B. nach dem Preis eines Kfz-Teils anhand der Artikelnummer suchen oder nach einem Mitarbeiternamen anhand seiner Mitarbeiter-ID. Mit XVERWEIS können Sie in einer Spalte nach einem bestimmten Suchbegriff suchen und ein Ergebnis aus derselben Zeile in einer anderen Spalte abrufen, und zwar unabhängig davon, auf welcher Seite sich die Ergebnisspalte befindet.', + abstract: 'Verwenden Sie die XVERWEIS Funktion, wenn Sie Elemente in einer Tabelle oder einem Bereich nach Zeile suchen. Sie können z. B. nach dem Preis eines Kfz-Teils anhand der Artikelnummer suchen oder nach einem Mitarbeiternamen anhand seiner Mitarbeiter-ID. Mit XVERWEIS können Sie in einer Spalte nach einem bestimmten Suchbegriff suchen und ein Ergebnis aus derselben Zeile in einer anderen Spalte abrufen, und zwar unabhängig davon, auf welcher Seite sich die Ergebnisspalte befindet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Der wert, nach dem gesucht werden soll *Wenn keine Angabe erfolgt, gibt XVERWEIS leere Zellen zurück, die in lookup_array gefunden werden.' }, + lookupArray: { name: 'lookup_array', detail: 'Die Matrix oder der Bereich, die/der durchsucht werden soll' }, + returnArray: { name: 'return_array', detail: 'Das Array oder der Bereich, das/der zurückgegeben werden soll' }, + ifNotFound: { name: 'if_not_found', detail: 'Wenn keine gültige Übereinstimmung gefunden wird, wird der von Ihnen bereitgestellte "[wenn_nicht_gefunden]"-Text zurückgegeben. Wenn keine gültige Übereinstimmung gefunden wird und [falls_nicht_gefunden] fehlt, wird #n/v zurückgegeben.' }, + matchMode: { name: 'match_mode', detail: 'Geben Sie den Übereinstimmungstyp an: 0: genaue Übereinstimmung. Wenn keine gefunden wird, wird "#N/V" zurückgegeben. Dies ist die Standardeinstellung. -1: genaue Übereinstimmung. Wenn keine gefunden wurde, geben Sie das nächstkleinere Element zurück. 1: genaue Übereinstimmung. Wenn keine gefunden wurde, geben Sie das nächstgrößere Element zurück. 2: eine Platzhalterübereinstimmung, wobei *, ? und ~ eine Sonderbedeutung haben.' }, + searchMode: { name: 'search_mode', detail: 'Geben Sie den zu verwendenden Suchmodus an: 1: Führen Sie eine Suche durch, die beim ersten Element beginnt. Dies ist die Standardeinstellung. -1: Führen Sie eine umgekehrte Suche durch, die beim letzten Element beginnt. 2: Führen Sie eine Binärsuche durch, die darauf basiert, dass eine Suchmatrix in aufsteigender Reihenfolge sortiert ist. Ist diese nicht so sortiert, werden ungültige Ergebnisse zurückgegeben. -2: Führen Sie eine Binärsuche durch, die darauf basiert, dass eine Suchmatrix in absteigender Reihenfolge sortiert ist. Ist diese nicht so sortiert, werden ungültige Ergebnisse zurückgegeben.' }, + }, + }, + XMATCH: { + description: 'Angenommen, wir haben eine Liste von Produkten in den Zellen C3 bis C7 und möchten ermitteln, wo sich das Produkt aus Zelle E3 in der Liste befindet. Hier verwenden wir XVERGLEICH, um die Position eines Elements in einer Liste zu bestimmen.', + abstract: 'Angenommen, wir haben eine Liste von Produkten in den Zellen C3 bis C7 und möchten ermitteln, wo sich das Produkt aus Zelle E3 in der Liste befindet. Hier verwenden wir XVERGLEICH, um die Position eines Elements in einer Liste zu bestimmen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Das Suchkriterium' }, + lookupArray: { name: 'lookup_array', detail: 'Die Matrix oder der Bereich, die/der durchsucht werden soll' }, + matchMode: { name: 'match_mode', detail: 'Geben Sie den Übereinstimmungstyp an: 0: exakte Übereinstimmung (Standard) -1: exakte Übereinstimmung oder nächstkleineres Element 1: exakte Übereinstimmung oder nächstgrößeres Element 2: eine Platzhalterübereinstimmung, wobei *, ? und ~ eine Sonderbedeutung haben.' }, + searchMode: { name: 'search_mode', detail: 'Geben Sie den Suchtyp an: 1: Von erstem zu letztem Element suchen (Standard) -1: Von letztem zu erstem Element suchen (umgekehrte Suche). 2: Führen Sie eine Binärsuche durch, die darauf basiert, dass eine Suchmatrix in aufsteigender Reihenfolge sortiert ist. Ist diese nicht so sortiert, werden ungültige Ergebnisse zurückgegeben. -2: Führen Sie eine Binärsuche durch, die darauf basiert, dass eine Suchmatrix in absteigender Reihenfolge sortiert ist. Ist diese nicht so sortiert, werden ungültige Ergebnisse zurückgegeben.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/en-US.ts b/packages/sheets-formula/src/locale/function-list/lookup/en-US.ts index dfefda2517..51ea337ab0 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/en-us/excel/functions/address-function', }, ], functionParameter: { @@ -53,7 +53,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/en-us/excel/functions/areas-function', }, ], functionParameter: { @@ -66,7 +66,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/en-us/excel/functions/choose-function', }, ], functionParameter: { @@ -81,7 +81,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/en-us/excel/functions/choosecols-function', }, ], functionParameter: { @@ -96,7 +96,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/en-us/excel/functions/chooserows-function', }, ], functionParameter: { @@ -111,7 +111,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/en-us/excel/functions/column-function', }, ], functionParameter: { @@ -124,7 +124,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/en-us/excel/functions/columns-function', }, ], functionParameter: { @@ -137,7 +137,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/en-us/excel/functions/drop-function', }, ], functionParameter: { @@ -152,7 +152,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/en-us/excel/functions/expand-function', }, ], functionParameter: { @@ -163,12 +163,12 @@ const locale = { }, }, FILTER: { - description: 'Filters a range of data based on criteria you define', - abstract: 'Filters a range of data based on criteria you define', + description: 'The FILTER function allows you to filter a range of data based on criteria you define.', + abstract: 'The FILTER function allows you to filter 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', + url: 'https://support.microsoft.com/en-us/excel/functions/filter-function', }, ], functionParameter: { @@ -183,7 +183,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/en-us/excel/functions/formulatext-function', }, ], functionParameter: { @@ -196,40 +196,30 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/en-us/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + dataField: { name: 'dataField', detail: 'The name of the PivotTable field that contains the data that you want to retrieve. This needs to be in quotes. Example: =GETPIVOTDATA("Sales", A3). Here, "Sales" is the Values field that we want to retrieve. Since no other field is specified, GETPIVOTDATA returns the total sales amount.' }, + pivotTable: { name: 'pivotTable', detail: 'A reference to any cell, range of cells, or named range of cells in a PivotTable. This information is used to determine which PivotTable contains the data that you want to retrieve. Example: =GETPIVOTDATA("Sales", A3). Here, A3 is a reference inside the PivotTable and tells the formula which PivotTable to use.' }, + field1: { name: 'field1', detail: '1 to 126 pairs of field names and item names that describe the data that you want to retrieve. The pairs can be in any order. Field names and names for items other than dates and numbers need to be enclosed in quotation marks. Example: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). Here, "Month" is the field and "Mar" is the item. To specify multiple items for a field, enclose them in curly braces (for example: {"Mar", "Apr"}). For OLAP PivotTables , items can contain the source name of the dimension and also the source name of the item. A field and item pair for an OLAP PivotTable might look like this: "[Product]","[Product].[All Products].[Foods].[Baked Goods]"' }, + item1: { name: 'item1', detail: '1 to 126 pairs of field names and item names that describe the data that you want to retrieve. The pairs can be in any order. Field names and names for items other than dates and numbers need to be enclosed in quotation marks. Example: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). Here, "Month" is the field and "Mar" is the item. To specify multiple items for a field, enclose them in curly braces (for example: {"Mar", "Apr"}). For OLAP PivotTables , items can contain the source name of the dimension and also the source name of the item. A field and item pair for an OLAP PivotTable might look like this: "[Product]","[Product].[All Products].[Foods].[Baked Goods]"' }, }, }, 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', + description: 'Searches for a value in the top row of a table or an array of values, and then returns a value in the same column from a row you specify in the table or array. Use HLOOKUP when your comparison values are located in a row across the top of a table of data, and you want to look down a specified number of rows. Use VLOOKUP when your comparison values are located in a column to the left of the data you want to find.', + abstract: 'Searches for a value in the top row of a table or an array of values, and then returns a value in the same column from a row you specify in the table or array. Use HLOOKUP when your comparison values are located in a row across the top of a table of data, and you want to look down a specified number of rows. Use VLOOKUP when your comparison values are located in a column to the left of the data you want to find.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/en-us/excel/functions/hlookup-function', }, ], 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.', - }, + lookupValue: { name: 'lookup_value', detail: 'Required. 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: 'Required. A table of information in which data is looked up. Use a reference to a range or a range name. The values in the first row of table_array can be text, numbers, or logical values. If range_lookup is TRUE, the values in the first row of table_array must be placed in ascending order: ...-2, -1, 0, 1, 2,... , A-Z, FALSE, TRUE; otherwise, HLOOKUP may not give the correct value. If range_lookup is FALSE, table_array does not need to be sorted. Uppercase and lowercase text are equivalent. Sort the values in ascending order, left to right. For more information, see Sort data in a range or table .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Required. 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. If row_index_num is less than 1, HLOOKUP returns the #VALUE! error value; if row_index_num is greater than the number of rows on table_array, HLOOKUP returns the #REF! error value.' }, + rangeLookup: { name: 'range_lookup', detail: 'Optional. A logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate match is returned. In other words, if an exact match is not found, the next largest value that is less than lookup_value is returned. If FALSE, HLOOKUP will find an exact match. If one is not found, the error value #N/A is returned.' }, }, }, HSTACK: { @@ -238,7 +228,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/en-us/excel/functions/hstack-function', }, ], functionParameter: { @@ -252,21 +242,21 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=en', + url: 'https://support.google.com/docs/answer/3093313?hl=en', }, ], functionParameter: { - url: { name: 'url', detail: 'The full URL of the link location enclosed in quotation marks, or a reference to a cell containing such a URL.' }, - linkLabel: { name: 'link_label', detail: 'The text to display in the cell as the link, enclosed in quotation marks, or a reference to a cell containing such a label.' }, + url: { name: 'url', detail: 'The full URL of the link location enclosed in quotation marks, or a reference to a cell containing such a URL. Only certain link types are allowed. http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// , and news:// are permitted; others are explicitly forbidden. If another protocol is specified, link_label will be displayed in the cell, but will not be hyperlinked. If no protocol is specified, http:// is assumed, and is prepended to url .' }, + linkLabel: { name: 'link_label', detail: '[ OPTIONAL - url by default ] - The text to display in the cell as the link, enclosed in quotation marks, or a reference to a cell containing such a label. If link_label is a reference to an empty cell, url will be displayed as a link if valid, or as plain text otherwise. If link_label is the empty string literal (""), the cell will appear empty, but the link is still accessible by clicking or moving to the cell.' }, }, }, IMAGE: { - description: 'Returns an image from a given source', - abstract: 'Returns an image from a given source', + description: 'Current Channel', + abstract: 'Current Channel', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/en-us/excel/functions/image-function', }, ], functionParameter: { @@ -278,12 +268,12 @@ const locale = { }, }, 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', + description: 'The INDEX function returns a value or the reference to a value from within a table or range.', + abstract: 'The INDEX function returns a value or the reference to a value from within a table or range.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/en-us/excel/functions/index-function', }, ], functionParameter: { @@ -299,7 +289,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/en-us/excel/functions/indirect-function', }, ], functionParameter: { @@ -313,7 +303,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/en-us/excel/functions/lookup-function', }, ], functionParameter: { @@ -337,7 +327,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/en-us/excel/functions/match-function', }, ], functionParameter: { @@ -352,7 +342,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/en-us/excel/functions/offset-function', }, ], functionParameter: { @@ -369,7 +359,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/en-us/excel/functions/row-function', }, ], functionParameter: { @@ -382,7 +372,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/en-us/excel/functions/rows-function', }, ], functionParameter: { @@ -395,12 +385,14 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/en-us/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + progId: { name: 'progId', detail: 'Required. The name of the ProgID of a registered COM automation add-in that has been installed on the local computer. Enclose the name in quotation marks.' }, + server: { name: 'server', detail: 'Required. Name of the server where the add-in should be run. If there is no server, and the program is run locally, leave the argument blank. Otherwise, enter quotation marks ("") around the server name. When using RTD within Visual Basic for Applications (VBA), double quotation marks or the VBA NullString property are required for the server, even if the server is running locally.' }, + topic1: { name: 'topic1', detail: 'Topic1 is required, subsequent topics are optional. 1 to 253 parameters that together represent a unique piece of real-time data.' }, + topic2: { name: 'topic2', detail: 'Topic1 is required, subsequent topics are optional. 1 to 253 parameters that together represent a unique piece of real-time data.' }, }, }, SORT: { @@ -409,7 +401,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/en-us/excel/functions/sort-function', }, ], functionParameter: { @@ -425,7 +417,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/en-us/excel/functions/sortby-function', }, ], functionParameter: { @@ -442,7 +434,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/en-us/excel/functions/take-function', }, ], functionParameter: { @@ -457,7 +449,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/en-us/excel/functions/tocol-function', }, ], functionParameter: { @@ -472,7 +464,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/en-us/excel/functions/torow-function', }, ], functionParameter: { @@ -487,7 +479,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/en-us/excel/functions/transpose-function', }, ], functionParameter: { @@ -500,7 +492,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/en-us/excel/functions/unique-function', }, ], functionParameter: { @@ -515,7 +507,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/en-us/excel/functions/vlookup-function', }, ], functionParameter: { @@ -543,7 +535,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/en-us/excel/functions/vstack-function', }, ], functionParameter: { @@ -557,7 +549,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/en-us/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -572,7 +564,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/en-us/excel/functions/wraprows-function', }, ], functionParameter: { @@ -587,7 +579,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/en-us/excel/functions/xlookup-function', }, ], functionParameter: { @@ -617,7 +609,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/en-us/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/es-ES.ts b/packages/sheets-formula/src/locale/function-list/lookup/es-ES.ts index c221f3d701..ba4be6cf72 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/es-es/excel/functions/address-function', }, ], functionParameter: { @@ -55,7 +55,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/es-es/excel/functions/areas-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/es-es/excel/functions/choose-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/es-es/excel/functions/choosecols-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/es-es/excel/functions/chooserows-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/es-es/excel/functions/column-function', }, ], functionParameter: { @@ -126,7 +126,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/es-es/excel/functions/columns-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/es-es/excel/functions/drop-function', }, ], functionParameter: { @@ -154,7 +154,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/es-es/excel/functions/expand-function', }, ], functionParameter: { @@ -170,7 +170,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/es-es/excel/functions/filter-function', }, ], functionParameter: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/es-es/excel/functions/formulatext-function', }, ], functionParameter: { @@ -193,45 +193,35 @@ const locale: typeof enUS = { }, }, GETPIVOTDATA: { - description: 'Devuelve datos almacenados en un informe de tabla dinámica', - abstract: 'Devuelve datos almacenados en un informe de tabla dinámica', + description: 'La captura de pantalla siguiente muestra el diseño de tabla dinámica que se usa en las siguientes secciones. En este ejemplo, =IMPORTARDATOSDINAMICOS("Ventas",A3) devuelve el importe total de ventas:', + abstract: 'La captura de pantalla siguiente muestra el diseño de tabla dinámica que se usa en las siguientes secciones. En este ejemplo, =IMPORTARDATOSDINAMICOS("Ventas",A3) devuelve el importe total de ventas:', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/es-es/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + dataField: { name: 'dataField', detail: 'Nombre del campo de tabla dinámica que contiene los datos que quiere recuperar. Debe estar entre comillas. Ejemplo: =IMPORTARDATOSDINAMICOS("Ventas"; A3). Aquí, "Ventas" es el campo Valores que queremos recuperar. Dado que no se especifica ningún otro campo, IMPORTARDATOSDINAMICOS devuelve el importe total de ventas.' }, + pivotTable: { name: 'pivotTable', detail: 'Es una referencia a cualquier celda, rango de celdas o rango de celdas en una tabla dinámica. Esta información se usa para determinar cuál tabla dinámica contiene los datos que desea recuperar. Ejemplo: =IMPORTARDATOSDINAMICOS("Ventas"; A3). Aquí, A3 es una referencia dentro de la tabla dinámica e indica a la fórmula qué tabla dinámica usar.' }, + field1: { name: 'field1', detail: 'De 1 a 126 parejas de nombres de campo y elemento que describen los datos que desea recuperar. Las parejas pueden estar en cualquier orden. Los nombres de campo y elemento que no son fechas ni números deben estar entre comillas. Ejemplo: =IMPORTARDATOSDINAMICOS("Ventas"; A3; "Mes"; "Mar"). Aquí, "Mes" es el campo y "Mar" es el elemento. Para especificar varios elementos para un campo, escríbalos entre llaves (por ejemplo: {"Mar", "Abr"}). En las tablas dinámicas OLAP , los elementos pueden contener el nombre de origen de la dimensión y también el nombre de origen del elemento. Una pareja de campo y elemento de una tabla dinámica OLAP puede tener el siguiente aspecto: "[Producto]","[Producto].[Todos los productos].[Alimentos].[Bollería]"' }, + item1: { name: 'item1', detail: 'De 1 a 126 parejas de nombres de campo y elemento que describen los datos que desea recuperar. Las parejas pueden estar en cualquier orden. Los nombres de campo y elemento que no son fechas ni números deben estar entre comillas. Ejemplo: =IMPORTARDATOSDINAMICOS("Ventas"; A3; "Mes"; "Mar"). Aquí, "Mes" es el campo y "Mar" es el elemento. Para especificar varios elementos para un campo, escríbalos entre llaves (por ejemplo: {"Mar", "Abr"}). En las tablas dinámicas OLAP , los elementos pueden contener el nombre de origen de la dimensión y también el nombre de origen del elemento. Una pareja de campo y elemento de una tabla dinámica OLAP puede tener el siguiente aspecto: "[Producto]","[Producto].[Todos los productos].[Alimentos].[Bollería]"' }, }, }, HLOOKUP: { - description: 'Busca en la fila superior de una matriz y devuelve el valor de la celda indicada', - abstract: 'Busca en la fila superior de una matriz y devuelve el valor de la celda indicada', + description: 'Busca un valor en la fila superior de una tabla o una matriz de valores y, después, devuelve un valor en la misma columna de una fila especificada en la tabla o matriz. Use BUSCARH cuando los valores de comparación se encuentren en una fila en la parte superior de una tabla de datos y desee encontrar información que se halle dentro de un número especificado de filas. Use BUSCARV cuando los valores de comparación se encuentren en una columna a la izquierda de los datos que desea encontrar.', + abstract: 'Busca un valor en la fila superior de una tabla o una matriz de valores y, después, devuelve un valor en la misma columna de una fila especificada en la tabla o matriz. Use BUSCARH cuando los valores de comparación se encuentren en una fila en la parte superior de una tabla de datos y desee encontrar información que se halle dentro de un número especificado de filas. Use BUSCARV cuando los valores de comparación se encuentren en una columna a la izquierda de los datos que desea encontrar.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/es-es/excel/functions/hlookup-function', }, ], functionParameter: { - lookupValue: { - name: 'valor_buscado', - detail: 'El valor que se buscará en la primera fila de la tabla. Valor_buscado puede ser un valor, una referencia o una cadena de texto.', - }, - tableArray: { - name: 'tabla_matriz', - detail: 'Una tabla de información en la que se buscan datos. Use una referencia a un rango o un nombre de rango.', - }, - rowIndexNum: { - name: 'índice_fila_núm', - detail: 'El número de fila en tabla_matriz desde el cual se devolverá el valor coincidente. Un índice_fila_núm de 1 devuelve el valor de la primera fila en tabla_matriz, un índice_fila_núm de 2 devuelve el valor de la segunda fila en tabla_matriz, y así sucesivamente.', - }, - rangeLookup: { - name: 'búsqueda_rango', - detail: 'Un valor lógico que especifica si desea que BUSCARH encuentre una coincidencia exacta o una coincidencia aproximada.', - }, + lookupValue: { name: 'valor_buscado', detail: 'Obligatorio. Es el valor que se busca en la primera fila de la tabla. Valor_buscado puede ser un valor, una referencia o una cadena de texto.' }, + tableArray: { name: 'tabla_matriz', detail: 'Obligatorio. Es una tabla de información en la que se buscan los datos. Use una referencia a un rango o el nombre de un rango. Los valores de la primera fila del argumento matriz_buscar_en pueden ser texto, números o valores lógicos. Si ordenado es VERDADERO, los valores de la primera fila de matriz_buscar_en deben colocarse en orden ascendente: ...-2, -1, 0, 1, 2, ..., A-Z, FALSO, VERDADERO; de lo contrario, BUSCARH puede devolver un valor incorrecto. Si ordenado es FALSO, no es necesario ordenar matriz_buscar_en. Las mayúsculas y minúsculas del texto son equivalentes. Ordene los valores en orden ascendente, de izquierda a derecha. Para obtener más información, vea Ordenar datos en un rango o tabla .' }, + rowIndexNum: { name: 'índice_fila_núm', detail: 'Obligatorio. El número de fila en matriz_tabla desde el cual se devolverá el valor coincidente. Un indicador_filas de 1, devuelve el primer valor de la fila en matriz_tabla, un indicador_filas de 2 devuelve el segundo valor de la fila en matriz_tabla y así sucesivamente. Si indicador_filas es menor que 1, BUSCARH devuelve el valor de error #¡VALOR!; si indicador_filas es mayor que el número de filas en tabla_matriz BUSCARH devuelve el valor de error #¡REF!. error #¡NUM!.' }, + rangeLookup: { name: 'búsqueda_rango', detail: 'Opcional. Es un valor lógico que especifica si BUSCARH debe localizar una coincidencia exacta o aproximada. Si lo omite o es VERDADERO, devolverá una coincidencia aproximada. Es decir, si no encuentra ninguna coincidencia exacta, devolverá el siguiente valor mayor que sea inferior a valor_buscado. Si es FALSO, BUSCARH encontrará una coincidencia exacta. Si no encuentra ninguna, devolverá el valor de error #N/A.' }, }, }, HSTACK: { @@ -240,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/es-es/excel/functions/hstack-function', }, ], functionParameter: { @@ -249,26 +239,26 @@ const locale: typeof enUS = { }, }, HYPERLINK: { - description: 'Crea un hipervínculo dentro de una celda.', - abstract: 'Crea un hipervínculo dentro de una celda.', + description: 'Crea un hiperenlace en una celda.', + abstract: 'Crea un hiperenlace en una celda.', links: [ { title: 'Instrucción', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=es', + url: 'https://support.google.com/docs/answer/3093313?hl=es', }, ], functionParameter: { - url: { name: 'url', detail: 'La URL completa de la ubicación del enlace entre comillas, o una referencia a una celda que contenga dicha URL.' }, - linkLabel: { name: 'etiqueta_enlace', detail: 'El texto que se mostrará en la celda como el enlace, entre comillas, o una referencia a una celda que contenga dicha etiqueta.' }, + url: { name: 'url', detail: 'URL completa de la ubicación del enlace escrita entre comillas, o una referencia a una celda que contenga dicha URL. Solo se permiten determinados tipos de enlaces: http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// y news:// . El resto están prohibidos. Si se especifica otro protocolo, se mostrará link_label en la celda, pero no se creará un hiperenlace. Si no se especifica ningún protocolo, se utilizará http:// de forma predeterminada y se antepondrá a url .' }, + linkLabel: { name: 'etiqueta_enlace', detail: '[ OPCIONAL: url de forma predeterminada ] : texto que se muestra en la celda como enlace, entre comillas, o referencia a una celda que contenga dicha etiqueta. Si link_label es una referencia a una celda vacía, url se mostrará como un enlace si es válida o como texto sin formato en caso contrario. Si link_label es la cadena literal vacía (""), la celda aparecerá vacía, pero se podrá acceder al enlace haciendo clic en la celda o moviéndose hasta ella.' }, }, }, IMAGE: { - description: 'Devuelve una imagen de una fuente determinada', - abstract: 'Devuelve una imagen de una fuente determinada', + description: 'La función IMAGEN inserta imágenes en celdas desde una ubicación de origen junto con texto alternativo. Después, puede mover y cambiar el tamaño de las celdas, ordenar y filtrar, y trabajar con imágenes dentro de una tabla de Excel. Use esta función para mejorar visualmente listas de datos, como inventarios, juegos, empleados y conceptos matemáticos.', + abstract: 'La función IMAGEN inserta imágenes en celdas desde una ubicación de origen junto con texto alternativo. Después, puede mover y cambiar el tamaño de las celdas, ordenar y filtrar, y trabajar con imágenes dentro de una tabla de Excel. Use esta función para mejorar visualmente listas de datos, como inventarios, juegos, empleados y conceptos matemáticos.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/es-es/excel/functions/image-function', }, ], functionParameter: { @@ -285,7 +275,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/es-es/excel/functions/index-function', }, ], functionParameter: { @@ -301,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/es-es/excel/functions/indirect-function', }, ], functionParameter: { @@ -315,7 +305,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/es-es/excel/functions/lookup-function', }, ], functionParameter: { @@ -339,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/es-es/excel/functions/match-function', }, ], functionParameter: { @@ -354,7 +344,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/es-es/excel/functions/offset-function', }, ], functionParameter: { @@ -371,7 +361,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/es-es/excel/functions/row-function', }, ], functionParameter: { @@ -384,7 +374,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/es-es/excel/functions/rows-function', }, ], functionParameter: { @@ -397,12 +387,14 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/es-es/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + progId: { name: 'Identificador de programa', detail: 'Nombre del identificador de programa del complemento de automatización COM instalado localmente.' }, + server: { name: 'Servidor', detail: 'Nombre del servidor donde se ejecuta el complemento; use una cadena vacía para el servidor local.' }, + topic1: { name: 'Tema 1', detail: 'Primer texto que especifica los datos en tiempo real que se recuperan.' }, + topic2: { name: 'Tema 2', detail: 'Opcional. Textos adicionales que especifican los datos en tiempo real.' }, }, }, SORT: { @@ -411,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/es-es/excel/functions/sort-function', }, ], functionParameter: { @@ -427,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/es-es/excel/functions/sortby-function', }, ], functionParameter: { @@ -444,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/es-es/excel/functions/take-function', }, ], functionParameter: { @@ -459,7 +451,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/es-es/excel/functions/tocol-function', }, ], functionParameter: { @@ -474,7 +466,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/es-es/excel/functions/torow-function', }, ], functionParameter: { @@ -489,7 +481,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/es-es/excel/functions/transpose-function', }, ], functionParameter: { @@ -502,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/es-es/excel/functions/unique-function', }, ], functionParameter: { @@ -517,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/es-es/excel/functions/vlookup-function', }, ], functionParameter: { @@ -545,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/es-es/excel/functions/vstack-function', }, ], functionParameter: { @@ -559,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/es-es/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -574,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/es-es/excel/functions/wraprows-function', }, ], functionParameter: { @@ -589,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/es-es/excel/functions/xlookup-function', }, ], functionParameter: { @@ -619,7 +611,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/es-es/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/lookup/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/lookup/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/lookup/fr-FR.ts index 60a22638e2..b68e8c7e51 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/fr-FR.ts @@ -14,8 +14,589 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ADDRESS: { + description: 'Vous pouvez utiliser la fonction ADRESSE pour obtenir l’adresse d’une cellule dans une feuille de calcul, selon des numéros de lignes et de colonnes spécifiés. Par exemple, ADDRESS(2,3) retourne $C$2 . Autre exemple, ADDRESS(77 300) renvoie $KN 77 $ . D’autres fonctions, telles que les fonctions LIGNE et COLONNE , permettent de fournir les arguments des numéros de lignes et de colonnes pour la fonction ADRESSE .', + abstract: 'Vous pouvez utiliser la fonction ADRESSE pour obtenir l’adresse d’une cellule dans une feuille de calcul, selon des numéros de lignes et de colonnes spécifiés. Par exemple, ADDRESS(2,3) retourne $C$2 . Autre exemple, ADDRESS(77 300) renvoie $KN 77 $ . D’autres fonctions, telles que les fonctions LIGNE et COLONNE , permettent de fournir les arguments des numéros de lignes et de colonnes pour la fonction ADRESSE .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Obligatoire. Valeur numérique spécifiant le numéro de ligne à utiliser dans la référence de la cellule.' }, + column_num: { name: 'column number', detail: 'Obligatoire. Valeur numérique spécifiant le numéro de colonne à utiliser dans la référence de la cellule.' }, + abs_num: { name: 'type of reference', detail: 'Optionnel. Valeur numérique spécifiant le type de référence à renvoyer.' }, + a1: { name: 'style of reference', detail: 'Optionnel. Valeur logique indiquant si le style de référence est A1 ou L1C1. Dans le style A1, les colonnes sont étiquetées par ordre alphabétique et les lignes sont étiquetées numériquement. Dans le style de référence L1C1, les colonnes et les lignes sont toutes étiquetées numériquement. Si l’argument A1 est VRAI ou omis, la fonction ADRESSE renvoie une référence au style A1 ; s’il est FAUX, la fonction ADRESSE renvoie une référence au style L1C1. Remarque Pour modifier le style de référence utilisé par Excel, cliquez sur l’onglet Fichier , cliquez sur Options , puis cliquez sur Formules . Sous Manipulation de formules , activez ou désactivez la case à cocher Style de référence L1C1 .' }, + sheet_text: { name: 'worksheet name', detail: 'Optionnel. Une valeur de texte qui spécifie le nom de la feuille de calcul à utiliser comme référence externe. Par exemple, la formule =ADDRESS(1,1,,,"Sheet2 ») renvoie Sheet2 !$A$1 . Si l’argument sheet_text est omis, aucun nom de feuille n’est utilisé et l’adresse retournée par la fonction fait référence à une cellule de la feuille active.' }, + }, + }, + AREAS: { + description: 'Renvoie le nombre de zones dans une référence. Une zone se compose d’une plage de cellules adjacentes ou d’une cellule unique.', + abstract: 'Renvoie le nombre de zones dans une référence. Une zone se compose d’une plage de cellules adjacentes ou d’une cellule unique.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obligatoire. Représente une référence à une cellule ou à une plage de cellules, et peut se référer à plusieurs zones. Si vous souhaitez spécifier un argument unique comprenant plusieurs références, vous devez inclure une paire de parenthèses supplémentaire, pour éviter que Microsoft Excel n’interprète le point-virgule comme un séparateur de champ. Voir l’exemple suivant.' }, + }, + }, + CHOOSE: { + description: 'Utilise l’argument no_index pour renvoyer l’une des valeurs de la liste des arguments valeur. Utilisez la fonction CHOISIR pour sélectionner l’une des 254 valeurs possibles à partir du rang donné par l’argument no_index. Ainsi, si les arguments valeur1 à valeur7 représentent les jours de la semaine, la fonction CHOISIR renvoie l’un de ces jours lorsque la valeur de l’argument no_index est un nombre compris entre 1 et 7.', + abstract: 'Utilise l’argument no_index pour renvoyer l’une des valeurs de la liste des arguments valeur. Utilisez la fonction CHOISIR pour sélectionner l’une des 254 valeurs possibles à partir du rang donné par l’argument no_index. Ainsi, si les arguments valeur1 à valeur7 représentent les jours de la semaine, la fonction CHOISIR renvoie l’un de ces jours lorsque la valeur de l’argument no_index est un nombre compris entre 1 et 7.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Obligatoire. Désigne l’argument valeur qui doit être sélectionné. L’argument no_index doit être un nombre compris entre 1 et 254, ou une formule, ou une référence à une cellule contenant un nombre compris entre 1 et 254. Si la valeur de l’argument no_index est égale à 1, la fonction CHOISIR renvoie l’argument valeur1, si elle est égale à 2, elle renvoie l’argument valeur2, et ainsi de suite. Si index_num est inférieur à 1 ou supérieur au nombre de la dernière valeur de la liste, CHOOSE renvoie la #VALUE ! #VALEUR!. Si la valeur de l’argument no_index est une fraction, il est ramené par troncature au nombre entier immédiatement inférieur avant d’être pris en compte.' }, + value1: { name: 'value1', detail: 'La valeur 1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 254 arguments valeur parmi lesquels la fonction CHOISIR sélectionne une valeur ou une action à exécuter en fonction de l’argument no_index spécifié. Ces arguments peuvent être des nombres, des références de cellule, des noms définis, des formules, des fonctions ou du texte.' }, + value2: { name: 'value2', detail: 'La valeur 1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 254 arguments valeur parmi lesquels la fonction CHOISIR sélectionne une valeur ou une action à exécuter en fonction de l’argument no_index spécifié. Ces arguments peuvent être des nombres, des références de cellule, des noms définis, des formules, des fonctions ou du texte.' }, + }, + }, + CHOOSECOLS: { + description: 'Renvoie les colonnes spécifiées à partir d’une matrice.', + abstract: 'Renvoie les colonnes spécifiées à partir d’une matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau contenant les colonnes à retourner dans le nouveau tableau. Obligatoire.' }, + colNum1: { name: 'col_num1', detail: 'Première colonne à retourner. Obligatoire.' }, + colNum2: { name: 'col_num2', detail: 'Colonnes supplémentaires à retourner. Facultatif.' }, + }, + }, + CHOOSEROWS: { + description: 'Renvoie les lignes spécifiées à partir d’une matrice.', + abstract: 'Renvoie les lignes spécifiées à partir d’une matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau contenant les colonnes à retourner dans le nouveau tableau. Obligatoire.' }, + rowNum1: { name: 'row_num1', detail: 'Numéro de la première ligne à retourner. Obligatoire.' }, + rowNum2: { name: 'row_num2', detail: 'Numéros de ligne supplémentaires à retourner. Facultatif.' }, + }, + }, + COLUMN: { + description: 'La fonction COLUMN retourne le numéro de colonne de la référence de cellule donnée. Par exemple, la formule =COLUMN(D10) retourne 4, car la colonne D est la quatrième colonne.', + abstract: 'La fonction COLUMN retourne le numéro de colonne de la référence de cellule donnée. Par exemple, la formule =COLUMN(D10) retourne 4, car la colonne D est la quatrième colonne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Optionnel. Cellule ou plage de cellules pour lesquelles vous souhaitez retourner le numéro de colonne. Si l’argument référence est omis ou correspond à une plage de cellules et que la fonction COLONNE est entrée en tant que formule de tableau horizontal, la fonction COLONNE renvoie les numéros de colonne de la référence sous forme de tableau horizontal. Remarque Si vous disposez d’une version actuelle de Microsoft 365 , vous pouvez simplement entrer la formule dans la cellule supérieure gauche de la plage de sortie, puis appuyer sur Entrée pour confirmer la formule en tant que formule de tableau dynamique. Sinon, vous devez entrer la formule comme une formule de tableau héritée : sélectionnez la plage de sortie, entrez la formule dans la cellule en haut à gauche de la plage de sortie, puis appuyez sur Ctrl+Maj+Entrée pour confirmer la formule. Excel ajoute automatiquement des accolades au début et à la fin de la formule. Pour plus d’informations sur les formules de tableau, voir Instructions et exemples de formules de tableau . Si l’argument référence est une plage de cellules et que la fonction COLONNE n’est pas entrée en tant que formule de tableau horizontal, la fonction COLONNE renvoie le numéro de la dernière colonne de gauche. Si l’argument référence est omis, l’argument par défaut est la référence de la cellule dans laquelle est placée la fonction COLONNE. L’argument référence ne peut pas faire référence à plusieurs zones.' }, + }, + }, + COLUMNS: { + description: 'Retourne le nombre de colonnes dans un tableau ou une référence.', + abstract: 'Retourne le nombre de colonnes dans un tableau ou une référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Une formule de tableau ou de tableau, ou une référence à une plage de cellules pour laquelle vous souhaitez le nombre de colonnes.' }, + }, + }, + DROP: { + description: 'Exclut un nombre spécifié de lignes ou de colonnes du début ou de la fin d’un tableau. Cette fonction peut vous être utile pour supprimer les en-têtes et pieds de page d’un rapport Excel afin de retourner uniquement les données.', + abstract: 'Exclut un nombre spécifié de lignes ou de colonnes du début ou de la fin d’un tableau. Cette fonction peut vous être utile pour supprimer les en-têtes et pieds de page d’un rapport Excel afin de retourner uniquement les données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau à partir duquel supprimer des lignes ou des colonnes.' }, + rows: { name: 'rows', detail: 'Nombre de lignes à supprimer. Une valeur négative est exclue de la fin du tableau.' }, + columns: { name: 'columns', detail: 'Nombre de colonnes à exclure. Une valeur négative est exclue de la fin du tableau.' }, + }, + }, + EXPAND: { + description: 'Permet d’étendre ou de remplir un tableau aux dimensions spécifiées des lignes et des colonnes.', + abstract: 'Permet d’étendre ou de remplir un tableau aux dimensions spécifiées des lignes et des colonnes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau à développer.' }, + rows: { name: 'rows', detail: 'Nombre de lignes dans le tableau développé. S’il est manquant, les lignes ne sont pas développées.' }, + columns: { name: 'columns', detail: 'Nombre de colonnes dans le tableau développé. S’il est manquant, les colonnes ne sont pas développées.' }, + padWith: { name: 'pad_with', detail: 'Valeur avec laquelle effectuer le remplissage. La valeur par défaut est #N/A.' }, + }, + }, + FILTER: { + description: 'Dans l’exemple suivant, nous avons utilisé la formule =FILTRE(A5:D20;C5:C20=H2;"") pour renvoyer tous les enregistrements pour Pomme, tel que sélectionné dans la cellule H2 et s’il n’y a pas de pommes, renvoyer une chaîne vide (« »).', + abstract: 'Dans l’exemple suivant, nous avons utilisé la formule =FILTRE(A5:D20;C5:C20=H2;"") pour renvoyer tous les enregistrements pour Pomme, tel que sélectionné dans la cellule H2 et s’il n’y a pas de pommes, renvoyer une chaîne vide (« »).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La fonction FILTRE renvoie une matrice qui débordera si c’est le résultat final d’une formule. Cela signifie qu’Excel crée dynamiquement la plage de tableau de dimension appropriée lorsque vous appuyez sur entrée . Si vos données de prise en charge se trouvent dans un tableau Excel , la matrice est automatiquement redimensionnée quand vous ajoutez ou supprimez des données dans votre plage de tableau si vous utilisez les références structurées . Pour plus d’informations, consultez cet article sur comportement de matrice renversé .' }, + include: { name: 'include', detail: 'Si votre ensemble de données comporte le potentiel de renvoyer une valeur vide, utilisez le 3ème argument ( [if_empty] ). Sinon, une erreur #CALC ! se produit, car Excel ne prend actuellement pas en charge les tableaux vides.' }, + ifEmpty: { name: 'if_empty', detail: 'Si une valeur de l’argument include est une erreur (#N/A, #VALUE, etc.) ou ne peut pas être convertie en booléen, la fonction FILTER renvoie une erreur.' }, + }, + }, + FORMULATEXT: { + description: 'Renvoie une formule sous forme de chaîne.', + abstract: 'Renvoie une formule sous forme de chaîne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obligatoire. Référence à une cellule ou à une plage de cellules.' }, + }, + }, + GETPIVOTDATA: { + description: 'La capture d’écran ci-dessous montre la disposition de tableau croisé dynamique utilisée dans les sections suivantes. Dans cet exemple, =LIREDONNEESTABCROISDYNAMIQUE("Ventes";A3) retourne le montant total des ventes :', + abstract: 'La capture d’écran ci-dessous montre la disposition de tableau croisé dynamique utilisée dans les sections suivantes. Dans cet exemple, =LIREDONNEESTABCROISDYNAMIQUE("Ventes";A3) retourne le montant total des ventes :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: '' }, + pivotTable: { name: 'pivotTable', detail: '' }, + field1: { name: 'field1', detail: '' }, + item1: { name: 'item1', detail: '' }, + }, + }, + HLOOKUP: { + description: 'Recherche une valeur dans la ligne supérieure d’une table ou d’un tableau de valeurs, puis renvoie une valeur dans la même colonne à partir d’une ligne que vous spécifiez dans la table ou le tableau. Utilisez la fonction RECHERCHEH lorsque les valeurs de comparaison sont situées dans une ligne en haut de la table de données, et que vous souhaitez effectuer la recherche n lignes plus bas. Utilisez la fonction RECHERCHEV lorsque les valeurs de comparaison se trouvent dans une colonne située à gauche des données recherchées.', + abstract: 'Recherche une valeur dans la ligne supérieure d’une table ou d’un tableau de valeurs, puis renvoie une valeur dans la même colonne à partir d’une ligne que vous spécifiez dans la table ou le tableau. Utilisez la fonction RECHERCHEH lorsque les valeurs de comparaison sont situées dans une ligne en haut de la table de données, et que vous souhaitez effectuer la recherche n lignes plus bas. Utilisez la fonction RECHERCHEV lorsque les valeurs de comparaison se trouvent dans une colonne située à gauche des données recherchées.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Obligatoire. Représente la valeur à rechercher dans la première ligne de la table. Il peut s’agir d’une valeur, d’une référence ou d’une chaîne de texte.' }, + tableArray: { name: 'table_array', detail: 'Obligatoire. Représente la table de données dans laquelle est exécutée la recherche de la valeur. Utilisez une référence à une plage ou un nom de plage. Les valeurs de la première ligne de table_matrice peuvent être du texte, des chiffres ou des valeurs logiques. Si range_lookup a la valeur TRUE, les valeurs de la première ligne de table_array doivent être placées dans l’ordre croissant : ...-2, -1, 0, 1, 2,... , A-Z, FALSE, TRUE ; dans le cas contraire, RECHERCHEH risque de ne pas donner la valeur correcte. Si range_lookup a la valeur FALSE, table_array n’a pas besoin d’être trié. La fonction ne fait pas de distinction entre les majuscules et les minuscules. Trier les valeurs dans l’ordre croissant, de gauche à droite. Pour plus d’informations, voir Trier les données d’une plage ou d’un tableau .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Obligatoire. Numéro de ligne dans table_array à partir duquel la valeur correspondante sera retournée. Une row_index_num de 1 retourne la première valeur de ligne dans table_array, une row_index_num de 2 renvoie la valeur de la deuxième ligne dans table_array, etc. Si row_index_num est inférieur à 1, rechercheH renvoie le #VALUE ! valeur d’erreur ; si row_index_num est supérieur au nombre de lignes sur table_array, RECHERCHEH renvoie le #REF ! #VALEUR!.' }, + rangeLookup: { name: 'range_lookup', detail: 'Optionnel. Représente une valeur logique qui spécifie si vous voulez que RECHERCHEH trouve une correspondance exacte ou approximative. Si cet argument est VRAI ou omis, une donnée proche est renvoyée. En d’autres termes, si aucune valeur exacte n’est trouvée, la valeur immédiatement inférieure à valeur_cherchée est renvoyée. Si cet argument est FAUX, RECHERCHEH recherche une correspondance exacte. S’il n’en trouve pas, la valeur d’erreur #N/A est renvoyée.' }, + }, + }, + HSTACK: { + description: 'Ajoute des tableaux horizontalement et dans l’ordre pour renvoyer un tableau plus grand.', + abstract: 'Ajoute des tableaux horizontalement et dans l’ordre pour renvoyer un tableau plus grand.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Nombre maximal de lignes de chacun des arguments du tableau.' }, + array2: { name: 'array', detail: 'Nombre combiné de toutes les colonnes de chacun des arguments du tableau.' }, + }, + }, + HYPERLINK: { + description: 'Crée un lien hypertexte dans une cellule.', + abstract: 'Crée un lien hypertexte dans une cellule.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=fr', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'URL intégrale de l\'emplacement du lien, entre guillemets, ou référence à une cellule contenant cette URL. Seuls certains types de liens sont autorisés. Les liens http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// et news:// sont autorisés, mais les autres sont explicitement interdits. Si un autre protocole est spécifié, link_label s\'affiche dans la cellule, mais ne constitue pas un lien hypertexte. Si aucun protocole n\'est spécifié, http:// est utilisé par défaut et ajouté en préfixe à url .' }, + linkLabel: { name: 'link_label', detail: '[ FACULTATIF – url par défaut ] : texte à afficher dans la cellule en tant que lien, entre guillemets, ou référence à une cellule contenant un tel libellé. Si link_label est une référence à une cellule vide, url s\'affiche sous forme de lien si elle est valide, ou sous forme de texte brut dans le cas contraire. Si link_label est la chaîne littérale vide (""), la cellule s\'affiche comme étant vide, mais le lien reste accessible en cliquant sur la cellule ou en y accédant.' }, + }, + }, + IMAGE: { + description: 'La fonction IMAGE insère des images dans des cellules à partir d’un emplacement source, ainsi qu’un texte de remplacement. Vous pouvez ensuite déplacer et redimensionner des cellules, trier et filtrer, et utiliser des images dans un tableau Excel. Utilisez cette fonction pour améliorer visuellement des listes de données telles que les inventaires, les jeux, les employés et les concepts mathématiques.', + abstract: 'La fonction IMAGE insère des images dans des cellules à partir d’un emplacement source, ainsi qu’un texte de remplacement. Vous pouvez ensuite déplacer et redimensionner des cellules, trier et filtrer, et utiliser des images dans un tableau Excel. Utilisez cette fonction pour améliorer visuellement des listes de données telles que les inventaires, les jeux, les employés et les concepts mathématiques.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'Chemin URL du fichier image utilisant le protocole « https ».' }, + altText: { name: 'alt_text', detail: 'Texte de remplacement décrivant l’image à des fins d’accessibilité.' }, + sizing: { name: 'sizing', detail: 'Indique les dimensions de l’image.' }, + height: { name: 'height', detail: 'Hauteur personnalisée de l’image en pixels.' }, + width: { name: 'width', detail: 'Largeur personnalisée de l’image en pixels.' }, + }, + }, + INDEX: { + description: 'Renvoie la valeur d’un élément d’un tableau ou d’une matrice, sélectionné à partir des index de numéros de ligne et de colonne.', + abstract: 'Renvoie la valeur d’un élément d’un tableau ou d’une matrice, sélectionné à partir des index de numéros de ligne et de colonne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Référence à une ou plusieurs plages de cellules.' }, + rowNum: { name: 'row_num', detail: 'Numéro de la ligne de reference à partir de laquelle renvoyer une référence.' }, + columnNum: { name: 'column_num', detail: 'Numéro de la colonne de reference à partir de laquelle renvoyer une référence.' }, + areaNum: { name: 'area_num', detail: 'Sélectionne dans reference une plage dont l’intersection de row_num et column_num doit être renvoyée.' }, + }, + }, + INDIRECT: { + description: 'Renvoie la référence spécifiée par une chaîne de caractères. Les références sont immédiatement évaluées afin d’afficher leur contenu. Utilisez la fonction INDIRECT lorsque vous voulez modifier la référence à une cellule à l’intérieur d’une formule sans modifier la formule à proprement parler.', + abstract: 'Renvoie la référence spécifiée par une chaîne de caractères. Les références sont immédiatement évaluées afin d’afficher leur contenu. Utilisez la fonction INDIRECT lorsque vous voulez modifier la référence à une cellule à l’intérieur d’une formule sans modifier la formule à proprement parler.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Obligatoire. Référence à une cellule qui contient une référence de style A1, une référence de style R1C1, un nom défini comme référence ou une référence à une cellule sous forme de chaîne de texte. Si ref_text n’est pas une référence de cellule valide, INDIRECT retourne la #REF ! #VALEUR!. Si ref_text fait référence à un autre classeur (une référence externe), l’autre classeur doit être ouvert. Si le classeur source n’est pas ouvert, INDIRECT retourne le #REF ! #VALEUR!. Remarque Les références externes ne sont pas prises en charge dans Excel Web App. Si ref_text fait référence à une plage de cellules en dehors de la limite de lignes de 1 048 576 ou de la limite de colonne de 16 384 (XFD), INDIRECT renvoie une #REF ! erreur.' }, + a1: { name: 'a1', detail: 'Optionnel. Représente une valeur logique qui indique le type de référence contenu dans la cellule de l’argument réf_texte. Si l’argument a1 est VRAI ou omis, l’argument réf_texte est interprété comme une référence de type A1. Si l’argument a1 est FAUX, l’argument réf_texte est interprété comme une référence de type L1C1.' }, + }, + }, + LOOKUP: { + description: 'La forme vectorielle de la fonction RECHERCHE recherche une valeur dans une plage à une ligne ou colonne (appelée vecteur) et renvoie une valeur à partir de la même position dans une seconde plage à une ligne ou colonne.', + abstract: 'La forme vectorielle de la fonction RECHERCHE recherche une valeur dans une plage à une ligne ou colonne (appelée vecteur) et renvoie une valeur à partir de la même position dans une seconde plage à une ligne ou colonne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Valeur recherchée par LOOKUP dans le premier vecteur. lookup_value peut être un nombre, du texte, une valeur logique, un nom ou une référence qui désigne une valeur.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Plage ne contenant qu’une ligne ou qu’une colonne.' }, + resultVector: { name: 'result_vector', detail: 'Plage ne contenant qu’une ligne ou qu’une colonne. result_vector doit avoir la même taille que lookup_vector.' }, + }, + }, + MATCH: { + description: 'La fonction EQUIV recherche un élément spécifié dans une plage de cellules, puis renvoie la position relative de cet élément dans la plage. Par exemple, si la plage A1:A3 contient les valeurs 5, 25 et 38, la formule =EQUIV(25;A1:A3;0) renvoie le chiffre 2 étant donné que 25 est le deuxième élément dans la plage.', + abstract: 'La fonction EQUIV recherche un élément spécifié dans une plage de cellules, puis renvoie la position relative de cet élément dans la plage. Par exemple, si la plage A1:A3 contient les valeurs 5, 25 et 38, la formule =EQUIV(25;A1:A3;0) renvoie le chiffre 2 étant donné que 25 est le deuxième élément dans la plage.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'MATCH recherche la plus grande valeur inférieure ou égale à lookup_value . Les valeurs de l’argument lookup_array doivent être placées dans l’ordre croissant, par exemple : ...-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE.' }, + lookupArray: { name: 'lookup_array', detail: 'MATCH recherche la première valeur qui est exactement égale à lookup_value . Les valeurs de l’argument lookup_array peuvent être dans n’importe quel ordre.' }, + matchType: { name: 'match_type', detail: 'MATCH recherche la plus petite valeur supérieure ou égale à lookup_value . Les valeurs de l’argument lookup_array doivent être placées dans l’ordre décroissant, par exemple : TRUE, FALSE, Z-A, ... 2, 1, 0, -1, -2, ..., etc.' }, + }, + }, + OFFSET: { + description: 'Renvoie une référence à une plage qui correspond à un nombre déterminé de lignes et de colonnes d’une cellule ou plage de cellules. La référence qui est renvoyée peut être une cellule unique ou une plage de cellules. Vous pouvez spécifier le nombre de lignes et de colonnes à renvoyer.', + abstract: 'Renvoie une référence à une plage qui correspond à un nombre déterminé de lignes et de colonnes d’une cellule ou plage de cellules. La référence qui est renvoyée peut être une cellule unique ou une plage de cellules. Vous pouvez spécifier le nombre de lignes et de colonnes à renvoyer.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obligatoire. Représente la référence par rapport à laquelle le décalage doit être opéré. La référence doit désigner une cellule ou une plage de cellules adjacentes ; sinon, la fonction DECALER renvoie la valeur d’erreur #VALEUR! .' }, + rows: { name: 'rows', detail: 'Obligatoire. Représente le nombre de lignes vers le haut ou vers le bas dont la cellule supérieure gauche de la référence renvoyée doit être décalée. Si l’argument lignes est égal à 5, la cellule supérieure gauche de la référence est décalée de cinq lignes en dessous de la référence. L’argument lignes peut être positif (c’est-à-dire en dessous de la référence de départ) ou négatif (c’est-à-dire au-dessus de la référence de départ).' }, + cols: { name: 'columns', detail: 'Obligatoire. Représente le nombre de colonnes vers la droite ou vers la gauche dont la cellule supérieure gauche de la référence renvoyée doit être décalée. Si l’argument colonnes est égal à 5, la cellule supérieure gauche de la référence est décalée de cinq colonnes vers la droite par rapport à la référence. L’argument colonnes peut être positif (c’est-à-dire à droite de la référence de départ) ou négatif (c’est-à-dire à gauche de la référence de départ).' }, + height: { name: 'height', detail: 'Optionnel. Représente la hauteur, exprimée en nombre de lignes que la référence renvoyée doit avoir. L’argument hauteur doit être un nombre positif.' }, + width: { name: 'width', detail: 'Optionnel. Représente la largeur, exprimée en nombre de colonnes que la référence renvoyée doit avoir. L’argument largeur doit être un nombre positif.' }, + }, + }, + ROW: { + description: 'Donne le numéro de ligne d’une référence.', + abstract: 'Donne le numéro de ligne d’une référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Optionnel. Représente la cellule ou la plage de cellules dont vous voulez obtenir le numéro de ligne. Si l’argument référence est omis, la référence par défaut est celle de la cellule dans laquelle la fonction LIGNE apparaît. Si référence est une plage de cellules et si ROW est entré en tant que tableau vertical, ROW renvoie les numéros de ligne de référence sous forme de tableau vertical. L’argument référence ne peut pas faire référence à des zones multiples.' }, + }, + }, + ROWS: { + description: 'Renvoie le nombre de lignes d’une matrice ou d’une référence.', + abstract: 'Renvoie le nombre de lignes d’une matrice ou d’une référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Tableau, formule matricielle ou référence à une plage de cellules pour laquelle vous souhaitez le nombre de lignes.' }, + }, + }, + RTD: { + description: 'Récupère des données en temps réel d’un programme qui prend en charge l’automatisation COM.', + abstract: 'Récupère des données en temps réel d’un programme qui prend en charge l’automatisation COM.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Obligatoire. Nom du ProgID d’un complément Com Automation inscrit qui a été installé sur l’ordinateur local. Placez des guillemets de part et d’autre de ce nom.' }, + server: { name: 'server', detail: 'Obligatoire. Nom du serveur sur lequel le complément doit être exécuté. Si vous ne disposez pas d’un serveur et si le programme est exécuté localement, laissez l’argument vide. Sinon, tapez des guillemets ("") de part et d’autre du nom du serveur. Si vous utilisez RTD dans Visual Basic pour Applications (VBA), des guillemets doubles ou la propriété VBA NullString sont requis pour le serveur, même si celui-ci est exécuté localement.' }, + topic1: { name: 'topic1', detail: 'Topic1 est obligatoire, les rubriques suivantes sont facultatives. Paramètres 1 à 253 qui, ensemble, représentent une donnée unique en temps réel.' }, + topic2: { name: 'topic2', detail: 'Topic1 est obligatoire, les rubriques suivantes sont facultatives. Paramètres 1 à 253 qui, ensemble, représentent une donnée unique en temps réel.' }, + }, + }, + SORT: { + description: 'Dans cet exemple, nous faisons le tri par région, représentant commercial et produit individuellement avec =TRIER(A2:A17) copié sur les cellules F2, H2 et J2.', + abstract: 'Dans cet exemple, nous faisons le tri par région, représentant commercial et produit individuellement avec =TRIER(A2:A17) copié sur les cellules F2, H2 et J2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La plage ou tableau à trier' }, + sortIndex: { name: 'sort_index', detail: 'Un nombre indiquant la ligne ou colonne à trier' }, + sortOrder: { name: 'sort_order', detail: 'Un nombre indiquant l’ordre de tri désiré ; 1 pour l’ordre croissant (par défaut) -1 pour l’ordre décroissant' }, + byCol: { name: 'by_col', detail: 'Une valeur logique indiquant le sens de tri désiré ; FAUX pour effectuer le tri par ligne (par défaut), VRAI pour trier par colonne' }, + }, + }, + SORTBY: { + description: 'Dans cet exemple, nous trions une liste de noms de personnes selon l’âge, dans l’ordre croissant.', + abstract: 'Dans cet exemple, nous trions une liste de noms de personnes selon l’âge, dans l’ordre croissant.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La matrice ou plage à trier' }, + byArray1: { name: 'by_array1', detail: 'La matrice ou plage selon laquelle trier' }, + sortOrder1: { name: 'sort_order1', detail: 'L’ordre à appliquer pour le tri. 1 pour l’ordre croissant, -1 pour l’ordre décroissant. L’ordre par défaut est croissant.' }, + byArray2: { name: 'by_array2', detail: 'La matrice ou plage selon laquelle trier' }, + sortOrder2: { name: 'sort_order2', detail: 'L’ordre à appliquer pour le tri. 1 pour l’ordre croissant, -1 pour l’ordre décroissant. L’ordre par défaut est croissant.' }, + }, + }, + TAKE: { + description: 'Renvoie un nombre donné de lignes ou de colonnes contiguës depuis le début ou la fin d’une matrice.', + abstract: 'Renvoie un nombre donné de lignes ou de colonnes contiguës depuis le début ou la fin d’une matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau à partir duquel prendre des lignes ou des colonnes.' }, + rows: { name: 'rows', detail: 'Nombre de lignes à prendre. Une valeur négative prend à partir de la fin du tableau.' }, + columns: { name: 'columns', detail: 'Nombre de colonnes à prendre. Une valeur négative prend à partir de la fin du tableau.' }, + }, + }, + TOCOL: { + description: 'Renvoie la matrice dans une seule colonne.', + abstract: 'Renvoie la matrice dans une seule colonne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau ou référence à renvoyer sous forme de colonne.' }, + ignore: { name: 'ignore', detail: 'Indique s’il faut ignorer certains types de valeurs. Par défaut, aucune valeur n’est ignorée :\n0 Conserver toutes les valeurs (par défaut)\n1 Ignorer les cellules vides\n2 Ignorer les erreurs\n3 Ignorer les cellules vides et les erreurs' }, + scanByColumn: { name: 'scan_by_column', detail: 'Analyse le tableau par colonne. Par défaut, il est analysé par ligne. L’analyse détermine si les valeurs sont ordonnées par ligne ou par colonne.' }, + }, + }, + TOROW: { + description: 'Renvoie la matrice dans une seule ligne.', + abstract: 'Renvoie la matrice dans une seule ligne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau ou référence à renvoyer sous forme de ligne.' }, + ignore: { name: 'ignore', detail: 'Indique s’il faut ignorer certains types de valeurs. Par défaut, aucune valeur n’est ignorée :\n0 Conserver toutes les valeurs (par défaut)\n1 Ignorer les cellules vides\n2 Ignorer les erreurs\n3 Ignorer les cellules vides et les erreurs' }, + scanByColumn: { name: 'scan_by_column', detail: 'Analyse le tableau par colonne. Par défaut, il est analysé par ligne. L’analyse détermine si les valeurs sont ordonnées par ligne ou par colonne.' }, + }, + }, + TRANSPOSE: { + description: 'Vous devez parfois basculer ou faire pivoter des cellules. Vous pouvez effectuer ceci par copier-coller ou à l’aide de l’option TRANSPOSE . L’utilisation de celle-ci crée toutefois des données en double. Pour éviter cela, vous pouvez taper une formule plutôt que d’utiliser la fonction TRANSPOSE. Par exemple, dans l’image suivante, la formule =TRANSPOSE(A1:B4) utilise les cellules A1 à B4 et les réorganise horizontalement.', + abstract: 'Vous devez parfois basculer ou faire pivoter des cellules. Vous pouvez effectuer ceci par copier-coller ou à l’aide de l’option TRANSPOSE . L’utilisation de celle-ci crée toutefois des données en double. Pour éviter cela, vous pouvez taper une formule plutôt que d’utiliser la fonction TRANSPOSE. Par exemple, dans l’image suivante, la formule =TRANSPOSE(A1:B4) utilise les cellules A1 à B4 et les réorganise horizontalement.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Plage de cellules ou tableau dans une feuille de calcul.' }, + }, + }, + UNIQUE: { + description: 'Renvoyer des noms uniques à partir d’une liste de noms', + abstract: 'Renvoyer des noms uniques à partir d’une liste de noms', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Plage ou tableau à partir duquel retourner des lignes ou des colonnes uniques' }, + byCol: { name: 'by_col', detail: 'L’argument by_col est une valeur logique indiquant comment effectuer une comparaison. TRUE compare les colonnes les unes aux autres et retourne les colonnes uniques FALSE (ou omis) compare les lignes les unes aux autres et retourne les lignes uniques' }, + exactlyOnce: { name: 'exactly_once', detail: 'L’argument exactly_once est une valeur logique qui retourne des lignes ou des colonnes qui se produisent exactement une fois dans la plage ou le tableau. Il s’agit du concept de base de données unique. TRUE retourne toutes les lignes ou colonnes distinctes qui se produisent exactement une fois à partir de la plage ou du tableau FALSE (ou omis) retourne toutes les lignes ou colonnes distinctes de la plage ou du tableau' }, + }, + }, + VLOOKUP: { + description: 'Utilisez VLOOKUP lorsque vous devez rechercher des éléments par ligne dans un tableau ou une plage. Par exemple, recherchez le prix d’une pièce automobile par son numéro, ou le nom d’un employé à partir de son identifiant.', + abstract: 'Utilisez VLOOKUP lorsque vous devez rechercher des éléments par ligne dans un tableau ou une plage.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { + name: 'lookup_value', + detail: 'Valeur à rechercher. Elle doit se trouver dans la première colonne de la plage de cellules indiquée dans l’argument table_array.', + }, + tableArray: { + name: 'table_array', + detail: 'Plage de cellules dans laquelle VLOOKUP recherche lookup_value et la valeur de retour. Vous pouvez utiliser une plage nommée ou un tableau, ainsi que des noms au lieu de références de cellules.', + }, + colIndexNum: { + name: 'col_index_num', + detail: 'Numéro de la colonne contenant la valeur de retour, en commençant par 1 pour la colonne la plus à gauche de table_array.', + }, + rangeLookup: { + name: 'range_lookup', + detail: 'Valeur logique indiquant si VLOOKUP doit trouver une concordance approximative ou exacte : approximative – 1/TRUE, exacte – 0/FALSE.', + }, + }, + }, + VSTACK: { + description: 'Ajoute des matrices verticalement et dans l’ordre afin de renvoyer une matrice plus grande.', + abstract: 'Ajoute des matrices verticalement et dans l’ordre afin de renvoyer une matrice plus grande.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Les tableaux à ajouter.' }, + array2: { name: 'array', detail: 'Les tableaux à ajouter.' }, + }, + }, + WRAPCOLS: { + description: 'Répartit la ligne ou colonne de valeurs fournie par colonnes après un nombre d’éléments indiqué.', + abstract: 'Répartit la ligne ou colonne de valeurs fournie par colonnes après un nombre d’éléments indiqué.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vecteur ou référence à répartir.' }, + wrapCount: { name: 'wrap_count', detail: 'Nombre maximal de valeurs pour chaque colonne.' }, + padWith: { name: 'pad_with', detail: 'Valeur à utiliser pour le remplissage. La valeur par défaut est #N/A.' }, + }, + }, + WRAPROWS: { + description: 'Répartit la ligne ou colonne de valeurs fournie par lignes après un nombre d’éléments indiqué.', + abstract: 'Répartit la ligne ou colonne de valeurs fournie par lignes après un nombre d’éléments indiqué.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vecteur ou référence à répartir.' }, + wrapCount: { name: 'wrap_count', detail: 'Nombre maximal de valeurs pour chaque ligne.' }, + padWith: { name: 'pad_with', detail: 'Valeur à utiliser pour le remplissage. La valeur par défaut est #N/A.' }, + }, + }, + XLOOKUP: { + description: 'Recherche dans une plage ou une matrice et renvoie l’élément correspondant à la première concordance trouvée. En l’absence de concordance, XLOOKUP peut renvoyer la concordance la plus proche (approximative).', + abstract: 'Recherche dans une plage ou une matrice et renvoie l’élément correspondant à la première concordance trouvée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { + name: 'lookup_value', + detail: 'Valeur à rechercher. Si elle est omise, XLOOKUP renvoie les cellules vides trouvées dans lookup_array.', + }, + lookupArray: { name: 'lookup_array', detail: 'Tableau ou plage dans lequel effectuer la recherche.' }, + returnArray: { name: 'return_array', detail: 'Tableau ou plage à renvoyer.' }, + ifNotFound: { + name: 'if_not_found', + detail: 'Lorsqu’aucune concordance valide n’est trouvée, renvoie le texte [if_not_found] fourni. Si [if_not_found] est absent, #N/A est renvoyé.', + }, + matchMode: { + name: 'match_mode', + detail: 'Indique le type de concordance : 0 – exacte, renvoie #N/A si aucune n’est trouvée (par défaut) ; -1 – exacte ou élément immédiatement inférieur ; 1 – exacte ou élément immédiatement supérieur ; 2 – concordance générique où *, ? et ~ ont une signification particulière.', + }, + searchMode: { + name: 'search_mode', + detail: 'Indique le mode de recherche : 1 – depuis le premier élément (par défaut) ; -1 – recherche inversée depuis le dernier ; 2 – recherche binaire nécessitant lookup_array trié par ordre croissant ; -2 – recherche binaire nécessitant lookup_array trié par ordre décroissant. Sans tri requis, des résultats non valides peuvent être renvoyés.', + }, + }, + }, + XMATCH: { + description: 'Recherche un élément donné dans une matrice ou une plage de cellules, puis renvoie sa position relative.', + abstract: 'Recherche un élément donné dans une matrice ou une plage de cellules, puis renvoie sa position relative.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Valeur de recherche.' }, + lookupArray: { name: 'lookup_array', detail: 'Le tableau ou la plage à rechercher.' }, + matchMode: { name: 'match_mode', detail: 'Type de correspondance : 0, exacte par défaut; -1, exacte ou élément immédiatement inférieur; 1, exacte ou élément immédiatement supérieur; 2, correspondance générique avec *, ? et ~.' }, + searchMode: { name: 'search_mode', detail: 'Type de recherche : 1, du premier au dernier par défaut; -1, du dernier au premier; 2, recherche binaire sur un tableau trié par ordre croissant; -2, recherche binaire sur un tableau trié par ordre décroissant.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/id-ID.ts b/packages/sheets-formula/src/locale/function-list/lookup/id-ID.ts new file mode 100644 index 0000000000..d855f554e8 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/id-ID.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'Anda dapat menggunakan fungsi ADDRESS untuk memperoleh alamat sebuah sel dalam lembar kerja, jika diberikan nomor baris dan kolom yang ditentukan. Misalnya, ADDRESS(2,3) mengembalikan $C$2 . Sebagai contoh lain, ADDRESS(77,300) mengembalikan $KN$77 . Anda dapat menggunakan fungsi-fungsi lain, seperti fungsi ROW dan COLUMN , untuk memberikan argumen kepada nomor baris dan kolom untuk fungsi ADDRESS .', + abstract: 'Anda dapat menggunakan fungsi ADDRESS untuk memperoleh alamat sebuah sel dalam lembar kerja, jika diberikan nomor baris dan kolom yang ditentukan. Misalnya, ADDRESS(2,3) mengembalikan $C$2 . Sebagai contoh lain, ADDRESS(77,300) mengembalikan $KN$77 . Anda dapat menggunakan fungsi-fungsi lain, seperti fungsi ROW dan COLUMN , untuk memberikan argumen kepada nomor baris dan kolom untuk fungsi ADDRESS .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Diperlukan. Nilai numerik yang menentukan nomor baris yang akan digunakan dalam referensi sel.' }, + column_num: { name: 'column number', detail: 'Diperlukan. Nilai numerik yang menentukan nomor kolom yang akan digunakan dalam referensi sel.' }, + abs_num: { name: 'type of reference', detail: 'Opsional. Nilai numerik yang menentukan tipe referensi yang akan dihasilkan.' }, + a1: { name: 'style of reference', detail: 'Opsional. Nilai logika yang menentukan gaya referensi A1 atau R1C1. Dalam gaya A1, kolom diberi label menurut abjad, dan baris diberi label menurut angka. Dalam gaya referensi R1C1, baik kolom maupun baris diberi label menurut angka. Jika argumen A1 adalah TRUE atau dihilangkan, fungsi ADDRESS akan mengembalikan referensi gaya A1; jika FALSE, fungsi ADDRESS akan mengembalikan referensi gaya R1C1. Catatan Untuk mengubah gaya referensi yang digunakan Excel, klik tab File , klik Opsi , lalu klik Rumus . Di bawah Bekerja dengan rumus , pilih atau kosongkan kotak centang gaya referensi R1C1 .' }, + sheet_text: { name: 'worksheet name', detail: 'Opsional. Nilai teks yang menentukan nama lembar kerja untuk digunakan sebagai referensi eksternal. Misalnya, rumus =ADDRESS(1,1,,,"Sheet2") mengembalikan Sheet2!$A$1 . Jika argumen sheet_text dihilangkan, tidak ada nama lembar yang digunakan, dan alamat yang dikembalikan oleh fungsi merujuk ke sel pada lembar saat ini.' }, + }, + }, + AREAS: { + description: 'Mengembalikan jumlah area dalam sebuah referensi. Area adalah rentang sel berdekatan atau sel tunggal.', + abstract: 'Mengembalikan jumlah area dalam sebuah referensi. Area adalah rentang sel berdekatan atau sel tunggal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Diperlukan. Referensi ke suatu sel atau rentang sel dan dapat merujuk ke beberapa area. Jika Anda ingin menentukan beberapa referensi sebagai argumen tunggal, maka Anda harus memasukkan seperangkat tanda kurung tambahan sehingga Microsoft Excel tidak akan menginterpretasikan koma sebagai pemisah bidang. Lihat contoh berikut.' }, + }, + }, + CHOOSE: { + description: 'Menggunakan index_num untuk mengembalikan nilai dari daftar argumen nilai. Gunakan CHOOSE untuk memilih satu dari hingga 254 nilai berdasarkan jumlah indeks. Misalnya, jika nilai1 sampai nilai7 adalah hari-hari dari minggu tersebut, CHOOSE mengembalikan salah satu hari ketika angka antara 1 dan 7 digunakan sebagai index_num.', + abstract: 'Menggunakan index_num untuk mengembalikan nilai dari daftar argumen nilai. Gunakan CHOOSE untuk memilih satu dari hingga 254 nilai berdasarkan jumlah indeks. Misalnya, jika nilai1 sampai nilai7 adalah hari-hari dari minggu tersebut, CHOOSE mengembalikan salah satu hari ketika angka antara 1 dan 7 digunakan sebagai index_num.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Menentukan argumen nilai yang dipilih. Harus berupa angka antara 1 dan 254, rumus, atau referensi ke sel yang berisi angka tersebut.' }, + value1: { name: 'value1', detail: 'Nilai atau tindakan yang dipilih berdasarkan index_num. Argumen dapat berupa angka, referensi sel, nama yang ditentukan, rumus, fungsi, atau teks.' }, + value2: { name: 'value2', detail: 'Dari 1 hingga 254 argumen nilai.' }, + }, + }, + CHOOSECOLS: { + description: 'Mengembalikan kolom yang ditentukan dari larik.', + abstract: 'Mengembalikan kolom yang ditentukan dari larik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array yang berisi kolom yang akan dikembalikan dalam array baru. Diperlukan.' }, + colNum1: { name: 'col_num1', detail: 'Kolom pertama yang akan dikembalikan. Diperlukan.' }, + colNum2: { name: 'col_num2', detail: 'Kolom tambahan yang akan dikembalikan. Opsional.' }, + }, + }, + CHOOSEROWS: { + description: 'Mengembalikan baris tertentu dari array.', + abstract: 'Mengembalikan baris tertentu dari array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array yang berisi kolom yang akan dikembalikan dalam array baru. Diperlukan.' }, + rowNum1: { name: 'row_num1', detail: 'Nomor baris pertama yang akan dikembalikan. Diperlukan.' }, + rowNum2: { name: 'row_num2', detail: 'Nomor baris tambahan yang akan dikembalikan. Opsional.' }, + }, + }, + COLUMN: { + description: 'Fungsi COLUMN mengembalikan nomor kolom referensi sel tertentu. Misalnya, rumus =COLUMN(D10) mengembalikan 4, karena kolom D adalah kolom keempat.', + abstract: 'Fungsi COLUMN mengembalikan nomor kolom referensi sel tertentu. Misalnya, rumus =COLUMN(D10) mengembalikan 4, karena kolom D adalah kolom keempat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Sel atau rentang sel yang nomor kolomnya ingin Anda kembalikan.' }, + }, + }, + COLUMNS: { + description: 'Mengembalikan jumlah kolom dalam array atau referensi.', + abstract: 'Mengembalikan jumlah kolom dalam array atau referensi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Rumus array atau array, atau referensi ke rentang sel yang anda inginkan jumlah kolomnya.' }, + }, + }, + DROP: { + description: 'Tidak termasuk jumlah baris atau kolom tertentu dari awal atau akhir larik. Anda mungkin merasa fungsi ini berguna untuk menghapus header dan footer dalam laporan Excel untuk mengembalikan data saja.', + abstract: 'Tidak termasuk jumlah baris atau kolom tertentu dari awal atau akhir larik. Anda mungkin merasa fungsi ini berguna untuk menghapus header dan footer dalam laporan Excel untuk mengembalikan data saja.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array tempat baris atau kolom diletakkan.' }, + rows: { name: 'rows', detail: 'Jumlah baris yang akan dijatuhkan. Nilai negatif turun dari akhir array.' }, + columns: { name: 'columns', detail: 'Jumlah kolom yang akan dikecualikan. Nilai negatif turun dari akhir array.' }, + }, + }, + EXPAND: { + description: 'Memperluas atau mengayuh array ke dimensi baris dan kolom yang ditentukan.', + abstract: 'Memperluas atau mengayuh array ke dimensi baris dan kolom yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array untuk diperluas.' }, + rows: { name: 'rows', detail: 'Jumlah baris dalam array yang diperluas. Jika hilang, baris tidak akan diperluas.' }, + columns: { name: 'columns', detail: 'Jumlah kolom dalam array yang diperluas. Jika hilang, kolom tidak akan diperluas.' }, + padWith: { name: 'pad_with', detail: 'Nilai yang akan diisi dengan tombol angka. Defaultnya adalah #N/A.' }, + }, + }, + FILTER: { + description: 'Dalam contoh berikut, kami menggunakan rumus =FILTER(A5:D20,C5:C20=H2,"") untuk mengembalikan semua rekaman untuk Apple, seperti yang dipilih di sel H2, dan jika tidak ada apel, kembalikan string kosong ("").', + abstract: 'Dalam contoh berikut, kami menggunakan rumus =FILTER(A5:D20,C5:C20=H2,"") untuk mengembalikan semua rekaman untuk Apple, seperti yang dipilih di sel H2, dan jika tidak ada apel, kembalikan string kosong ("").', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Larik atau rentang yang ingin difilter' }, + include: { name: 'include', detail: 'Larik Boolean dengan tinggi atau lebar yang sama seperti larik' }, + ifEmpty: { name: 'if_empty', detail: 'Nilai yang dikembalikan jika semua nilai dalam larik yang disertakan kosong (filter tidak mengembalikan apa pun)' }, + }, + }, + FORMULATEXT: { + description: 'Mengembalikan rumus sebagai string.', + abstract: 'Mengembalikan rumus sebagai string.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Diperlukan. Referensi ke satu sel atau rentang sel.' }, + }, + }, + GETPIVOTDATA: { + description: 'Cuplikan layar di bawah ini memperlihatkan tata letak PivotTable yang digunakan di bagian berikutnya. Dalam contoh ini, =GETPIVOTDATA("Sales",A3) mengembalikan jumlah total penjualan:', + abstract: 'Cuplikan layar di bawah ini memperlihatkan tata letak PivotTable yang digunakan di bagian berikutnya. Dalam contoh ini, =GETPIVOTDATA("Sales",A3) mengembalikan jumlah total penjualan:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'Nama bidang PivotTable yang berisi data yang ingin Anda ambil. Ini harus dalam tanda kutip. Contoh: =GETPIVOTDATA("Sales", A3). Di sini, "Penjualan" adalah bidang Nilai yang ingin kami ambil. Karena tidak ada bidang lain yang ditentukan, GETPIVOTDATA mengembalikan jumlah total penjualan.' }, + pivotTable: { name: 'pivotTable', detail: 'Referensi ke sel, rentang sel, atau rentang sel bernama dalam PivotTable. Informasi ini digunakan untuk menentukan PivotTable yang berisi data yang ingin diambil. Contoh: =GETPIVOTDATA("Sales", A3). Di sini, A3 adalah referensi di dalam PivotTable dan memberi tahu rumus yang digunakan PivotTable.' }, + field1: { name: 'field1', detail: '1 hingga 126 pasang nama bidang dan nama item yang menguraikan data yang ingin diambil. Pasangan ini tidak memiliki urutan tertentu. Nama bidang dan nama untuk item selain tanggal dan angka perlu dimasukkan dalam tanda kutip. Contoh: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). Di sini, "Bulan" adalah bidang dan "Mar" adalah item. Untuk menentukan beberapa item untuk bidang, apit item dalam kurung kurawal (misalnya: {"Mar", "Apr"}). Untuk PivotTable OLAP , item bisa berisi nama sumber dimensi dan juga nama sumber item. Pasangan bidang dan item untuk OLAP PivotTable mungkin terlihat seperti ini: "[Produk]","[Produk].[Semua Produk].[Makanan].[Makanan Panggang]"' }, + item1: { name: 'item1', detail: '1 hingga 126 pasang nama bidang dan nama item yang menguraikan data yang ingin diambil. Pasangan ini tidak memiliki urutan tertentu. Nama bidang dan nama untuk item selain tanggal dan angka perlu dimasukkan dalam tanda kutip. Contoh: =GETPIVOTDATA("Sales", A3, "Month", "Mar"). Di sini, "Bulan" adalah bidang dan "Mar" adalah item. Untuk menentukan beberapa item untuk bidang, apit item dalam kurung kurawal (misalnya: {"Mar", "Apr"}). Untuk PivotTable OLAP , item bisa berisi nama sumber dimensi dan juga nama sumber item. Pasangan bidang dan item untuk OLAP PivotTable mungkin terlihat seperti ini: "[Produk]","[Produk].[Semua Produk].[Makanan].[Makanan Panggang]"' }, + }, + }, + HLOOKUP: { + description: 'Mencari nilai di baris atas tabel atau array nilai, lalu mengembalikan nilai dalam kolom yang sama dari baris yang Anda tentukan dalam tabel atau array. Gunakan HLOOKUP jika nilai perbandingan terletak di sebuah baris di bagian atas tabel data, dan Anda ingin mencari ke beberapa baris tertentu di bawahnya. Gunakan VLOOKUP jika nilai perbandingan terletak di kolom sebelah kiri data yang ingin dicari.', + abstract: 'Mencari nilai di baris atas tabel atau array nilai, lalu mengembalikan nilai dalam kolom yang sama dari baris yang Anda tentukan dalam tabel atau array. Gunakan HLOOKUP jika nilai perbandingan terletak di sebuah baris di bagian atas tabel data, dan Anda ingin mencari ke beberapa baris tertentu di bawahnya. Gunakan VLOOKUP jika nilai perbandingan terletak di kolom sebelah kiri data yang ingin dicari.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Diperlukan. Nilai yang dicari di baris pertama tabel. Lookup_value bisa berupa nilai, referensi, atau string teks.' }, + tableArray: { name: 'table_array', detail: 'Diperlukan. Tabel informasi tempat data dicari. Gunakan referensi ke sebuah rentang atau nama rentang. Nilai di baris pertama table_array bisa berupa teks, angka, atau nilai logika. Jika range_lookup TRUE, nilai di baris pertama table_array harus diletakkan dalam urutan naik: ...-2, -1, 0, 1, 2,... , A-Z, FALSE, TRUE; jika tidak, HLOOKUP tidak akan memberi nilai yang benar. Jika range_lookup FALSE, table_array tidak perlu diurutkan. Teks huruf besar dan huruf kecil sama. Urutkan nilai dengan urutan naik, kiri ke kanan. Untuk informasi selengkapnya, lihat Mengurutkan data dalam rentang atau tabel .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Diperlukan. Nomor baris dalam table_array dari mana nilai yang cocok akan dikembalikan. Row_index_num 1 mengembalikan nilai baris pertama dalam table_array, row_index_num 2 mengembalikan nilai baris kedua dalam table_array, dan seterusnya. Jika row_index_num lebih kecil dari 1, HLOOKUP mengembalikan #VALUE! nilai kesalahan; jika row_index_num lebih besar dari jumlah baris di table_array, HLOOKUP mengembalikan #REF! nilai kesalahan.' }, + rangeLookup: { name: 'range_lookup', detail: 'Opsional. Nilai logika yang menentukan apakah Anda ingin HLOOKUP mencari kecocokan persis atau kecocokan yang mendekati. Jika TRUE atau dihilangkan, dikembalikan sebuah kecocokan yang mendekati. Dengan kata lain, jika kecocokan persis ditemukan, dihasillkan nilai terbesar berikutnya yang kurang dari lookup_value. Jika FALSE, HLOOKUP akan menemukan kecocokan persis. Jika tidak ditemukan, dikembalikan nilai kesalahan #N/A.' }, + }, + }, + HSTACK: { + description: 'Menambahkan larik secara horizontal dan berurutan untuk mengembalikan larik yang lebih besar.', + abstract: 'Menambahkan larik secara horizontal dan berurutan untuk mengembalikan larik yang lebih besar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Array yang akan ditambahkan.' }, + array2: { name: 'array', detail: 'Array yang akan ditambahkan.' }, + }, + }, + HYPERLINK: { + description: 'Membuat hyperlink di dalam sel.', + abstract: 'Membuat hyperlink di dalam sel.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=id', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'URL lengkap lokasi tautan dalam tanda kutip atau referensi ke sel yang memuat URL tersebut. Hanya protokol tertentu yang diizinkan; jika tidak ditentukan, http:// digunakan.' }, + linkLabel: { name: 'link_label', detail: '[OPSIONAL — url secara default] Teks yang ditampilkan dalam sel sebagai tautan, dalam tanda kutip atau referensi ke sel yang memuat label tersebut.' }, + }, + }, + IMAGE: { + description: 'Fungsi IMAGE menyisipkan gambar ke dalam sel dari lokasi sumber bersama dengan teks alternatif. Anda kemudian bisa memindahkan dan mengubah ukuran sel, mengurutkan dan memfilter, dan bekerja dengan gambar di dalam tabel Excel. Gunakan fungsi ini untuk menyempurnakan daftar data secara visual seperti inventaris, game, karyawan, dan konsep matematika.', + abstract: 'Fungsi IMAGE menyisipkan gambar ke dalam sel dari lokasi sumber bersama dengan teks alternatif. Anda kemudian bisa memindahkan dan mengubah ukuran sel, mengurutkan dan memfilter, dan bekerja dengan gambar di dalam tabel Excel. Gunakan fungsi ini untuk menyempurnakan daftar data secara visual seperti inventaris, game, karyawan, dan konsep matematika.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'Jalur URL file gambar yang menggunakan protokol "https".' }, + altText: { name: 'alt_text', detail: 'Teks alternatif yang menjelaskan gambar untuk aksesibilitas.' }, + sizing: { name: 'sizing', detail: 'Menentukan dimensi gambar.' }, + height: { name: 'height', detail: 'Tinggi gambar kustom dalam piksel.' }, + width: { name: 'width', detail: 'Lebar gambar kustom dalam piksel.' }, + }, + }, + INDEX: { + description: 'Mengembalikan nilai elemen dalam tabel atau array, yang dipilih oleh indeks angka baris dan kolom.', + abstract: 'Mengembalikan nilai elemen dalam tabel atau array, yang dipilih oleh indeks angka baris dan kolom.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Referensi ke satu atau beberapa rentang sel.' }, + rowNum: { name: 'row_num', detail: 'Nomor baris dalam referensi yang menjadi sumber pengembalian referensi.' }, + columnNum: { name: 'column_num', detail: 'Nomor kolom dalam referensi yang menjadi sumber pengembalian referensi.' }, + areaNum: { name: 'area_num', detail: 'Memilih rentang dalam referensi untuk mengembalikan perpotongan row_num dan column_num.' }, + }, + }, + INDIRECT: { + description: 'Mengembalikan referensi yang ditentukan oleh string teks. Referensi langsung dievaluasi untuk menampilkan isinya. Gunakan INDIRECT saat Anda ingin mengubah referensi ke sebuah sel di dalam rumus tanpa mengubah rumusnya.', + abstract: 'Mengembalikan referensi yang ditentukan oleh string teks. Referensi langsung dievaluasi untuk menampilkan isinya. Gunakan INDIRECT saat Anda ingin mengubah referensi ke sebuah sel di dalam rumus tanpa mengubah rumusnya.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Diperlukan. Referensi ke sel yang berisi referensi gaya A1, referensi gaya R1C1, nama yang ditentukan sebagai referensi, atau referensi ke sel sebagai string teks. Jika ref_text bukan referensi sel yang valid, MAKA INDIRECT mengembalikan #REF! nilai kesalahan. Jika ref_text merujuk ke buku kerja lain (referensi eksternal), buku kerja lain harus terbuka. Jika buku kerja sumber tidak terbuka, INDIRECT mengembalikan #REF! nilai kesalahan. Catatan Referensi eksternal tidak didukung di Excel Web App. Jika ref_text merujuk ke rentang sel di luar batas baris 1.048.576 atau batas kolom 16.384 (XFD), MAKA INDIRECT mengembalikan #REF! .' }, + a1: { name: 'a1', detail: 'Opsional. Sebuah nilai logika yang menentukan jenis referensi apa yang terdapat di dalam ref_text. Jika a1 TRUE atau dikosongkan, maka ref_text diterjemahkan sebagai referensi gaya A1. Jika a1 FALSE atau dikosongkan, maka ref_text diterjemahkan sebagai referensi gaya R1C1.' }, + }, + }, + LOOKUP: { + description: 'Formulir vektor LOOKUP mencari sebuah nilai dalam rentang satu baris atau satu kolom (yang disebut vektor) dan mengembalikan nilai dari posisi yang sama dalam rentang satu baris atau satu kolom kedua', + abstract: 'Formulir vektor LOOKUP mencari sebuah nilai dalam rentang satu baris atau satu kolom (yang disebut vektor) dan mengembalikan nilai dari posisi yang sama dalam rentang satu baris atau satu kolom kedua', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Nilai yang dicari LOOKUP dalam vektor pertama. Dapat berupa angka, teks, nilai logika, nama, atau referensi ke nilai.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Rentang yang hanya berisi satu baris atau satu kolom.' }, + resultVector: { name: 'result_vector', detail: 'Rentang yang hanya berisi satu baris atau kolom dan harus berukuran sama dengan lookup_vector.' }, + }, + }, + MATCH: { + description: 'Fungsi MATCH mencari item yang ditentukan dalam rentang sel, kemudian mengembalikan posisi relatif item tersebut dalam rentang. Sebagai contoh, jika rentang A1:A3 berisi nilai 5, 25, dan 38, rumus =MATCH(25,A1:A3,0) akan mengembalikan angka 2, karena 25 merupakan item kedua dalam rentang tersebut.', + abstract: 'Fungsi MATCH mencari item yang ditentukan dalam rentang sel, kemudian mengembalikan posisi relatif item tersebut dalam rentang. Sebagai contoh, jika rentang A1:A3 berisi nilai 5, 25, dan 38, rumus =MATCH(25,A1:A3,0) akan mengembalikan angka 2, karena 25 merupakan item kedua dalam rentang tersebut.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'MATCH menemukan nilai terbesar yang kurang dari atau sama dengan lookup_value . Nilai dalam argumen lookup_array harus diletakkan dalam urutan naik, misalnya: ...-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE.' }, + lookupArray: { name: 'lookup_array', detail: 'MATCH menemukan nilai pertama yang sama persis dengan lookup_value . Nilai dalam argumen lookup_array bisa dalam urutan apa pun.' }, + matchType: { name: 'match_type', detail: 'MATCH menemukan nilai terkecil yang lebih besar dari atau sama dengan lookup_value . Nilai dalam argumen lookup_array harus ditempatkan dalam urutan menurun, misalnya: TRUE, FALSE, Z-A, ... 2, 1, 0, -1, -2, ..., dan seterunya.' }, + }, + }, + OFFSET: { + description: 'Mengembalikan referensi ke rentang yang merupakan jumlah baris dan kolom tertentu dari sel atau rentang sel. Referensi yang dikembalikan dapat berupa sel tunggal atau rentang sel. Anda dapat menentukan jumlah baris dan jumlah kolom yang dikembalikan.', + abstract: 'Mengembalikan referensi ke rentang yang merupakan jumlah baris dan kolom tertentu dari sel atau rentang sel. Referensi yang dikembalikan dapat berupa sel tunggal atau rentang sel. Anda dapat menentukan jumlah baris dan jumlah kolom yang dikembalikan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Diperlukan. Referensi dari mana Anda ingin mendasarkan offset. Referensi harus merujuk ke sel atau rentang sel yang berdekatan; jika tidak, OFFSET mengembalikan #VALUE! nilai kesalahan.' }, + rows: { name: 'rows', detail: 'Diperlukan. Jumlah baris, ke atas atau ke bawah, yang Anda inginkan untuk dirujuk oleh sel kiri atas. Menggunakan 5 sebagai argumen baris menentukan bahwa sel kiri atas dalam referensi adalah lima baris di bawah referensi. Baris bisa berupa positif (yang berarti di bawah referensi awal) atau negatif (yang berarti di atas referensi awal).' }, + cols: { name: 'columns', detail: 'Diperlukan. Jumlah kolom, ke kiri atau ke kanan, yang Anda inginkan untuk dirujuk oleh sel kiri atas. Menggunakan 5 sebagai argumen cols menentukan bahwa sel kiri atas dalam referensi adalah lima kolom ke kanan referensi. Cols bisa berupa positif (yang berarti ke kanan referensi awal) atau negatif (yang berarti ke kiri referensi awal).' }, + height: { name: 'height', detail: 'Opsional. Tinggi, dalam jumlah baris, yang merupakan hasil yang Anda inginkan. Tinggi harus berupa bilangan positif.' }, + width: { name: 'width', detail: 'Opsional. Lebar, dalam jumlah kolom, yang merupakan hasil yang Anda inginkan. Lebar harus berupa bilangan positif.' }, + }, + }, + ROW: { + description: 'Mengembalikan jumlah baris referensi.', + abstract: 'Mengembalikan jumlah baris referensi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Opsional. Sel atau rentang sel yang ingin Anda dapatkan nomor barisnya. Jika referensi dihilangkan, maka akan dianggap sebagai referensi sel di mana fungsi ROW muncul. Jika referensi adalah rentang sel, dan jika ROW dimasukkan sebagai array vertikal, ROW mengembalikan nomor baris referensi sebagai array vertikal. Referensi tidak bisa mengacu ke banyak area.' }, + }, + }, + ROWS: { + description: 'Mengembalikan jumlah baris dalam referensi atau array.', + abstract: 'Mengembalikan jumlah baris dalam referensi atau array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array, rumus array, atau referensi ke rentang sel yang anda inginkan jumlah barisnya.' }, + }, + }, + RTD: { + description: 'Mengambil data real time dari program yang mendukung otomatisasi COM.', + abstract: 'Mengambil data real time dari program yang mendukung otomatisasi COM.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Diperlukan. Nama ProgID add-in otomatisasi COM terdaftar yang telah diinstal di komputer lokal. Masukkan nama dalam tanda kutip.' }, + server: { name: 'server', detail: 'Diperlukan. Nama server di mana add-in harus dijalankan. Jika tidak ada server, dan program dijalankan secara lokal, kosongkan argumen. Jika tidak, masukkan tanda kutip ("") di sekitar nama server. Saat menggunakan RTD dalam Visual Basic for Applications (VBA), tanda kutip ganda atau properti NullString VBA diperlukan untuk server, sekalipun server berjalan secara lokal.' }, + topic1: { name: 'topic1', detail: 'Topik1 diperlukan, topik berikutnya bersifat opsional. 1 sampai 253 parameter yang bersama-sama menyatakan sebuah data real time yang unik.' }, + topic2: { name: 'topic2', detail: 'Topik1 diperlukan, topik berikutnya bersifat opsional. 1 sampai 253 parameter yang bersama-sama menyatakan sebuah data real time yang unik.' }, + }, + }, + SORT: { + description: 'Dalam contoh ini, kami mengurutkan menurut Kawasan, Staf Penjualan, dan Produk secara individual dengan =SORT(A2:A17), yang disalin dalam sel F2, H2, dan J2.', + abstract: 'Dalam contoh ini, kami mengurutkan menurut Kawasan, Staf Penjualan, dan Produk secara individual dengan =SORT(A2:A17), yang disalin dalam sel F2, H2, dan J2.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Rentang, atau larik yang akan diurutkan' }, + sortIndex: { name: 'sort_index', detail: 'Angka yang menunjukkan baris atau kolom untuk dasar pengurutan' }, + sortOrder: { name: 'sort_order', detail: 'Angka yang menunjukkan urutan pengurutan yang diinginkan; 1 untuk urutan naik (default), -1 untuk urutan menurun' }, + byCol: { name: 'by_col', detail: 'Nilai logika yang menunjukkan arah pengurutan yang diinginkan; FALSE untuk mengurutkan menurut baris (default), TRUE untuk mengurutkan menurut kolom' }, + }, + }, + SORTBY: { + description: 'Dalam contoh ini, kami mengurutkan daftar nama orang menurut usia mereka, dalam urutan naik.', + abstract: 'Dalam contoh ini, kami mengurutkan daftar nama orang menurut usia mereka, dalam urutan naik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Larik atau rentang yang ingin diurutkan' }, + byArray1: { name: 'by_array1', detail: 'Larik atau rentang yang digunakan untuk mengurutkan' }, + sortOrder1: { name: 'sort_order1', detail: 'Urutan yang ingin digunakan. 1 untuk naik, -1 untuk turun. Defaultnya adalah naik.' }, + byArray2: { name: 'by_array2', detail: 'Larik atau rentang yang digunakan untuk mengurutkan' }, + sortOrder2: { name: 'sort_order2', detail: 'Urutan yang ingin digunakan. 1 untuk naik, -1 untuk turun. Defaultnya adalah naik.' }, + }, + }, + TAKE: { + description: 'Mengembalikan jumlah baris atau kolom yang berdampingan tertentu dari awal atau akhir array.', + abstract: 'Mengembalikan jumlah baris atau kolom yang berdampingan tertentu dari awal atau akhir array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array yang akan diambil baris atau kolomnya.' }, + rows: { name: 'rows', detail: 'Jumlah baris yang akan diambil. Nilai negatif diambil dari akhir array.' }, + columns: { name: 'columns', detail: 'Jumlah kolom yang akan diambil. Nilai negatif diambil dari akhir array.' }, + }, + }, + TOCOL: { + description: 'Mengembalikan array dalam satu kolom.', + abstract: 'Mengembalikan array dalam satu kolom.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array atau referensi yang dikembalikan sebagai kolom.' }, + ignore: { name: 'ignore', detail: 'Menentukan apakah jenis nilai tertentu diabaikan. Secara default tidak ada nilai yang diabaikan: 0 mempertahankan semua, 1 mengabaikan kosong, 2 mengabaikan kesalahan, 3 mengabaikan keduanya.' }, + scanByColumn: { name: 'scan_by_column', detail: 'Memindai array berdasarkan kolom. Secara default array dipindai berdasarkan baris; pemindaian menentukan urutan nilai menurut baris atau kolom.' }, + }, + }, + TOROW: { + description: 'Mengembalikan array dalam satu baris.', + abstract: 'Mengembalikan array dalam satu baris.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array atau referensi yang dikembalikan sebagai baris.' }, + ignore: { name: 'ignore', detail: 'Menentukan apakah jenis nilai tertentu diabaikan. Secara default tidak ada nilai yang diabaikan: 0 mempertahankan semua, 1 mengabaikan kosong, 2 mengabaikan kesalahan, 3 mengabaikan keduanya.' }, + scanByColumn: { name: 'scan_by_column', detail: 'Memindai array berdasarkan kolom. Secara default array dipindai berdasarkan baris; pemindaian menentukan urutan nilai menurut baris atau kolom.' }, + }, + }, + TRANSPOSE: { + description: 'Terkadang Anda perlu memindahkan atau memutar sel. Anda dapat melakukannya dengan menyalin, menempelkan, dan menggunakan opsi Transpose . Namun, melakukannya akan membuat duplikat data. Jika tidak menginginkannya, Anda dapat mengetikkan rumus, bukan menggunakan fungsi TRANSPOSE. Misalnya, dalam gambar berikut ini, rumus =TRANSPOSE(A1:B4) terletak di sel A1 hingga B4 dan mengaturnya secara horizontal.', + abstract: 'Terkadang Anda perlu memindahkan atau memutar sel. Anda dapat melakukannya dengan menyalin, menempelkan, dan menggunakan opsi Transpose . Namun, melakukannya akan membuat duplikat data. Jika tidak menginginkannya, Anda dapat mengetikkan rumus, bukan menggunakan fungsi TRANSPOSE. Misalnya, dalam gambar berikut ini, rumus =TRANSPOSE(A1:B4) terletak di sel A1 hingga B4 dan mengaturnya secara horizontal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Rentang sel atau array dalam lembar kerja.' }, + }, + }, + UNIQUE: { + description: 'Menghasilkan nama unik dari daftar nama', + abstract: 'Menghasilkan nama unik dari daftar nama', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Rentang atau array yang akan mengembalikan baris atau kolom unik' }, + byCol: { name: 'by_col', detail: 'Argumen by_col adalah nilai logika yang menunjukkan cara membandingkan. TRUE akan membandingkan kolom satu sama lain dan mengembalikan kolom unik FALSE (atau dihilangkan) akan membandingkan baris satu sama lain dan mengembalikan baris unik' }, + exactlyOnce: { name: 'exactly_once', detail: 'Argumen exactly_once adalah nilai logika yang akan mengembalikan baris atau kolom yang muncul persis sekali dalam rentang atau array. Ini adalah konsep database yang unik. TRUE akan mengembalikan semua baris atau kolom berbeda yang muncul persis sekali dari rentang atau array FALSE (atau dihilangkan) akan mengembalikan semua baris atau kolom yang berbeda dari rentang atau array' }, + }, + }, + VLOOKUP: { + description: 'Gunakan fungsi VLOOKUP untuk mencari nilai dalam tabel.', + abstract: 'Gunakan fungsi VLOOKUP untuk mencari nilai dalam tabel.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Nilai yang ingin dicari. Nilai tersebut harus berada di kolom pertama rentang sel yang ditentukan dalam table_array.' }, + tableArray: { name: 'table_array', detail: 'Rentang sel tempat VLOOKUP mencari lookup_value dan nilai yang dikembalikan. Anda dapat menggunakan rentang bernama atau tabel.' }, + colIndexNum: { name: 'col_index_num', detail: 'Nomor kolom, dimulai dari 1 untuk kolom paling kiri table_array, yang berisi nilai yang dikembalikan.' }, + rangeLookup: { name: 'range_lookup', detail: 'Nilai logika yang menentukan apakah VLOOKUP mencari kecocokan perkiraan (1/TRUE) atau tepat (0/FALSE).' }, + }, + }, + VSTACK: { + description: 'Menambahkan larik secara vertikal dan berurutan untuk mengembalikan larik yang lebih besar.', + abstract: 'Menambahkan larik secara vertikal dan berurutan untuk mengembalikan larik yang lebih besar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Array yang akan ditambahkan.' }, + array2: { name: 'array', detail: 'Array yang akan ditambahkan.' }, + }, + }, + WRAPCOLS: { + description: 'Membungkus baris atau kolom nilai yang disediakan menurut kolom setelah jumlah elemen tertentu untuk membentuk array baru.', + abstract: 'Membungkus baris atau kolom nilai yang disediakan menurut kolom setelah jumlah elemen tertentu untuk membentuk array baru.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vektor atau referensi untuk membungkus.' }, + wrapCount: { name: 'wrap_count', detail: 'Jumlah nilai maksimum untuk setiap kolom.' }, + padWith: { name: 'pad_with', detail: 'Nilai yang akan diisi dengan tombol angka. Defaultnya adalah #N/A.' }, + }, + }, + WRAPROWS: { + description: 'Membungkus baris atau kolom nilai yang disediakan menurut baris setelah jumlah elemen tertentu untuk membentuk array baru.', + abstract: 'Membungkus baris atau kolom nilai yang disediakan menurut baris setelah jumlah elemen tertentu untuk membentuk array baru.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vektor atau referensi untuk membungkus.' }, + wrapCount: { name: 'wrap_count', detail: 'Jumlah nilai maksimum untuk setiap baris.' }, + padWith: { name: 'pad_with', detail: 'Nilai yang akan diisi dengan tombol angka. Defaultnya adalah #N/A.' }, + }, + }, + XLOOKUP: { + description: 'Gunakan fungsi XLOOKUP untuk menemukan berbagai hal dalam tabel atau rentang menurut baris. Misalnya, cari harga komponen otomotif berdasarkan nomor komponen, atau temukan nama karyawan berdasarkan ID karyawan mereka. Dengan XLOOKUP, Anda bisa mencari dalam satu kolom untuk istilah pencarian dan mengembalikan hasil dari baris yang sama di kolom lain, terlepas dari sisi mana kolom yang dikembalikan berada.', + abstract: 'Gunakan fungsi XLOOKUP untuk menemukan berbagai hal dalam tabel atau rentang menurut baris. Misalnya, cari harga komponen otomotif berdasarkan nomor komponen, atau temukan nama karyawan berdasarkan ID karyawan mereka. Dengan XLOOKUP, Anda bisa mencari dalam satu kolom untuk istilah pencarian dan mengembalikan hasil dari baris yang sama di kolom lain, terlepas dari sisi mana kolom yang dikembalikan berada.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Nilai yang akan dicari *Jika dihilangkan, XLOOKUP mengembalikan sel kosong yang ditemukan di lookup_array .' }, + lookupArray: { name: 'lookup_array', detail: 'Array atau rentang untuk dicari' }, + returnArray: { name: 'return_array', detail: 'Array atau rentang yang akan dikembalikan' }, + ifNotFound: { name: 'if_not_found', detail: 'Jika kecocokan valid tidak ditemukan, kembalikan teks [if_not_found] yang Anda masukkan. Jika kecocokan valid tidak ditemukan, dan [if_not_found] hilang, #N/A dikembalikan.' }, + matchMode: { name: 'match_mode', detail: 'Tentukan tipe yang cocok: 0 - Persis cocok. Jika tidak ditemukan, kembalikan #N/A. Ini adalah pengaturan default. -1 - Persis cocok. Jika tidak ada yang ditemukan, kembalikan item berikutnya yang lebih kecil. 1 - Persis sama. Jika tidak ditemukan, kembalikan item berikutnya yang lebih besar. 2 - A wildcard match where *, ?, and ~ have special meaning .' }, + searchMode: { name: 'search_mode', detail: 'Tentukan mode pencarian yang akan digunakan: 1 - Melakukan pencarian dimulai dari item pertama. Ini adalah pengaturan default. -1 - Melakukan pencarian terbalik dimulai dari item terakhir. 2 - Melakukan pencarian biner yang bergantung pada lookup_array diurutkan dalam urutan naik . Jika tidak diurutkan, hasil yang tidak valid akan dikembalikan. -2 - Melakukan pencarian biner yang mengandalkan lookup_array diurutkan dalam urutan menurun . Jika tidak diurutkan, hasil yang tidak valid akan dikembalikan.' }, + }, + }, + XMATCH: { + description: 'Asumsikan kami memiliki daftar produk di sel C3 hingga C7 dan kami ingin menentukan di mana dalam daftar produk dari sel E3 berada. Di sini, kami akan menggunakan XMATCH untuk menentukan posisi item dalam daftar.', + abstract: 'Asumsikan kami memiliki daftar produk di sel C3 hingga C7 dan kami ingin menentukan di mana dalam daftar produk dari sel E3 berada. Di sini, kami akan menggunakan XMATCH untuk menentukan posisi item dalam daftar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Nilai pencarian' }, + lookupArray: { name: 'lookup_array', detail: 'Array atau rentang untuk dicari' }, + matchMode: { name: 'match_mode', detail: 'Tentukan tipe yang cocok: 0 - Kecocokan persis (default) -1 - Sama persis atau item terkecil berikutnya 1 - Kecocokan persis atau item terbesar berikutnya 2 - A wildcard match where *, ?, and ~ have special meaning .' }, + searchMode: { name: 'search_mode', detail: 'Tentukan tipe pencarian: 1 - Cari dari awal hingga akhir (default) -1 - Cari last-to-first (reverse search). 2 - Melakukan pencarian biner yang bergantung pada lookup_array diurutkan dalam urutan naik . Jika tidak diurutkan, hasil yang tidak valid akan dikembalikan. -2 - Melakukan pencarian biner yang mengandalkan lookup_array diurutkan dalam urutan menurun . Jika tidak diurutkan, hasil yang tidak valid akan dikembalikan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/it-IT.ts b/packages/sheets-formula/src/locale/function-list/lookup/it-IT.ts new file mode 100644 index 0000000000..699a97c7bf --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/it-IT.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'È possibile usare la funzione INDIRIZZO per ottenere l\'indirizzo di una cella di un foglio di lavoro, in base a numeri di riga e di colonna specificati. Ad esempio, INDIRIZZO(2;3) restituisce $C$2 . Come altro esempio, INDIRIZZO(77.300) restituisce $KN$77 . È possibile usare altre funzioni, ad esempio RIF.RIGA e RIF.COLONNA , per fornire gli argomenti per i numeri di riga e di colonna per la funzione INDIRIZZO .', + abstract: 'È possibile usare la funzione INDIRIZZO per ottenere l\'indirizzo di una cella di un foglio di lavoro, in base a numeri di riga e di colonna specificati. Ad esempio, INDIRIZZO(2;3) restituisce $C$2 . Come altro esempio, INDIRIZZO(77.300) restituisce $KN$77 . È possibile usare altre funzioni, ad esempio RIF.RIGA e RIF.COLONNA , per fornire gli argomenti per i numeri di riga e di colonna per la funzione INDIRIZZO .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Obbligatorio. Valore numerico che specifica il numero di riga da usare nel riferimento di cella.' }, + column_num: { name: 'column number', detail: 'Obbligatorio. Valore numerico che specifica il numero di colonna da usare nel riferimento di cella.' }, + abs_num: { name: 'type of reference', detail: 'Opzionale. Valore numerico che specifica il tipo di riferimento da restituire.' }, + a1: { name: 'style of reference', detail: 'Opzionale. Valore logico che specifica lo stile di riferimento A1 o R1C1. Nello stile A1 le colonne sono etichettate alfabeticamente e le righe in ordine numerico. Nello stile di riferimento R1C1 sia le colonne che le righe vengono etichettate numericamente. Se l\'argomento A1 è VERO o è omesso, la funzione INDIRIZZO restituisce un riferimento in stile A1; se è FALSO, la funzione INDIRIZZO restituisce un riferimento di stile R1C1. Nota Per cambiare lo stile di riferimento usato da Excel, fare clic sulla scheda File , fare clic su Opzioni e quindi su Formule . In Utilizzo delle formule selezionare o deselezionare la casella di controllo Stile di riferimento R1C1 .' }, + sheet_text: { name: 'worksheet name', detail: 'Opzionale. Valore di testo che specifica il nome del foglio di lavoro da usare come riferimento esterno. Ad esempio, la formula =INDIRIZZO(1;1,,,"Foglio2") restituisce Foglio2!$A$1 . Se l\'argomento sheet_text viene omesso, non viene usato alcun nome di foglio e l\'indirizzo restituito dalla funzione fa riferimento a una cella del foglio corrente.' }, + }, + }, + AREAS: { + description: 'Restituisce il numero di aree in un riferimento. Un\'area è un intervallo di celle contigue o una singola cella.', + abstract: 'Restituisce il numero di aree in un riferimento. Un\'area è un intervallo di celle contigue o una singola cella.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obbligatorio. Riferimento a una cella o a un intervallo di celle e può riferirsi a più aree. Se si desidera specificare più riferimenti in un unico argomento, sarà necessario includere coppie supplementari di parentesi in modo che il punto e virgola non venga interpretato da Microsoft Excel come un separatore di campo. Vedere l\'esempio seguente.' }, + }, + }, + CHOOSE: { + description: 'Usa indice per restituire un valore dall\'elenco degli argomenti valore. Usare la funzione SCEGLI per selezionare da uno a 254 valori in base al numero di indice. Ad esempio, se i valori da valore1 a valore7 sono i giorni della settimana, SCEGLI restituirà uno dei giorni quando verrà usato come indice un numero da 1 a 7.', + abstract: 'Usa indice per restituire un valore dall\'elenco degli argomenti valore. Usare la funzione SCEGLI per selezionare da uno a 254 valori in base al numero di indice. Ad esempio, se i valori da valore1 a valore7 sono i giorni della settimana, SCEGLI restituirà uno dei giorni quando verrà usato come indice un numero da 1 a 7.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Specifica quale argomento valore viene selezionato. Deve essere un numero da 1 a 254, una formula o un riferimento a una cella contenente tale numero.' }, + value1: { name: 'value1', detail: 'Valore o azione selezionata in base a index_num. Può essere un numero, riferimento di cella, nome definito, formula, funzione o testo.' }, + value2: { name: 'value2', detail: 'Da 1 a 254 argomenti valore.' }, + }, + }, + CHOOSECOLS: { + description: 'Restituisce le colonne specificate da una matrice.', + abstract: 'Restituisce le colonne specificate da una matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice contenente le colonne da restituire nella nuova matrice. Obbligatorio.' }, + colNum1: { name: 'col_num1', detail: 'Prima colonna da restituire. Obbligatorio.' }, + colNum2: { name: 'col_num2', detail: 'Colonne aggiuntive da restituire. Facoltativo.' }, + }, + }, + CHOOSEROWS: { + description: 'Restituisce le righe specificate da una matrice.', + abstract: 'Restituisce le righe specificate da una matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice contenente le colonne da restituire nella nuova matrice. Obbligatorio.' }, + rowNum1: { name: 'row_num1', detail: 'Il numero della prima riga da restituire. Obbligatorio.' }, + rowNum2: { name: 'row_num2', detail: 'Ulteriori numeri di riga da restituire. Facoltativo.' }, + }, + }, + COLUMN: { + description: 'La funzione RIF.COLONNA restituisce il numero di colonna del riferimento di cella specificato. Ad esempio, la formula =COLONNA(D10) restituisce 4, perché la colonna D è la quarta colonna.', + abstract: 'La funzione RIF.COLONNA restituisce il numero di colonna del riferimento di cella specificato. Ad esempio, la formula =COLONNA(D10) restituisce 4, perché la colonna D è la quarta colonna.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Cella o intervallo di celle di cui si desidera restituire il numero di colonna.' }, + }, + }, + COLUMNS: { + description: 'Restituisce il numero di colonne in una matrice o in un riferimento.', + abstract: 'Restituisce il numero di colonne in una matrice o in un riferimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Una formula matrice o matrice oppure un riferimento a un intervallo di celle di cui si desidera calcolare il numero di colonne.' }, + }, + }, + DROP: { + description: 'Esclude un numero specificato di righe o colonne contigue dall\'inizio o dalla fine di una matrice. Questa funzione può risultare utile per rimuovere intestazioni e piè di pagina in un report di Excel per restituire solo i dati.', + abstract: 'Esclude un numero specificato di righe o colonne contigue dall\'inizio o dalla fine di una matrice. Questa funzione può risultare utile per rimuovere intestazioni e piè di pagina in un report di Excel per restituire solo i dati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da cui rilasciare righe o colonne.' }, + rows: { name: 'rows', detail: 'Numero di righe da eliminare. Un valore negativo viene eliminato dalla fine della matrice.' }, + columns: { name: 'columns', detail: 'Numero di colonne da escludere. Un valore negativo viene eliminato dalla fine della matrice.' }, + }, + }, + EXPAND: { + description: 'Espande o riempie una matrice in base alle dimensioni di riga e colonna specificate.', + abstract: 'Espande o riempie una matrice in base alle dimensioni di riga e colonna specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da espandere.' }, + rows: { name: 'rows', detail: 'Numero di righe nella matrice espansa. Se mancano, le righe non verranno espanse.' }, + columns: { name: 'columns', detail: 'Numero di colonne nella matrice espansa. Se mancano, le colonne non verranno espanse.' }, + padWith: { name: 'pad_with', detail: 'Valore con cui inserire il tastierino. L\'impostazione predefinita è #N/A.' }, + }, + }, + FILTER: { + description: 'Nell\'esempio seguente è stata usata la formula =FILTRO(A5:D20,C5:C20=H2,"") per restituire tutti i record per “Mela”, secondo quanto selezionato nella cella H2, e, se non ci sono "mele", restituire una stringa vuota ("").', + abstract: 'Nell\'esempio seguente è stata usata la formula =FILTRO(A5:D20,C5:C20=H2,"") per restituire tutti i record per “Mela”, secondo quanto selezionato nella cella H2, e, se non ci sono "mele", restituire una stringa vuota ("").', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La matrice o l’intervallo da filtrare' }, + include: { name: 'include', detail: 'Una matrice booleana la cui altezza o larghezza equivale alla matrice' }, + ifEmpty: { name: 'if_empty', detail: 'Il valore da restituire se tutti i valori nella matrice inclusa sono vuoti (il filtro non restituisce nulla)' }, + }, + }, + FORMULATEXT: { + description: 'Restituisce una formula sotto forma di stringa.', + abstract: 'Restituisce una formula sotto forma di stringa.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obbligatorio. Riferimento a una cella o un intervallo di celle.' }, + }, + }, + GETPIVOTDATA: { + description: 'Restituisce i dati visibili archiviati in una tabella pivot.', + abstract: 'Restituisce i dati visibili archiviati in una tabella pivot.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'Nome del campo della tabella pivot contenente i dati che si desidera recuperare. Deve essere racchiuso tra virgolette. Esempio: =INFO.DATI.TAB.PIVOT("Vendite", A3). "Vendite" è il campo Valori che si desidera recuperare. Poiché non viene specificato nessun altro campo, INFO.DATI.TAB.PIVOT restituisce l\'importo totale delle vendite.' }, + pivotTable: { name: 'pivotTable', detail: 'Riferimento a una cella, a un intervallo di celle o a un intervallo di celle denominato all\'interno della tabella pivot. Questa informazione viene utilizzata per determinare quale tabella pivot contiene i dati che si desidera recuperare. Esempio: =INFO.DATI.TAB.PIVOT("Vendite", A3). Qui A3 è un riferimento all\'interno della tabella pivot e indica alla formula quale tabella pivot usare.' }, + field1: { name: 'field1', detail: 'Da 1 a 126 coppie di nomi di campi e nomi di elementi che descrivono i dati che si desidera recuperare. Le coppie possono trovarsi in qualsiasi ordine. I nomi di campi e di elementi diversi da date e numeri devono essere racchiusi tra virgolette. Esempio: =INFO.DATI.TAB.PIVOT("Vendite",A3, "Mese", "Mar"). Qui "Mese" è il campo e "Mar" è l\'elemento. Per specificare più elementi per un campo, racchiuderli tra parentesi graffe (ad esempio: {"Mar", "Apr"}). Per le tabelle pivot OLAP , gli elementi possono contenere il nome dell\'origine della dimensione e il nome dell\'origine dell\'elemento. Una coppia campo-elemento per una tabella pivot OLAP ha un aspetto simile al seguente: "[Prodotto]","[Prodotto].[Tutti i prodotti].[Alimenti].[Prodotti da forno]"' }, + item1: { name: 'item1', detail: 'Da 1 a 126 coppie di nomi di campi e nomi di elementi che descrivono i dati che si desidera recuperare. Le coppie possono trovarsi in qualsiasi ordine. I nomi di campi e di elementi diversi da date e numeri devono essere racchiusi tra virgolette. Esempio: =INFO.DATI.TAB.PIVOT("Vendite",A3, "Mese", "Mar"). Qui "Mese" è il campo e "Mar" è l\'elemento. Per specificare più elementi per un campo, racchiuderli tra parentesi graffe (ad esempio: {"Mar", "Apr"}). Per le tabelle pivot OLAP , gli elementi possono contenere il nome dell\'origine della dimensione e il nome dell\'origine dell\'elemento. Una coppia campo-elemento per una tabella pivot OLAP ha un aspetto simile al seguente: "[Prodotto]","[Prodotto].[Tutti i prodotti].[Alimenti].[Prodotti da forno]"' }, + }, + }, + HLOOKUP: { + description: 'Cerca un valore nella riga superiore di una tabella o una matrice di valori e restituisce un valore nella stessa colonna dalla riga indicata nella tabella o nella matrice. Usare la funzione CERCA.ORIZZ quando i valori di confronto sono collocati in una riga superiore di una tabella di dati e si desidera estendere la ricerca verso il basso di un numero specifico di righe. Usare la funzione CERCA.VERT quando i valori di confronto sono collocati in una colonna a sinistra dei dati che si desidera cercare.', + abstract: 'Cerca un valore nella riga superiore di una tabella o una matrice di valori e restituisce un valore nella stessa colonna dalla riga indicata nella tabella o nella matrice. Usare la funzione CERCA.ORIZZ quando i valori di confronto sono collocati in una riga superiore di una tabella di dati e si desidera estendere la ricerca verso il basso di un numero specifico di righe. Usare la funzione CERCA.VERT quando i valori di confronto sono collocati in una colonna a sinistra dei dati che si desidera cercare.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Obbligatorio. Valore da ricercare nella prima riga della tabella. Valore può essere un valore, un riferimento o una stringa di testo.' }, + tableArray: { name: 'table_array', detail: 'Obbligatorio. Tabella di informazioni nella quale vengono cercati i dati. Usare un riferimento a un intervallo o un nome di intervallo. I valori nella prima riga di tabella_matrice possono essere testo, numeri o valori logici. Se range_lookup è VERO, i valori nella prima riga di table_array devono essere disposti in ordine crescente: ...-2, -1, 0, 1, 2,... , A-Z, FALSO, VERO; in caso contrario, CERCA.ORIZZ potrebbe non fornire il valore corretto. Se range_lookup è FALSO, non è necessario ordinare table_array. La funzione non rileva le maiuscole. Disporre i valori in ordine crescente, da sinistra a destra. Per altre informazioni, vedere Ordinare i dati in un intervallo o in una tabella .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Obbligatorio. Numero di riga in table_array da cui verrà restituito il valore corrispondente. Un row_index_num di 1 restituisce il valore della prima riga in table_array, un row_index_num di 2 restituisce il valore della seconda riga in table_array e così via. Se row_index_num è minore di 1, CERCA.ORIZZ restituirà il #VALUE! valore di errore; se row_index_num è maggiore del numero di righe in table_array, CERCA.ORIZZ restituirà il #REF! .' }, + rangeLookup: { name: 'range_lookup', detail: 'Opzionale. Valore logico che specifica se si vuole che CERCA.ORIZZ trovi una corrispondenza esatta o approssimativa. Se VERO o è omesso, verrà restituita una corrispondenza approssimativa. In altre parole, se non viene trovata una corrispondenza esatta, viene restituito il valore più grande successivo minore di lookup_value. Se è FALSO, CERCA.ORIZZ troverà una corrispondenza esatta. Se non ne viene trovato uno, viene restituito il valore di errore #N/D.' }, + }, + }, + HSTACK: { + description: 'Accoda le matrici orizzontalmente e in sequenza per restituire una matrice più grande.', + abstract: 'Accoda le matrici orizzontalmente e in sequenza per restituire una matrice più grande.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Matrici da accodare.' }, + array2: { name: 'array', detail: 'Matrici da accodare.' }, + }, + }, + HYPERLINK: { + description: 'Crea un collegamento ipertestuale all\'interno di una cella.', + abstract: 'Crea un collegamento ipertestuale all\'interno di una cella.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=it', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'URL completo della destinazione del collegamento tra virgolette o riferimento a una cella che lo contiene. Sono consentiti solo protocolli specifici; se non specificato, viene usato http://.' }, + linkLabel: { name: 'link_label', detail: '[FACOLTATIVO — url per impostazione predefinita] Testo da visualizzare nella cella come collegamento, tra virgolette o riferimento a una cella che lo contiene.' }, + }, + }, + IMAGE: { + description: 'La funzione IMAGE inserisce immagini nelle celle da una posizione di origine insieme a un testo alternativo. È quindi possibile spostare e ridimensionare le celle, ordinare e filtrare e usare le immagini all\'interno di una tabella di Excel. Usare questa funzione per migliorare visivamente elenchi di dati come inventari, giochi, dipendenti e concetti matematici.', + abstract: 'La funzione IMAGE inserisce immagini nelle celle da una posizione di origine insieme a un testo alternativo. È quindi possibile spostare e ridimensionare le celle, ordinare e filtrare e usare le immagini all\'interno di una tabella di Excel. Usare questa funzione per migliorare visivamente elenchi di dati come inventari, giochi, dipendenti e concetti matematici.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'Percorso URL, con protocollo "https", del file di immagine.' }, + altText: { name: 'alt_text', detail: 'Testo alternativo che descrive l\'immagine per l\'accessibilità.' }, + sizing: { name: 'sizing', detail: 'Specifica le dimensioni dell\'immagine.' }, + height: { name: 'height', detail: 'Altezza personalizzata dell\'immagine in pixel.' }, + width: { name: 'width', detail: 'Larghezza personalizzata dell\'immagine in pixel.' }, + }, + }, + INDEX: { + description: 'Restituisce il valore di un elemento in una tabella o una freccia, selezionato mediante gli indici dei numeri di riga e colonna.', + abstract: 'Restituisce il valore di un elemento in una tabella o una freccia, selezionato mediante gli indici dei numeri di riga e colonna.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Riferimento a uno o più intervalli di celle.' }, + rowNum: { name: 'row_num', detail: 'Numero della riga in riferimento da cui restituire un riferimento.' }, + columnNum: { name: 'column_num', detail: 'Numero della colonna in riferimento da cui restituire un riferimento.' }, + areaNum: { name: 'area_num', detail: 'Seleziona un intervallo in riferimento da cui restituire l\'intersezione di row_num e column_num.' }, + }, + }, + INDIRECT: { + description: 'Restituisce il riferimento specificato da una stringa di testo. I riferimenti vengono calcolati immediatamente in modo da visualizzarne il contenuto. Usare la funzione INDIRETTO quando si desidera cambiare il riferimento a una cella all\'interno di una formula senza modificare la formula stessa.', + abstract: 'Restituisce il riferimento specificato da una stringa di testo. I riferimenti vengono calcolati immediatamente in modo da visualizzarne il contenuto. Usare la funzione INDIRETTO quando si desidera cambiare il riferimento a una cella all\'interno di una formula senza modificare la formula stessa.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Obbligatorio. Un riferimento a una cella che contiene un riferimento di tipo A1, un riferimento di tipo R1C1, un nome definito come riferimento oppure un riferimento a una cella come stringa di testo. Se rif non è un riferimento di cella valido, INDIRETTO restituirà il valore di errore #RIF! . Se rif si riferisce a un\'altra cartella di lavoro (un riferimento esterno), l\'altra cartella di lavoro deve essere aperta. Se la cartella di lavoro non è aperta, INDIRETTO restituirà il valore di errore #RIF! . Nota I riferimenti esterni non sono supportati in Excel Web App. Se rif si riferisce a un intervallo di celle esterno al limite di riga pari a 1.048.576 o al limite di colonna pari a 16.384 (XFD), INDIRETTO restituirà il valore di errore #RIF! .' }, + a1: { name: 'a1', detail: 'Opzionale. Valore logico che specifica il tipo di riferimento contenuto nella cella rif. Se a1 è VERO o è omesso, rif verrà interpretato come un riferimento di tipo A1. Se a1 è FALSO, rif verrà interpretato come un riferimento di tipo R1C1.' }, + }, + }, + LOOKUP: { + description: 'La forma vettore di CERCA ricerca un valore in un intervallo di una sola riga o di una sola colonna, noto come vettore, e restituisce un valore nella stessa posizione in un secondo intervallo di una riga o di una colonna.', + abstract: 'La forma vettore di CERCA ricerca un valore in un intervallo di una sola riga o di una sola colonna, noto come vettore, e restituisce un valore nella stessa posizione in un secondo intervallo di una riga o di una colonna.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Valore che CERCA cerca nel primo vettore. Può essere un numero, testo, valore logico, nome o riferimento a un valore.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Intervallo che contiene una sola riga o una sola colonna.' }, + resultVector: { name: 'result_vector', detail: 'Intervallo che contiene una sola riga o colonna e deve avere le stesse dimensioni di lookup_vector.' }, + }, + }, + MATCH: { + description: 'La funzione CONFRONTA cerca un determinato elemento in un intervallo di celle e restituisce la posizione relativa di tale elemento nell\'intervallo. Ad esempio, se l\'intervallo A1:A3 include i valori 5, 25 e 38, la formula =CONFRONTA(25;A1:A3;0) restituisce il numero 2 perché 25 è il secondo elemento dell\'intervallo.', + abstract: 'La funzione CONFRONTA cerca un determinato elemento in un intervallo di celle e restituisce la posizione relativa di tale elemento nell\'intervallo. Ad esempio, se l\'intervallo A1:A3 include i valori 5, 25 e 38, la formula =CONFRONTA(25;A1:A3;0) restituisce il numero 2 perché 25 è il secondo elemento dell\'intervallo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'CONFRONTA trova il valore più grande minore o uguale a lookup_value . I valori nell\'argomento lookup_array devono essere disposti in ordine crescente, ad esempio...-2, -1, 0, 1, 2, ..., A-Z, FALSO, VERO.' }, + lookupArray: { name: 'lookup_array', detail: 'CONFRONTA trova il primo valore esattamente uguale a lookup_value . I valori nell\'argomento lookup_array possono essere in qualsiasi ordine.' }, + matchType: { name: 'match_type', detail: 'CONFRONTA trova il valore più piccolo maggiore o uguale a lookup_value . I valori nell\'argomento lookup_array devono essere disposti in ordine decrescente, ad esempio: VERO, FALSO, Z-A, ... 2, 1, 0, -1, -2, ..., e così via.' }, + }, + }, + OFFSET: { + description: 'Restituisce un riferimento a un intervallo spostato rispetto a una cella o a un intervallo di celle di un numero specificato di righe e di colonne. Il riferimento restituito può riferirsi a una cella singola o a un intervallo. È possibile specificare il numero di righe e di colonne dell\'intervallo da restituire.', + abstract: 'Restituisce un riferimento a un intervallo spostato rispetto a una cella o a un intervallo di celle di un numero specificato di righe e di colonne. Il riferimento restituito può riferirsi a una cella singola o a un intervallo. È possibile specificare il numero di righe e di colonne dell\'intervallo da restituire.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Obbligatorio. Riferimento da cui si desidera che inizi lo spostamento. Rif deve essere un riferimento a una cella o a un intervallo di celle adiacenti. In caso contrario, SCARTO restituirà il valore di errore #VALORE!.' }, + rows: { name: 'rows', detail: 'Obbligatorio. Numero di righe, verso l\'alto o verso il basso, che si desidera come riferimento per la cella superiore sinistra. Se righe è uguale a 5, significa che la cella superiore sinistra del riferimento si trova cinque righe al di sotto di rif. Righe può essere un valore positivo, che indica le righe al di sotto del riferimento iniziale, o negativo, che indica le righe al di sopra del riferimento iniziale.' }, + cols: { name: 'columns', detail: 'Obbligatorio. Numero di colonne, a sinistra o a destra, che si desidera come riferimento per la cella superiore sinistra. Se colonne è uguale a 5, significa che la cella superiore sinistra del riferimento si trova cinque colonne a destra di rif. Colonne può essere un valore positivo, che indica le colonne a destra del riferimento iniziale, o negativo, che indica le colonne a sinistra del riferimento iniziale.' }, + height: { name: 'height', detail: 'Opzionale. Altezza del riferimento restituito espressa in numero di righe. Altezza deve essere un valore positivo.' }, + width: { name: 'width', detail: 'Opzionale. Larghezza del riferimento restituito espressa in numero di colonne. Largh deve essere un valore positivo.' }, + }, + }, + ROW: { + description: 'Restituisce il numero di riga di un riferimento.', + abstract: 'Restituisce il numero di riga di un riferimento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Opzionale. Cella o intervallo di celle di cui si desidera il numero di riga. Se rif è omesso, verrà considerato uguale al riferimento della cella contenente la funzione RIF.RIGA. Se rif è un intervallo di celle e se RIF.RIGA viene immesso come matrice verticale, RIF.RIGA restituirà i numeri di riga di riferimento come matrice verticale. Rif non può contenere riferimenti a più aree.' }, + }, + }, + ROWS: { + description: 'Restituisce il numero di righe in un riferimento o in una matrice.', + abstract: 'Restituisce il numero di righe in un riferimento o in una matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice, formula di matrice o riferimento a un intervallo di celle di cui si desidera calcolare il numero di righe.' }, + }, + }, + RTD: { + description: 'Recupera dati in tempo reale da un programma che supporta l\'automazione COM.', + abstract: 'Recupera dati in tempo reale da un programma che supporta l\'automazione COM.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Obbligatorio. Nome dell\'IDProg di un componente aggiuntivo di automazione COM registrato installato nel computer locale. È necessario racchiudere il nome tra virgolette.' }, + server: { name: 'server', detail: 'Obbligatorio. Nome del server in cui deve essere eseguito il componente aggiuntivo. Se non vi sono server e il programma viene eseguito localmente, lasciare vuoto questo argomento. In caso contrario, racchiudere il nome del server tra virgolette (""). Se la funzione DATITEMPOREALE viene usata in Visual Basic, Applications Edition (VBA), anche se il server viene eseguito localmente è necessario usare le virgolette doppie o la proprietà VBA NullString .' }, + topic1: { name: 'topic1', detail: 'Argomento1 è obbligatorio, gli argomenti successivi sono facoltativi. Da 1 a 253 parametri che rappresentano nell\'insieme la porzione univoca di dati in tempo reale.' }, + topic2: { name: 'topic2', detail: 'Argomento1 è obbligatorio, gli argomenti successivi sono facoltativi. Da 1 a 253 parametri che rappresentano nell\'insieme la porzione univoca di dati in tempo reale.' }, + }, + }, + SORT: { + description: 'In questo esempio si sta ordinando singolarmente per area geografica, agente di vendita e prodotto con =DATI.ORDINA(A2:A17), copiata nelle celle F2, H2 e J2.', + abstract: 'In questo esempio si sta ordinando singolarmente per area geografica, agente di vendita e prodotto con =DATI.ORDINA(A2:A17), copiata nelle celle F2, H2 e J2.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'L\'intervallo o matrice da ordinare' }, + sortIndex: { name: 'sort_index', detail: 'Numero che indica la riga o colonna in base a cui ordinare' }, + sortOrder: { name: 'sort_order', detail: 'Numero che indica il criterio di ordinamento desiderato, 1 per ordinamento crescente (impostazione predefinita), -1 per ordinamento decrescente' }, + byCol: { name: 'by_col', detail: 'Un valore logico che indica la direzione di ordinamento desiderata. FALSE per ordinare per riga (impostazione predefinita), TRUE per ordinare per colonna' }, + }, + }, + SORTBY: { + description: 'In questo esempio abbiamo ordinato un elenco di nomi di utenti in base alla loro età, in ordine crescente.', + abstract: 'In questo esempio abbiamo ordinato un elenco di nomi di utenti in base alla loro età, in ordine crescente.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La matrice o l’intervallo da ordinare' }, + byArray1: { name: 'by_array1', detail: 'La matrice o l’intervallo in base a cui ordinare' }, + sortOrder1: { name: 'sort_order1', detail: 'L\'ordine da utilizzare per l\'ordinamento. 1 per ordine crescente, -1 per ordine decrescente. L\'impostazione predefinita è crescente.' }, + byArray2: { name: 'by_array2', detail: 'La matrice o l’intervallo in base a cui ordinare' }, + sortOrder2: { name: 'sort_order2', detail: 'L\'ordine da utilizzare per l\'ordinamento. 1 per ordine crescente, -1 per ordine decrescente. L\'impostazione predefinita è crescente.' }, + }, + }, + TAKE: { + description: 'Restituisce un numero specificato di righe o colonne contigue dall\'inizio o fine di una matrice.', + abstract: 'Restituisce un numero specificato di righe o colonne contigue dall\'inizio o fine di una matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da cui prendere righe o colonne.' }, + rows: { name: 'rows', detail: 'Numero di righe da accettare. Un valore negativo viene prelevato dalla fine della matrice.' }, + columns: { name: 'columns', detail: 'Il numero di colonne da accettare. Un valore negativo viene prelevato dalla fine della matrice.' }, + }, + }, + TOCOL: { + description: 'Restituisce la matrice in una singola colonna.', + abstract: 'Restituisce la matrice in una singola colonna.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice o riferimento da restituire come colonna.' }, + ignore: { name: 'ignore', detail: 'Indica se ignorare determinati tipi di valori. Per impostazione predefinita non viene ignorato alcun valore: 0 mantiene tutti, 1 ignora i vuoti, 2 gli errori, 3 entrambi.' }, + scanByColumn: { name: 'scan_by_column', detail: 'Analizza la matrice per colonna. Per impostazione predefinita viene analizzata per riga; ciò determina l\'ordinamento dei valori.' }, + }, + }, + TOROW: { + description: 'Restituisce la matrice in una singola riga.', + abstract: 'Restituisce la matrice in una singola riga.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'La matrice o il riferimento da restituire come una singola riga.' }, + ignore: { name: 'ignore', detail: 'Indica se ignorare determinati tipi di valori. Per impostazione predefinita non viene ignorato alcun valore. Specificare uno dei valori seguenti:\n0 Mantieni tutti i valori (impostazione predefinita)\n1 Ignora le celle vuote\n2 Ignora gli errori\n3 Ignora le celle vuote e gli errori' }, + scanByColumn: { name: 'scan_by_column', detail: 'Indica se analizzare la matrice per colonna. Per impostazione predefinita, la matrice viene analizzata per riga. L\'ordine di analisi determina se i valori vengono ordinati per riga o per colonna.' }, + }, + }, + TRANSPOSE: { + description: 'Quando occorre trasporre o ruotare celle, è possibile farlo copiando, incollando e usando l\'opzione Trasponi . In questo modo si creano però dati duplicati. Per evitarlo, è possibile digitare una formula usando la funzione MATR.TRASPOSTA. Ad esempio, nell\'immagine seguente la formula =MATR.TRASPOSTA(A1:B4) dispone le celle da A1 a B4 in orizzontale.', + abstract: 'Quando occorre trasporre o ruotare celle, è possibile farlo copiando, incollando e usando l\'opzione Trasponi . In questo modo si creano però dati duplicati. Per evitarlo, è possibile digitare una formula usando la funzione MATR.TRASPOSTA. Ad esempio, nell\'immagine seguente la formula =MATR.TRASPOSTA(A1:B4) dispone le celle da A1 a B4 in orizzontale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Intervallo di celle o matrice in un foglio di lavoro.' }, + }, + }, + UNIQUE: { + description: 'Restituisce nomi univoci da un elenco di nomi', + abstract: 'Restituisce nomi univoci da un elenco di nomi', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'L\'intervallo o matrice da cui restituire righe o colonne univoche' }, + byCol: { name: 'by_col', detail: 'L\'argomento by_col è un valore logico che indica come eseguire il confronto. VERO confronta le colonne tra loro e restituisce le colonne univoche FALSO (o omesso) confronta le righe tra loro e restituisce le righe univoche' }, + exactlyOnce: { name: 'exactly_once', detail: 'L’argomento exactly_once è un valore logico che restituisce righe e colonne che ricorrono esattamente una volta in un intervallo o matrice. Questo è il concetto di database di UNICI. VERO restituisce tutte le righe e colonne univoche che ricorrono esattamente una volta in un intervallo o matrice FALSO (o omesso) restituisce tutte le righe e colonne univoche in un intervallo o matrice.' }, + }, + }, + VLOOKUP: { + description: 'Usare la funzione CERCA.VERT per cercare un valore in una tabella.', + abstract: 'Usare la funzione CERCA.VERT per cercare un valore in una tabella.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Valore da cercare, che deve trovarsi nella prima colonna dell\'intervallo specificato in table_array.' }, + tableArray: { name: 'table_array', detail: 'Intervallo di celle in cui CERCA.VERT cerca lookup_value e il valore da restituire. Può essere un intervallo denominato o una tabella.' }, + colIndexNum: { name: 'col_index_num', detail: 'Numero della colonna, iniziando da 1 per la colonna più a sinistra di table_array, che contiene il valore da restituire.' }, + rangeLookup: { name: 'range_lookup', detail: 'Valore logico che specifica se CERCA.VERT deve trovare una corrispondenza approssimativa (1/VERO) o esatta (0/FALSO).' }, + }, + }, + VSTACK: { + description: 'Accoda le matrici in verticale e in sequenza per restituire una matrice più grande.', + abstract: 'Accoda le matrici in verticale e in sequenza per restituire una matrice più grande.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Matrici da accodare.' }, + array2: { name: 'array', detail: 'Matrici da accodare.' }, + }, + }, + WRAPCOLS: { + description: 'Esegue il wrapping della riga o della colonna di valori specificata per colonne dopo un numero specificato di elementi per formare una nuova matrice.', + abstract: 'Esegue il wrapping della riga o della colonna di valori specificata per colonne dopo un numero specificato di elementi per formare una nuova matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vettore o riferimento da mandare a capo.' }, + wrapCount: { name: 'wrap_count', detail: 'Numero massimo di valori per ogni colonna.' }, + padWith: { name: 'pad_with', detail: 'Valore con cui inserire il tastierino. L\'impostazione predefinita è #N/A.' }, + }, + }, + WRAPROWS: { + description: 'Esegue il wrapping della riga o colonna di valori per righe dopo un numero specificato di elementi per formare una nuova matrice.', + abstract: 'Esegue il wrapping della riga o colonna di valori per righe dopo un numero specificato di elementi per formare una nuova matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Vettore o riferimento da mandare a capo.' }, + wrapCount: { name: 'wrap_count', detail: 'Numero massimo di valori per ogni riga.' }, + padWith: { name: 'pad_with', detail: 'Valore con cui inserire il tastierino. L\'impostazione predefinita è #N/A.' }, + }, + }, + XLOOKUP: { + description: 'Usare la funzione CERCA.X per trovare elementi in una tabella o in un intervallo per riga. Ad esempio è possibile cercare il prezzo di un componente di un’auto in base al numero del pezzo o trovare il nome di un dipendente in base al suo ID dipendente. Con CERCA.X è possibile cercare un termine di ricerca in una colonna e ottenere un risultato nella stessa riga ma in un\'altra colonna, indipendentemente dal lato in cui si trova la colonna del risultato.', + abstract: 'Usare la funzione CERCA.X per trovare elementi in una tabella o in un intervallo per riga. Ad esempio è possibile cercare il prezzo di un componente di un’auto in base al numero del pezzo o trovare il nome di un dipendente in base al suo ID dipendente. Con CERCA.X è possibile cercare un termine di ricerca in una colonna e ottenere un risultato nella stessa riga ma in un\'altra colonna, indipendentemente dal lato in cui si trova la colonna del risultato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Il valore da cercare *Se viene omesso, CERCA.X restituirà le celle vuote che trova in lookup_array .' }, + lookupArray: { name: 'lookup_array', detail: 'La matrice o l’intervallo in cui effettuare la ricerca' }, + returnArray: { name: 'return_array', detail: 'La matrice o l’intervallo da restituire' }, + ifNotFound: { name: 'if_not_found', detail: 'Se non è stata trovata una corrispondenza valida, restituire il testo [se_non_trovato] che si specifica. Se non viene trovata una corrispondenza valida e [se_non_trovato] manca, verrà restituito #N/A .' }, + matchMode: { name: 'match_mode', detail: 'Specificare il tipo di corrispondenza: 0 - Corrispondenza esatta. Se non trovata, restituisce #N/D. Questa è l’impostazione predefinita. -1 - Corrispondenza esatta. Se non trovata, restituisce l’elemento successivo più piccolo. 1 - Corrispondenza esatta. Se non trovata, restituisce l’elemento successivo più grande. 2 - Una corrispondenza jolly in cui *, ? e ~ hanno un significato speciale .' }, + searchMode: { name: 'search_mode', detail: 'Specificare la modalità di ricerca da usare: 1 - Effettuare una ricerca a partire dal primo elemento. Questa è l’impostazione predefinita. -1 - Effettuare una ricerca inversa a partire dall’ultimo elemento. 2 - Effettuare una ricerca binaria basata sulla matrice di ricerca classificata in ordine crescente . Se non è classificata, vengono restituiti risultati non validi. - 2 - Effettuare una ricerca binaria basata sulla matrice di ricerca classificata in ordine decrescente . Se non è classificata, vengono restituiti risultati non validi.' }, + }, + }, + XMATCH: { + description: 'Supponiamo di avere un elenco di prodotti nelle celle da C3 a C7 e di voler determinare dove si trova il prodotto della cella E3. Qui useremo CONFRONTA.X per determinare la posizione di un elemento all\'interno di un elenco.', + abstract: 'Supponiamo di avere un elenco di prodotti nelle celle da C3 a C7 e di voler determinare dove si trova il prodotto della cella E3. Qui useremo CONFRONTA.X per determinare la posizione di un elemento all\'interno di un elenco.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Il valore' }, + lookupArray: { name: 'lookup_array', detail: 'La matrice o l’intervallo in cui effettuare la ricerca' }, + matchMode: { name: 'match_mode', detail: 'Specificare il tipo di corrispondenza: 0 - Corrispondenza esatta (impostazione predefinita) -1 - Corrispondenza esatta o elemento successivo più piccolo 1 - Corrispondenza esatta o elemento successivo più grande 2 - Una corrispondenza jolly in cui *, ? e ~ hanno un significato speciale .' }, + searchMode: { name: 'search_mode', detail: 'Specificare il tipo di ricerca: 1 - Ricerca dal primo all\'ultimo (impostazione predefinita) -1 - Ricerca dall\'ultimo al primo (ricerca inversa). 2 - Effettuare una ricerca binaria basata sulla matrice di ricerca classificata in ordine crescente . Se non è classificata, vengono restituiti risultati non validi. - 2 - Effettuare una ricerca binaria basata sulla matrice di ricerca classificata in ordine decrescente . Se non è classificata, vengono restituiti risultati non validi.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/lookup/ja-JP.ts index 22b2b2388d..ea14cf4379 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/address-%E9%96%A2%E6%95%B0-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/ja-jp/excel/functions/address-function', }, ], functionParameter: { @@ -46,7 +46,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/areas-%E9%96%A2%E6%95%B0-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/ja-jp/excel/functions/areas-function', }, ], functionParameter: { @@ -59,7 +59,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/choose-%E9%96%A2%E6%95%B0-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/choose-function', }, ], functionParameter: { @@ -74,7 +74,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/choosecols-%E9%96%A2%E6%95%B0-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/ja-jp/excel/functions/choosecols-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chooserows-%E9%96%A2%E6%95%B0-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chooserows-function', }, ], functionParameter: { @@ -104,7 +104,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/column-%E9%96%A2%E6%95%B0-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/column-function', }, ], functionParameter: { @@ -117,7 +117,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/columns-%E9%96%A2%E6%95%B0-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/ja-jp/excel/functions/columns-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/drop-%E9%96%A2%E6%95%B0-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/ja-jp/excel/functions/drop-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/expand-%E9%96%A2%E6%95%B0-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/ja-jp/excel/functions/expand-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/filter-%E9%96%A2%E6%95%B0-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/ja-jp/excel/functions/filter-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/formulatext-%E9%96%A2%E6%95%B0-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/formulatext-function', }, ], functionParameter: { @@ -189,54 +189,44 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/getpivotdata-%E9%96%A2%E6%95%B0-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + dataField: { name: 'データ フィールド', detail: '取得するデータを含むデータ フィールドの名前です。' }, + pivotTable: { name: 'ピボットテーブル', detail: 'ピボットテーブル内のセル、範囲、または名前付き範囲への参照です。' }, + field1: { name: 'フィールド 1', detail: '省略可能。データを表す最初のフィールド名です。' }, + item1: { name: 'アイテム 1', detail: '省略可能。フィールド内の最初のアイテム名です。' }, }, }, HLOOKUP: { - description: '配テーブルの上端行または配列内の特定の値を検索し、テーブルまたは配列内の指定した行から同じ列の値を返します。', - abstract: '配列の上端行で特定の値を検索し、対応するセルの値を返します。', + description: 'テーブルの最初の行または値の配列の値を検索し、テーブルまたは配列で指定した行から同じ列の値を返します。 HLOOKUP 関数は、比較する値がデータ テーブルの上端行にあり、指定した行数分だけ下を参照する場合に使用します。 比較する値が検索データの左側の列にある場合は、VLOOKUP 関数を使用してください。', + abstract: 'テーブルの最初の行または値の配列の値を検索し、テーブルまたは配列で指定した行から同じ列の値を返します。 HLOOKUP 関数は、比較する値がデータ テーブルの上端行にあり、指定した行数分だけ下を参照する場合に使用します。 比較する値が検索データの左側の列にある場合は、VLOOKUP 関数を使用してください。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hlookup-%E9%96%A2%E6%95%B0-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hlookup-function', }, ], functionParameter: { - lookupValue: { - name: '検索値', - detail: '必ず指定します。 テーブルの上端行で検索する値を指定します。', - }, - tableArray: { - name: '範囲', - detail: 'データを検索する情報のテーブルです。 セル範囲への参照またはセル範囲名を使用します。', - }, - rowIndexNum: { - name: '行番号', - detail: ' 一致する値を返す、範囲内の行番号。 行番号に 1 を指定すると、範囲の最初の行の値が返され、行番号に 2 を指定すると、範囲の 2 番目の行の値が返され、以降同様に処理されます。', - }, - rangeLookup: { - name: '検索の型', - detail: 'HLOOKUP を使用して検索値と完全に一致する値だけを検索するか、その近似値を含めて検索するかを指定する論理値です。', - }, + lookupValue: { name: '検索値', detail: '必須。 テーブルの上端行で検索する値を指定します。 検索値には、値、参照、または文字列を指定します。' }, + tableArray: { name: '範囲', detail: '必須。 データを検索する情報のテーブルです。 セル範囲への参照またはセル範囲名を使用します。 範囲の上端行の列のデータは、文字列、数値、論理値のいずれでもかまいません。 検索の型に TRUE を指定した場合、範囲の上端行の列のデータは、昇順で配置しておく必要があります。つまりは、~-2、-1、0、1、2~、A~Z、FALSE から TRUE の順となります。その他の場合、HLOOKUP では正しい値を得られない場合があります。 検索の型に FALSE を指定した場合、範囲を並べ替える必要はありません。 英字の大文字と小文字は区別されません。 値を昇順に、左から右に並べ替えます。 詳細については、「 範囲またはテーブルのデータを並べ替える 」を参照してください。' }, + rowIndexNum: { name: '行番号', detail: '必須。 一致する値を返す、範囲内の行番号。 行番号に 1 を指定すると、範囲の最初の行の値が返され、行番号に 2 を指定すると、範囲の 2 番目の行の値が返され、以降同様に処理されます。 行番号が 1 より小さい場合、エラー値 #VALUE! が返され、行番号が範囲の行数より大きい場合は、エラー値 #REF! が返されます。' }, + rangeLookup: { name: '検索の型', detail: 'オプション。 HLOOKUP を使用して検索値と完全に一致する値だけを検索するか、その近似値を含めて検索するかを指定する論理値です。 TRUE を指定するか省略した場合、近似値が返されます。 つまり、完全に一致する値が見つからない場合は、検索値未満の最大値が使用されます。 FALSE を指定した場合、HLOOKUP では完全に一致する値が検索されます。 完全に一致する値が見つからない場合は、エラー値 #N/A が返されます。' }, }, }, HSTACK: { - description: '配列を水平方向および順番に追加して、大きな配列を返します', - abstract: '配列を水平方向および順番に追加して、大きな配列を返します', + description: '配列を水平方向に順番に追加して、より大きな配列を返します。', + abstract: '配列を水平方向に順番に追加して、より大きな配列を返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hstack-%E9%96%A2%E6%95%B0-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: '配列', detail: '追加する配列。' }, - array2: { name: '配列', detail: '追加する配列。' }, + array1: { name: '配列', detail: '各配列引数からの行数の最大値。' }, + array2: { name: '配列', detail: '各配列引数のすべての列の合計カウント。' }, }, }, HYPERLINK: { @@ -245,21 +235,21 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=ja', + url: 'https://support.google.com/docs/answer/3093313?hl=ja', }, ], functionParameter: { - url: { name: 'URL', detail: 'リンクの場所の完全な URL を二重引用符で囲んで指定します。または、URL を含むセルへの参照を指定します。' }, - linkLabel: { name: 'リンクラベル', detail: 'セルにリンクとして表示するテキストを二重引用符で囲んで指定します。または、ラベルを含むセルへの参照を指定します。' }, + url: { name: 'URL', detail: 'リンクの場所の完全な URL を二重引用符で囲んで指定します。または、URL を含むセルの参照を指定します。 使用できるリンク タイプは、 http:// 、 https:// 、 mailto: 、 aim: 、 ftp:// 、 gopher:// 、 telnet:// 、 news:// のみで、その他のタイプは明示的に禁止されています。別のプロトコルを指定すると、セルに リンクラベル は表示されますが、ハイパーリンクされません。 プロトコルを何も指定しない場合は、 http:// が URL の先頭に追加されます。' }, + linkLabel: { name: 'リンクラベル', detail: '[ 省略可 - デフォルトは URL ] - セルにリンクとして表示するテキストを二重引用符で囲んで指定します。または、ラベルを含むセルの参照を指定します。 リンクラベル が空のセルへの参照である場合、 URL が有効であればリンクとして表示され、無効であれば通常のテキストとして表示されます。 リンクラベル が空の文字列リテラル("")である場合、セルは空として表示されますが、クリックするかセルに移動するとリンクにアクセスできます。' }, }, }, IMAGE: { - description: '特定のソースからイメージを返します', - abstract: '特定のソースからイメージを返します', + description: 'IMAGE 関数は、代替テキストと共にソースの場所からセルに画像を挿入します。 その後、セルの移動とサイズ変更、並べ替えとフィルター処理、Excel テーブル内の画像の操作を行うことができます。 この関数を使用して、在庫、ゲーム、従業員、数学的概念などのデータのリストを視覚的に拡張します。', + abstract: 'IMAGE 関数は、代替テキストと共にソースの場所からセルに画像を挿入します。 その後、セルの移動とサイズ変更、並べ替えとフィルター処理、Excel テーブル内の画像の操作を行うことができます。 この関数を使用して、在庫、ゲーム、従業員、数学的概念などのデータのリストを視覚的に拡張します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/image-%E9%96%A2%E6%95%B0-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/image-function', }, ], functionParameter: { @@ -276,7 +266,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/index-%E9%96%A2%E6%95%B0-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/ja-jp/excel/functions/index-function', }, ], functionParameter: { @@ -292,7 +282,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/indirect-%E9%96%A2%E6%95%B0-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/ja-jp/excel/functions/indirect-function', }, ], functionParameter: { @@ -306,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lookup-%E9%96%A2%E6%95%B0-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lookup-function', }, ], functionParameter: { @@ -330,7 +320,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/match-%E9%96%A2%E6%95%B0-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/match-function', }, ], functionParameter: { @@ -345,7 +335,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/offset-%E9%96%A2%E6%95%B0-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/ja-jp/excel/functions/offset-function', }, ], functionParameter: { @@ -362,7 +352,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/row-%E9%96%A2%E6%95%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/row-function', }, ], functionParameter: { @@ -375,7 +365,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rows-%E9%96%A2%E6%95%B0-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rows-function', }, ], functionParameter: { @@ -388,12 +378,14 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rtd-%E9%96%A2%E6%95%B0-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + progId: { name: 'プログラム ID', detail: 'ローカルにインストールされている COM オートメーション アドインのプログラム ID です。' }, + server: { name: 'サーバー', detail: 'アドインを実行するサーバー名です。ローカルの場合は空の文字列を指定します。' }, + topic1: { name: 'トピック 1', detail: '取得するリアルタイム データを指定する最初の文字列です。' }, + topic2: { name: 'トピック 2', detail: '省略可能。リアルタイム データを指定する追加の文字列です。' }, }, }, SORT: { @@ -402,7 +394,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sort-%E9%96%A2%E6%95%B0-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sort-function', }, ], functionParameter: { @@ -418,7 +410,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sortby-%E9%96%A2%E6%95%B0-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sortby-function', }, ], functionParameter: { @@ -435,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/take-%E9%96%A2%E6%95%B0-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/ja-jp/excel/functions/take-function', }, ], functionParameter: { @@ -450,7 +442,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tocol-%E9%96%A2%E6%95%B0-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tocol-function', }, ], functionParameter: { @@ -465,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/torow-%E9%96%A2%E6%95%B0-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/ja-jp/excel/functions/torow-function', }, ], functionParameter: { @@ -480,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/transpose-%E9%96%A2%E6%95%B0-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/ja-jp/excel/functions/transpose-function', }, ], functionParameter: { @@ -493,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/unique-%E9%96%A2%E6%95%B0-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/unique-function', }, ], functionParameter: { @@ -508,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/vlookup-%E9%96%A2%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/vlookup-function', }, ], functionParameter: { @@ -536,7 +528,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/vstack-%E9%96%A2%E6%95%B0-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/vstack-function', }, ], functionParameter: { @@ -550,7 +542,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/wrapcols-%E9%96%A2%E6%95%B0-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -565,7 +557,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/wraprows-%E9%96%A2%E6%95%B0-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/ja-jp/excel/functions/wraprows-function', }, ], functionParameter: { @@ -580,7 +572,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/xlookup-%E9%96%A2%E6%95%B0-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/ja-jp/excel/functions/xlookup-function', }, ], functionParameter: { @@ -610,7 +602,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/xmatch-%E9%96%A2%E6%95%B0-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/ja-jp/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/lookup/ko-KR.ts index b88a39aa02..bae8360199 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/address-함수-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/ko-kr/excel/functions/address-function', }, ], functionParameter: { @@ -55,7 +55,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/areas-함수-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/ko-kr/excel/functions/areas-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/choose-함수-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/choose-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/choosecols-함수-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/ko-kr/excel/functions/choosecols-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chooserows-함수-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chooserows-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/column-함수-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/column-function', }, ], functionParameter: { @@ -126,7 +126,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/columns-함수-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/ko-kr/excel/functions/columns-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/drop-함수-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/ko-kr/excel/functions/drop-function', }, ], functionParameter: { @@ -154,7 +154,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/expand-함수-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/ko-kr/excel/functions/expand-function', }, ], functionParameter: { @@ -170,7 +170,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/filter-함수-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/ko-kr/excel/functions/filter-function', }, ], functionParameter: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/formulatext-함수-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/formulatext-function', }, ], functionParameter: { @@ -198,68 +198,58 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/getpivotdata-함수-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + dataField: { name: '데이터 필드', detail: '검색할 데이터가 들어 있는 데이터 필드의 이름입니다.' }, + pivotTable: { name: '피벗 테이블', detail: '피벗 테이블의 셀, 범위 또는 이름이 지정된 범위에 대한 참조입니다.' }, + field1: { name: '필드 1', detail: '선택 사항입니다. 데이터를 설명하는 첫 번째 필드 이름입니다.' }, + item1: { name: '항목 1', detail: '선택 사항입니다. 필드의 첫 번째 항목 이름입니다.' }, }, }, HLOOKUP: { - description: '배열의 첫 행에서 찾고 표시된 셀의 값을 반환합니다', - abstract: '배열의 첫 행에서 찾고 표시된 셀의 값을 반환합니다', + description: '표의 첫 행 또는 값의 배열에서 값을 검색한 다음 표나 배열에 지정한 행에서 동일한 열의 값을 반환합니다. 비교값이 데이터 표의 위쪽에 있을 때 지정한 행 수를 위에서 아래로 조사하려면 HLOOKUP을 사용합니다. 비교값이 찾으려는 데이터의 왼쪽 열에 있으면 VLOOKUP을 사용합니다.', + abstract: '표의 첫 행 또는 값의 배열에서 값을 검색한 다음 표나 배열에 지정한 행에서 동일한 열의 값을 반환합니다. 비교값이 데이터 표의 위쪽에 있을 때 지정한 행 수를 위에서 아래로 조사하려면 HLOOKUP을 사용합니다. 비교값이 찾으려는 데이터의 왼쪽 열에 있으면 VLOOKUP을 사용합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/hlookup-함수-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hlookup-function', }, ], functionParameter: { - lookupValue: { - name: 'lookup_value', - detail: '표의 첫 번째 행에서 찾을 값입니다. Lookup_value는 값, 참조 또는 텍스트 문자열일 수 있습니다.', - }, - tableArray: { - name: 'table_array', - detail: '데이터를 조회할 정보 표입니다. 범위에 대한 참조 또는 범위 이름을 사용합니다.', - }, - rowIndexNum: { - name: 'row_index_num', - detail: '일치하는 값이 반환될 table_array의 행 번호입니다. row_index_num이 1이면 table_array의 첫 번째 행 값을 반환하고, row_index_num이 2이면 table_array의 두 번째 행 값을 반환하는 식입니다.', - }, - rangeLookup: { - name: 'range_lookup', - detail: 'HLOOKUP이 정확히 일치하는 항목을 찾을지 대략적으로 일치하는 항목을 찾을지를 지정하는 논리값입니다.', - }, + lookupValue: { name: 'lookup_value', detail: '필수. 표의 첫 행에서 찾을 값입니다. lookup_value는 값, 참조 또는 텍스트 문자열일 수 있습니다.' }, + tableArray: { name: 'table_array', detail: '필수. 데이터를 찾을 정보 표입니다. 범위에 대한 참조나 범위 이름을 사용합니다. table_array의 첫째 행의 값은 텍스트, 숫자 또는 논리값이 될 수 있습니다. range_lookup이 TRUE면 table_array의 첫째 행 값은 반드시 오름차순( ...-2, -1, 0, 1, 2,... , A-Z, FALSE, TRUE)으로 정렬되어 있어야 하고, 그렇지 않으면 HLOOKUP에서는 정확한 값을 찾을 수 없습니다. range_lookup이 FALSE면 table_array가 정렬되지 않아도 무방합니다. 대/소문자는 구분하지 않습니다. 값을 오름차순으로 왼쪽에서 오른쪽으로 정렬합니다. 자세한 내용은 범위 또는 표의 데이터 정렬 을 참조하세요.' }, + rowIndexNum: { name: 'row_index_num', detail: '필수. 반환하려는 값이 있는 table_array의 행 번호입니다. row_index_num이 1이면 table_array의 첫 번째 행 값을, 2이면 두 번째 행 값을 반환합니다. row_index_num이 1보다 작으면 HLOOKUP에서는 #VALUE! 오류 값이 반환되고, row_index_num이 table_array의 행 수보다 크면 HLOOKUP에서는 #REF! 오류 값이 반환됩니다.' }, + rangeLookup: { name: 'range_lookup', detail: '선택적. HLOOKUP이 정확히 일치하는지 또는 대략적인 일치 항목을 찾을지 여부를 지정하는 논리 값입니다. TRUE 또는 생략하면 대략적인 일치 항목이 반환됩니다. 즉, 정확한 일치 항목을 찾을 수 없으면 lookup_value 미만인 다음으로 큰 값이 반환됩니다. FALSE이면 HLOOKUP에서 정확히 일치하는 항목을 찾습니다. 오류 값을 찾을 수 없으면 #N/A 오류 값이 반환됩니다.' }, }, }, HSTACK: { - description: '배열을 가로로 순서대로 추가하여 더 큰 배열을 반환합니다', - abstract: '배열을 가로로 순서대로 추가하여 더 큰 배열을 반환합니다', + description: '배열을 가로 및 순서대로 추가하여 더 큰 배열을 반환합니다.', + abstract: '배열을 가로 및 순서대로 추가하여 더 큰 배열을 반환합니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/hstack-함수-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: '배열', detail: '추가할 배열입니다.' }, - array2: { name: '배열', detail: '추가할 배열입니다.' }, + array1: { name: '배열', detail: '각 배열 인수의 최대 행 수입니다.' }, + array2: { name: '배열', detail: '각 배열 인수의 모든 열의 결합된 개수입니다.' }, }, }, HYPERLINK: { - description: '셀 내부에 하이퍼링크를 만듭니다.', - abstract: '셀 내부에 하이퍼링크를 만듭니다.', + description: '셀 안에 하이퍼링크를 만듭니다.', + abstract: '셀 안에 하이퍼링크를 만듭니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=ko', + url: 'https://support.google.com/docs/answer/3093313?hl=ko', }, ], functionParameter: { - url: { name: 'url', detail: '따옴표로 묶인 링크 위치의 전체 URL 또는 이러한 URL을 포함하는 셀에 대한 참조입니다.' }, - linkLabel: { name: 'link_label', detail: '셀에 링크로 표시할 텍스트로, 따옴표로 묶이거나 이러한 레이블을 포함하는 셀에 대한 참조입니다.' }, + url: { name: 'url', detail: '링크 위치의 전체 URL(따옴표 안에 표시)이나 이러한 URL을 포함하는 셀 참조입니다. 특정 링크 유형만 허용됩니다. http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// , news:// 는 허용되지만 다른 링크는 명시적으로 금지됩니다. 다른 프로토콜이 지정된 경우 link_label 이 셀에 표시되지만 하이퍼링크되지는 않습니다. 프로토콜을 지정하지 않으면 http:// 가 사용되며 url 앞에 붙습니다.' }, + linkLabel: { name: 'link_label', detail: '[ 선택사항 - 기본값은 url ] - 셀에 링크로 표시할 텍스트입니다. 따옴표로 묶거나 이러한 라벨이 포함된 셀을 참조합니다. link_label 이 빈 셀에 대한 참조인 경우 url 이 유효하면 링크로 표시되고, 그렇지 않으면 일반 텍스트로 표시됩니다. link_label 이 빈 문자열 리터럴 ("")인 경우 셀이 비어 있는 것으로 표시되지만 셀을 클릭하거나 셀로 이동하면 링크에 계속 액세스할 수 있습니다.' }, }, }, IMAGE: { @@ -268,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/image-함수-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/image-function', }, ], functionParameter: { @@ -285,7 +275,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/index-함수-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/ko-kr/excel/functions/index-function', }, ], functionParameter: { @@ -301,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/indirect-함수-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/ko-kr/excel/functions/indirect-function', }, ], functionParameter: { @@ -315,7 +305,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lookup-함수-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lookup-function', }, ], functionParameter: { @@ -339,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/match-함수-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/match-function', }, ], functionParameter: { @@ -354,7 +344,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/offset-함수-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/ko-kr/excel/functions/offset-function', }, ], functionParameter: { @@ -371,7 +361,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/row-함수-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/row-function', }, ], functionParameter: { @@ -384,7 +374,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rows-함수-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rows-function', }, ], functionParameter: { @@ -397,12 +387,14 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rtd-함수-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: '첫 번째' }, - number2: { name: 'number2', detail: '두 번째' }, + progId: { name: '프로그램 ID', detail: '로컬에 설치된 COM 자동화 추가 기능의 프로그램 ID입니다.' }, + server: { name: '서버', detail: '추가 기능을 실행할 서버 이름입니다. 로컬 서버는 빈 문자열을 사용합니다.' }, + topic1: { name: '항목 1', detail: '검색할 실시간 데이터를 지정하는 첫 번째 텍스트입니다.' }, + topic2: { name: '항목 2', detail: '선택 사항입니다. 실시간 데이터를 지정하는 추가 텍스트입니다.' }, }, }, SORT: { @@ -411,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sort-함수-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sort-function', }, ], functionParameter: { @@ -427,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sortby-함수-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sortby-function', }, ], functionParameter: { @@ -444,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/take-함수-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/ko-kr/excel/functions/take-function', }, ], functionParameter: { @@ -459,7 +451,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tocol-함수-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tocol-function', }, ], functionParameter: { @@ -474,7 +466,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/torow-함수-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/ko-kr/excel/functions/torow-function', }, ], functionParameter: { @@ -489,7 +481,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/transpose-함수-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/ko-kr/excel/functions/transpose-function', }, ], functionParameter: { @@ -502,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/unique-함수-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/unique-function', }, ], functionParameter: { @@ -517,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/vlookup-함수-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/vlookup-function', }, ], functionParameter: { @@ -545,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/vstack-함수-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/vstack-function', }, ], functionParameter: { @@ -559,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/wrapcols-함수-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -574,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/wraprows-함수-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/ko-kr/excel/functions/wraprows-function', }, ], functionParameter: { @@ -589,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/xlookup-함수-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/ko-kr/excel/functions/xlookup-function', }, ], functionParameter: { @@ -619,7 +611,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/xmatch-함수-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/ko-kr/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/lookup/pl-PL.ts new file mode 100644 index 0000000000..9c3e3e0f47 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/pl-PL.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'Za pomocą funkcji ADRES można uzyskać adres komórki w arkuszu, podając określony numer wiersza i kolumny. Na przykład funkcja ADRES(2;3) zwraca wartość $C$2 . W innym przykładzie funkcja ADRES(77;300) zwraca wartość $KN 77 zł . Za pomocą innych funkcji, takich jak WIERSZ i NR.KOLUMNY , można uzyskać argumenty numeru wiersza i numeru kolumny dla funkcji ADRES .', + abstract: 'Za pomocą funkcji ADRES można uzyskać adres komórki w arkuszu, podając określony numer wiersza i kolumny. Na przykład funkcja ADRES(2;3) zwraca wartość $C$2 . W innym przykładzie funkcja ADRES(77;300) zwraca wartość $KN 77 zł . Za pomocą innych funkcji, takich jak WIERSZ i NR.KOLUMNY , można uzyskać argumenty numeru wiersza i numeru kolumny dla funkcji ADRES .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Wymagane. Wartość liczbowa określająca numer wiersza, który ma zostać użyty w odwołaniu do komórki.' }, + column_num: { name: 'column number', detail: 'Wymagane. Wartość liczbowa określająca numer kolumny, który ma zostać użyty w odwołaniu do komórki.' }, + abs_num: { name: 'type of reference', detail: 'Opcjonalne. Wartość liczbowa określająca, jakiego typu odwołanie będzie zwracane przez funkcję.' }, + a1: { name: 'style of reference', detail: 'Opcjonalne. Wartość logiczna określająca styl odwołania A1 lub W1K1. W stylu A1 kolumny są oznaczone alfabetycznie, a wiersze — numerycznie. W stylu odwołania W1K1 zarówno kolumny, jak i wiersze są oznaczone numerami. Jeśli argument A1 ma wartość PRAWDA lub jest pominięty, funkcja ADRES zwraca odwołanie w stylu A1. jeśli FAŁSZ, funkcja ADRES zwraca odwołanie w stylu W1K1. Uwaga Aby zmienić styl odwołań używany w programie Excel, kliknij kartę Plik , polecenie Opcje , a następnie kliknij kategorię Formuły . W obszarze Praca z formułami zaznacz lub wyczyść pole wyboru Styl odwołania W1K1 .' }, + sheet_text: { name: 'worksheet name', detail: 'Opcjonalne. Wartość tekstowa określająca nazwę arkusza, który ma być używany jako odwołanie zewnętrzne. Na przykład formuła =ADRES(1;1,,,"Arkusz2") zwraca wartość Arkusz2!$A$1 . Jeśli argument sheet_text zostanie pominięty, nie zostanie użyta nazwa arkusza, a adres zwrócony przez funkcję odwołuje się do komórki w bieżącym arkuszu.' }, + }, + }, + AREAS: { + description: 'Zwraca liczbę obszarów w odwołaniu. Obszar jest to zakres przylegających do siebie komórek lub pojedyncza komórka.', + abstract: 'Zwraca liczbę obszarów w odwołaniu. Obszar jest to zakres przylegających do siebie komórek lub pojedyncza komórka.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Wymagane. Odwołanie do komórki lub zakresu komórek i może odwoływać się do wielu obszarów. Jeśli chcesz określić kilka odwołań jako jeden argument, musisz dołączyć dodatkowe zestawy nawiasów, aby program Microsoft Excel nie interpretował przecinka jako separatora pola. Zobacz poniższy przykład.' }, + }, + }, + CHOOSE: { + description: 'Funkcja używa argumentu nr_arg, aby zwrócić wartość z listy argumentów wartości. Funkcja WYBIERZ służy do wybierania jednej z maksymalnie 254 wartości na podstawie numeru argumentu. Jeśli na przykład argumenty od wartość1 do wartość7 to dni tygodnia, funkcja WYBIERZ zwróci jeden z dni, gdy jako argument nr_arg zostanie użyta liczba z przedziału między 1 a 7.', + abstract: 'Funkcja używa argumentu nr_arg, aby zwrócić wartość z listy argumentów wartości. Funkcja WYBIERZ służy do wybierania jednej z maksymalnie 254 wartości na podstawie numeru argumentu. Jeśli na przykład argumenty od wartość1 do wartość7 to dni tygodnia, funkcja WYBIERZ zwróci jeden z dni, gdy jako argument nr_arg zostanie użyta liczba z przedziału między 1 a 7.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Określa, który argument wartości zostanie wybrany. index_num musi być liczbą od 1 do 254 albo formułą lub odwołaniem do komórki zawierającej taką liczbę.\nJeśli index_num wynosi 1, CHOOSE zwraca value1; jeśli 2, zwraca value2 itd.\nJeśli index_num jest mniejsze niż 1 lub większe niż numer ostatniej wartości na liście, CHOOSE zwraca błąd #VALUE!.\nJeśli index_num jest ułamkiem, przed użyciem zostaje obcięty do najniższej liczby całkowitej.' }, + value1: { name: 'value1', detail: 'CHOOSE wybiera wartość lub działanie do wykonania na podstawie index_num. Argumentami mogą być liczby, odwołania do komórek, nazwy zdefiniowane, formuły, funkcje lub tekst.' }, + value2: { name: 'value2', detail: 'Od 1 do 254 argumentów wartości.' }, + }, + }, + CHOOSECOLS: { + description: 'Zwraca określone kolumny z tablicy.', + abstract: 'Zwraca określone kolumny z tablicy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica zawierająca kolumny, które mają zostać zwrócone w nowej tablicy. Argument wymagany.' }, + colNum1: { name: 'col_num1', detail: 'Pierwsza kolumna do zwrócenia. Argument wymagany.' }, + colNum2: { name: 'col_num2', detail: 'Dodatkowe kolumny do zwrócenia. Argument opcjonalny.' }, + }, + }, + CHOOSEROWS: { + description: 'Zwraca określone wiersze z tablicy.', + abstract: 'Zwraca określone wiersze z tablicy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica zawierająca kolumny, które mają zostać zwrócone w nowej tablicy. Argument wymagany.' }, + rowNum1: { name: 'row_num1', detail: 'Numer pierwszego wiersza, który ma zostać zwrócony. Argument wymagany.' }, + rowNum2: { name: 'row_num2', detail: 'Dodatkowe numery wierszy do zwrócenia. Argument opcjonalny.' }, + }, + }, + COLUMN: { + description: 'Funkcja NR.KOLUMNY zwraca numer kolumny danego odwołania do komórki. Na przykład formuła =KOLUMNA(D10) zwraca wartość 4, ponieważ kolumna D jest czwartą kolumną.', + abstract: 'Funkcja NR.KOLUMNY zwraca numer kolumny danego odwołania do komórki. Na przykład formuła =KOLUMNA(D10) zwraca wartość 4, ponieważ kolumna D jest czwartą kolumną.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Komórka lub zakres komórek, dla których chcesz zwrócić numer kolumny.' }, + }, + }, + COLUMNS: { + description: 'Zwraca liczbę kolumn w tablicy lub odwołaniu.', + abstract: 'Zwraca liczbę kolumn w tablicy lub odwołaniu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub formuła tablicowa albo odwołanie do zakresu komórek, dla którego ma zostać wybrana liczba kolumn.' }, + }, + }, + DROP: { + description: 'Wyklucza określoną liczbę wierszy lub kolumn z początku lub końca tablicy. Ta funkcja może być przydatna do usuwania nagłówków i stopek w raporcie programu Excel w celu zwrócenia tylko danych.', + abstract: 'Wyklucza określoną liczbę wierszy lub kolumn z początku lub końca tablicy. Ta funkcja może być przydatna do usuwania nagłówków i stopek w raporcie programu Excel w celu zwrócenia tylko danych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica, z której mają być upuszczanie wierszy lub kolumn.' }, + rows: { name: 'rows', detail: 'Liczba wierszy do upuszczenia. Wartość ujemna powoduje przeniesienie z końca tablicy.' }, + columns: { name: 'columns', detail: 'Liczba kolumn do wykluczenia. Wartość ujemna powoduje przeniesienie z końca tablicy.' }, + }, + }, + EXPAND: { + description: 'Rozwija lub uzupełnia tablicę do określonych wymiarów wierszy i kolumn.', + abstract: 'Rozwija lub uzupełnia tablicę do określonych wymiarów wierszy i kolumn.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica do rozwinięcia.' }, + rows: { name: 'rows', detail: 'Liczba wierszy w rozwiniętej tablicy. Jeśli go brakuje, wiersze nie zostaną rozwinięte.' }, + columns: { name: 'columns', detail: 'Liczba kolumn w rozwiniętej tablicy. Jeśli go brakuje, kolumny nie zostaną rozwinięte.' }, + padWith: { name: 'pad_with', detail: 'Wartość, za pomocą której ma zostać dopełnienie. Wartość domyślna to #N/D.' }, + }, + }, + FILTER: { + description: 'W poniższym przykładzie użyto formuły =FILTRUJ(A5:D20;C5:C20=H2;"""), aby zwrócić wszystkie rekordy dla firmy Apple, zaznaczone w komórce H2, a jeśli nie ma jabłek, zwróć pusty ciąg ("").', + abstract: 'W poniższym przykładzie użyto formuły =FILTRUJ(A5:D20;C5:C20=H2;"""), aby zwrócić wszystkie rekordy dla firmy Apple, zaznaczone w komórce H2, a jeśli nie ma jabłek, zwróć pusty ciąg ("").', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres do sortowania' }, + include: { name: 'include', detail: 'Tablicę logiczną, której wysokość lub szerokość jest taka sama jak tablicy' }, + ifEmpty: { name: 'if_empty', detail: 'Wartość zwracana, jeśli wszystkie wartości w załączonej tablicy są puste (filtr nic nie zwróci)' }, + }, + }, + FORMULATEXT: { + description: 'Zwraca formułę w postaci ciągu.', + abstract: 'Zwraca formułę w postaci ciągu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Wymagane. Odwołanie do komórki lub zakresu komórek.' }, + }, + }, + GETPIVOTDATA: { + description: 'Zwraca widoczne dane przechowywane w tabeli przestawnej.', + abstract: 'Zwraca widoczne dane przechowywane w tabeli przestawnej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'Nazwa pola tabeli przestawnej zawierającego dane, które chcesz pobrać. Nazwa musi być ujęta w cudzysłów. Przykład: =WEŹDANETABELI("Sprzedaż";A3). W tym miejscu "Sprzedaż" jest polem Wartości, które chcemy pobrać. Ponieważ nie określono żadnego innego pola, funkcja WEŹDANETABELI zwraca całkowitą kwotę sprzedaży.' }, + pivotTable: { name: 'pivotTable', detail: 'Odwołanie do dowolnej komórki, zakresu komórek lub nazwanego zakresu komórek w tabeli przestawnej. Te informacje służą do określenia, która tabela przestawna zawiera dane do pobrania. Przykład: =WEŹDANETABELI("Sprzedaż";A3). W tym miejscu komórka A3 jest odwołaniem wewnątrz tabeli przestawnej i informuje formułę, której tabeli przestawnej użyć.' }, + field1: { name: 'field1', detail: 'Od 1 do 126 par nazw pól i nazw elementów, które opisują dane do pobrania. Pary mogą mieć dowolną kolejność. Nazwy pól oraz nazwy elementów innych niż daty i liczby muszą być ujęte w cudzysłów. Przykład: =WEŹDANETABELI("Sprzedaż";A3;"Miesiąc";"Mar"). W tym miejscu pole to "Miesiąc", a elementem jest "Mar". Aby określić wiele elementów dla pola, ujmij je w nawiasy klamrowe (na przykład: {"Mar", "Kwi"}). W przypadku tabel przestawnych OLAP elementy mogą zawierać nazwę źródłową wymiaru, a także nazwę źródłową elementu. Para pola i elementu w przypadku tabeli przestawnej OLAP może wyglądać następująco: "[Produkt]";"[Produkt].[Wszystkie Produkty].[Artykuły spożywcze].[Pieczywo]"' }, + item1: { name: 'item1', detail: 'Od 1 do 126 par nazw pól i nazw elementów, które opisują dane do pobrania. Pary mogą mieć dowolną kolejność. Nazwy pól oraz nazwy elementów innych niż daty i liczby muszą być ujęte w cudzysłów. Przykład: =WEŹDANETABELI("Sprzedaż";A3;"Miesiąc";"Mar"). W tym miejscu pole to "Miesiąc", a elementem jest "Mar". Aby określić wiele elementów dla pola, ujmij je w nawiasy klamrowe (na przykład: {"Mar", "Kwi"}). W przypadku tabel przestawnych OLAP elementy mogą zawierać nazwę źródłową wymiaru, a także nazwę źródłową elementu. Para pola i elementu w przypadku tabeli przestawnej OLAP może wyglądać następująco: "[Produkt]";"[Produkt].[Wszystkie Produkty].[Artykuły spożywcze].[Pieczywo]"' }, + }, + }, + HLOOKUP: { + description: 'Wyszukuje wartość w górnym wierszu tabeli lub tablicy wartości, a następnie zwraca wartość w tej samej kolumnie z wiersza określonego w tabeli lub w tablicy. Funkcji WYSZUKAJ.POZIOMO należy używać wtedy, gdy porównywane wartości są umieszczone w górnym wierszu tabeli danych i kiedy należy przeszukać określoną liczbę wierszy w dół. Funkcji WYSZUKAJ.PIONOWO należy używać wtedy, gdy porównywane wartości są umieszczone w kolumnie znajdującej się z lewej strony danych, które należy znaleźć.', + abstract: 'Wyszukuje wartość w górnym wierszu tabeli lub tablicy wartości, a następnie zwraca wartość w tej samej kolumnie z wiersza określonego w tabeli lub w tablicy. Funkcji WYSZUKAJ.POZIOMO należy używać wtedy, gdy porównywane wartości są umieszczone w górnym wierszu tabeli danych i kiedy należy przeszukać określoną liczbę wierszy w dół. Funkcji WYSZUKAJ.PIONOWO należy używać wtedy, gdy porównywane wartości są umieszczone w kolumnie znajdującej się z lewej strony danych, które należy znaleźć.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Wymagane. Wartość, którą należy znaleźć w pierwszym wierszu tabeli. Szukana_wartość może być wartością, odwołaniem lub ciągiem tekstowym.' }, + tableArray: { name: 'table_array', detail: 'Wymagane. Tabela zawierająca informacje, w której są poszukiwane dane. Należy używać odwołania do zakresu lub nazwy zakresu. Wartości w pierwszym wierszu tablicy określonej przez argument tabela_tablica mogą być tekstem, liczbami lub wartościami logicznymi. Jeśli argument przeszukiwany_zakres ma wartość PRAWDA, wartości w pierwszym wierszu tablicy określonej przez argument tabela_tablica muszą być umieszczone w kolejności rosnącej: ...-2, -1, 0, 1, 2,... , A-Z, FAŁSZ, PRAWDA; w przeciwnym przypadku funkcja WYSZUKAJ.POZIOMO może nie podać poprawnej wartości. Jeśli argument przeszukiwany_zakres ma wartość FAŁSZ, nie ma potrzeby sortowania argumentu tabela_tablica. Teksty pisane dużymi i małymi literami są równoważne. Wartości są sortowane w kolejności rosnącej, od lewej do prawej. Aby uzyskać więcej informacji, zobacz Sortowanie danych w zakresie lub tabeli .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Wymagane. Numer wiersza w table_array, z którego zostanie zwrócona zgodna wartość. Row_index_num 1 zwraca wartość pierwszego wiersza w table_array, row_index_num 2 zwraca drugą wartość wiersza w table_array itd. Jeśli row_index_num jest mniejsza niż 1, funkcja WYSZUKAJ.POZIOMO zwraca #VALUE! wartość błędu; jeśli row_index_num jest większa niż liczba wierszy na table_array, funkcja WYSZUKAJ.POZIOMO zwraca #REF! wartość błędu #ADR!.' }, + rangeLookup: { name: 'range_lookup', detail: 'Opcjonalne. Wartość logiczna określająca, czy funkcja WYSZUKAJ.POZIOMO ma znaleźć dokładne czy przybliżone dopasowanie. Jeśli tą wartością jest PRAWDA bądź argument został pominięty, zwracane jest przybliżone dopasowanie. Innymi słowy, jeśli nie zostanie znalezione dokładne dopasowanie, zwracana jest następna największa wartość, która jest mniejsza niż argument szukana_wartość. Jeśli tą wartością jest FAŁSZ, funkcja WYSZUKAJ.POZIOMO wyszuka dokładne dopasowanie. Jeśli nie zostanie znalezione, zwracana jest wartość błędu #N/D!.' }, + }, + }, + HSTACK: { + description: 'Dołącza tablice w poziomie i w sekwencji, aby zwrócić większą tablicę.', + abstract: 'Dołącza tablice w poziomie i w sekwencji, aby zwrócić większą tablicę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Tablice do dołączenia.' }, + array2: { name: 'array', detail: 'Tablice do dołączenia.' }, + }, + }, + HYPERLINK: { + description: 'Tworzy hiperłącze w komórce.', + abstract: 'Tworzy hiperłącze w komórce.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=pl', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'Pełny adres URL miejsca docelowego łącza w cudzysłowie albo odwołanie do komórki zawierającej taki adres URL. Dozwolone są tylko określone typy łączy: http://, https://, mailto:, aim:, ftp://, gopher://, telnet:// i news://. Jeśli podano inny protokół, link_label będzie wyświetlany w komórce bez hiperłącza. Jeśli nie podano protokołu, zakłada się http:// i dodaje go przed url.' }, + linkLabel: { name: 'link_label', detail: '[ OPCJONALNE — domyślnie url ] — Tekst wyświetlany w komórce jako łącze, ujęty w cudzysłów, albo odwołanie do komórki zawierającej taki tekst. Jeśli link_label odwołuje się do pustej komórki, url zostanie wyświetlony jako łącze, jeśli jest prawidłowy, w przeciwnym razie jako zwykły tekst. Jeśli link_label jest pustym ciągiem (""), komórka będzie wyglądała na pustą, ale łącze nadal będzie dostępne.' }, + }, + }, + IMAGE: { + description: 'Funkcja OBRAZ wstawia obrazy do komórek z lokalizacji źródłowej wraz z tekstem alternatywnym. Następnie możesz przenosić i zmieniać rozmiar komórek, sortować i filtrować oraz pracować z obrazami w tabeli programu Excel. Ta funkcja służy do wizualnego ulepszania list danych, takich jak spisy, gry, pracownicy i pojęcia matematyczne.', + abstract: 'Funkcja OBRAZ wstawia obrazy do komórek z lokalizacji źródłowej wraz z tekstem alternatywnym. Następnie możesz przenosić i zmieniać rozmiar komórek, sortować i filtrować oraz pracować z obrazami w tabeli programu Excel. Ta funkcja służy do wizualnego ulepszania list danych, takich jak spisy, gry, pracownicy i pojęcia matematyczne.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'Ścieżka URL pliku obrazu używająca protokołu „https”.' }, + altText: { name: 'alt_text', detail: 'Tekst alternatywny opisujący obraz na potrzeby dostępności.' }, + sizing: { name: 'sizing', detail: 'Określa wymiary obrazu.' }, + height: { name: 'height', detail: 'Niestandardowa wysokość obrazu w pikselach.' }, + width: { name: 'width', detail: 'Niestandardowa szerokość obrazu w pikselach.' }, + }, + }, + INDEX: { + description: 'Zwraca wartość elementu w tabeli lub tablicy, wybranego przez indeksy numerów kolumn i wierszy.', + abstract: 'Zwraca wartość elementu w tabeli lub tablicy, wybranego przez indeksy numerów kolumn i wierszy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Odwołanie do co najmniej jednego zakresu komórek.' }, + rowNum: { name: 'row_num', detail: 'Numer wiersza w reference, z którego ma zostać zwrócone odwołanie.' }, + columnNum: { name: 'column_num', detail: 'Numer kolumny w reference, z której ma zostać zwrócone odwołanie.' }, + areaNum: { name: 'area_num', detail: 'Wybiera zakres w reference, z którego ma zostać zwrócone przecięcie row_num i column_num.' }, + }, + }, + INDIRECT: { + description: 'Zwraca odwołanie wyznaczone przez ciąg tekstowy. Odwołania są obliczane natychmiast, aby wyświetlić ich zawartość. Należy skorzystać z funkcji ADR.POŚR, aby zmienić odwołanie do komórki w formule bez zmieniania samej formuły.', + abstract: 'Zwraca odwołanie wyznaczone przez ciąg tekstowy. Odwołania są obliczane natychmiast, aby wyświetlić ich zawartość. Należy skorzystać z funkcji ADR.POŚR, aby zmienić odwołanie do komórki w formule bez zmieniania samej formuły.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Wymagane. Odwołanie do komórki zawierającej odwołanie w stylu A1, odwołanie w stylu R1C1, nazwę zdefiniowaną jako odwołanie lub odwołanie do komórki jako ciąg tekstowy. Jeśli argument adres_tekst nie jest prawidłowym odwołaniem do komórki, funkcja ADR.POŚR zwraca błąd #ADR! wartość błędu #ADR!. Jeśli ref_text odwołuje się do innego skoroszytu (odwołanie zewnętrzne), drugi skoroszyt musi być otwarty. Jeśli skoroszyt źródłowy nie jest otwarty, funkcja ADR.POŚR zwraca błąd #ADR! wartość błędu #ADR!. Uwaga Odwołania zewnętrzne nie są obsługiwane w aplikacji internetowej Excel. Jeśli argument adres_tekst odwołuje się do zakresu komórek poza limitem 1 048 576 wierszy lub limitem 16 384 kolumn (XFD), funkcja ADR.POŚR zwraca błąd #ADR! #ZABLOKOWANE!.' }, + a1: { name: 'a1', detail: 'Opcjonalne. Wartość logiczna określająca, jaki typ odwołania znajduje się w komórce adres_tekst. Jeśli wartością argumentu a1 jest PRAWDA lub jest on pominięty, argument adres_tekst jest interpretowany jako odwołanie typu A1. Jeśli wartością argumentu a1 jest FAŁSZ, argument adres_tekst jest interpretowany jako odwołanie typu W1K1.' }, + }, + }, + LOOKUP: { + description: 'W formie wektorowej funkcja WYSZUKAJ wyszukuje wartości w zakresie jednowierszowym lub jednokolumnowym (określanym jako wektor) i zwraca wartości z tej samej pozycji w drugim zakresie jednowierszowym lub jednokolumnowym.', + abstract: 'W formie wektorowej funkcja WYSZUKAJ wyszukuje wartości w zakresie jednowierszowym lub jednokolumnowym (określanym jako wektor) i zwraca wartości z tej samej pozycji w drugim zakresie jednowierszowym lub jednokolumnowym.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Wartość wyszukiwana przez LOOKUP w pierwszym wektorze. lookup_value może być liczbą, tekstem, wartością logiczną, nazwą lub odwołaniem wskazującym wartość.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Zakres zawierający tylko jeden wiersz albo jedną kolumnę.' }, + resultVector: { name: 'result_vector', detail: 'Zakres zawierający tylko jeden wiersz albo jedną kolumnę. result_vector musi mieć taki sam rozmiar jak lookup_vector.' }, + }, + }, + MATCH: { + description: 'Funkcja PODAJ.POZYCJĘ wyszukuje określony element w zakresie komórek, a następnie zwraca względną pozycję tego elementu w zakresie. Jeśli na przykład zakres A1:A3 zawiera wartości 5, 25 i 38, formuła =PODAJ.POZYCJĘ(25;A1:A3;0) zwraca liczbę 2, ponieważ 25 jest drugim elementem w zakresie.', + abstract: 'Funkcja PODAJ.POZYCJĘ wyszukuje określony element w zakresie komórek, a następnie zwraca względną pozycję tego elementu w zakresie. Jeśli na przykład zakres A1:A3 zawiera wartości 5, 25 i 38, formuła =PODAJ.POZYCJĘ(25;A1:A3;0) zwraca liczbę 2, ponieważ 25 jest drugim elementem w zakresie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Funkcja PODAJ.POZYCJĘ znajduje największą wartość, która jest mniejsza niż lub równa lookup_value . Wartości argumentu lookup_array muszą być umieszczone w kolejności rosnącej, na przykład: ...-2, -1, 0, 1, 2, ..., A-Z, FAŁSZ, PRAWDA.' }, + lookupArray: { name: 'lookup_array', detail: 'Funkcja PODAJ.POZYCJĘ znajduje pierwszą wartość, która jest dokładnie równa lookup_value . Wartości argumentu lookup_array mogą być w dowolnej kolejności.' }, + matchType: { name: 'match_type', detail: 'Funkcja PODAJ.POZYCJĘ znajduje najmniejszą wartość, która jest większa niż lub równa lookup_value . Wartości argumentu lookup_array muszą być umieszczone w kolejności malejącej, na przykład: PRAWDA, FAŁSZ, Z-A, ... 2, 1, 0, -1, -2, ...i tak dalej.' }, + }, + }, + OFFSET: { + description: 'Zwraca odwołanie do zakresu, który jest podaną liczbą wierszy lub kolumn począwszy od komórki lub zakresu komórek. Zwrócone odwołanie może być pojedynczą komórką lub zakresem komórek. Można określić liczbę zwracanych wierszy i kolumn.', + abstract: 'Zwraca odwołanie do zakresu, który jest podaną liczbą wierszy lub kolumn począwszy od komórki lub zakresu komórek. Zwrócone odwołanie może być pojedynczą komórką lub zakresem komórek. Można określić liczbę zwracanych wierszy i kolumn.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Wymagane. Odwołanie, od którego wyznacza się przesunięcie. Odwołanie musi określać komórkę lub zakres sąsiadujących komórek. W przeciwnym wypadku funkcja PRZESUNIĘCIE zwróci wartość błędu #ARG!.' }, + rows: { name: 'rows', detail: 'Wymagane. Liczba wierszy w górę lub w dół, o które należy przesunąć lewą górną komórkę. Podanie wartości 5 jako argumentu wiersze oznacza, że lewa górna komórka odwołania jest pięć wierszy poniżej odwołania określonego przez argument odwołanie. Argument wiersze może być dodatni (co oznacza przesunięcie w dół) lub ujemny (co oznacza przesunięcie w górę).' }, + cols: { name: 'columns', detail: 'Wymagane. Liczba kolumn w lewo lub w prawo, o które należy przesunąć lewą górną komórkę wynikową. Podanie wartości 5 jako argumentu kolumny oznacza, że lewa górna komórka odwołania jest pięć kolumn na prawo od odwołania określonego przez argument odwołanie. Argument kolumny może być dodatni (co oznacza przesunięcie w prawo) lub ujemny (co oznacza przesunięcie w lewo).' }, + height: { name: 'height', detail: 'Opcjonalne. Wysokość, jako liczba wierszy, którą ma mieć zwracane odwołanie. Wysokość musi być liczbą dodatnią.' }, + width: { name: 'width', detail: 'Opcjonalne. Szerokość, jako liczba kolumn, którą ma mieć zwracane odwołanie. Szerokość musi być liczbą dodatnią.' }, + }, + }, + ROW: { + description: 'Zwraca numer wiersza odwołania.', + abstract: 'Zwraca numer wiersza odwołania.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Opcjonalne. Komórka lub zakres komórek, dla których ma zostać określony numer wiersza. Jeśli argument odwołanie zostanie pominięty, przyjmuje się, że jest to odwołanie do komórki, w której pojawia się funkcja WIERSZ. Jeśli argument odwołanie jest zakresem komórek i jeśli argument WIERSZ jest wprowadzany jako tablica pionowa, funkcja WIERSZ zwraca numery wierszy odwołania jako tablicę pionową. Odwołanie nie może odnosić się do wielu obszarów.' }, + }, + }, + ROWS: { + description: 'Zwraca liczbę wierszy w odwołaniu lub tablicy.', + abstract: 'Zwraca liczbę wierszy w odwołaniu lub tablicy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica, formuła tablicowa lub odwołanie do zakresu komórek, dla którego ma zostać wybrana liczba wierszy.' }, + }, + }, + RTD: { + description: 'Pobiera dane czasu rzeczywistego z programu obsługującego automatyzację COM.', + abstract: 'Pobiera dane czasu rzeczywistego z programu obsługującego automatyzację COM.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Wymagane. Nazwa identyfikatora ProgID zarejestrowanego dodatku automatyzacji COM zainstalowanego na komputerze lokalnym. Nazwa musi być ujęta w cudzysłów.' }, + server: { name: 'server', detail: 'Wymagane. Nazwa serwera, na którym dodatek ma zostać uruchomiony. Jeśli nie ma serwera, a program jest uruchamiany lokalnie, należy pozostawić ten argument pusty. W przeciwnym razie należy ująć nazwę serwera w cudzysłów (""). Gdy funkcja DANE.CZASU.RZECZ jest używana w języku Visual Basic for Applications (VBA), dla serwera jest wymagany podwójny cudzysłów lub właściwość VBA NullString , nawet jeśli serwer jest uruchamiany lokalnie.' }, + topic1: { name: 'topic1', detail: 'Temat1 jest wymagany, pozostałe tematy są opcjonalne. Od 1 do 253 parametrów, które wspólnie reprezentują unikatowy zestaw danych czasu rzeczywistego.' }, + topic2: { name: 'topic2', detail: 'Temat1 jest wymagany, pozostałe tematy są opcjonalne. Od 1 do 253 parametrów, które wspólnie reprezentują unikatowy zestaw danych czasu rzeczywistego.' }, + }, + }, + SORT: { + description: 'W tym przykładzie sortujemy pojedynczo wg pól Region, Przedstawiciel handlowy i Produkt za pomocą funkcji =SORTUJ(A2:A17), kopiując przez komórki F2, H2 oraz J2.', + abstract: 'W tym przykładzie sortujemy pojedynczo wg pól Region, Przedstawiciel handlowy i Produkt za pomocą funkcji =SORTUJ(A2:A17), kopiując przez komórki F2, H2 oraz J2.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Zakres lub tablica do posortowania' }, + sortIndex: { name: 'sort_index', detail: 'Liczba wskazująca wiersz lub kolumnę według których mają zostać posortowane dane' }, + sortOrder: { name: 'sort_order', detail: 'Liczba wskazująca żądaną kolejność sortowania; 1 dla kolejności rosnącej (domyślnie), -1 dla kolejności malejącej' }, + byCol: { name: 'by_col', detail: 'Wartość logiczna wskazująca żądaną kolejność sortowania; FAŁSZ, aby sortować wg wierszy (domyślnie); PRAWDA, aby sortować wg kolumn' }, + }, + }, + SORTBY: { + description: 'W tym przykładzie sortujemy listę nazwisk osób według ich wieku, w kolejności rosnącej.', + abstract: 'W tym przykładzie sortujemy listę nazwisk osób według ich wieku, w kolejności rosnącej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres do sortowania' }, + byArray1: { name: 'by_array1', detail: 'Tablica lub zakres do sortowania według' }, + sortOrder1: { name: 'sort_order1', detail: 'Kolejność sortowania. 1 dla rosnącej, -1 dla malejącej. Wartość domyślna to rosnąco.' }, + byArray2: { name: 'by_array2', detail: 'Tablica lub zakres do sortowania według' }, + sortOrder2: { name: 'sort_order2', detail: 'Kolejność sortowania. 1 dla rosnącej, -1 dla malejącej. Wartość domyślna to rosnąco.' }, + }, + }, + TAKE: { + description: 'Zwraca określoną liczbę ciągłych wierszy lub kolumn od początku lub końca tablicy.', + abstract: 'Zwraca określoną liczbę ciągłych wierszy lub kolumn od początku lub końca tablicy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica, z której mają zostać pobrane wiersze lub kolumny.' }, + rows: { name: 'rows', detail: 'Liczba wierszy do wykonania. Wartość ujemna pobiera z końca tablicy.' }, + columns: { name: 'columns', detail: 'Liczba kolumn do podjęcia. Wartość ujemna pobiera z końca tablicy.' }, + }, + }, + TOCOL: { + description: 'Zwraca tablicę w jednej kolumnie.', + abstract: 'Zwraca tablicę w jednej kolumnie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub odwołanie, które ma zostać zwrócone jako kolumna.' }, + ignore: { name: 'ignore', detail: 'Określa, czy ignorować określone typy wartości. Domyślnie żadne wartości nie są ignorowane:\n0 Zachowaj wszystkie wartości (domyślnie)\n1 Ignoruj puste komórki\n2 Ignoruj błędy\n3 Ignoruj puste komórki i błędy' }, + scanByColumn: { name: 'scan_by_column', detail: 'Skanuje tablicę według kolumn. Domyślnie tablica jest skanowana według wierszy. Skanowanie określa, czy wartości są uporządkowane według wierszy, czy kolumn.' }, + }, + }, + TOROW: { + description: 'Zwraca tablicę w jednym wierszu.', + abstract: 'Zwraca tablicę w jednym wierszu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub odwołanie, które ma zostać zwrócone jako wiersz.' }, + ignore: { name: 'ignore', detail: 'Określa, czy ignorować określone typy wartości. Domyślnie żadne wartości nie są ignorowane:\n0 Zachowaj wszystkie wartości (domyślnie)\n1 Ignoruj puste komórki\n2 Ignoruj błędy\n3 Ignoruj puste komórki i błędy' }, + scanByColumn: { name: 'scan_by_column', detail: 'Skanuje tablicę według kolumn. Domyślnie tablica jest skanowana według wierszy. Skanowanie określa, czy wartości są uporządkowane według wierszy, czy kolumn.' }, + }, + }, + TRANSPOSE: { + description: 'Czasem konieczne jest przemieszczenie lub obrócenie komórek. Możesz to zrobić, korzystając z funkcji kopiowania i wklejania oraz opcji Transpozycja . Efektem będzie jednak zduplikowanie danych. Jeśli nie chcesz duplikować danych, możesz zamiast tego wpisać formułę z funkcją TRANSPONUJ. Na przykład na poniższym obrazie formuła =TRANSPONUJ(A1:B4) pobiera komórki od A1 do B4 i rozmieszcza je w poziomie.', + abstract: 'Czasem konieczne jest przemieszczenie lub obrócenie komórek. Możesz to zrobić, korzystając z funkcji kopiowania i wklejania oraz opcji Transpozycja . Efektem będzie jednak zduplikowanie danych. Jeśli nie chcesz duplikować danych, możesz zamiast tego wpisać formułę z funkcją TRANSPONUJ. Na przykład na poniższym obrazie formuła =TRANSPONUJ(A1:B4) pobiera komórki od A1 do B4 i rozmieszcza je w poziomie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Zakres komórek lub tablica w arkuszu.' }, + }, + }, + UNIQUE: { + description: 'Zwraca unikatowe nazwy z listy nazw', + abstract: 'Zwraca unikatowe nazwy z listy nazw', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Zakres tablicy, z którego powinny zostać zwrócone unikalne rzędy lub kolumny' }, + byCol: { name: 'by_col', detail: 'Argument by_col jest wartością logiczną wskazującą sposób porównywania. PRAWDA porówna kolumny ze sobą i zwróci unikatowe kolumny FAŁSZ (lub pominięte) porówna wiersze ze sobą i zwróci unikatowe wiersze' }, + exactlyOnce: { name: 'exactly_once', detail: 'Argument exactly_once jest wartością logiczną, która zwraca wiersze lub kolumny występujące dokładnie raz w zakresie lub tablicy. Jest to koncepcja bazy danych dotycząca unikatowości. PRAWDA zwróci wszystkie odrębne wiersze lub kolumny, które występują dokładnie raz z zakresie lub tablicy FAŁSZ (lub pominięte) zwróci wszystkie odrębne wiersze lub kolumny z zakresie lub tablicy' }, + }, + }, + VLOOKUP: { + description: 'Użyj funkcji WYSZUKAJ.PIONOWO do wyszukiwania wartości w tabeli.', + abstract: 'Użyj funkcji WYSZUKAJ.PIONOWO do wyszukiwania wartości w tabeli.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Wartość, której chcesz szukać. Musi znajdować się w pierwszej kolumnie zakresu komórek określonego w argumencie table_array.' }, + tableArray: { name: 'table_array', detail: 'Zakres komórek, w którym VLOOKUP szuka lookup_value i wartości zwracanej. Możesz użyć nazwanego zakresu lub tabeli oraz nazw zamiast odwołań do komórek.' }, + colIndexNum: { name: 'col_index_num', detail: 'Numer kolumny zawierającej wartość zwracaną, zaczynając od 1 dla skrajnie lewej kolumny table_array.' }, + rangeLookup: { name: 'range_lookup', detail: 'Wartość logiczna określająca, czy VLOOKUP ma znaleźć przybliżone czy dokładne dopasowanie: przybliżone — 1/TRUE, dokładne — 0/FALSE.' }, + }, + }, + VSTACK: { + description: 'Dołącza tablice w poziomie i w sekwencji, aby zwrócić większą tablicę.', + abstract: 'Dołącza tablice w poziomie i w sekwencji, aby zwrócić większą tablicę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Tablice do dołączenia.' }, + array2: { name: 'array', detail: 'Tablice do dołączenia.' }, + }, + }, + WRAPCOLS: { + description: 'Zawija podany wiersz lub kolumnę wartości według kolumn po określonej liczbie elementów, aby utworzyć nową tablicę.', + abstract: 'Zawija podany wiersz lub kolumnę wartości według kolumn po określonej liczbie elementów, aby utworzyć nową tablicę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Wektor lub odwołanie do zawijania.' }, + wrapCount: { name: 'wrap_count', detail: 'Maksymalna liczba wartości dla każdej kolumny.' }, + padWith: { name: 'pad_with', detail: 'Wartość, za pomocą której ma zostać dopełnienie. Wartość domyślna to #N/D.' }, + }, + }, + WRAPROWS: { + description: 'Zawija podany wiersz lub kolumnę wartości według wierszy po określonej liczbie elementów, aby utworzyć nową tablicę.', + abstract: 'Zawija podany wiersz lub kolumnę wartości według wierszy po określonej liczbie elementów, aby utworzyć nową tablicę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'Wektor lub odwołanie do zawijania.' }, + wrapCount: { name: 'wrap_count', detail: 'Maksymalna liczba wartości dla każdego wiersza.' }, + padWith: { name: 'pad_with', detail: 'Wartość, za pomocą której ma zostać dopełnienie. Wartość domyślna to #N/D.' }, + }, + }, + XLOOKUP: { + description: 'Użyj funkcji X.WYSZUKAJ w celu znajdowania danych w tabeli lub zakresie według wierszy. Na przykład wyszukaj cenę części samochodowej według numeru części lub znajdź nazwisko pracownika na podstawie jego identyfikatora pracownika. Dzięki funkcji X.WYSZUKAJ możesz szukać wyszukiwanego terminu w jednej kolumnie i zwracać wynik z tego samego wiersza w innej kolumnie, niezależnie od tego, po której stronie znajduje się kolumna zwrotna.', + abstract: 'Użyj funkcji X.WYSZUKAJ w celu znajdowania danych w tabeli lub zakresie według wierszy. Na przykład wyszukaj cenę części samochodowej według numeru części lub znajdź nazwisko pracownika na podstawie jego identyfikatora pracownika. Dzięki funkcji X.WYSZUKAJ możesz szukać wyszukiwanego terminu w jednej kolumnie i zwracać wynik z tego samego wiersza w innej kolumnie, niezależnie od tego, po której stronie znajduje się kolumna zwrotna.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Wartość do wyszukania *W przypadku pominięcia funkcja X.WYSZUKAJ zwraca puste komórki, które znajduje w lookup_array .' }, + lookupArray: { name: 'lookup_array', detail: 'Tablica lub zakres do przeszukania' }, + returnArray: { name: 'return_array', detail: 'Tablica lub zakres do zwrócenia' }, + ifNotFound: { name: 'if_not_found', detail: 'Jeśli prawidłowe dopasowanie nie zostanie znalezione, zwrócony zostanie podany tekst [jeżeli_nie_znaleziono]. Jeśli nie znaleziono prawidłowego dopasowania i brakuje [jeżeli_nie_znaleziono], zwracany jest błąd #N/D .' }, + matchMode: { name: 'match_mode', detail: 'Określ typ dopasowania: 0 — Dokładne dopasowanie. Jeśli nie znaleziono żadnego elementu, zwróć błąd #N/D. To jest domyślne ustawienie. -1 — Dokładne dopasowanie. Jeśli nie znaleziono żadnego elementu, zwróć następny mniejszy element. 1 — Dokładne dopasowanie. Jeśli nie znaleziono żadnego elementu, zwróć następny większy element. 2— dopasowanie z symbolem wieloznacznym, gdzie znaki *, ? i ~ mają specjalne znaczenie .' }, + searchMode: { name: 'search_mode', detail: 'Określ tryb wyszukiwania, którego chcesz użyć: 1 — Wyszukiwanie rozpoczyna się od pierwszego elementu. To jest domyślne ustawienie. -1 — Wyszukiwanie odwrotne rozpoczyna się od ostatniego elementu. 2 — Wyszukiwanie binarne polegające na sortowaniu tablicy szukana_tablica w kolejności rosnącej . Jeśli sortowanie nie zostanie wykonane, zostaną zwrócone nieprawidłowe wyniki. -2 — wyszukiwanie binarne polegające na sortowaniu elementu szukana_tablica w kolejności malejącej . Jeśli sortowanie nie zostanie wykonane, zostaną zwrócone nieprawidłowe wyniki.' }, + }, + }, + XMATCH: { + description: 'Załóżmy, że mamy listę produktów w komórkach od C3 do C7 i chcemy ustalić, gdzie na liście znajduje się produkt z komórki E3. W tym miejscu użyjemy funkcji XMATCH do określenia pozycji elementu na liście.', + abstract: 'Załóżmy, że mamy listę produktów w komórkach od C3 do C7 i chcemy ustalić, gdzie na liście znajduje się produkt z komórki E3. W tym miejscu użyjemy funkcji XMATCH do określenia pozycji elementu na liście.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Szukana wartość' }, + lookupArray: { name: 'lookup_array', detail: 'Tablica lub zakres do przeszukania' }, + matchMode: { name: 'match_mode', detail: 'Określ typ dopasowania: 0 — dokładne dopasowanie (domyślne) -1 — dokładne dopasowanie lub następny najmniejszy element 1 — dokładne dopasowanie lub następny największy element 2— dopasowanie z symbolem wieloznacznym, gdzie znaki *, ? i ~ mają specjalne znaczenie .' }, + searchMode: { name: 'search_mode', detail: 'Określ typ wyszukiwania: 1 — wyszukiwanie od pierwszego do ostatniego (domyślne) -1 — wyszukiwanie od ostatniego do pierwszego (wyszukiwanie odwrócone) 2 — Wyszukiwanie binarne polegające na sortowaniu tablicy szukana_tablica w kolejności rosnącej . Jeśli sortowanie nie zostanie wykonane, zostaną zwrócone nieprawidłowe wyniki. -2 — wyszukiwanie binarne polegające na sortowaniu elementu szukana_tablica w kolejności malejącej . Jeśli sortowanie nie zostanie wykonane, zostaną zwrócone nieprawidłowe wyniki.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/lookup/pt-BR.ts new file mode 100644 index 0000000000..8ebd933b7d --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/lookup/pt-BR.ts @@ -0,0 +1,578 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ADDRESS: { + description: 'Você pode usar a função ENDEREÇO para obter o endereço de uma célula em uma planilha, com base em números de linha e de coluna. Por exemplo, ADDRESS(2,3) retorna $C$2 . Como outro exemplo, ADDRESS(77.300) retorna $KN US$ 77 . Você pode usar outras funções, como as funções LIN e COL , para fornecer os argumentos de número de linha e de coluna para a função ENDEREÇO .', + abstract: 'Você pode usar a função ENDEREÇO para obter o endereço de uma célula em uma planilha, com base em números de linha e de coluna. Por exemplo, ADDRESS(2,3) retorna $C$2 . Como outro exemplo, ADDRESS(77.300) retorna $KN US$ 77 . Você pode usar outras funções, como as funções LIN e COL , para fornecer os argumentos de número de linha e de coluna para a função ENDEREÇO .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/address-function', + }, + ], + functionParameter: { + row_num: { name: 'row number', detail: 'Necessário. Um valor numérico que especifica o número de linha a ser usado na referência de célula.' }, + column_num: { name: 'column number', detail: 'Necessário. Um valor numérico que especifica o número de coluna a ser usado na referência de célula.' }, + abs_num: { name: 'type of reference', detail: 'Opcional. Um valor numérico que especifica o tipo de referência a ser retornado.' }, + a1: { name: 'style of reference', detail: 'Opcional. Um valor lógico que especifica o estilo de referência A1 ou L1C1. No estilo A1, as colunas são rotuladas alfabeticamente e as linhas são rotuladas numericamente. No estilo de referência L1C1, tanto as colunas quanto as linhas são rotuladas numericamente. Se o argumento A1 for VERDADEIRO ou omitido, a função ENDEREÇO retornará uma referência de estilo A1; se for FALSO, a função ENDEREÇO retornará uma referência de estilo L1C1. Observação Para alterar o estilo de referência que o Excel usa, clique na guia Arquivo , clique em Opções e clique em Fórmulas . Em Trabalhando com fórmulas , marque ou desmarque a caixa de seleção Estilo de referência L1C1 .' }, + sheet_text: { name: 'worksheet name', detail: 'Opcional. Um valor de texto que especifica o nome da planilha a ser usada como referência externa. Por exemplo, a fórmula =ADDRESS(1,1,,,"Sheet2") retorna Sheet2!$A$1 . Se o argumento sheet_text for omitido, nenhum nome da planilha será usado e o endereço retornado pela função se referirá a uma célula na planilha atual.' }, + }, + }, + AREAS: { + description: 'Retorna o número de áreas em uma referência. Uma área é um intervalo de células contíguas ou uma célula única.', + abstract: 'Retorna o número de áreas em uma referência. Uma área é um intervalo de células contíguas ou uma célula única.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/areas-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Necessário. Uma referência a uma célula ou a um intervalo de células e pode referir-se a várias áreas. Se você desejar especificar várias referências como um argumento único, deverá incluir grupos adicionais de parênteses para que o Microsoft Excel não interprete o ponto-e-vírgula como um separador de campo. Veja o exemplo a seguir.' }, + }, + }, + CHOOSE: { + description: 'Use núm_índice para retornar um valor da lista de argumentos de valor. Use ESCOLHER para selecionar um valor entre 254 valores que se baseie no número de índice. Por exemplo, se do valor1 até o valor7 forem os números da semana, ESCOLHER retorna um dos dias quando um número entre 1 e 7 for usado como núm_índice.', + abstract: 'Use núm_índice para retornar um valor da lista de argumentos de valor. Use ESCOLHER para selecionar um valor entre 254 valores que se baseie no número de índice. Por exemplo, se do valor1 até o valor7 forem os números da semana, ESCOLHER retorna um dos dias quando um número entre 1 e 7 for usado como núm_índice.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/choose-function', + }, + ], + functionParameter: { + indexNum: { name: 'index_num', detail: 'Especifica qual argumento de valor será selecionado. Deve ser um número de 1 a 254, uma fórmula ou uma referência a uma célula que contenha esse número.' }, + value1: { name: 'value1', detail: 'O valor ou a ação selecionada conforme index_num. Pode ser um número, referência de célula, nome definido, fórmula, função ou texto.' }, + value2: { name: 'value2', detail: 'De 1 a 254 argumentos de valor.' }, + }, + }, + CHOOSECOLS: { + description: 'Retorna as colunas especificadas de uma matriz.', + abstract: 'Retorna as colunas especificadas de uma matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/choosecols-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz que contém as colunas a serem retornadas na nova matriz. Obrigatório.' }, + colNum1: { name: 'col_num1', detail: 'A primeira coluna a ser retornada. Obrigatório.' }, + colNum2: { name: 'col_num2', detail: 'Colunas adicionais a serem retornadas. Opcional.' }, + }, + }, + CHOOSEROWS: { + description: 'Retorna as linhas especificadas de uma matriz.', + abstract: 'Retorna as linhas especificadas de uma matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/chooserows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz que contém as colunas a devolver na nova matriz. Obrigatório.' }, + rowNum1: { name: 'row_num1', detail: 'O número da primeira linha a ser devolvido. Obrigatório.' }, + rowNum2: { name: 'row_num2', detail: 'Números de linha adicionais a serem devolvidos. Opcional.' }, + }, + }, + COLUMN: { + description: 'A função COLUMN devolve o número de coluna da referência de célula especificada. Por exemplo, a fórmula =COLUNA(D10) devolve 4, porque a coluna D é a quarta coluna.', + abstract: 'A função COLUMN devolve o número de coluna da referência de célula especificada. Por exemplo, a fórmula =COLUNA(D10) devolve 4, porque a coluna D é a quarta coluna.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/column-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'A célula ou o intervalo de células para o qual você deseja retornar o número da coluna.' }, + }, + }, + COLUMNS: { + description: 'Retorna o número de colunas em uma matriz ou referência.', + abstract: 'Retorna o número de colunas em uma matriz ou referência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/columns-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. Uma fórmula de matriz ou matriz ou uma referência a um intervalo de células para as quais você deseja o número de colunas.' }, + }, + }, + DROP: { + description: 'Exclui um número especificado de linhas ou colunas do início ou fim de uma matriz. Você pode achar essa função útil para remover cabeçalhos e rodapés em um relatório do Excel para retornar apenas os dados.', + abstract: 'Exclui um número especificado de linhas ou colunas do início ou fim de uma matriz. Você pode achar essa função útil para remover cabeçalhos e rodapés em um relatório do Excel para retornar apenas os dados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/drop-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz a partir da qual remover linhas ou colunas.' }, + rows: { name: 'rows', detail: 'O número de linhas a largar. Um valor negativo cai do final da matriz.' }, + columns: { name: 'columns', detail: 'O número de colunas a excluir. Um valor negativo cai do final da matriz.' }, + }, + }, + EXPAND: { + description: 'Expande ou preenche uma matriz para dimensões de linha e coluna especificadas.', + abstract: 'Expande ou preenche uma matriz para dimensões de linha e coluna especificadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/expand-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz a ser expandida.' }, + rows: { name: 'rows', detail: 'O número de linhas na matriz expandida. Se estiverem ausentes, as linhas não serão expandidas.' }, + columns: { name: 'columns', detail: 'O número de colunas na matriz expandida. Se estiverem ausente, as linhas não serão expandidas.' }, + padWith: { name: 'pad_with', detail: 'O valor com o qual fazer pad. O padrão é #N/A.' }, + }, + }, + FILTER: { + description: 'No exemplo a seguir, usamos a fórmula =FILTER(A5:D20,C5:C20=H2",") para retornar todos os registros para a Apple, conforme selecionado na célula H2 e, se não houver maçãs, retorne uma cadeia de caracteres vazia ("").', + abstract: 'No exemplo a seguir, usamos a fórmula =FILTER(A5:D20,C5:C20=H2",") para retornar todos os registros para a Apple, conforme selecionado na célula H2 e, se não houver maçãs, retorne uma cadeia de caracteres vazia ("").', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/filter-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz ou intervalo a filtrar' }, + include: { name: 'include', detail: 'Uma matriz booliana cuja altura ou largura é a mesma da matriz' }, + ifEmpty: { name: 'if_empty', detail: 'O valor a retornar se todos os valores na matriz incluída estiverem vazios (o filtro não retorna nada)' }, + }, + }, + FORMULATEXT: { + description: 'Retorna uma fórmula como uma cadeia de caracteres.', + abstract: 'Retorna uma fórmula como uma cadeia de caracteres.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/formulatext-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Necessário. Uma referência a uma célula ou a um intervalo de células.' }, + }, + }, + GETPIVOTDATA: { + description: 'Retorna dados visíveis armazenados em uma Tabela Dinâmica.', + abstract: 'Retorna dados visíveis armazenados em uma Tabela Dinâmica.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/getpivotdata-function', + }, + ], + functionParameter: { + dataField: { name: 'dataField', detail: 'O nome do campo da Tabela Dinâmica que contém os dados que você deseja recuperar. Isso precisa estar entre aspas. Exemplo: =GETPIVOTDATA("Vendas", A3). Aqui, "Vendas" é o campo Valores que queremos obter. Uma vez que nenhum outro campo é especificado, GETPIVOTDATA devolve o valor total de vendas.' }, + pivotTable: { name: 'pivotTable', detail: 'Uma referência a qualquer célula, intervalo de células ou intervalo nomeado de células em uma Tabela Dinâmica. Essas informações são usadas para determinar qual Tabela Dinâmica contém os dados que você deseja recuperar. Exemplo: =GETPIVOTDATA("Vendas", A3). Aqui, a A3 é uma referência dentro da Tabela Dinâmica e indica à fórmula que tabela dinâmica deve utilizar.' }, + field1: { name: 'field1', detail: 'De 1 a 126 pares de nomes de campo e item que descrevem os dados que você deseja recuperar. Os pares podem estar em qualquer ordem. Nomes de campos e nomes para itens diferentes de datas e números devem ser colocados entre aspas. Exemplo: =GETPIVOTDATA("Vendas", A3, "Mês", "Mar"). Aqui, "Mês" é o campo e "Mar" é o item. Para especificar múltiplos itens para um campo, coloque-os entre chavetas (por exemplo: {"Mar", "Abr"}). Para Tabelas Dinâmicas OLAP , os itens podem conter o nome da fonte da dimensão e também o nome da fonte do item. Um par de campo e item de uma tabela dinâmica de OLAP poderia ter esta aparência: "[Produto]","[Produto].[Todos produtos].[Alimentos].[Confeitaria]"' }, + item1: { name: 'item1', detail: 'De 1 a 126 pares de nomes de campo e item que descrevem os dados que você deseja recuperar. Os pares podem estar em qualquer ordem. Nomes de campos e nomes para itens diferentes de datas e números devem ser colocados entre aspas. Exemplo: =GETPIVOTDATA("Vendas", A3, "Mês", "Mar"). Aqui, "Mês" é o campo e "Mar" é o item. Para especificar múltiplos itens para um campo, coloque-os entre chavetas (por exemplo: {"Mar", "Abr"}). Para Tabelas Dinâmicas OLAP , os itens podem conter o nome da fonte da dimensão e também o nome da fonte do item. Um par de campo e item de uma tabela dinâmica de OLAP poderia ter esta aparência: "[Produto]","[Produto].[Todos produtos].[Alimentos].[Confeitaria]"' }, + }, + }, + HLOOKUP: { + description: 'Procura um valor na linha superior de uma tabela ou uma matriz de valores e retorna um valor na mesma coluna de uma linha especificada na tabela ou matriz. Use PROCH quando seus valores de comparação estiverem localizados em uma linha ao longo da parte superior de uma tabela de dados e você quiser observar um número específico de linhas mais abaixo. Use PROCV quando os valores de comparação estiverem em uma coluna à esquerda dos dados que você deseja localizar.', + abstract: 'Procura um valor na linha superior de uma tabela ou uma matriz de valores e retorna um valor na mesma coluna de uma linha especificada na tabela ou matriz. Use PROCH quando seus valores de comparação estiverem localizados em uma linha ao longo da parte superior de uma tabela de dados e você quiser observar um número específico de linhas mais abaixo. Use PROCV quando os valores de comparação estiverem em uma coluna à esquerda dos dados que você deseja localizar.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Necessário. O valor a ser localizado na primeira linha da tabela. Valor_procurado pode ser um valor, uma referência ou uma cadeia de texto.' }, + tableArray: { name: 'table_array', detail: 'Necessário. Uma tabela de informações onde os dados devem ser procurados. Use uma referência para um intervalo ou um nome de intervalo. Os valores na primeira linha de matriz_tabela podem ser texto, números ou valores lógicos. Se procurar_intervalo for VERDADEIRO, os valores na primeira linha de matriz_tabela deverão ser colocados em ordem ascendente: ...-2, -1, 0, 1, 2,... , A-Z, FALSO, VERDADEIRO, caso contrário, PROCH pode não retornar o valor correto. Se procurar_intervalo for FALSO, matriz_tabela não precisará ser ordenada. Textos em maiúsculas e minúsculas são equivalentes. Classifique os valores em ordem crescente, da esquerda para a direita. Para saber mais, confira Classificar dados em um intervalo ou tabela .' }, + rowIndexNum: { name: 'row_index_num', detail: 'Necessário. O número da linha em table_array do qual o valor correspondente será retornado. Um row_index_num de 1 retorna o valor da primeira linha em table_array, um row_index_num de 2 retorna o valor da segunda linha em table_array e assim por diante. Se row_index_num for menor que 1, PROCH retornará o #VALUE! valor de erro; se row_index_num for maior que o número de linhas em table_array, HLOOKUP retornará o #REF! valor de erro.' }, + rangeLookup: { name: 'range_lookup', detail: 'Opcional. Um valor lógico que especifica se você quer que PROCH localize uma correspondência exata ou aproximada. Se VERDADEIRO ou omitido, uma correspondência aproximada é retornada. Em outras palavras, se uma correspondência exata não for localizada, o valor maior mais próximo que seja menor que o valor_procurado é retornado. Se FALSO, PROCH encontrará uma correspondência exata. Se nenhuma correspondência for localizada, o valor de erro #N/D será retornado.' }, + }, + }, + HSTACK: { + description: 'Acrescenta matrizes horizontalmente e em sequência para retornar uma matriz maior.', + abstract: 'Acrescenta matrizes horizontalmente e em sequência para retornar uma matriz maior.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/hstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'As matrizes a anexar.' }, + array2: { name: 'array', detail: 'As matrizes a anexar.' }, + }, + }, + HYPERLINK: { + description: 'Cria um hiperlink dentro de uma célula.', + abstract: 'Cria um hiperlink dentro de uma célula.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3093313?hl=pt-BR', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'A URL completa do destino do link entre aspas, ou uma referência a uma célula que contenha essa URL. São aceitos apenas protocolos específicos; se nenhum for informado, será usado http://.' }, + linkLabel: { name: 'link_label', detail: '[OPCIONAL — url por padrão] O texto a exibir na célula como link, entre aspas, ou uma referência a uma célula que contenha esse rótulo.' }, + }, + }, + IMAGE: { + description: 'A função IMAGEM insere imagens em células de um local de origem juntamente com texto alternativo. Em seguida, você pode mover e redimensionar células, classificar e filtrar e trabalhar com imagens em uma tabela do Excel. Use essa função para aprimorar visualmente as listas de dados, como inventários, jogos, funcionários e conceitos matemáticos.', + abstract: 'A função IMAGEM insere imagens em células de um local de origem juntamente com texto alternativo. Em seguida, você pode mover e redimensionar células, classificar e filtrar e trabalhar com imagens em uma tabela do Excel. Use essa função para aprimorar visualmente as listas de dados, como inventários, jogos, funcionários e conceitos matemáticos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/image-function', + }, + ], + functionParameter: { + source: { name: 'source', detail: 'O caminho da URL do arquivo de imagem, usando o protocolo "https".' }, + altText: { name: 'alt_text', detail: 'Texto alternativo que descreve a imagem para acessibilidade.' }, + sizing: { name: 'sizing', detail: 'Especifica as dimensões da imagem.' }, + height: { name: 'height', detail: 'A altura personalizada da imagem em pixels.' }, + width: { name: 'width', detail: 'A largura personalizada da imagem em pixels.' }, + }, + }, + INDEX: { + description: 'Retorna o valor de um elemento em uma tabela ou matriz, selecionada pelos índices de número de linha e coluna.', + abstract: 'Retorna o valor de um elemento em uma tabela ou matriz, selecionada pelos índices de número de linha e coluna.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/index-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Uma referência a um ou mais intervalos de células.' }, + rowNum: { name: 'row_num', detail: 'O número da linha em referência da qual retornar uma referência.' }, + columnNum: { name: 'column_num', detail: 'O número da coluna em referência da qual retornar uma referência.' }, + areaNum: { name: 'area_num', detail: 'Seleciona um intervalo em referência do qual retornar a interseção de row_num e column_num.' }, + }, + }, + INDIRECT: { + description: 'Retorna a referência especificada por uma cadeia de texto. As referências são imediatamente avaliadas para exibir seu conteúdo. Use INDIRETO quando quiser mudar a referência a uma célula em uma fórmula sem mudar a própria fórmula.', + abstract: 'Retorna a referência especificada por uma cadeia de texto. As referências são imediatamente avaliadas para exibir seu conteúdo. Use INDIRETO quando quiser mudar a referência a uma célula em uma fórmula sem mudar a própria fórmula.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/indirect-function', + }, + ], + functionParameter: { + refText: { name: 'ref_text', detail: 'Necessário. Uma referência a uma célula que contém uma referência de estilo A1, uma referência no estilo R1C1, um nome definido como uma referência ou uma referência a uma célula como uma cadeia de caracteres de texto. Se ref_text não for uma referência de célula válida, o INDIRECT retornará o #REF! valor de erro. Se ref_text se referir a outra pasta de trabalho (uma referência externa), a outra pasta de trabalho deverá estar aberta. Se a pasta de trabalho de origem não estiver aberta, o INDIRECT retornará o #REF! valor de erro. Observação Não há suporte para referências externas no Excel Web App. Se ref_text se referir a um intervalo de células fora do limite de linha de 1.048.576 ou o limite de coluna de 16.384 (XFD), o INDIRECT retornará um #REF! Erro.' }, + a1: { name: 'a1', detail: 'Opcional. Um valor lógico que especifica o tipo de referência contido na célula texto_ref. Se a1 for VERDADEIRO ou omitido, texto_ref será interpretado como uma referência em estilo A1. Se a1 for FALSO, texto_ref será interpretado como uma referência em estilo L1C1.' }, + }, + }, + LOOKUP: { + description: 'A forma vetorial de PROC procura um valor em um intervalo de uma linha ou coluna (conhecido como vetor) e retorna um valor da mesma posição em um segundo intervalo de uma linha ou coluna.', + abstract: 'A forma vetorial de PROC procura um valor em um intervalo de uma linha ou coluna (conhecido como vetor) e retorna um valor da mesma posição em um segundo intervalo de uma linha ou coluna.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/lookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'O valor que PROC procura no primeiro vetor. Pode ser um número, texto, valor lógico, nome ou referência a um valor.' }, + lookupVectorOrArray: { name: 'lookup_vectorOrArray', detail: 'Um intervalo que contém apenas uma linha ou uma coluna.' }, + resultVector: { name: 'result_vector', detail: 'Um intervalo que contém apenas uma linha ou coluna e deve ter o mesmo tamanho de lookup_vector.' }, + }, + }, + MATCH: { + description: 'A função CORRESP procura um item especificado em um intervalo de células e retorna a posição relativa desse item no intervalo. Por exemplo, se o intervalo A1:A3 contiver os valores 5, 25 e 38, a fórmula =CORRESP(25,A1:A3,0) retornará o número 2, porque 25 é o segundo item no intervalo.', + abstract: 'A função CORRESP procura um item especificado em um intervalo de células e retorna a posição relativa desse item no intervalo. Por exemplo, se o intervalo A1:A3 contiver os valores 5, 25 e 38, a fórmula =CORRESP(25,A1:A3,0) retornará o número 2, porque 25 é o segundo item no intervalo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/match-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'Match localiza o maior valor que é menor ou igual a lookup_value . Os valores no argumento lookup_array devem ser colocados em ordem crescente, por exemplo: ...-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE.' }, + lookupArray: { name: 'lookup_array', detail: 'MATCH localiza o primeiro valor exatamente igual a lookup_value . Os valores no argumento lookup_array podem estar em qualquer ordem.' }, + matchType: { name: 'match_type', detail: 'MATCH localiza o menor valor que é maior ou igual a lookup_value . Os valores no argumento lookup_array devem ser colocados em ordem decrescente, por exemplo: TRUE, FALSE, Z-A, ... 2, 1, 0, -1, -2, ..., e assim por diante.' }, + }, + }, + OFFSET: { + description: 'Retorna uma referência para um intervalo, que é um número especificado de linhas e colunas de uma célula ou intervalo de células. A referência retornada pode ser uma única célula ou um intervalo de células. Você pode especificar o número de linhas e de colunas a serem retornadas.', + abstract: 'Retorna uma referência para um intervalo, que é um número especificado de linhas e colunas de uma célula ou intervalo de células. A referência retornada pode ser uma única célula ou um intervalo de células. Você pode especificar o número de linhas e de colunas a serem retornadas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/offset-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Necessário. A referência da qual você quer basear o deslocamento. A referência deve ser de uma célula ou intervalo de células adjacentes. Caso contrário, DESLOC retornará #VALOR! como valor de erro.' }, + rows: { name: 'rows', detail: 'Necessário. O número de linhas, acima ou abaixo, a que se deseja que a célula superior esquerda se refira. Usar 5 como o argumento de linhas, especifica que a célula superior esquerda na referência está cinco linhas abaixo da referência. Lins podem ser positivas (que significa abaixo da referência inicial) ou negativas (acima da referência inicial).' }, + cols: { name: 'columns', detail: 'Necessário. O número de colunas, à esquerda ou à direita, a que se deseja que a célula superior esquerda do resultado se refira. Usar 5 como o argumento de colunas, especifica que a célula superior esquerda na referência está cinco colunas à direita da referência. Cols pode ser positivo (que significa à direita da referência inicial) ou negativo (à esquerda da referência inicial).' }, + height: { name: 'height', detail: 'Opcional. A altura, em número de linhas, que se deseja para a referência fornecida. Altura deve ser um número positivo.' }, + width: { name: 'width', detail: 'Opcional. A largura, em número de colunas, que se deseja para a referência fornecida. Largura deve ser um número positivo.' }, + }, + }, + ROW: { + description: 'Retorna o número da linha de uma referência.', + abstract: 'Retorna o número da linha de uma referência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/row-function', + }, + ], + functionParameter: { + reference: { name: 'reference', detail: 'Opcional. A célula ou intervalo de células cujo número da linha você deseja obter. Se ref for omitido, será equivalente à referência da célula na qual a função LIN aparecer. Se referência for um intervalo de células e se LIN for introduzido como uma matriz vertical, LIN devolve os números de linha de referência como uma matriz vertical. Ref não pode se referir a áreas múltiplas.' }, + }, + }, + ROWS: { + description: 'Retorna o número de linhas em uma referência ou matriz.', + abstract: 'Retorna o número de linhas em uma referência ou matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rows-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. Uma matriz, uma fórmula de matriz ou uma referência a um intervalo de células para as quais você deseja o número de linhas.' }, + }, + }, + RTD: { + description: 'Recupera dados em tempo real de um programa compatível com a automação COM.', + abstract: 'Recupera dados em tempo real de um programa compatível com a automação COM.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rtd-function', + }, + ], + functionParameter: { + progId: { name: 'progId', detail: 'Obrigatório. O nome do ProgID de um suplemento de automatização COM registado que foi instalado no computador local. Coloque o nome entre aspas.' }, + server: { name: 'server', detail: 'Obrigatório. O nome do servidor em que o suplemento deverá ser executado. Se não houver servidor e o programa for executado localmente, deixe o argumento em branco. Caso contrário, coloque o nome do servidor entre aspas (""). Ao usar RTD no Visual Basic for Applications (VBA), é necessário usar aspas duplas ou a propriedade NullString do VBA para o servidor, mesmo que a execução seja local.' }, + topic1: { name: 'topic1', detail: 'O tópico1 é obrigatório, os tópicos subsequentes são opcionais. Parâmetros de 1 a 253 que, juntos, representam uma parte exclusiva de dados em tempo real.' }, + topic2: { name: 'topic2', detail: 'O tópico1 é obrigatório, os tópicos subsequentes são opcionais. Parâmetros de 1 a 253 que, juntos, representam uma parte exclusiva de dados em tempo real.' }, + }, + }, + SORT: { + description: 'Neste exemplo, classificaremos por Região, Representante de vendas e Produto individualmente usando =CLASSIFICAR(A2:A17), com valores copiados entre as células F2, H2 e J2.', + abstract: 'Neste exemplo, classificaremos por Região, Representante de vendas e Produto individualmente usando =CLASSIFICAR(A2:A17), com valores copiados entre as células F2, H2 e J2.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sort-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'O intervalo ou uma matriz a ser classificado' }, + sortIndex: { name: 'sort_index', detail: 'Um número indicando a linha ou a coluna pela qual realizar a classificação' }, + sortOrder: { name: 'sort_order', detail: 'Um número que indica a ordem de classificação desejada; 1 para ordem crescente (padrão), -1 para ordem decrescente' }, + byCol: { name: 'by_col', detail: 'Um valor lógico que indica a direção de classificação desejada; FALSO para classificar por linha (padrão), VERDADEIRO para classificar por coluna' }, + }, + }, + SORTBY: { + description: 'Neste exemplo, classificamos uma lista de nomes de pessoas pela respectiva idade, em ordem crescente.', + abstract: 'Neste exemplo, classificamos uma lista de nomes de pessoas pela respectiva idade, em ordem crescente.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sortby-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz ou intervalo a classificar' }, + byArray1: { name: 'by_array1', detail: 'A matriz ou intervalo no qual classificar' }, + sortOrder1: { name: 'sort_order1', detail: 'A ordem a utilizar para classificação. 1 para ordem crescente, -1 para ordem decrescente. O padrão é crescente.' }, + byArray2: { name: 'by_array2', detail: 'A matriz ou intervalo no qual classificar' }, + sortOrder2: { name: 'sort_order2', detail: 'A ordem a utilizar para classificação. 1 para ordem crescente, -1 para ordem decrescente. O padrão é crescente.' }, + }, + }, + TAKE: { + description: 'Retorna um número especificado de linhas ou colunas contíguas do início ou do fim de uma matriz.', + abstract: 'Retorna um número especificado de linhas ou colunas contíguas do início ou do fim de uma matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/take-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz da qual usar linhas ou colunas.' }, + rows: { name: 'rows', detail: 'O número de linhas a serem tomadas. Um valor negativo é removido do final da matriz.' }, + columns: { name: 'columns', detail: 'O número de colunas a serem tomadas. Um valor negativo é removido do final da matriz.' }, + }, + }, + TOCOL: { + description: 'Retorna a matriz em uma única coluna.', + abstract: 'Retorna a matriz em uma única coluna.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tocol-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz ou referência a retornar como coluna.' }, + ignore: { name: 'ignore', detail: 'Indica se determinados tipos de valores devem ser ignorados. Por padrão, nenhum é ignorado: 0 mantém todos, 1 ignora vazios, 2 ignora erros e 3 ignora vazios e erros.' }, + scanByColumn: { name: 'scan_by_column', detail: 'Examina a matriz por coluna. Por padrão, ela é examinada por linha; isso determina se os valores são ordenados por linha ou por coluna.' }, + }, + }, + TOROW: { + description: 'Retorna a matriz em uma única linha.', + abstract: 'Retorna a matriz em uma única linha.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/torow-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz ou referência a retornar como linha.' }, + ignore: { name: 'ignore', detail: 'Indica se determinados tipos de valores devem ser ignorados. Por padrão, nenhum é ignorado: 0 mantém todos, 1 ignora vazios, 2 ignora erros e 3 ignora vazios e erros.' }, + scanByColumn: { name: 'scan_by_column', detail: 'Examina a matriz por coluna. Por padrão, ela é examinada por linha; isso determina se os valores são ordenados por linha ou por coluna.' }, + }, + }, + TRANSPOSE: { + description: 'Às vezes, será necessário alternar ou girar células. É possível fazer isso copiando, colando e usando a opção Transpor . Mas essa ação cria dados duplicados. Se não for isso que você deseja, digite uma fórmula que use a função TRANSPOR. Por exemplo, na imagem a seguir a fórmula =TRANSPOR(A1:B4) organiza horizontalmente as células de A1 a B4.', + abstract: 'Às vezes, será necessário alternar ou girar células. É possível fazer isso copiando, colando e usando a opção Transpor . Mas essa ação cria dados duplicados. Se não for isso que você deseja, digite uma fórmula que use a função TRANSPOR. Por exemplo, na imagem a seguir a fórmula =TRANSPOR(A1:B4) organiza horizontalmente as células de A1 a B4.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/transpose-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Um intervalo de células ou uma matriz em uma planilha.' }, + }, + }, + UNIQUE: { + description: 'Retornar nomes exclusivos de uma lista de nomes', + abstract: 'Retornar nomes exclusivos de uma lista de nomes', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/unique-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'O intervalo ou matriz do qual retornar linhas ou colunas exclusivas' }, + byCol: { name: 'by_col', detail: 'O argumento by_col é um valor lógico que indica como comparar. VERDADEIRO comparará colunas umas com as outras e retornará as colunas exclusivas FALSO (ou oculto) comparará linhas umas com as outras e retornará as linhas exclusivas' }, + exactlyOnce: { name: 'exactly_once', detail: 'O argumento exactly_once é um valor lógico que retornará linhas ou colunas que ocorrem exatamente uma vez no intervalo ou na matriz. Esse é o conceito de banco de dados exclusivo. VERDADEIRO retornará todas as linhas ou colunas distintas que ocorrem exatamente uma vez do intervalo ou da matriz FALSO (ou oculto) retornará todas as linhas ou colunas do intervalo ou da matriz' }, + }, + }, + VLOOKUP: { + description: 'Use a função PROCV para pesquisar um valor em uma tabela.', + abstract: 'Use a função PROCV para pesquisar um valor em uma tabela.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/vlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'O valor que você deseja procurar. Ele deve estar na primeira coluna do intervalo especificado em table_array.' }, + tableArray: { name: 'table_array', detail: 'O intervalo de células em que PROCV procura lookup_value e o valor de retorno. Pode ser um intervalo nomeado ou uma tabela.' }, + colIndexNum: { name: 'col_index_num', detail: 'O número da coluna, começando em 1 para a coluna mais à esquerda de table_array, que contém o valor de retorno.' }, + rangeLookup: { name: 'range_lookup', detail: 'Um valor lógico que especifica se PROCV deve encontrar uma correspondência aproximada (1/VERDADEIRO) ou exata (0/FALSO).' }, + }, + }, + VSTACK: { + description: 'Acrescenta matrizes verticalmente e em sequência para retornar uma matriz maior.', + abstract: 'Acrescenta matrizes verticalmente e em sequência para retornar uma matriz maior.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/vstack-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'As matrizes a anexar.' }, + array2: { name: 'array', detail: 'As matrizes a anexar.' }, + }, + }, + WRAPCOLS: { + description: 'Envolve a linha ou coluna de valores fornecida por colunas após um número especificado de elementos para formar uma nova matriz.', + abstract: 'Envolve a linha ou coluna de valores fornecida por colunas após um número especificado de elementos para formar uma nova matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/wrapcols-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'O vetor ou referência ao wrap.' }, + wrapCount: { name: 'wrap_count', detail: 'O número máximo de valores para cada coluna.' }, + padWith: { name: 'pad_with', detail: 'O valor com o qual fazer pad. O padrão é #N/A.' }, + }, + }, + WRAPROWS: { + description: 'Envolve a linha ou coluna de valores fornecida por linhas após um número especificado de elementos para formar uma nova matriz.', + abstract: 'Envolve a linha ou coluna de valores fornecida por linhas após um número especificado de elementos para formar uma nova matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/wraprows-function', + }, + ], + functionParameter: { + vector: { name: 'vector', detail: 'O vetor ou referência ao wrap.' }, + wrapCount: { name: 'wrap_count', detail: 'O número máximo de valores para cada linha.' }, + padWith: { name: 'pad_with', detail: 'O valor com o qual fazer pad. O padrão é #N/A.' }, + }, + }, + XLOOKUP: { + description: 'Use a função PROCX quando precisar localizar coisas em linhas de uma tabela ou de um intervalo. Por exemplo, procure o preço de uma peça automotiva pelo número da peça ou encontre um nome de funcionário com base na ID do funcionário. Com o PROCX, você pode procurar em uma coluna por um termo de pesquisa e retornar um resultado da mesma linha em outra coluna, independentemente de qual lado a coluna de retorno esteja.', + abstract: 'Use a função PROCX quando precisar localizar coisas em linhas de uma tabela ou de um intervalo. Por exemplo, procure o preço de uma peça automotiva pelo número da peça ou encontre um nome de funcionário com base na ID do funcionário. Com o PROCX, você pode procurar em uma coluna por um termo de pesquisa e retornar um resultado da mesma linha em outra coluna, independentemente de qual lado a coluna de retorno esteja.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/xlookup-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'O valor a procurar *Se for omitido, PROCX devolve células em branco que encontra no lookup_array .' }, + lookupArray: { name: 'lookup_array', detail: 'A matriz ou intervalo a classificar' }, + returnArray: { name: 'return_array', detail: 'A matriz ou intervalo a retornar' }, + ifNotFound: { name: 'if_not_found', detail: 'Quando uma coincidência válida não é encontrada, retorna o texto [if_not_found] que você fornece. Se uma correspondência válida não for encontrada e [if_not_found] estiver ausente, #N/A será retornado.' }, + matchMode: { name: 'match_mode', detail: 'Especificar o tipo de correspondência: 0 – Correspondência exata. Se nenhum for encontrado, retornar #N/A. Esse é o padrão. -1 – Correspondência exata. Se nenhum for encontrado, retorna o próximo item menor. 1 – Correspondência exata. Se nenhum for encontrado, retorna o próximo item maior. 2 – Uma correspondência de curingas, em que *,? e ~ têm um significado especial .' }, + searchMode: { name: 'search_mode', detail: 'Especificar o modo de pesquisa a ser usado: 1 – Executar uma pesquisa começando do primeiro item. Esse é o padrão. -1 – Executar uma pesquisa reversa começando do último item. 2 – Executar uma pesquisa binária que dependa da classificação da matriz_procurada em ordem crescente . Caso contrário, resultados inválidos serão retornados. -2 – Executar uma pesquisa binária que dependa da classificação da matriz_procurada em ordem decrescente . Caso contrário, resultados inválidos serão retornados.' }, + }, + }, + XMATCH: { + description: 'Suponha que tenhamos uma lista de produtos nas células C3 a C7 e que desejemos determinar em que parte da lista está localizado o produto da célula E3. Aqui, usaremos o CORRESPX para determinar a posição de um item em uma lista.', + abstract: 'Suponha que tenhamos uma lista de produtos nas células C3 a C7 e que desejemos determinar em que parte da lista está localizado o produto da célula E3. Aqui, usaremos o CORRESPX para determinar a posição de um item em uma lista.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/xmatch-function', + }, + ], + functionParameter: { + lookupValue: { name: 'lookup_value', detail: 'O valor de pesquisa' }, + lookupArray: { name: 'lookup_array', detail: 'A matriz ou intervalo a classificar' }, + matchMode: { name: 'match_mode', detail: 'Especificar o tipo de correspondência: 0 - Correspondência exata (padrão) -1 – Correspondência exata ou o próximo item menor 1 – Correspondência exata ou o próximo item maior 2 – Uma correspondência de curingas, em que *,? e ~ têm um significado especial .' }, + searchMode: { name: 'search_mode', detail: 'Especificar o tipo de pesquisa: 1 – Pesquisar do primeiro ao último (padrão) -1 – Pesquisar do último ao primeiro (pesquisa inversa). 2 – Executar uma pesquisa binária que dependa da classificação da matriz_procurada em ordem crescente . Caso contrário, resultados inválidos serão retornados. -2 – Executar uma pesquisa binária que dependa da classificação da matriz_procurada em ordem decrescente . Caso contrário, resultados inválidos serão retornados.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/lookup/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/lookup/ru-RU.ts index 7f347e85ec..7f97f31f0d 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B0%D0%B4%D1%80%D0%B5%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D0%B4%D1%80%D0%B5%D1%81-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/ru-ru/excel/functions/address-function', }, ], functionParameter: { @@ -55,7 +55,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D0%B8-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/ru-ru/excel/functions/areas-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%8B%D0%B1%D0%BE%D1%80-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/choose-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D1%81%D1%82%D0%BE%D0%BB%D0%B1%D1%86-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/ru-ru/excel/functions/choosecols-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-chooserows-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chooserows-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D0%BE%D0%BB%D0%B1%D0%B5%D1%86-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%BE%D0%BB%D0%B1%D0%B5%D1%86-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/column-function', }, ], functionParameter: { @@ -126,7 +126,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D0%B8%D1%81%D0%BB%D1%81%D1%82%D0%BE%D0%BB%D0%B1-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D0%BB%D1%81%D1%82%D0%BE%D0%BB%D0%B1-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/ru-ru/excel/functions/columns-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-drop-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/ru-ru/excel/functions/drop-function', }, ], functionParameter: { @@ -154,7 +154,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-expand-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/ru-ru/excel/functions/expand-function', }, ], functionParameter: { @@ -170,7 +170,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%B8%D0%BB%D1%8C%D1%82%D1%80-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/ru-ru/excel/functions/filter-function', }, ], functionParameter: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84-%D1%82%D0%B5%D0%BA%D1%81%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84-%D1%82%D0%B5%D0%BA%D1%81%D1%82-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/formulatext-function', }, ], functionParameter: { @@ -198,54 +198,44 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D0%BB%D1%83%D1%87%D0%B8%D1%82%D1%8C-%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5-%D1%81%D0%B2%D0%BE%D0%B4%D0%BD%D0%BE%D0%B9-%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86%D1%8B-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + dataField: { name: 'Поле данных', detail: 'Имя поля данных, содержащего извлекаемые данные.' }, + pivotTable: { name: 'Сводная таблица', detail: 'Ссылка на ячейку, диапазон или именованный диапазон сводной таблицы.' }, + field1: { name: 'Поле 1', detail: 'Необязательно. Имя первого поля, описывающего данные.' }, + item1: { name: 'Элемент 1', detail: 'Необязательно. Имя первого элемента в поле.' }, }, }, HLOOKUP: { - description: 'Выполняет поиск значения в первой строке таблицы или массив значений и возвращает значение, находящееся в том же столбце в заданной строке таблицы или массива', - abstract: 'Выполняет поиск значения в первой строке таблицы или массив значений и возвращает значение, находящееся в том же столбце в заданной строке таблицы или массива.', + description: 'Ищет значение в первой строке таблицы или массива и возвращает значение, находящееся в том же столбце в заданной строке таблицы или массива. Функция ГПР используется, когда сравниваемые значения расположены в первой строке таблицы данных, а возвращаемые — на несколько строк ниже. Если сравниваемые значения находятся в столбце слева от искомых данных, используйте функцию ВПР.', + abstract: 'Ищет значение в первой строке таблицы или массива и возвращает значение, находящееся в том же столбце в заданной строке таблицы или массива. Функция ГПР используется, когда сравниваемые значения расположены в первой строке таблицы данных, а возвращаемые — на несколько строк ниже. Если сравниваемые значения находятся в столбце слева от искомых данных, используйте функцию ВПР.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B3%D0%BF%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%BF%D1%80-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hlookup-function', }, ], functionParameter: { - lookupValue: { - name: 'искомое значение', - detail: 'Значение, которое требуется найти в первой строке таблицы. "искомое значение" может быть значением, ссылкой или текстовой строкой.', - }, - tableArray: { - name: 'таблица', - detail: 'Таблица, в которой производится поиск данных. Можно использовать ссылку на диапазон или имя диапазона.', - }, - rowIndexNum: { - name: 'номер строки', - detail: 'Номер строки в аргументе "таблица", из которой будет возвращено соответствующее значение.', - }, - rangeLookup: { - name: 'интервальный просмотр', - detail: 'Логическое значение, которое определяет, какое соответствие должна искать функция ГПР — точное или приблизительное.', - }, + lookupValue: { name: 'искомое значение', detail: 'Обязательно. Значение, которое требуется найти в первой строке таблицы. "Искомое_значение" может быть значением, ссылкой или текстовой строкой.' }, + tableArray: { name: 'таблица', detail: 'Обязательно. Таблица, в которой производится поиск данных. Можно использовать ссылку на диапазон или имя диапазона. Значения в первой строке аргумента "таблица" могут быть текстом, числами или логическими значениями. Если аргумент "интервальный_просмотр" имеет значение ИСТИНА, то значения в первой строке аргумента "таблица" должны быть расположены в возрастающем порядке: ...-2, -1, 0, 1, 2, ..., A-Z, ЛОЖЬ, ИСТИНА; в противном случае функция ГПР может выдать неправильный результат. Если аргумент "интервальный_просмотр" имеет значение ЛОЖЬ, таблица может быть не отсортирована. В текстовых строках регистр букв не учитывается. Значения сортируются слева направо по возрастанию. Дополнительные сведения см. в разделе Сортировка данных в диапазоне или таблице .' }, + rowIndexNum: { name: 'номер строки', detail: 'Обязательно. Номер строки в аргументе "таблица", из которой будет возвращено соответствующее значение. Если значение аргумента "номер_строки" равно 1, возвращается значение из первой строки аргумента "таблица", если оно равно 2 — из второй строки и т. д. Если значение аргумента "номер_строки" меньше 1, функция ГПР возвращает значение ошибки #ЗНАЧ!; если оно больше, чем количество строк в аргументе "таблица", возвращается значение ошибки #ССЫЛ!.' }, + rangeLookup: { name: 'интервальный просмотр', detail: 'Дополнительные. Логическое значение, которое определяет, какое соответствие должна искать функция ГПР — точное или приблизительное. Если этот аргумент имеет значение ИСТИНА или опущен, возвращается приблизительное соответствие; при отсутствии точного соответствия возвращается наибольшее из значений, меньших, чем "искомое_значение". Если этот аргумент имеет значение ЛОЖЬ, функция ГПР ищет точное соответствие. Если найти его не удается, возвращается значение ошибки #Н/Д.' }, }, }, HSTACK: { - description: 'Добавляет массивы последовательно по горизонтали, чтобы вернуть больший массив', - abstract: 'Добавляет массивы последовательно по горизонтали, чтобы вернуть больший массив', + description: 'Добавляет массивы последовательно по горизонтали, чтобы вернуть больший массив.', + abstract: 'Добавляет массивы последовательно по горизонтали, чтобы вернуть больший массив.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D1%81%D1%82%D0%BE%D0%BB%D0%B1%D0%B8%D0%BA-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: 'массив', detail: 'Массивы, которые нужно добавить.' }, - array2: { name: 'массив', detail: 'Массивы, которые нужно добавить.' }, + array1: { name: 'массив', detail: 'Максимальное число строк из каждого аргумента массива.' }, + array2: { name: 'массив', detail: 'Объединенное число всех столбцов из каждого аргумента массива.' }, }, }, HYPERLINK: { @@ -254,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=ru', + url: 'https://support.google.com/docs/answer/3093313?hl=ru', }, ], functionParameter: { @@ -263,12 +253,12 @@ const locale: typeof enUS = { }, }, IMAGE: { - description: 'Вставляет изображения в ячейки из источника вместе с замещающим текстом', - abstract: 'Вставляет изображения в ячейки из источника вместе с замещающим текстом', + description: 'Функция ИЗОБРАЖЕНИЕ вставляет изображения в ячейки из источника вместе с замещающим текстом. Затем вы можете перемещать и изменять ячейки, выполнять сортировку и фильтрацию, а также работать с изображениями в таблице Excel. Используйте эту функцию для визуального улучшения списков данных, например перечней, игр, сотрудников и математических концепций.', + abstract: 'Функция ИЗОБРАЖЕНИЕ вставляет изображения в ячейки из источника вместе с замещающим текстом. Затем вы можете перемещать и изменять ячейки, выполнять сортировку и фильтрацию, а также работать с изображениями в таблице Excel. Используйте эту функцию для визуального улучшения списков данных, например перечней, игр, сотрудников и математических концепций.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/image-function', }, ], functionParameter: { @@ -285,7 +275,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B8%D0%BD%D0%B4%D0%B5%D0%BA%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B8%D0%BD%D0%B4%D0%B5%D0%BA%D1%81-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/ru-ru/excel/functions/index-function', }, ], functionParameter: { @@ -301,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B2%D1%81%D1%81%D1%8B%D0%BB-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/ru-ru/excel/functions/indirect-function', }, ], functionParameter: { @@ -315,7 +305,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%81%D0%BC%D0%BE%D1%82%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%81%D0%BC%D0%BE%D1%82%D1%80-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lookup-function', }, ], functionParameter: { @@ -339,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D0%B8%D1%81%D0%BA%D0%BF%D0%BE%D0%B7-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/match-function', }, ], functionParameter: { @@ -354,7 +344,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D0%BC%D0%B5%D1%89-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BC%D0%B5%D1%89-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/ru-ru/excel/functions/offset-function', }, ], functionParameter: { @@ -371,7 +361,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%80%D0%BE%D0%BA%D0%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/row-function', }, ], functionParameter: { @@ -384,7 +374,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D1%81%D1%82%D1%80%D0%BE%D0%BA-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D1%81%D1%82%D1%80%D0%BE%D0%BA-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rows-function', }, ], functionParameter: { @@ -397,12 +387,14 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D1%80%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D1%80%D0%B2-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + progId: { name: 'Идентификатор программы', detail: 'Идентификатор установленной локально надстройки автоматизации COM.' }, + server: { name: 'Сервер', detail: 'Имя сервера надстройки; для локального сервера используйте пустую строку.' }, + topic1: { name: 'Тема 1', detail: 'Первая строка, задающая получаемые данные реального времени.' }, + topic2: { name: 'Тема 2', detail: 'Необязательно. Дополнительные строки, задающие данные реального времени.' }, }, }, SORT: { @@ -411,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BE%D1%80%D1%82-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sort-function', }, ], functionParameter: { @@ -427,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D0%BE%D1%80%D1%82%D0%BF%D0%BE-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BE%D1%80%D1%82%D0%BF%D0%BE-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sortby-function', }, ], functionParameter: { @@ -444,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-take-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/ru-ru/excel/functions/take-function', }, ], functionParameter: { @@ -459,7 +451,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-tocol-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tocol-function', }, ], functionParameter: { @@ -474,7 +466,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%81%D1%82%D1%80%D0%BE%D0%BA%D1%83-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/ru-ru/excel/functions/torow-function', }, ], functionParameter: { @@ -489,7 +481,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D1%80%D0%B0%D0%BD%D1%81%D0%BF-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/ru-ru/excel/functions/transpose-function', }, ], functionParameter: { @@ -502,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%83%D0%BD%D0%B8%D0%BA-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/unique-function', }, ], functionParameter: { @@ -517,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%BF%D1%80-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/vlookup-function', }, ], functionParameter: { @@ -545,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D1%81%D1%82%D0%BE%D0%BB%D0%B1%D0%B8%D0%BA-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/vstack-function', }, ], functionParameter: { @@ -559,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-wrapcols-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -574,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-wraprows-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/ru-ru/excel/functions/wraprows-function', }, ], functionParameter: { @@ -589,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%81%D0%BC%D0%BE%D1%82%D1%80x-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/ru-ru/excel/functions/xlookup-function', }, ], functionParameter: { @@ -619,7 +611,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D0%B8%D1%81%D0%BA%D0%BF%D0%BE%D0%B7x-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/ru-ru/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/lookup/sk-SK.ts index 7b3f9f1509..3b9eed1cdf 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/address-function-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/sk-sk/excel/functions/address-function', }, ], functionParameter: { @@ -55,7 +55,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/areas-function-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/sk-sk/excel/functions/areas-function', }, ], functionParameter: { @@ -68,7 +68,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/choose-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/choose-function', }, ], functionParameter: { @@ -83,7 +83,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/choosecols-function-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/sk-sk/excel/functions/choosecols-function', }, ], functionParameter: { @@ -98,7 +98,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chooserows-function-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chooserows-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/column-function-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/column-function', }, ], functionParameter: { @@ -126,7 +126,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/columns-function-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/sk-sk/excel/functions/columns-function', }, ], functionParameter: { @@ -139,7 +139,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/drop-function-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/sk-sk/excel/functions/drop-function', }, ], functionParameter: { @@ -154,7 +154,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/expand-function-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/sk-sk/excel/functions/expand-function', }, ], functionParameter: { @@ -170,7 +170,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/filter-function-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/sk-sk/excel/functions/filter-function', }, ], functionParameter: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/formulatext-function-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/formulatext-function', }, ], functionParameter: { @@ -193,59 +193,49 @@ const locale: typeof enUS = { }, }, GETPIVOTDATA: { - description: 'Vracia údaje uložené v zostave kontingenčnej tabuľky', - abstract: 'Vracia údaje uložené v zostave kontingenčnej tabuľky', + description: 'Nižšie zobrazená snímka obrazovky znázorňuje rozloženie kontingenčnej tabuľky použité v ďalších častiach. V tomto príklade funkcia =GETPIVOTDATA("Predaj";A3) vráti celkovú čiastku predaja:', + abstract: 'Nižšie zobrazená snímka obrazovky znázorňuje rozloženie kontingenčnej tabuľky použité v ďalších častiach. V tomto príklade funkcia =GETPIVOTDATA("Predaj";A3) vráti celkovú čiastku predaja:', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + dataField: { name: 'dataField', detail: '' }, + pivotTable: { name: 'pivotTable', detail: '' }, + field1: { name: 'field1', detail: '' }, + item1: { name: 'item1', detail: '' }, }, }, HLOOKUP: { - description: 'Vyhľadá v hornom riadku poľa a vráti hodnotu z určeného riadka', - abstract: 'Vyhľadá v hornom riadku poľa a vráti hodnotu z určeného riadka', + description: 'Vyhľadá hodnotu v hornom riadku tabuľky alebo poľa hodnoty a potom vráti hodnotu v tom istom stĺpci počnúc riadkom, ktorý ste v tabuľke alebo poli zadali. Funkcia HLOOKUP sa používa pri vyhľadávaní hodnôt v zadaných riadkoch tabuľky, v ktorej sú porovnávané hodnoty zoradené v prvom riadku tabuľky. Pri vyhľadávaní hodnôt v tabuľke, v ktorej sú porovnávané hodnoty zoradené v prvom stĺpci tabuľky, sa používa funkcia VLOOKUP.', + abstract: 'Vyhľadá hodnotu v hornom riadku tabuľky alebo poľa hodnoty a potom vráti hodnotu v tom istom stĺpci počnúc riadkom, ktorý ste v tabuľke alebo poli zadali. Funkcia HLOOKUP sa používa pri vyhľadávaní hodnôt v zadaných riadkoch tabuľky, v ktorej sú porovnávané hodnoty zoradené v prvom riadku tabuľky. Pri vyhľadávaní hodnôt v tabuľke, v ktorej sú porovnávané hodnoty zoradené v prvom stĺpci tabuľky, sa používa funkcia VLOOKUP.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hlookup-function-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hlookup-function', }, ], functionParameter: { - lookupValue: { - name: 'hľadaná_hodnota', - detail: 'Hodnota, ktorú chcete nájsť v prvom riadku tabuľky. Môže to byť hodnota, odkaz alebo textový reťazec.', - }, - tableArray: { - name: 'tabuľka', - detail: 'Tabuľka údajov, v ktorej sa vyhľadáva. Použite odkaz na rozsah alebo názov rozsahu.', - }, - rowIndexNum: { - name: 'číslo_riadka', - detail: 'Číslo riadka v table_array, z ktorého sa vráti zodpovedajúca hodnota. Hodnota 1 vráti prvý riadok, 2 druhý atď.', - }, - rangeLookup: { - name: 'približná_zhoda', - detail: 'Logická hodnota určujúca, či má HLOOKUP nájsť presnú alebo približnú zhodu.', - }, + lookupValue: { name: 'hľadaná_hodnota', detail: 'Povinné. Hodnota, ktorá sa nachádza v prvom riadku tabuľky. Vyhľadávaná_hodnota môže byť hodnotou, odkazom na bunku alebo textovým reťazcom.' }, + tableArray: { name: 'tabuľka', detail: 'Povinné. Tabuľka s informáciami, kde sa hľadajú údaje. Použite odkaz na rozsah alebo názov rozsahu. Hodnoty v prvom riadku tabuľky môžu byť textové, číselné alebo logické. Ak má argument rozsah hodnotu TRUE, musia byť hodnoty v prvom riadku tabuľky zoradené zostupne: ... -2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE; inak môže funkcia HLOOKUP vrátiť nesprávnu hodnotu. Ak má argument rozsah hodnotu FALSE, hodnoty v prvom riadku tabuľky nemusia byť zoradené. Nerozlišujú sa malé a veľké písmená. Hodnoty sa zoradia vo vzostupnom poradí, zľava doprava. Ďalšie informácie nájdete v téme Zoraďovanie údajov v rozsahu alebo tabuľke .' }, + rowIndexNum: { name: 'číslo_riadka', detail: 'Povinné. Číslo riadka v argumente pole_tabuľky, z ktorého sa vráti hodnota. Argument číslo_indexu_riadka s hodnotou 1 vráti hodnotu prvého riadka v argumente pole_tabuľky, argument číslo_indexu_riadka s hodnotou 2 vráti hodnotu druhého riadka v argumente pole_tabuľky a tak ďalej. Ak je hodnota argumentu číslo_indexu_riadka menšia ako 1, funkcia HLOOKUP vráti chybovú hodnotu #HODNOTA!, ak je hodnota argumentu číslo_indexu_riadka väčšia ako počet riadkov v argumente pole_tabuľky, funkcia HLOOKUP vráti chybovú hodnotu #ODKAZ! .' }, + rangeLookup: { name: 'približná_zhoda', detail: 'Voliteľný argument. Logická hodnota, ktorá určuje, či má funkcia HLOOKUP vyhľadať úplnú alebo približnú zhodu. Ak je hodnota TRUE alebo nie je zadaná, vráti približnú zhodu. Inými slovami, ak sa nenájde presná zhoda, vráti sa ďalšia najväčšia hodnota, ktorá je menšia ako hodnota argumentu vyhľadávaná_hodnota. Ak je hodnota FALSE, funkcia HLOOKUP nájde presnú zhodu. Ak v niektorom prípade nenájde, vráti sa chybová hodnota #NEDOSTUPNÝ.' }, }, }, HSTACK: { - description: 'Pripojí polia horizontálne a postupne, aby vrátilo väčšie pole', - abstract: 'Pripojí polia horizontálne a postupne, aby vrátilo väčšie pole', + description: 'Pripojí polia vodorovne a v postupnosti, aby sa vrátilo väčšie pole.', + abstract: 'Pripojí polia vodorovne a v postupnosti, aby sa vrátilo väčšie pole.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hstack-function-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: 'pole', detail: 'Polia, ktoré sa majú pripojiť.' }, - array2: { name: 'pole', detail: 'Polia, ktoré sa majú pripojiť.' }, + array1: { name: 'pole', detail: 'Maximum počtu riadkov z každého argumentu poľa.' }, + array2: { name: 'pole', detail: 'Skombinovaný počet všetkých stĺpcov z každého argumentu poľa.' }, }, }, HYPERLINK: { @@ -254,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=en', + url: 'https://support.google.com/docs/answer/3093313?hl=sk', }, ], functionParameter: { @@ -268,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/image-function', }, ], functionParameter: { @@ -285,7 +275,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/index-function-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/sk-sk/excel/functions/index-function', }, ], functionParameter: { @@ -301,7 +291,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/indirect-function-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/sk-sk/excel/functions/indirect-function', }, ], functionParameter: { @@ -315,7 +305,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lookup-function-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lookup-function', }, ], functionParameter: { @@ -339,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/match-function-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/match-function', }, ], functionParameter: { @@ -354,7 +344,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/sk-sk/excel/functions/offset-function', }, ], functionParameter: { @@ -371,7 +361,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/row-function-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/row-function', }, ], functionParameter: { @@ -384,7 +374,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rows-function-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rows-function', }, ], functionParameter: { @@ -397,12 +387,14 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + progId: { name: 'Identifikátor programu', detail: 'Identifikátor lokálne nainštalovaného doplnku automatizácie COM.' }, + server: { name: 'Server', detail: 'Názov servera doplnku; pre lokálny server použite prázdny reťazec.' }, + topic1: { name: 'Téma 1', detail: 'Prvý text určujúci údaje v reálnom čase, ktoré sa majú načítať.' }, + topic2: { name: 'Téma 2', detail: 'Voliteľné. Ďalšie texty určujúce údaje v reálnom čase.' }, }, }, SORT: { @@ -411,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sort-function-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sort-function', }, ], functionParameter: { @@ -427,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sortby-function-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sortby-function', }, ], functionParameter: { @@ -444,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/take-function-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/sk-sk/excel/functions/take-function', }, ], functionParameter: { @@ -459,7 +451,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tocol-function-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tocol-function', }, ], functionParameter: { @@ -474,7 +466,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/torow-function-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/sk-sk/excel/functions/torow-function', }, ], functionParameter: { @@ -489,7 +481,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/transpose-function-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/sk-sk/excel/functions/transpose-function', }, ], functionParameter: { @@ -502,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/unique-function', }, ], functionParameter: { @@ -517,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/vlookup-function-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/vlookup-function', }, ], functionParameter: { @@ -545,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/vstack-function-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/vstack-function', }, ], functionParameter: { @@ -559,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/wrapcols-function-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -574,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/wraprows-function-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/sk-sk/excel/functions/wraprows-function', }, ], functionParameter: { @@ -589,7 +581,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/sk-sk/excel/functions/xlookup-function', }, ], functionParameter: { @@ -619,7 +611,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/xmatch-function-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/sk-sk/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/lookup/vi-VN.ts index 5c84af3178..be2a01b3f4 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/address-function', }, ], functionParameter: { @@ -46,7 +46,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/areas-function', }, ], functionParameter: { @@ -59,7 +59,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/choose-function', }, ], functionParameter: { @@ -80,7 +80,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/choosecols-function', }, ], functionParameter: { @@ -95,7 +95,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chooserows-function', }, ], functionParameter: { @@ -110,7 +110,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/column-function', }, ], functionParameter: { @@ -123,7 +123,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/columns-function', }, ], functionParameter: { @@ -136,7 +136,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/drop-function', }, ], functionParameter: { @@ -151,7 +151,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/expand-function', }, ], functionParameter: { @@ -167,7 +167,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/filter-function', }, ], functionParameter: { @@ -182,7 +182,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/formulatext-function', }, ], functionParameter: { @@ -190,54 +190,44 @@ const locale: typeof enUS = { }, }, GETPIVOTDATA: { - description: 'Returns data stored in a PivotTable report', - abstract: 'Returns data stored in a PivotTable report', + description: 'Hàm GETPIVOTDATA trả về dữ liệu hiển thị từ PivotTable.', + abstract: 'Hàm GETPIVOTDATA trả về dữ liệu hiển thị từ PivotTable.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/getpivotdata-function-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/vi-vn/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + dataField: { name: 'dataField', detail: 'Tên của trường PivotTable có chứa dữ liệu mà bạn muốn truy xuất. Thông tin này cần nằm trong dấu ngoặc kép. Ví dụ: =GETPIVOTDATA("Doanh số", A3). Ở đây, "Doanh số" là trường Giá trị mà chúng tôi muốn truy xuất. Vì không có trường nào khác được xác định, hàm GETPIVOTDATA trả về tổng doanh thu.' }, + pivotTable: { name: 'pivotTable', detail: 'Tham chiếu tới bất kỳ ô, phạm vi ô hoặc phạm vi ô đã đặt tên trong PivotTable. Thông tin này dùng để xác định PivotTable nào có chứa dữ liệu mà bạn muốn truy xuất. Ví dụ: =GETPIVOTDATA("Doanh số", A3). Ở đây, A3 là một tham chiếu bên trong PivotTable và cho công thức biết cần dùng PivotTable nào.' }, + field1: { name: 'field1', detail: '1 tới 126 tên trường và tên mục mô tả dữ liệu mà bạn muốn truy xuất. Các cặp có thể theo bất kỳ trật tự nào. Tên trường và tên mục không phải là ngày tháng và số cần được đặt trong dấu ngoặc kép. Ví dụ: =GETPIVOTDATA("Doanh số", A3, "Tháng", "Tháng Ba"). Ở đây, "Tháng" là trường và "Tháng Ba" là mục. Để chỉ định nhiều mục cho một trường, hãy đặt chúng trong dấu ngoặc nhọn (ví dụ: {"Mar", "Tháng 4"}). Đối với PivotTable OLAP , các mục có thể chứa tên nguồn của kích thước cũng như tên nguồn của mục. Một cặp trường và mục cho một OLAP PivotTable có thể giống như thế này: "[Sản phẩm]","[Sản phẩm].[Tất cả Sản phẩm].[Thực phẩm].[Đồ Nướng]"' }, + item1: { name: 'item1', detail: '1 tới 126 tên trường và tên mục mô tả dữ liệu mà bạn muốn truy xuất. Các cặp có thể theo bất kỳ trật tự nào. Tên trường và tên mục không phải là ngày tháng và số cần được đặt trong dấu ngoặc kép. Ví dụ: =GETPIVOTDATA("Doanh số", A3, "Tháng", "Tháng Ba"). Ở đây, "Tháng" là trường và "Tháng Ba" là mục. Để chỉ định nhiều mục cho một trường, hãy đặt chúng trong dấu ngoặc nhọn (ví dụ: {"Mar", "Tháng 4"}). Đối với PivotTable OLAP , các mục có thể chứa tên nguồn của kích thước cũng như tên nguồn của mục. Một cặp trường và mục cho một OLAP PivotTable có thể giống như thế này: "[Sản phẩm]","[Sản phẩm].[Tất cả Sản phẩm].[Thực phẩm].[Đồ Nướng]"' }, }, }, 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', + description: 'Tìm kiếm một giá trị trong hàng trên cùng của một bảng hoặc một mảng giá trị, rồi trả về một giá trị trong cùng một cột từ một hàng mà bạn chỉ định trong bảng hoặc mảng. Dùng hàm HLOOKUP khi các giá trị so sánh của bạn nằm ở một hàng nằm ngang ở trên cùng một bảng dữ liệu và bạn muốn tìm xuôi xuống một số hàng đã xác định. Dùng VLOOKUP khi các giá trị so sánh của bạn nằm trong một cột ở bên trái của dữ liệu mà bạn muốn tìm.', + abstract: 'Tìm kiếm một giá trị trong hàng trên cùng của một bảng hoặc một mảng giá trị, rồi trả về một giá trị trong cùng một cột từ một hàng mà bạn chỉ định trong bảng hoặc mảng. Dùng hàm HLOOKUP khi các giá trị so sánh của bạn nằm ở một hàng nằm ngang ở trên cùng một bảng dữ liệu và bạn muốn tìm xuôi xuống một số hàng đã xác định. Dùng VLOOKUP khi các giá trị so sánh của bạn nằm trong một cột ở bên trái của dữ liệu mà bạn muốn tìm.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hlookup-function', }, ], 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.', - }, + lookupValue: { name: 'tìm giá trị', detail: 'Yêu cầu. Giá trị cần tìm trong hàng thứ nhất của bảng. Lookup_value có thể là một giá trị, tham chiếu hoặc chuỗi văn bản.' }, + tableArray: { name: 'phạm vi', detail: 'Yêu cầu. Một bảng thông tin để tìm kiếm dữ liệu trong đó. Hãy dùng tham chiếu tới một phạm vi hoặc một tên phạm vi. Các giá trị trong hàng thứ nhất của table_array có thể là văn bản, số hoặc giá trị lô-gic. Nếu range_lookup là TRUE, các giá trị trong hàng thứ nhất của table_array phải được đặt theo thứ tự tăng dần: ...-2, -1, 0, 1, 2,... , A-Z, FALSE, TRUE; nếu không, hàm HLOOKUP có thể đưa ra giá trị không đúng. Nếu range_lookup là FALSE, thì không cần phải sắp xếp table_array. Văn bản chữ hoa và chữ thường tương đương nhau. Sắp xếp các giá trị theo thứ tự tăng dần, từ trái sang phải. Để biết thêm thông tin, vui lòng xem mục Sắp xếp dữ liệu trong dải ô hoặc bảng .' }, + rowIndexNum: { name: 'số dòng', detail: 'Yêu cầu. Số hàng trong ô table_array giá trị khớp sẽ được trả về từ đó. Một row_index_num của 1 trả về giá trị hàng thứ nhất trong table_array, một row_index_num/2 trả về giá trị hàng thứ hai trong table_array, v.v. Nếu row_index_num nhỏ hơn 1, hàm HLOOKUP trả về giá #VALUE! giá trị lỗi; nếu row_index_num lớn hơn số hàng trên table_array, hàm HLOOKUP trả về giá #REF! .' }, + rangeLookup: { name: 'loại truy vấn', detail: 'Tùy chọn. Một giá trị lô-gic cho biết bạn có muốn HLOOKUP tìm thấy một kết quả khớp chính xác hay kết quả khớp tương đối. Nếu đối số này là TRUE hoặc được bỏ qua, thì hàm sẽ trả về kết quả khớp tương đối. Nói cách khác, nếu không tìm thấy một kết quả khớp chính xác thì hàm sẽ trả về giá trị lớn nhất kế tiếp nhỏ hơn lookup_value. Nếu đối số này là FALSE, hàm HLOOKUP sẽ tìm một kết quả khớp chính xác. Nếu không tìm thấy kết quả khớp chính xác, hàm sẽ trả về giá trị lỗi #N/A.' }, }, }, 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', + description: 'Nối các mảng theo chiều ngang và theo trình tự để trả về một mảng lớn hơn.', + abstract: 'Nối các mảng theo chiều ngang và theo trình tự để trả về một 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hstack-function', }, ], functionParameter: { @@ -246,26 +236,26 @@ const locale: typeof enUS = { }, }, HYPERLINK: { - description: 'Tạo một đường siêu liên kết bên trong ô', - abstract: 'Tạo một đường siêu liên kết bên trong ô', + description: 'Tạo một đường siêu liên kết bên trong ô.', + abstract: 'Tạo một đường siêu liên kết bên trong ô.', links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=vi', + url: 'https://support.google.com/docs/answer/3093313?hl=vi', }, ], functionParameter: { - url: { name: 'url', detail: 'URL đầy đủ về vị trí liên kết được đóng trong dấu ngoặc kép hoặc tham chiếu đến ô có chứa URL này.' }, - linkLabel: { name: 'nhãn_đường_liên_kết', detail: 'Văn bản cần hiển thị trong ô như là một đường liên kết, được đóng trong dấu ngoặc kép hoặc tham chiếu đến ô có chứa nhãn này.' }, + url: { name: 'url', detail: 'URL đầy đủ về vị trí liên kết được đóng trong dấu ngoặc kép hoặc tham chiếu đến ô có chứa URL này. Chỉ cho phép một số loại đường liên kết nhất định. Cho phép http:// , https:// , mailto: , aim: , ftp:// , gopher:// , telnet:// và news:// ; các loại khác rõ ràng không được phép. Nếu xác định một giao thức khác, link_label sẽ hiển thị trong ô, nhưng sẽ không biến thành siêu liên kết. Nếu không xác định giao thức, thì giao thức mặc định sẽ là http:// và được thêm vào đầu url .' }, + linkLabel: { name: 'nhãn_đường_liên_kết', detail: '[ KHÔNG BẮT BUỘC – url theo mặc định ] – Văn bản cần hiển thị trong ô như là một đường liên kết, được đóng trong dấu ngoặc kép hoặc tham chiếu đến ô có chứa nhãn này. Nếu nhãn_đường_liên_kết là tham chiếu đến một ô rỗng, url sẽ hiển thị dưới dạng đường liên kết nếu hợp lệ, ngược lại là văn bản thuần túy. Nếu link_label là chuỗi rỗng tuyệt đối (""), ô sẽ trông như trống, nhưng vẫn có thể truy cập vào đường liên kết bằng cách nhấp hoặc di chuyển vào ô.' }, }, }, IMAGE: { - description: 'Trả về hình ảnh từ một nguồn nhất định.', - abstract: 'Trả về hình ảnh từ một nguồn nhất định.', + description: 'Hàm IMAGE chèn hình ảnh vào các ô từ vị trí nguồn cùng với văn bản thay thế. Sau đó, bạn có thể di chuyển và thay đổi kích thước ô, sắp xếp và lọc cũng như làm việc với hình ảnh trong bảng Excel. Sử dụng hàm này để cải thiện trực quan các danh sách dữ liệu như hàng tồn kho, trò chơi, nhân viên và các khái niệm toán học.', + abstract: 'Hàm IMAGE chèn hình ảnh vào các ô từ vị trí nguồn cùng với văn bản thay thế. Sau đó, bạn có thể di chuyển và thay đổi kích thước ô, sắp xếp và lọc cũng như làm việc với hình ảnh trong bảng Excel. Sử dụng hàm này để cải thiện trực quan các danh sách dữ liệu như hàng tồn kho, trò chơi, nhân viên và các khái niệm toán học.', links: [ { title: 'Hướng dẫn', - url: 'https://support.microsoft.com/vi-vn/office/image-function-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/vi-vn/excel/functions/image-function', }, ], functionParameter: { @@ -282,7 +272,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/index-function', }, ], functionParameter: { @@ -298,7 +288,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/indirect-function', }, ], functionParameter: { @@ -312,7 +302,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lookup-function', }, ], functionParameter: { @@ -333,7 +323,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/match-function', }, ], functionParameter: { @@ -348,7 +338,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/offset-function', }, ], functionParameter: { @@ -365,7 +355,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/row-function', }, ], functionParameter: { @@ -378,7 +368,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rows-function', }, ], functionParameter: { @@ -386,17 +376,19 @@ const locale: typeof enUS = { }, }, 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', + description: 'Truy xuất dữ liệu thời gian thực từ một chương trình có hỗ trợ tự động hóa COM.', + abstract: 'Truy xuất dữ liệu thời gian thực từ một chương trình có hỗ trợ tự động hóa COM.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rtd-function-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + progId: { name: 'progId', detail: 'Yêu cầu. Tên progID của bổ trợ tự động hóa COM đã đăng ký đã được cài đặt trên máy tính cục bộ. Tên đặt trong dấu ngoặc kép.' }, + server: { name: 'server', detail: 'Yêu cầu. Tên của máy chủ nơi cần chạy bổ trợ. Nếu không có máy chủ và chương trình hiện đang chạy cục bộ, hãy để trống đối số này. Nếu không thì hãy đặt tên máy chủ trong dấu ngoặc kép (""). Khi đang dùng RTD trong Visual Basic for Applications (VBA), cần phải có cho máy chủ dấu ngoặc kép hoặc thuộc tính NullString của VBA, ngay cả khi máy chủ đang chạy cục bộ.' }, + topic1: { name: 'topic1', detail: 'Topic1 là bắt buộc, các chủ đề tiếp theo là tùy chọn. Các tham số từ 1 đến 253 cùng đại diện cho phần dữ liệu thời gian thực duy nhất.' }, + topic2: { name: 'topic2', detail: 'Topic1 là bắt buộc, các chủ đề tiếp theo là tùy chọn. Các tham số từ 1 đến 253 cùng đại diện cho phần dữ liệu thời gian thực duy nhất.' }, }, }, SORT: { @@ -405,7 +397,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sort-function', }, ], functionParameter: { @@ -421,7 +413,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sortby-function', }, ], functionParameter: { @@ -438,7 +430,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/take-function', }, ], functionParameter: { @@ -453,7 +445,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tocol-function', }, ], functionParameter: { @@ -468,7 +460,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/torow-function', }, ], functionParameter: { @@ -483,7 +475,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/transpose-function', }, ], functionParameter: { @@ -496,7 +488,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/unique-function', }, ], functionParameter: { @@ -511,7 +503,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/vlookup-function', }, ], functionParameter: { @@ -539,7 +531,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/vstack-function', }, ], functionParameter: { @@ -553,7 +545,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -568,7 +560,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/wraprows-function', }, ], functionParameter: { @@ -583,7 +575,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/xlookup-function', }, ], functionParameter: { @@ -613,7 +605,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/lookup/zh-CN.ts index 39fdf05f2e..224bd21635 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/address-%E5%87%BD%E6%95%B0-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/zh-cn/excel/functions/address-function', }, ], functionParameter: { @@ -46,7 +46,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/areas-%E5%87%BD%E6%95%B0-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/zh-cn/excel/functions/areas-function', }, ], functionParameter: { @@ -59,7 +59,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/choose-%E5%87%BD%E6%95%B0-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/choose-function', }, ], functionParameter: { @@ -74,7 +74,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/choosecols-%E5%87%BD%E6%95%B0-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/zh-cn/excel/functions/choosecols-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chooserows-%E5%87%BD%E6%95%B0-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chooserows-function', }, ], functionParameter: { @@ -104,7 +104,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/column-%E5%87%BD%E6%95%B0-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/column-function', }, ], functionParameter: { @@ -117,7 +117,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/columns-%E5%87%BD%E6%95%B0-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/zh-cn/excel/functions/columns-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/drop-%E5%87%BD%E6%95%B0-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/zh-cn/excel/functions/drop-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/expand-%E5%87%BD%E6%95%B0-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/zh-cn/excel/functions/expand-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/filter-%E5%87%BD%E6%95%B0-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/zh-cn/excel/functions/filter-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/formulatext-%E5%87%BD%E6%95%B0-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/formulatext-function', }, ], functionParameter: { @@ -184,68 +184,58 @@ const locale: typeof enUS = { }, }, GETPIVOTDATA: { - description: '返回存储在数据透视表中的数据', - abstract: '返回存储在数据透视表中的数据', + description: 'GETPIVOTDATA 函数返回数据透视表中的可见数据。', + abstract: 'GETPIVOTDATA 函数返回数据透视表中的可见数据。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/getpivotdata-%E5%87%BD%E6%95%B0-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + dataField: { name: 'dataField', detail: '包含要检索的数据的数据透视表字段的名称。 这需要用引号括起。 示例: =GETPIVOTDATA (“Sales”,A3) 。 此处,“Sales”是要检索的“值”字段。 由于未指定其他字段,因此 GETPIVOTDATA 返回总销售额。' }, + pivotTable: { name: 'pivotTable', detail: '对数据透视表中任何单元格、单元格区域或单元格已命名区域的引用。 此信息用于确定包含要检索数据的数据透视表。 示例: =GETPIVOTDATA (“Sales”,A3) 。 此处,A3 是数据透视表中的引用,它告知公式要使用哪个数据透视表。' }, + field1: { name: 'field1', detail: '描述要检索的数据的 1 到 126 个字段名称对和项目名称对。 这些对可按任何顺序排列。 除日期和数字以外的项的字段名称和名称需要用引号引起来。 示例: =GETPIVOTDATA (“Sales”、A3、“Month”、“Mar”) 。 此处,“Month”是字段,“Mar”是项。 若要为字段指定多个项,请将它们括在大括号 (例如:{“Mar”、“Apr”}) 。 对于 OLAP 数据透视表 ,项可以包含维度的源名称和项的源名称。 OLAP 数据透视表的字段和项目对可能类似于: "[产品]","[产品].[所有产品].[食品].[烤制食品]"' }, + item1: { name: 'item1', detail: '描述要检索的数据的 1 到 126 个字段名称对和项目名称对。 这些对可按任何顺序排列。 除日期和数字以外的项的字段名称和名称需要用引号引起来。 示例: =GETPIVOTDATA (“Sales”、A3、“Month”、“Mar”) 。 此处,“Month”是字段,“Mar”是项。 若要为字段指定多个项,请将它们括在大括号 (例如:{“Mar”、“Apr”}) 。 对于 OLAP 数据透视表 ,项可以包含维度的源名称和项的源名称。 OLAP 数据透视表的字段和项目对可能类似于: "[产品]","[产品].[所有产品].[食品].[烤制食品]"' }, }, }, HLOOKUP: { - description: '在表格的首行或数值数组中搜索值,然后返回表格或数组中指定行的所在列中的值。', - abstract: '查找数组的首行,并返回指定单元格的值', + description: '在表格的首行或值数组中搜索值,然后返回表格或数组中指定行的所在列中的值。 当比较值位于数据表格的首行时,如果要向下查看指定的行数,则可使用 HLOOKUP。 当比较值位于所需查找的数据的左边一列时,则可使用 VLOOKUP。', + abstract: '在表格的首行或值数组中搜索值,然后返回表格或数组中指定行的所在列中的值。 当比较值位于数据表格的首行时,如果要向下查看指定的行数,则可使用 HLOOKUP。 当比较值位于所需查找的数据的左边一列时,则可使用 VLOOKUP。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hlookup-%E5%87%BD%E6%95%B0-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hlookup-function', }, ], 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', - }, + lookupValue: { name: '查找值', detail: '必填。 要在表格的第一行中查找的值。 Lookup_value 可以是数值、引用或文本字符串。' }, + tableArray: { name: '范围', detail: '必填。 在其中查找数据的信息表。 使用对区域或区域名称的引用。 Table_array 的第一行的数值可以为文本、数字或逻辑值。 如果 range_lookup 为 TRUE,则 table_array 的第一行的数值必须按升序排列:...-2、-1、0、1、2、...、A-Z、FALSE、TRUE;否则,HLOOKUP 将不能给出正确的数值。 如果 range_lookup 为 FALSE,则 table_array 不必进行排序。 文本不区分大小写。 将数值从左到右按升序排序。 有关详细信息,请参阅 对区域或表中的数据排序 。' }, + rowIndexNum: { name: '行号', detail: '必填。 将从中返回匹配值的table_array中的行号。 row_index_num 1 返回table_array中的第一行值,row_index_num 2 返回table_array中的第二行值,依此以类。 如果row_index_num小于 1,HLOOKUP 将返回 #VALUE! error 值;如果row_index_num大于table_array上的行数,HLOOKUP 将返回 #REF! 错误值。' }, + rangeLookup: { name: '查询类型', detail: '选。 一个逻辑值,指定希望 HLOOKUP 查找精确匹配值还是近似匹配值。 如果为 TRUE 或省略,则返回近似匹配值。 换言之,如果找不到精确匹配值,则返回小于 lookup_value 的最大值。 如果为 False,则 HLOOKUP 将查找精确匹配值。 如果找不到精确匹配值,则返回错误值 #N/A。' }, }, }, HSTACK: { - description: '水平和顺序追加数组以返回较大的数组', - abstract: '水平和顺序追加数组以返回较大的数组', + description: '按顺序水平追加数组,以返回更大的数组。', + abstract: '按顺序水平追加数组,以返回更大的数组。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hstack-%E5%87%BD%E6%95%B0-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: '数组', detail: '要追加的数组。' }, - array2: { name: '数组', detail: '要追加的数组。' }, + array1: { name: '数组', detail: '每个数组参数的行计数最大值。' }, + array2: { name: '数组', detail: '每个数组参数中所有列的组合计数。' }, }, }, HYPERLINK: { - description: '在单元格内创建一个超链接', - abstract: '在单元格内创建一个超链接', + description: '在单元格内创建一个超链接。', + abstract: '在单元格内创建一个超链接。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=zh-Hans', + url: 'https://support.google.com/docs/answer/3093313?hl=zh-Hans', }, ], functionParameter: { @@ -259,7 +249,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/image-%E5%87%BD%E6%95%B0-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/image-function', }, ], functionParameter: { @@ -276,7 +266,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/index-%E5%87%BD%E6%95%B0-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/zh-cn/excel/functions/index-function', }, ], functionParameter: { @@ -292,7 +282,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/indirect-%E5%87%BD%E6%95%B0-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/zh-cn/excel/functions/indirect-function', }, ], functionParameter: { @@ -306,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lookup-%E5%87%BD%E6%95%B0-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lookup-function', }, ], functionParameter: { @@ -327,7 +317,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/match-%E5%87%BD%E6%95%B0-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/match-function', }, ], functionParameter: { @@ -342,7 +332,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/offset-%E5%87%BD%E6%95%B0-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/zh-cn/excel/functions/offset-function', }, ], functionParameter: { @@ -359,7 +349,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/row-%E5%87%BD%E6%95%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/row-function', }, ], functionParameter: { @@ -372,7 +362,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rows-%E5%87%BD%E6%95%B0-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rows-function', }, ], functionParameter: { @@ -385,12 +375,14 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rtd-%E5%87%BD%E6%95%B0-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + progId: { name: '程序标识符', detail: '本地安装的 COM 自动化加载项的程序标识符。' }, + server: { name: '服务器', detail: '运行加载项的服务器名称;本地服务器使用空字符串。' }, + topic1: { name: '主题 1', detail: '指定要检索的实时数据的第一个文本。' }, + topic2: { name: '主题 2', detail: '可选。指定实时数据的其他文本。' }, }, }, SORT: { @@ -399,7 +391,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sort-%E5%87%BD%E6%95%B0-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sort-function', }, ], functionParameter: { @@ -415,7 +407,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sortby-%E5%87%BD%E6%95%B0-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sortby-function', }, ], functionParameter: { @@ -432,7 +424,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/take-%E5%87%BD%E6%95%B0-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/zh-cn/excel/functions/take-function', }, ], functionParameter: { @@ -447,7 +439,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tocol-%E5%87%BD%E6%95%B0-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tocol-function', }, ], functionParameter: { @@ -462,7 +454,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/torow-%E5%87%BD%E6%95%B0-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/zh-cn/excel/functions/torow-function', }, ], functionParameter: { @@ -477,7 +469,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/transpose-%E5%87%BD%E6%95%B0-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/zh-cn/excel/functions/transpose-function', }, ], functionParameter: { @@ -490,7 +482,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/unique-%E5%87%BD%E6%95%B0-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/unique-function', }, ], functionParameter: { @@ -506,7 +498,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/vlookup-function', }, ], functionParameter: { @@ -534,7 +526,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/vstack-%E5%87%BD%E6%95%B0-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/vstack-function', }, ], functionParameter: { @@ -548,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/wrapcols-%E5%87%BD%E6%95%B0-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -563,7 +555,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/wraprows-%E5%87%BD%E6%95%B0-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/zh-cn/excel/functions/wraprows-function', }, ], functionParameter: { @@ -579,7 +571,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/xlookup-%E5%87%BD%E6%95%B0-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/zh-cn/excel/functions/xlookup-function', }, ], functionParameter: { @@ -609,7 +601,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/xmatch-%E5%87%BD%E6%95%B0-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/zh-cn/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/lookup/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/lookup/zh-TW.ts index 34d093eebe..b81b136833 100644 --- a/packages/sheets-formula/src/locale/function-list/lookup/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/lookup/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/address-%E5%87%BD%E6%95%B0-d0c26c0d-3991-446b-8de4-ab46431d4f89', + url: 'https://support.microsoft.com/zh-tw/excel/functions/address-function', }, ], functionParameter: { @@ -46,7 +46,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/areas-%E5%87%BD%E6%95%B0-8392ba32-7a41-43b3-96b0-3695d2ec6152', + url: 'https://support.microsoft.com/zh-tw/excel/functions/areas-function', }, ], functionParameter: { @@ -59,7 +59,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/choose-%E5%87%BD%E6%95%B0-fc5c184f-cb62-4ec7-a46e-38653b98f5bc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/choose-function', }, ], functionParameter: { @@ -74,7 +74,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/choosecols-%E5%87%BD%E6%95%B0-bf117976-2722-4466-9b9a-1c01ed9aebff', + url: 'https://support.microsoft.com/zh-tw/excel/functions/choosecols-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chooserows-%E5%87%BD%E6%95%B0-51ace882-9bab-4a44-9625-7274ef7507a3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chooserows-function', }, ], functionParameter: { @@ -104,7 +104,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/column-%E5%87%BD%E6%95%B0-44e8c754-711c-4df3-9da4-47a55042554b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/column-function', }, ], functionParameter: { @@ -117,7 +117,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/columns-%E5%87%BD%E6%95%B0-4e8e7b4e-e603-43e8-b177-956088fa48ca', + url: 'https://support.microsoft.com/zh-tw/excel/functions/columns-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/drop-%E5%87%BD%E6%95%B0-1cb4e151-9e17-4838-abe5-9ba48d8c6a34', + url: 'https://support.microsoft.com/zh-tw/excel/functions/drop-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/expand-%E5%87%BD%E6%95%B0-7433fba5-4ad1-41da-a904-d5d95808bc38', + url: 'https://support.microsoft.com/zh-tw/excel/functions/expand-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/filter-%E5%87%BD%E6%95%B0-f4f7cb66-82eb-4767-8f7c-4877ad80c759', + url: 'https://support.microsoft.com/zh-tw/excel/functions/filter-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/formulatext-%E5%87%BD%E6%95%B0-0a786771-54fd-4ae2-96ee-09cda35439c8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/formulatext-function', }, ], functionParameter: { @@ -184,17 +184,19 @@ const locale: typeof enUS = { }, }, GETPIVOTDATA: { - description: '傳回儲存在資料透視表中的資料', - abstract: '傳回儲存在資料透視表中的資料', + description: 'GETPIVOTDATA 函數會傳回樞紐分析表中的可見資料。', + abstract: 'GETPIVOTDATA 函數會傳回樞紐分析表中的可見資料。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/getpivotdata-%E5%87%BD%E6%95%B0-8c083b99-a922-4ca0-af5e-3af55960761f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/getpivotdata-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + dataField: { name: 'dataField', detail: '樞紐分析表欄位名稱,該欄位包含您要擷取的資料。 這必須以引號括住。 範例: =GETPIVOTDATA (「銷售」,A3) 。 這裡,「銷售」是我們想要取得的價值欄位。 由於未指定其他欄位,GETPIVOTDATA 會回傳總銷售金額。' }, + pivotTable: { name: 'pivotTable', detail: '這是樞紐分析表中之任何儲存格、儲存格範圍或已命名儲存格範圍的參照。 此資訊是用來判斷哪個樞紐分析表含有所要擷取的資料。 範例: =GETPIVOTDATA (「銷售」,A3) 。 這裡,A3 是樞紐分析表內的參考,並告訴公式該使用哪個樞紐分析表。' }, + field1: { name: 'field1', detail: '這是 1 至 126 對的欄位名稱和項目名稱,用以描述所要擷取的資料。 這些配對組合可以依任意次序排列。 欄位名稱以及非日期和數字的項目名稱都必須以引號括住。 範例: =GETPIVOTDATA (「銷售」、A3、「月份」、「三月」) 。 這裡,「月份」是欄位,「Mar」是項目。 若要指定欄位中的多個項目,請將它們包圍在捲括 (例如:{“Mar”, “Apr”}) 。 若是 OLAP 樞紐分析表 ,項目可以包含維度的來源名稱,也可以包含項目的來源名稱。 OLAP 樞紐分析表的欄位和項目配對看起來可能像這樣: "[產品]","[產品].[所有產品].[食物].[烘培食物]"' }, + item1: { name: 'item1', detail: '這是 1 至 126 對的欄位名稱和項目名稱,用以描述所要擷取的資料。 這些配對組合可以依任意次序排列。 欄位名稱以及非日期和數字的項目名稱都必須以引號括住。 範例: =GETPIVOTDATA (「銷售」、A3、「月份」、「三月」) 。 這裡,「月份」是欄位,「Mar」是項目。 若要指定欄位中的多個項目,請將它們包圍在捲括 (例如:{“Mar”, “Apr”}) 。 若是 OLAP 樞紐分析表 ,項目可以包含維度的來源名稱,也可以包含項目的來源名稱。 OLAP 樞紐分析表的欄位和項目配對看起來可能像這樣: "[產品]","[產品].[所有產品].[食物].[烘培食物]"' }, }, }, HLOOKUP: { @@ -203,7 +205,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hlookup-%E5%87%BD%E6%95%B0-a3034eec-b719-4ba3-bb65-e1ad662ed95f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hlookup-function', }, ], functionParameter: { @@ -226,26 +228,26 @@ const locale: typeof enUS = { }, }, HSTACK: { - description: '水平和順序追加數組以傳回較大的陣列', - abstract: '水平和順序追加數組以傳回較大的陣列', + description: '水平並按順序附加陣列,以傳回較大的陣列。', + abstract: '水平並按順序附加陣列,以傳回較大的陣列。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hstack-%E5%87%BD%E6%95%B0-98c4ab76-10fe-4b4f-8d5f-af1c125fe8c2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hstack-function', }, ], functionParameter: { - array1: { name: '陣列', detail: '要附加的陣列。' }, - array2: { name: '陣列', detail: '要附加的陣列。' }, + array1: { name: '陣列', detail: '每個陣列參數的列數最大值。' }, + array2: { name: '陣列', detail: '每個陣列參數中所有欄位的總和。' }, }, }, HYPERLINK: { - description: '在儲存格內建立超連結', - abstract: '在儲存格內建立超連結', + description: '在儲存格內建立超連結。', + abstract: '在儲存格內建立超連結。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3093313?sjid=14131674310032162335-NC&hl=zh-Hant', + url: 'https://support.google.com/docs/answer/3093313?hl=zh-Hant', }, ], functionParameter: { @@ -259,7 +261,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/image-%E5%87%BD%E6%95%B0-7e112975-5e52-4f2a-b9da-1d913d51f5d5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/image-function', }, ], functionParameter: { @@ -276,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/index-%E5%87%BD%E6%95%B0-a5dcf0dd-996d-40a4-a822-b56b061328bd', + url: 'https://support.microsoft.com/zh-tw/excel/functions/index-function', }, ], functionParameter: { @@ -292,7 +294,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/indirect-%E5%87%BD%E6%95%B0-474b3a3a-8a26-4f44-b491-92b6306fa261', + url: 'https://support.microsoft.com/zh-tw/excel/functions/indirect-function', }, ], functionParameter: { @@ -306,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lookup-%E5%87%BD%E6%95%B0-446d94af-663b-451d-8251-369d5e3864cb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lookup-function', }, ], functionParameter: { @@ -327,7 +329,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/match-%E5%87%BD%E6%95%B0-e8dffd45-c762-47d6-bf89-533f4a37673a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/match-function', }, ], functionParameter: { @@ -342,7 +344,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/offset-%E5%87%BD%E6%95%B0-c8de19ae-dd79-4b9b-a14e-b4d906d11b66', + url: 'https://support.microsoft.com/zh-tw/excel/functions/offset-function', }, ], functionParameter: { @@ -359,7 +361,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/row-%E5%87%BD%E6%95%B0-3a63b74a-c4d0-4093-b49a-e76eb49a6d8d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/row-function', }, ], functionParameter: { @@ -372,7 +374,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rows-%E5%87%BD%E6%95%B0-b592593e-3fc2-47f2-bec1-bda493811597', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rows-function', }, ], functionParameter: { @@ -385,12 +387,14 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rtd-%E5%87%BD%E6%95%B0-e0cc001a-56f0-470a-9b19-9455dc0eb593', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rtd-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + progId: { name: '程式識別碼', detail: '本機安裝之 COM 自動化增益集的程式識別碼。' }, + server: { name: '伺服器', detail: '執行增益集的伺服器名稱;本機伺服器請使用空字串。' }, + topic1: { name: '主題 1', detail: '指定要擷取之即時資料的第一個文字。' }, + topic2: { name: '主題 2', detail: '選用。指定即時資料的其他文字。' }, }, }, SORT: { @@ -399,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sort-%E5%87%BD%E6%95%B0-22f63bd0-ccc8-492f-953d-c20e8e44b86c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sort-function', }, ], functionParameter: { @@ -415,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sortby-%E5%87%BD%E6%95%B0-cd2d7a62-1b93-435c-b561-d6a35134f28f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sortby-function', }, ], functionParameter: { @@ -432,7 +436,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/take-%E5%87%BD%E6%95%B0-25382ff1-5da1-4f78-ab43-f33bd2e4e003', + url: 'https://support.microsoft.com/zh-tw/excel/functions/take-function', }, ], functionParameter: { @@ -447,7 +451,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tocol-%E5%87%BD%E6%95%B0-22839d9b-0b55-4fc1-b4e6-2761f8f122ed', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tocol-function', }, ], functionParameter: { @@ -462,7 +466,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/torow-%E5%87%BD%E6%95%B0-b90d0964-a7d9-44b7-816b-ffa5c2fe2289', + url: 'https://support.microsoft.com/zh-tw/excel/functions/torow-function', }, ], functionParameter: { @@ -477,7 +481,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/transpose-%E5%87%BD%E6%95%B0-ed039415-ed8a-4a81-93e9-4b6dfac76027', + url: 'https://support.microsoft.com/zh-tw/excel/functions/transpose-function', }, ], functionParameter: { @@ -490,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/unique-%E5%87%BD%E6%95%B0-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/unique-function', }, ], functionParameter: { @@ -506,7 +510,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/vlookup-function', }, ], functionParameter: { @@ -534,7 +538,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/vstack-%E5%87%BD%E6%95%B0-a4b86897-be0f-48fc-adca-fcc10d795a9c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/vstack-function', }, ], functionParameter: { @@ -548,7 +552,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/wrapcols-%E5%87%BD%E6%95%B0-d038b05a-57b7-4ee0-be94-ded0792511e2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/wrapcols-function', }, ], functionParameter: { @@ -563,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/wraprows-%E5%87%BD%E6%95%B0-796825f3-975a-4cee-9c84-1bbddf60ade0', + url: 'https://support.microsoft.com/zh-tw/excel/functions/wraprows-function', }, ], functionParameter: { @@ -579,7 +583,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/xlookup-%E5%87%BD%E6%95%B0-b7fd680e-6d10-43e6-84f9-88eae8bf5929', + url: 'https://support.microsoft.com/zh-tw/excel/functions/xlookup-function', }, ], functionParameter: { @@ -609,7 +613,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/xmatch-%E5%87%BD%E6%95%B0-d966da31-7a6b-4a13-a1c6-5a33ed6a0312', + url: 'https://support.microsoft.com/zh-tw/excel/functions/xmatch-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/math/ar-SA.ts new file mode 100644 index 0000000000..377e5b157a --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/ar-SA.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'تُرجع القيمة المطلقة لرقم. والقيمة المطلقة لرقم هي الرقم بدون العلامة الخاصة به.', + abstract: 'تُرجع القيمة المطلقة لرقم. والقيمة المطلقة لرقم هي الرقم بدون العلامة الخاصة به.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي الرقم الحقيقي الذي تريد قيمته المطلقة.' }, + }, + }, + ACOS: { + description: 'تُرجع قوس جيب التمام أو جيب التمام العكسي لرقم. إن قوس جيب التمام هو زاوية جيب تمامها عبارة عن رقم . ويتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من 0 (صفر) إلى باي.', + abstract: 'تُرجع قوس جيب التمام أو جيب التمام العكسي لرقم. إن قوس جيب التمام هو زاوية جيب تمامها عبارة عن رقم . ويتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من 0 (صفر) إلى باي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي جيب تمام الزاوية الذي تريده ويجب أن يكون من 1- إلى 1.' }, + }, + }, + ACOSH: { + description: 'تُرجع جيب التمام العكسي للقطع الزائد لأحد الأرقام. يجب أن يكون الرقم أكبر من أو يساوي 1. ويعد جيب التمام العكسي للقطع الزائد عبارة عن القيمة التي يكون جيب تمام القطع الزائد الخاص بها عبارة عن رقم ، بحيث تساوي ACOSH(COSH(number))‎ رقماً .', + abstract: 'تُرجع جيب التمام العكسي للقطع الزائد لأحد الأرقام. يجب أن يكون الرقم أكبر من أو يساوي 1. ويعد جيب التمام العكسي للقطع الزائد عبارة عن القيمة التي يكون جيب تمام القطع الزائد الخاص بها عبارة عن رقم ، بحيث تساوي ACOSH(COSH(number))‎ رقماً .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي أي رقم حقيقي يساوي أو أكبر من 1.' }, + }, + }, + ACOT: { + description: 'تُرجع هذه الدالة القيمة الأساسية لقوس ظل تمام الزاوية أو ظل التمام العكسي لرقم.', + abstract: 'تُرجع هذه الدالة القيمة الأساسية لقوس ظل تمام الزاوية أو ظل التمام العكسي لرقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم هو ظل الزاوية التي تريدها. يجب أن يكون هذا رقما حقيقيا.' }, + }, + }, + ACOTH: { + description: 'تُرجع ظل التمام الزائدي العكسي لرقم.', + abstract: 'تُرجع ظل التمام الزائدي العكسي لرقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'يجب أن تكون القيمة المطلقة للعدد Number أكبر من 1.' }, + }, + }, + AGGREGATE: { + description: 'تُرجع هذه الدالة مجموعاً في قائمة أو قاعدة بيانات. يمكن أن تقوم الدالة AGGREGATE بتطبيق دالات تجميعية مختلفة على قائمة أو قاعدة بيانات مع توفير خيار تجاهل الصفوف المخفية وقيم الخطأ.', + abstract: 'تُرجع هذه الدالة مجموعاً في قائمة أو قاعدة بيانات. يمكن أن تقوم الدالة AGGREGATE بتطبيق دالات تجميعية مختلفة على قائمة أو قاعدة بيانات مع توفير خيار تجاهل الصفوف المخفية وقيم الخطأ.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'مطلوب. رقم من 1 إلى 19 يحدد الدالة المراد استخدامها.' }, + options: { name: 'options', detail: 'مطلوب. قيمة رقمية تحدد القيم المُراد تجاهلها في نطاق التقييم للدالة. ملاحظة لن تتجاهل الدالة الصفوف المخفية أو الإجماليات الفرعية المتداخلة أو التجميعات المتداخلة إذا كانت وسيطة الصفيف تتضمن عملية حسابية، على سبيل المثال: =AGGREGATE(14,3,A1:A100*(A1:A100>0),1)' }, + ref1: { name: 'ref1', detail: 'مطلوب. وهي الوسيطة الرقمية الأولى للدالات التي تضم وسيطات رقمية متعددة تريد القيمة التجميعية لها.' }, + ref2: { name: 'ref2', detail: 'الاختياري. وهي الوسيطات الرقمية من 2 حتى 253 التي تريد القيمة التجميعية لها. بالنسبة إلى الدالات التي تضم صفيفاً، تكون ref1 عبارة عن صفيف أو صيغة صفيف أو مرجع لنطاق من الخلايا التي تريد القيمة التجميعية لها. وتعتبر Ref2 وسيطة ثانية مطلوبة لدالات معينة. تتطلب الدالات التالية الوسيطة ref2:' }, + }, + }, + ARABIC: { + description: 'تحويل رقم روماني إلى رقم عربي.', + abstract: 'تحويل رقم روماني إلى رقم عربي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. سلسلة محاطة بعلامات اقتباس أو سلسلة فارغة ("") أو مرجع إلى خلية تحتوي على نص.' }, + }, + }, + ASIN: { + description: 'تُرجع قوس جيب الزاوية أو الجيب العكسي لأحد الأرقام. إن قوس الجيب هو الزاوية التي يكون الجيب الخاص بها عبارة عن رقم . يتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من -pi/2 إلى pi/2.', + abstract: 'تُرجع قوس جيب الزاوية أو الجيب العكسي لأحد الأرقام. إن قوس الجيب هو الزاوية التي يكون الجيب الخاص بها عبارة عن رقم . يتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من -pi/2 إلى pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي جيب الزاوية الذي تريده ويجب أن يتراوح بين 1- و1.' }, + }, + }, + ASINH: { + description: 'تُرجع جيب الزاوية العكسي للقطع الزائد لأحد الأرقام. إن جيب الزاوية العكسي للقطع الزائد هو القيمة التي يكون جيب زاوية القطع الزائد الخاص بها عبارة عن رقم ، بحيث تساوي ASINH(SINH(number))‎ ‏ رقماً .', + abstract: 'تُرجع جيب الزاوية العكسي للقطع الزائد لأحد الأرقام. إن جيب الزاوية العكسي للقطع الزائد هو القيمة التي يكون جيب زاوية القطع الزائد الخاص بها عبارة عن رقم ، بحيث تساوي ASINH(SINH(number))‎ ‏ رقماً .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي.' }, + }, + }, + ATAN: { + description: 'تُرجع قوس ظل الزاوية أو المماس المعكوس لأحد الأرقام. إن قوس ظل الزاوية هو الزاوية التي يكون المماس الخاص بها عبارة عن رقم . ويتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من -pi/2 إلى pi/2.', + abstract: 'تُرجع قوس ظل الزاوية أو المماس المعكوس لأحد الأرقام. إن قوس ظل الزاوية هو الزاوية التي يكون المماس الخاص بها عبارة عن رقم . ويتم تعيين الزاوية التي يتم إرجاعها بالتقدير الدائري في النطاق من -pi/2 إلى pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. مماس الزاوية التي تريدها.' }, + }, + }, + ATAN2: { + description: 'تُرجع قوس ظل الزاوية أو المماس المعكوس للإحداثيين المحددين س وص. إن قوس ظل الزاوية هو الزاوية من المحور "س" إلى خط يحتوي على نقطة الأصل (0، 0) والنقطة ذات الإحداثيين (x_num وy_num). يتم تعيين الزاوية بالتقدير الدائري بين -pi وpi، مع استثناء -pi.', + abstract: 'تُرجع قوس ظل الزاوية أو المماس المعكوس للإحداثيين المحددين س وص. إن قوس ظل الزاوية هو الزاوية من المحور "س" إلى خط يحتوي على نقطة الأصل (0، 0) والنقطة ذات الإحداثيين (x_num وy_num). يتم تعيين الزاوية بالتقدير الدائري بين -pi وpi، مع استثناء -pi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'مطلوب. وهي الإحداثي س للنقطة.' }, + yNum: { name: 'y_num', detail: 'مطلوب. وهي الإحداثي ص للنقطة.' }, + }, + }, + ATANH: { + description: 'تُرجع الظل العكسي لقطع زائد لأحد الأرقام. يجب أن يكون الرقم بين -1 و1 (باستثناء -1 و1). إن الظل العكسي للقطع الزائد هو القيمة التي يكون ظل الزاوية للقطع الزائد الخاص بها عبارة عن رقم ، وبذلك فإن ATANH(TANH(number))‎ تساوي رقماً .', + abstract: 'تُرجع الظل العكسي لقطع زائد لأحد الأرقام. يجب أن يكون الرقم بين -1 و1 (باستثناء -1 و1). إن الظل العكسي للقطع الزائد هو القيمة التي يكون ظل الزاوية للقطع الزائد الخاص بها عبارة عن رقم ، وبذلك فإن ATANH(TANH(number))‎ تساوي رقماً .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي بين 1 و-1.' }, + }, + }, + BASE: { + description: 'تحوّل رقماً إلى تمثيل نصي باستخدام الجذر (الأساس).', + abstract: 'تحوّل رقماً إلى تمثيل نصي باستخدام الجذر (الأساس).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد تحويله. يجب أن يكون عددا صحيحا أكبر من أو يساوي 0 وأقل من 2^53.' }, + radix: { name: 'radix', detail: 'مطلوب. radix الأساسي الذي تريد تحويل الرقم إليه. يجب أن يكون عددا صحيحا أكبر من أو يساوي 2 وأقل من أو يساوي 36.' }, + minLength: { name: 'min_length', detail: 'الاختياري. الحد الأدنى لطول السلسلة التي تم إرجاعها. يجب أن يكون عددا صحيحا أكبر من أو يساوي 0.' }, + }, + }, + CEILING: { + description: 'تُرجع رقماً تم تقريبه للأعلى، بعيداً عن الصفر، إلى أقرب مضاعف للوسيطة significance. على سبيل المثال، إذا كنت تريد تجنب استخدام السنت في الأسعار وكان سعر المنتج 4,42 ر.س.، فاستخدم الصيغة ‎=CEILING(4,42,0,05)‎ لتقريب السعر للأعلى إلى أقرب مبلغ صحيح.', + abstract: 'تُرجع رقماً تم تقريبه للأعلى، بعيداً عن الصفر، إلى أقرب مضاعف للوسيطة significance. على سبيل المثال، إذا كنت تريد تجنب استخدام السنت في الأسعار وكان سعر المنتج 4,42 ر.س.، فاستخدم الصيغة ‎=CEILING(4,42,0,05)‎ لتقريب السعر للأعلى إلى أقرب مبلغ صحيح.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي القيمة التي تريد تقريبها.' }, + significance: { name: 'significance', detail: 'مطلوب. وهي المضاعف الذي تريد التقريب إليه.' }, + }, + }, + CEILING_MATH: { + description: 'السقف. تقوم الدالة MATH بتقريب رقم إلى الأعلى إلى أقرب عدد صحيح أو اختياريا إلى أقرب مضاعف ذي أهمية.', + abstract: 'السقف. تقوم الدالة MATH بتقريب رقم إلى الأعلى إلى أقرب عدد صحيح أو اختياريا إلى أقرب مضاعف ذي أهمية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوب. (يجب أن يكون بين -2.229E-308.و9.99E+307.)' }, + significance: { name: 'significance', detail: 'الاختياري. هذا هو عدد الأرقام الهامة بعد الفاصلة العشرية التي سيتم تقريب الرقم إليها.' }, + mode: { name: 'mode', detail: 'الاختياري. يتحكم هذا في ما إذا كان يتم تقريب الأرقام السالبة نحو الصفر أو بعيدا عنه.' }, + }, + }, + CEILING_PRECISE: { + description: 'إرجاع رقم تم تقريبه إلى الأعلى إلى أقرب رقم صحيح أو إلى أقرب مضاعف من مضاعفات significance. ويتم تقريب الرقم إلى الأعلى بغض النظر عن علامته. ولكن إذا كانت قيمة الوسيطة Number أو significance عبارة عن صفر، فيتم إرجاع الصفر.', + abstract: 'إرجاع رقم تم تقريبه إلى الأعلى إلى أقرب رقم صحيح أو إلى أقرب مضاعف من مضاعفات significance. ويتم تقريب الرقم إلى الأعلى بغض النظر عن علامته. ولكن إذا كانت قيمة الوسيطة Number أو significance عبارة عن صفر، فيتم إرجاع الصفر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي القيمة المراد تقريبها.' }, + significance: { name: 'significance', detail: 'الاختياري. وهي المضاعف المراد تقريب الرقم إليه. إذا تم حذف الوسيطة significance، فتكون قيمتها الافتراضية 1.' }, + }, + }, + COMBIN: { + description: 'تُرجع عدد التوافقيات لعدد معين من العناصر. استخدم COMBIN لتحديد إجمالي عدد المجموعات المحتملة لعدد معين من العناصر.', + abstract: 'تُرجع عدد التوافقيات لعدد معين من العناصر. استخدم COMBIN لتحديد إجمالي عدد المجموعات المحتملة لعدد معين من العناصر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي عدد العناصر.' }, + numberChosen: { name: 'number_chosen', detail: 'مطلوب. وهي عدد العناصر الموجودة في كل توافقية.' }, + }, + }, + COMBINA: { + description: 'تُرجع هذه الدالة عدد التركيبات (مع التكرارات) لعدد معين من العناصر.', + abstract: 'تُرجع هذه الدالة عدد التركيبات (مع التكرارات) لعدد معين من العناصر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. يجب أن يكون أكبر من أو يساوي 0، وأكبر من أو يساوي Number_chosen. يتم اقتطاع القيم غير الصحيحة.' }, + numberChosen: { name: 'number_chosen', detail: 'مطلوب. يجب أن يكون أكبر من أو يساوي 0. يتم اقتطاع القيم غير الصحيحة.' }, + }, + }, + COS: { + description: 'إرجاع جيب تمام الزاوية المحددة.', + abstract: 'إرجاع جيب تمام الزاوية المحددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي الزاوية بالتقدير الدائري التي تريد معرفة جيب التمام الخاص بها.' }, + }, + }, + COSH: { + description: 'إرجاع جيب تمام القطع الزائد لأحد الأرقام.', + abstract: 'إرجاع جيب تمام القطع الزائد لأحد الأرقام.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي أي رقم حقيقي تريد العثور على جيب تمام القطع الزائد الخاص به.' }, + }, + }, + COT: { + description: 'إرجاع ظل التمام لزاوية محددة بالتقدير الدائري.', + abstract: 'إرجاع ظل التمام لزاوية محددة بالتقدير الدائري.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الزاوية بالتقدير الدائري التي تريد التمام لها.' }, + }, + }, + COTH: { + description: 'إرجاع التمام الزائدي لزاوية تشعبية.', + abstract: 'إرجاع التمام الزائدي لزاوية تشعبية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة.' }, + }, + }, + CSC: { + description: 'إرجاع قاطع تمام الزاوية المحددة بالتقدير الدائري.', + abstract: 'إرجاع قاطع تمام الزاوية المحددة بالتقدير الدائري.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة.' }, + }, + }, + CSCH: { + description: 'إرجاع قاطع التمام الزائدي للزاوية المحددة بالتقدير الدائري.', + abstract: 'إرجاع قاطع التمام الزائدي للزاوية المحددة بالتقدير الدائري.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة.' }, + }, + }, + DECIMAL: { + description: 'تحول التمثيل النصي لرقم في أساس معين إلى رقم عشري.', + abstract: 'تحول التمثيل النصي لرقم في أساس معين إلى رقم عشري.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة.' }, + radix: { name: 'radix', detail: 'مطلوب. يجب أن تكون قيمة الوسيطة Radix عدد صحيح.' }, + }, + }, + DEGREES: { + description: 'تحويل التقدير الدائري إلى درجات.', + abstract: 'تحويل التقدير الدائري إلى درجات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'مطلوب. الزاوية بالتقدير الدائري التي تريد تحويلها.' }, + }, + }, + EVEN: { + description: 'تُرجع رقماً تم تقريبه للأعلى إلى أقرب رقم صحيح زوجي. يمكنك استخدام هذه الدالة لمعالجة السلع الزوجية. على سبيل المثال، يتّسع صندوق سلع لصفوف من سلعة واحدة أو سلعتين. ويمتلئ الصندوق عندما يتوافق عدد السلع، بعد تقريبه للأعلى إلى أقرب عدد زوجي، مع سعة الصندوق.', + abstract: 'تُرجع رقماً تم تقريبه للأعلى إلى أقرب رقم صحيح زوجي. يمكنك استخدام هذه الدالة لمعالجة السلع الزوجية. على سبيل المثال، يتّسع صندوق سلع لصفوف من سلعة واحدة أو سلعتين. ويمتلئ الصندوق عندما يتوافق عدد السلع، بعد تقريبه للأعلى إلى أقرب عدد زوجي، مع سعة الصندوق.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. القيمة التي يجب تقريبها.' }, + }, + }, + EXP: { + description: 'تُرجع هذه الدالة e مرفوعة إلى أس. يساوي الثابت e القيمة 2,71828182845904، أساس اللوغاريتم الطبيعي.', + abstract: 'تُرجع هذه الدالة e مرفوعة إلى أس. يساوي الثابت e القيمة 2,71828182845904، أساس اللوغاريتم الطبيعي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الأس المُطبّق على الأساس e.' }, + }, + }, + FACT: { + description: 'تُرجع عامل الضرب لرقم. يساوي عامل الضرب لرقمٍ ما 1*2*3*...* الرقم.', + abstract: 'تُرجع عامل الضرب لرقم. يساوي عامل الضرب لرقمٍ ما 1*2*3*...* الرقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم غير السالب الذي تريد الحصول على عامل الضرب الخاص به. إذا لم يكن الرقم عبارة عن عدد صحيح، فسيتم اقتطاعه.' }, + }, + }, + FACTDOUBLE: { + description: 'تُرجع العامل المزدوج لرقم.', + abstract: 'تُرجع العامل المزدوج لرقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. القيمة التي تريد إرجاع العامل المزدوج لها. إذا لم يكن الرقم عبارة عن عدد صحيح، فيتم اقتطاعه.' }, + }, + }, + FLOOR: { + description: 'تقوم الدالة FLOOR في Excel بتقريب رقم محدد لأسفل إلى أقرب مضاعف محدد للأهمية. يتم تقريب الأرقام السالبة لأسفل (سالبة أخرى) إلى أقرب مضاعف كامل أقل من الصفر.', + abstract: 'تقوم الدالة FLOOR في Excel بتقريب رقم محدد لأسفل إلى أقرب مضاعف محدد للأهمية. يتم تقريب الأرقام السالبة لأسفل (سالبة أخرى) إلى أقرب مضاعف كامل أقل من الصفر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. تمثل القيمة الرقمية التي تريد تقريبها.' }, + significance: { name: 'significance', detail: 'مطلوب. وهي المضاعف الذي تريد التقريب إليه.' }, + }, + }, + FLOOR_MATH: { + description: 'تقرّب هذه الدالة رقماً إلى الأدنى وصولاً إلى أقرب عدد صحيح أو إلى أقرب مضاعف ذي أهمية.', + abstract: 'تقرّب هذه الدالة رقماً إلى الأدنى وصولاً إلى أقرب عدد صحيح أو إلى أقرب مضاعف ذي أهمية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم المطلوب تقريبه لأسفل.' }, + significance: { name: 'significance', detail: 'الاختياري. وهي المضاعف الذي تريد التقريب إليه.' }, + mode: { name: 'mode', detail: 'الاختياري. الاتجاه (نحو أو بعيدا عن 0) لتقريب الأرقام السالبة.' }, + }, + }, + FLOOR_PRECISE: { + description: 'تُرجع رقماً تم تقريبه إلى الأدنى إلى أقرب عدد صحيح أو إلى أقرب مضاعف لقيمة الوسيطة significance. ويتم تقريب الرقم إلى الأدنى بغض النظر عن علامته. ولكن إذا كانت الوسيطة number أو significance عبارة عن صفر، فسيتم إرجاع الصفر.', + abstract: 'تُرجع رقماً تم تقريبه إلى الأدنى إلى أقرب عدد صحيح أو إلى أقرب مضاعف لقيمة الوسيطة significance. ويتم تقريب الرقم إلى الأدنى بغض النظر عن علامته. ولكن إذا كانت الوسيطة number أو significance عبارة عن صفر، فسيتم إرجاع الصفر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي القيمة المراد تقريبها.' }, + significance: { name: 'significance', detail: 'الاختياري. وهي المضاعف المراد تقريب الرقم إليه. إذا تم حذف الوسيطة significance، فتكون قيمتها الافتراضية 1.' }, + }, + }, + GCD: { + description: 'تُرجع عامل القسمة المشترك الأكبر لعددين صحيحين أو أكثر. إن عامل القسمة المشترك الأكبر هو العدد الصحيح الأكبر الذي يقسم number1 وnumber2 بدون قيمة باقية.', + abstract: 'تُرجع عامل القسمة المشترك الأكبر لعددين صحيحين أو أكثر. إن عامل القسمة المشترك الأكبر هو العدد الصحيح الأكبر الذي يقسم number1 وnumber2 بدون قيمة باقية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. تتوفر القيم من 1 إلى 255. إذا لم تكن إحدى القيم عبارة عن عدد صحيح، فيتم اقتطاعها.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. تتوفر القيم من 1 إلى 255. إذا لم تكن إحدى القيم عبارة عن عدد صحيح، فيتم اقتطاعها.' }, + }, + }, + INT: { + description: 'تقريب رقم إلى أقرب عدد صحيح أصغر منه.', + abstract: 'تقريب رقم إلى أقرب عدد صحيح أصغر منه.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. العدد الحقيقي الذي تريد تقريبه إلى عدد صحيح أصغر منه.' }, + }, + }, + ISO_CEILING: { + description: 'إرجاع رقم تم تقريبه إلى الأعلى إلى أقرب رقم صحيح أو إلى أقرب مضاعف من مضاعفات significance. ويتم تقريب الرقم إلى الأعلى بغض النظر عن علامته. ولكن إذا كانت قيمة الوسيطة Number أو significance عبارة عن صفر، فيتم إرجاع الصفر.', + abstract: 'إرجاع رقم تم تقريبه إلى الأعلى إلى أقرب رقم صحيح أو إلى أقرب مضاعف من مضاعفات significance. ويتم تقريب الرقم إلى الأعلى بغض النظر عن علامته. ولكن إذا كانت قيمة الوسيطة Number أو significance عبارة عن صفر، فيتم إرجاع الصفر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي القيمة المراد تقريبها.' }, + significance: { name: 'significance', detail: 'الاختياري. وهي المضاعف المراد تقريب الرقم إليه. إذا تم حذف الوسيطة significance، فتكون قيمتها الافتراضية 1.' }, + }, + }, + LCM: { + description: 'تُرجع هذه الدالة أقل مضاعف مشترك بين الأعداد الصحيحة. إن أقل مضاعف مشترك هو أصغر الأعداد الصحيحة الموجبة وهو مضاعف كل وسيطات الأعداد الصحيحة مثل number1،‏ number2، وهكذا. استخدم الدالة LCM لإضافة كسور ذات مقامات مختلفة.', + abstract: 'تُرجع هذه الدالة أقل مضاعف مشترك بين الأعداد الصحيحة. إن أقل مضاعف مشترك هو أصغر الأعداد الصحيحة الموجبة وهو مضاعف كل وسيطات الأعداد الصحيحة مثل number1،‏ number2، وهكذا. استخدم الدالة LCM لإضافة كسور ذات مقامات مختلفة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. القيم من 1 إلى 255 التي تريد حساب أقل مضاعف مشترك لها. إذا لم تكن القيمة عبارة عن عدد صحيح، فسيتم اقتطاعها.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. القيم من 1 إلى 255 التي تريد حساب أقل مضاعف مشترك لها. إذا لم تكن القيمة عبارة عن عدد صحيح، فسيتم اقتطاعها.' }, + }, + }, + LN: { + description: 'تُرجع هذه الدالة اللوغاريتم الطبيعي لرقم. تستند اللوغاريتمات الطبيعية إلى الثابت e ‏(2,71828182845904)‎.', + abstract: 'تُرجع هذه الدالة اللوغاريتم الطبيعي لرقم. تستند اللوغاريتمات الطبيعية إلى الثابت e ‏(2,71828182845904)‎.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. رقم حقيقي موجب تريد إيجاد اللوغاريتم الطبيعي له.' }, + }, + }, + LOG: { + description: 'تُرجع هذه الدالة لوغاريتم رقم إلى الأساس الذي تحدده.', + abstract: 'تُرجع هذه الدالة لوغاريتم رقم إلى الأساس الذي تحدده.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. هو الرقم الحقيقي الموجب الذي تريد معرفة اللوغاريتم له.' }, + base: { name: 'base', detail: 'الاختياري. أساس اللوغاريتم. إذا تم حذف الوسيطة base، فسيتم افتراض أنها 10.' }, + }, + }, + LOG10: { + description: 'تُرجع هذه الدالة اللوغاريتم العشري لرقم.', + abstract: 'تُرجع هذه الدالة اللوغاريتم العشري لرقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الحقيقي الموجب الذي تريد حساب اللوغاريتم العشري له.' }, + }, + }, + MDETERM: { + description: 'تُرجع هذه الدالة محدد المصفوفة لصفيف.', + abstract: 'تُرجع هذه الدالة محدد المصفوفة لصفيف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. صفيف رقمي يحتوي على عدد متساوٍ من الصفوف والأعمدة.' }, + }, + }, + MINVERSE: { + description: 'ترجع الدالة MINVERSE المصفوفة العكسية لمصفوفة مخزنة في صفيف.', + abstract: 'ترجع الدالة MINVERSE المصفوفة العكسية لمصفوفة مخزنة في صفيف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. صفيف رقمي يحتوي على عدد متساوٍ من الصفوف والأعمدة.' }, + }, + }, + MMULT: { + description: 'ترجع الدالة MMULT منتج مصفوفة صفيفين. تكون النتيجة عبارة عن صفيف يتألف من عدد الصفوف نفسه في array1 وعدد الأعمدة نفسه في array 2.', + abstract: 'ترجع الدالة MMULT منتج مصفوفة صفيفين. تكون النتيجة عبارة عن صفيف يتألف من عدد الصفوف نفسه في array1 وعدد الأعمدة نفسه في array 2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'المصفوفتان المراد ضربهما.' }, + array2: { name: 'array2', detail: 'المصفوفتان المراد ضربهما.' }, + }, + }, + MOD: { + description: 'إرجاع الباقي بعد قسمة رقم على القاسم. ويحتوي الناتج على علامة القاسم نفسها.', + abstract: 'إرجاع الباقي بعد قسمة رقم على القاسم. ويحتوي الناتج على علامة القاسم نفسها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد إيجاد الباقي له.' }, + divisor: { name: 'divisor', detail: 'مطلوب. الرقم الذي تريد قسمة رقم ما عليه.' }, + }, + }, + MROUND: { + description: 'يعمل MROUND على إرجاع رقم مقرب إلى المضاعف المطلوب.', + abstract: 'يعمل MROUND على إرجاع رقم مقرب إلى المضاعف المطلوب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. القيمة التي يجب تقريبها.' }, + multiple: { name: 'multiple', detail: 'مطلوب. المضاعف الذي تريد تقريب الرقم إليه.' }, + }, + }, + MULTINOMIAL: { + description: 'تُرجع هذه الدالة نسبة مضروب مجموع من القيم إلى حاصل ضرب مضروباتها.', + abstract: 'تُرجع هذه الدالة نسبة مضروب مجموع من القيم إلى حاصل ضرب مضروباتها.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. القيم من 1 إلى 255 التي تريد الحصول على التسمية المتعددة لها.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. القيم من 1 إلى 255 التي تريد الحصول على التسمية المتعددة لها.' }, + }, + }, + MUNIT: { + description: 'ترجع الدالة MUNIT مصفوفة الوحدة للبعد المحدد.', + abstract: 'ترجع الدالة MUNIT مصفوفة الوحدة للبعد المحدد.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'عدد صحيح يحدد بُعد مصفوفة الوحدة التي تريد إرجاعها. ترجع الدالة مصفوفة، ويجب أن يكون البُعد أكبر من صفر.' }, + }, + }, + ODD: { + description: 'تُرجع هذه الدالة رقماً تم تقريبه إلى الأعلى وصولاً إلى أقرب عدد صحيح فردي.', + abstract: 'تُرجع هذه الدالة رقماً تم تقريبه إلى الأعلى وصولاً إلى أقرب عدد صحيح فردي.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوب. القيمة التي يجب تقريبها.' }, + }, + }, + PI: { + description: 'تُرجع هذه الدالة الرقم 3,14159265358979، وهو الثابت الرياضي pi، بدقة تصل إلى 15رقماً.', + abstract: 'تُرجع هذه الدالة الرقم 3,14159265358979، وهو الثابت الرياضي pi، بدقة تصل إلى 15رقماً.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'تُرجع هذه الدالة نتيجة رقم مرفوع إلى أس.', + abstract: 'تُرجع هذه الدالة نتيجة رقم مرفوع إلى أس.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الأساسي. ويمكن أن يكون أي رقم حقيقي.' }, + power: { name: 'power', detail: 'مطلوب. الأس الذي يُرفع الرقم الأساسي إليه.' }, + }, + }, + PRODUCT: { + description: 'تضرب الدالة PRODUCT كافة الأرقام المحددة كوسيطات وتُرجع الناتج. على سبيل المثال، إذا احتوت الخلايا A1 وA2 على أرقام، فيمكنك استخدام الصيغة =PRODUCT(A1، A2) لضرب هذين الرقمين معا. ويمكنك أيضاً إجراء العملية نفسها باستخدام العامل الرياضي الخاص بالضرب ( * )، مثلاً ‎=A1 * A2‎ .', + abstract: 'تضرب الدالة PRODUCT كافة الأرقام المحددة كوسيطات وتُرجع الناتج. على سبيل المثال، إذا احتوت الخلايا A1 وA2 على أرقام، فيمكنك استخدام الصيغة =PRODUCT(A1، A2) لضرب هذين الرقمين معا. ويمكنك أيضاً إجراء العملية نفسها باستخدام العامل الرياضي الخاص بالضرب ( * )، مثلاً ‎=A1 * A2‎ .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. الرقم أو النطاق الأول الذي تريد ضربه.' }, + number2: { name: 'number2', detail: 'الاختياري. الأرقام أو النطاقات الإضافية التي تريد ضربها، ويمكن استخدام لغاية 255 وسيطة كحد أقصى.' }, + }, + }, + QUOTIENT: { + description: 'تُرجع هذه الدالة جزء العدد الصحيح لقسمة. استخدم هذه الدالة عندما تريد إهمال باقي القسمة.', + abstract: 'تُرجع هذه الدالة جزء العدد الصحيح لقسمة. استخدم هذه الدالة عندما تريد إهمال باقي القسمة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'مطلوب. المقسوم.' }, + denominator: { name: 'denominator', detail: 'مطلوب. القاسم.' }, + }, + }, + RADIANS: { + description: 'تحوّل هذه الدالة الدرجات إلى التقدير الدائري.', + abstract: 'تحوّل هذه الدالة الدرجات إلى التقدير الدائري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'مطلوب. الزاوية بالدرجات التي تريد تحويلها.' }, + }, + }, + RAND: { + description: 'RAND إرجاع عدد حقيقي عشوائي موزع بشكل متساوٍ أكبر من أو يساوي 0 وأصغر من 1. يتم إرجاع عدد حقيقي عشوائي جديد كل مرة يتم فيها حساب ورقة العمل .', + abstract: 'RAND إرجاع عدد حقيقي عشوائي موزع بشكل متساوٍ أكبر من أو يساوي 0 وأصغر من 1. يتم إرجاع عدد حقيقي عشوائي جديد كل مرة يتم فيها حساب ورقة العمل .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'في المثال الآتي، أنشأنا صفيفًا بطول 5 صفوف وعرض 3 أعمدة. يُرجع الأول مجموعة عشوائية من القيم بين 0 و1، وذلك هو السلوك الافتراضي للدالة RANDARRAY. ويُرجع الثاني سلسلة من القيم العشرية العشوائية بين 1 و100. وأخيراً، يُرجع المثال الثالث سلسلة من الأعداد الصحيحة بين 1 و100.', + abstract: 'في المثال الآتي، أنشأنا صفيفًا بطول 5 صفوف وعرض 3 أعمدة. يُرجع الأول مجموعة عشوائية من القيم بين 0 و1، وذلك هو السلوك الافتراضي للدالة RANDARRAY. ويُرجع الثاني سلسلة من القيم العشرية العشوائية بين 1 و100. وأخيراً، يُرجع المثال الثالث سلسلة من الأعداد الصحيحة بين 1 و100.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'عدد الصفوف التي سيتم إرجاعها' }, + columns: { name: 'columns', detail: 'عدد الأعمدة المراد إرجاعها' }, + min: { name: 'min', detail: 'أدنى عدد تريد إرجاعه' }, + max: { name: 'max', detail: 'أقصى عدد تريد إرجاعه' }, + wholeNumber: { name: 'whole_number', detail: 'إرجاع عدد صحيح أو قيمة عشرية TRUE لعدد صحيح FALSE لرقم عشري' }, + }, + }, + RANDBETWEEN: { + description: 'تُرجع هذه الدالة عدداً صحيحاً عشوائياً بين الأرقام التي تحددها. يتم إرجاع عدد صحيح عشوائي جديد في كل مرة يتم فيها حساب ورقة العمل.', + abstract: 'تُرجع هذه الدالة عدداً صحيحاً عشوائياً بين الأرقام التي تحددها. يتم إرجاع عدد صحيح عشوائي جديد في كل مرة يتم فيها حساب ورقة العمل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'مطلوب. أصغر عدد صحيح تُرجعه الدالة RANDBETWEEN.' }, + top: { name: 'top', detail: 'مطلوب. أكبر عدد صحيح تُرجعه الدالة RANDBETWEEN.' }, + }, + }, + ROMAN: { + description: 'تحوّل هذه الدالة أرقاماً عربية إلى أرقام رومانية كنص.', + abstract: 'تحوّل هذه الدالة أرقاماً عربية إلى أرقام رومانية كنص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم العربي الذي تريد تحويله.' }, + form: { name: 'form', detail: 'الاختياري. رقم يحدد نوع الرقم الروماني الذي تريده. يتراوح نمط الرقم الروماني من "كلاسيكي" إلى "مبسّط"، ويكون أكثر إيجازاً كلما ارتفعت قيمة الوسيطة form. انظر المثال التالي ROMAN(499,0) أدناه.' }, + }, + }, + ROUND: { + description: 'تقرّب الدالة ROUND رقماً إلى عدد معين من الأرقام. على سبيل المثال، إذا كانت الخلية A1 تحتوي على الرقم 23.7825، وكنت تريد تقريب هذه القيمة إلى منزلتين عشريتين، فيمكنك استخدام الصيغة التالية:', + abstract: 'تقرّب الدالة ROUND رقماً إلى عدد معين من الأرقام. على سبيل المثال، إذا كانت الخلية A1 تحتوي على الرقم 23.7825، وكنت تريد تقريب هذه القيمة إلى منزلتين عشريتين، فيمكنك استخدام الصيغة التالية:', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوب. الرقم الذي تريد تقريبه.' }, + numDigits: { name: 'num_digits', detail: 'مطلوب. عدد الأرقام التي تريد تقريب الوسيطة number إليها.' }, + }, + }, + ROUNDBANK: { + description: 'تقرّب رقماً باستخدام أسلوب التقريب المصرفي.', + abstract: 'تقرّب رقماً باستخدام أسلوب التقريب المصرفي.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'الرقم الذي تريد تقريبه باستخدام التقريب المصرفي.' }, + numDigits: { name: 'num_digits', detail: 'عدد المنازل التي تريد التقريب إليها باستخدام التقريب المصرفي.' }, + }, + }, + ROUNDDOWN: { + description: 'تقرّب هذه الدالة رقماً إلى الأدنى، باتجاه الصفر.', + abstract: 'تقرّب هذه الدالة رقماً إلى الأدنى، باتجاه الصفر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي تريد تقريبه إلى الأدنى.' }, + numDigits: { name: 'num_digits', detail: 'مطلوب. عدد الأرقام التي تريد تقريب الرقم إليها.' }, + }, + }, + ROUNDUP: { + description: 'تقرّب هذه الدالة رقماً إلى الأعلى، بعيداً عن 0 (صفر).', + abstract: 'تقرّب هذه الدالة رقماً إلى الأعلى، بعيداً عن 0 (صفر).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي تريد تقريبه إلى الأعلى.' }, + numDigits: { name: 'num_digits', detail: 'مطلوب. عدد الأرقام التي تريد تقريب الرقم إليها.' }, + }, + }, + SEC: { + description: 'تُرجع هذه الدالة قاطع المنحنى لزاوية.', + abstract: 'تُرجع هذه الدالة قاطع المنحنى لزاوية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'الزاوية بالراديان التي تريد حساب قاطعها.' }, + }, + }, + SECH: { + description: 'تُرجع هذه الدالة قاطع المنحنى الزائدي لزاوية.', + abstract: 'تُرجع هذه الدالة قاطع المنحنى الزائدي لزاوية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'الزاوية بالراديان التي تريد حساب قاطعها الزائدي.' }, + }, + }, + SERIESSUM: { + description: 'يمكن مقاربة عدد من الدالات بواسطة توسيع سلسلة أس.', + abstract: 'يمكن مقاربة عدد من الدالات بواسطة توسيع سلسلة أس.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. قيمة إدخال سلسلة الأس.' }, + n: { name: 'n', detail: 'مطلوبة. الأس الأولي الذي تريد رفع x إليه.' }, + m: { name: 'm', detail: 'مطلوبة. الخطوة التي يتم اتخاذها لزيادة n لكل طرف في السلسلة.' }, + coefficients: { name: 'coefficients', detail: 'مطلوب. مجموعة من المعاملات التي يتم ضرب كل أس لاحق لـ x بها. يحدد عدد القيم في الوسيطة coefficients عدد الأطراف في سلسلة الأس. على سبيل المثال، إذا كان هناك ثلاث قيم في الوسيطة coefficients، فسيكون هناك ثلاثة أطراف في سلسلة الأس.' }, + }, + }, + SEQUENCE: { + description: 'أنشأنا في المثال التالي صفيفاً بطول 4 صفوف مضروباً في 5 أعمدة واسع مع =SEQUENCE(4,5) .', + abstract: 'أنشأنا في المثال التالي صفيفاً بطول 4 صفوف مضروباً في 5 أعمدة واسع مع =SEQUENCE(4,5) .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'عدد الصفوف التي سيتم إرجاعها' }, + columns: { name: 'columns', detail: 'عدد الأعمدة التي سيتم إرجاعها' }, + start: { name: 'start', detail: 'الرقم الأول في التسلسل' }, + step: { name: 'step', detail: 'مقدار الزيادة لكل قيمة لاحقة في الصفيف' }, + }, + }, + SIGN: { + description: 'تحدد هذه الدالة علامة الرقم. تُرجع هذه الدالة 1 إذا كان الرقم موجباً، وصفراً (0) إذا كان الرقم 0، و 1- إذا كان الرقم سالباً.', + abstract: 'تحدد هذه الدالة علامة الرقم. تُرجع هذه الدالة 1 إذا كان الرقم موجباً، وصفراً (0) إذا كان الرقم 0، و 1- إذا كان الرقم سالباً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي.' }, + }, + }, + SIN: { + description: 'تُرجع هذه الدالة جيب الزاوية المحددة.', + abstract: 'تُرجع هذه الدالة جيب الزاوية المحددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الزاوية المحسوبة بالتقدير الدائري التي تريد جيب الزاوية الخاص بها.' }, + }, + }, + SINH: { + description: 'تُرجع هذه الدالة جيب الزاوية للقطع الزائد لأحد الأرقام.', + abstract: 'تُرجع هذه الدالة جيب الزاوية للقطع الزائد لأحد الأرقام.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي.' }, + }, + }, + SQRT: { + description: 'إرجاع جذر تربيعي موجب.', + abstract: 'إرجاع جذر تربيعي موجب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد حساب جذره التربيعي.' }, + }, + }, + SQRTPI: { + description: 'إرجاع الجذر التربيعي لـ (number * pi).', + abstract: 'إرجاع الجذر التربيعي لـ (number * pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي يتم ضرب pi به.' }, + }, + }, + SUBTOTAL: { + description: 'تُرجع هذه الدالة إجمالي فرعي في قائمة أو قاعدة بيانات. بوجه عام، من السهل إنشاء قائمة تتضمّن إجماليات فرعية باستخدام الأمر إجمالي فرعي في المجموعة مخطط تفصيلي ضمن علامة التبويب بيانات . بعد إنشاء قائمة الإجماليات الفرعية، يمكنك تعديلها بتحرير الدالة SUBTOTAL.', + abstract: 'تُرجع هذه الدالة إجمالي فرعي في قائمة أو قاعدة بيانات. بوجه عام، من السهل إنشاء قائمة تتضمّن إجماليات فرعية باستخدام الأمر إجمالي فرعي في المجموعة مخطط تفصيلي ضمن علامة التبويب بيانات . بعد إنشاء قائمة الإجماليات الفرعية، يمكنك تعديلها بتحرير الدالة SUBTOTAL.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'مطلوب. وهي أحد الأرقام من 1 إلى 11 أو من 101 إلى 111 الذي يحدد الدالة المطلوب استخدامها للحصول على الإجمالي الفرعي. يقوم الرقم من 1 إلى 11 بتضمين الصفوف المخفية يدوياً، بينما يقوم الرقم من 101 إلى 111 باستبعادها؛ يتم دوماً استبعاد الخلايا المُصفاة.' }, + ref1: { name: 'ref1', detail: 'مطلوب. النطاق أو المرجع المسمى الأول الذي تريد حساب الإجمالي الفرعي له.' }, + ref2: { name: 'ref2', detail: 'الاختياري. النطاقات أو المراجع المسماة من 2 إلى 254 التي تريد حساب الإجمالي الفرعي لها.' }, + }, + }, + SUM: { + description: 'تضيف الدالة SUM قيما. يمكنك إضافة قيم فردية أو مراجع خلايا أو نطاقات أو خليط من الثلاثة.', + abstract: 'تضيف الدالة SUM قيما. يمكنك إضافة قيم فردية أو مراجع خلايا أو نطاقات أو خليط من الثلاثة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'الرقم الأول الذي تريد جمعه. يمكن أن يكون الرقم مثل 4 أو مرجع خلية مثل B6 أو نطاق خلايا مثل B2:B8.' }, + number2: { name: 'Number 2', detail: 'هذا هو الرقم الثاني الذي تريد جمعه. يمكنك تحديد ما يصل إلى 255 رقماً بهذه الطريقة.' }, + }, + }, + SUMIF: { + description: 'يمكنك استخدام الدالة SUMIF لجمع القيم في نطاق يفي بالمعايير التي تحددها. على سبيل المثال، بفرض أن عمود يتضمن أرقاماً، وتريد جمع القيم الأكبر من 5 فقط. يمكنك استخدام الصيغة التالية: =SUMIF(B2:B25,">5")', + abstract: 'يمكنك استخدام الدالة SUMIF لجمع القيم في نطاق يفي بالمعايير التي تحددها. على سبيل المثال، بفرض أن عمود يتضمن أرقاماً، وتريد جمع القيم الأكبر من 5 فقط. يمكنك استخدام الصيغة التالية: =SUMIF(B2:B25,">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'مطلوب. نطاق الخلايا التي تريد تقييمها حسب المعايير. يجب أن تكون الخلايا في كل نطاق أرقاما أو أسماء أو صفائف أو مراجع تحتوي على أرقام. ويتم تجاهل القيم الفارغة والنصية. قد يحتوي النطاق المحدد على تواريخ بتنسيق Excel القياسي (الأمثلة أدناه).' }, + criteria: { name: 'criteria', detail: 'مطلوب. المعايير الموجودة على شكل رقم أو تعبير أو مرجع خلية أو نص أو دالة تحدد الخلايا التي سيتم جمعها. يمكن تضمين أحرف البدل - علامة استفهام (؟) لمطابقة أي حرف واحد، علامة نجمية (*) لمطابقة أي تسلسل من الأحرف. إذا كنت تريد العثور على علامة استفهام أو علامة نجمية فعلية، فاكتب tilde ( ~ ) يسبق الحرف. على سبيل المثال، يمكن التعبير عن المعايير على أنها 32 أو ">32" أو B5 أو "3؟" أو "apple*" أو "*~?"" أو TODAY(). هام يجب تضمين أي معيار نصي أو أي معايير تحتوي على رموز منطقية أو رياضية بين علامتي اقتباس مزدوجتين ( " ). إذا كانت المعايير رقمية، فلا حاجة إلى وضع علامتي اقتباس مزدوجتين.' }, + sumRange: { name: 'sum_range', detail: 'الاختياري. الخلايا الفعلية المراد إضافتها، إذا كنت تريد إضافة خلايا أخرى غير تلك المحددة في وسيطة النطاق . إذا تم حذف الوسيطة sum_range ، فسيضيف Excel الخلايا المحددة في وسيطة النطاق (الخلايا نفسها التي يتم تطبيق المعايير عليها). يجب أن يكون Sum_range بنفس حجم النطاق وشكله. إذا لم يكن كذلك، فقد يعاني الأداء، وستحصل الصيغة على نطاق من الخلايا يبدأ بالخلية الأولى في sum_range ولكن له نفس أبعاد النطاق . على سبيل المثال: نطاق Sum_range الخلايا الفعلية التي تم جمعها A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'تعمل الدالة SUMIFS، وهي إحدى الدالات الرياضية والمثلثية ، على جمع كل وسيطاتها التي تفي بمعايير متعددة. على سبيل المثال، يمكنك استخدام SUMIFS لجمع عدد بائعي التجزئة في البلد الذين (1) يقيمون ضمن رمز بريدي واحد و(2) الذين تتجاوز أرباحهم قيمة الريال السعودي المحددة.', + abstract: 'تعمل الدالة SUMIFS، وهي إحدى الدالات الرياضية والمثلثية ، على جمع كل وسيطاتها التي تفي بمعايير متعددة. على سبيل المثال، يمكنك استخدام SUMIFS لجمع عدد بائعي التجزئة في البلد الذين (1) يقيمون ضمن رمز بريدي واحد و(2) الذين تتجاوز أرباحهم قيمة الريال السعودي المحددة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'نطاق الخلايا المطلوب جمعها.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'النطاق الذي يتم اختباره باستخدام Criteria1 . Criteria_range1 و Criteria1 إعداد زوج بحث حيث يتم البحث عن نطاق لمعايير محددة. بمجرد العثور على العناصر في النطاق، تتم إضافة القيم المقابلة لها في Sum_range .' }, + criteria1: { name: 'criteria1', detail: 'المعايير التي تحدد الخلايا الموجودة في Criteria_range1 التي ستتم إضافتها. على سبيل المثال، يمكن إدخال المعايير على أنها 32 أو ">32" أو B4 أو "تفاح" أو "32".' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 127 زوج من النطاقات/المعايير.' }, + criteria2: { name: 'criteria2', detail: 'النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 127 زوج من النطاقات/المعايير.' }, + }, + }, + SUMPRODUCT: { + description: 'ترجع الدالة SUMPRODUCT مجموع منتجات النطاقات أو الصفائف المقابلة. العملية الافتراضية هي الضرب، ولكن من الممكن أيضا الجمع والطرح والقسمة.', + abstract: 'ترجع الدالة SUMPRODUCT مجموع منتجات النطاقات أو الصفائف المقابلة. العملية الافتراضية هي الضرب، ولكن من الممكن أيضا الجمع والطرح والقسمة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'وسيطة الصفيف الأول التي ترغب في ضرب مكوناتها ثم جمعها.' }, + array2: { name: 'array', detail: 'وسيطات الصفيف من 2 إلى 255 التي ترغب في ضرب مكوناتها ثم جمعها.' }, + }, + }, + SUMSQ: { + description: 'تُرجع هذه الدالة مجموع مربعات الوسيطات.', + abstract: 'تُرجع هذه الدالة مجموع مربعات الوسيطات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب. الأرقام اللاحقة اختيارية. يمكن أن يكون هناك ما يصل إلى 255 وسيطة تريد جمع المربعات لها.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب. الأرقام اللاحقة اختيارية. يمكن أن يكون هناك ما يصل إلى 255 وسيطة تريد جمع المربعات لها.' }, + }, + }, + SUMX2MY2: { + description: 'ترجع دالة Excel هذه مجموع الفرق بين مربعات القيم المقابلة في صفيفين.', + abstract: 'ترجع دالة Excel هذه مجموع الفرق بين مربعات القيم المقابلة في صفيفين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'مطلوب. الصفيف أو نطاق القيم الأول.' }, + arrayY: { name: 'array_y', detail: 'مطلوب. الصفيف أو نطاق القيم الثاني.' }, + }, + }, + SUMX2PY2: { + description: 'تُرجع هذه الدالة المجموع الخاص بمجموع مربعات قيم مناظرة في صفيفين. ويُعد المجموع الخاص بمجموع المربعات تعبيراً شائعاً في العديد من الحسابات الإحصائية.', + abstract: 'تُرجع هذه الدالة المجموع الخاص بمجموع مربعات قيم مناظرة في صفيفين. ويُعد المجموع الخاص بمجموع المربعات تعبيراً شائعاً في العديد من الحسابات الإحصائية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'مطلوب. الصفيف أو نطاق القيم الأول.' }, + arrayY: { name: 'array_y', detail: 'مطلوب. الصفيف أو نطاق القيم الثاني.' }, + }, + }, + SUMXMY2: { + description: 'ترجع الدالة SUMXMY2 مجموع مربعات الاختلافات للقيم المقابلة في صفيفين.', + abstract: 'ترجع الدالة SUMXMY2 مجموع مربعات الاختلافات للقيم المقابلة في صفيفين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'الصفيف الأول أو نطاق القيم. مطلوبة.' }, + arrayY: { name: 'array_y', detail: 'الصفيف الثاني أو نطاق القيم. مطلوبة.' }, + }, + }, + TAN: { + description: 'تُرجع هذه الدالة ظل الزاوية المعيّنة.', + abstract: 'تُرجع هذه الدالة ظل الزاوية المعيّنة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الزاوية بالتقدير الدائري التي تريد ظلها.' }, + }, + }, + TANH: { + description: 'إرجاع ظل الزاوية الزائدي لأحد الأرقام.', + abstract: 'إرجاع ظل الزاوية الزائدي لأحد الأرقام.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. أي رقم حقيقي.' }, + }, + }, + TRUNC: { + description: 'تقوم دالات TRUNC باقتطاع رقم إلى عدد صحيح عن طريق إزالة الجزء الكسري من الرقم.', + abstract: 'تقوم دالات TRUNC باقتطاع رقم إلى عدد صحيح عن طريق إزالة الجزء الكسري من الرقم.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي ترغب في اقتطاعه.' }, + numDigits: { name: 'num_digits', detail: 'الاختياري. رقم يحدد دقة الاقتطاع. القيمة الافتراضية لـ num_digits هي 0 (صفر).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/math/ca-ES.ts index 5dcc68472e..5e044c1f63 100644 --- a/packages/sheets-formula/src/locale/function-list/math/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/math/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/ca-es/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/ca-es/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/ca-es/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/ca-es/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/ca-es/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/ca-es/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/ca-es/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/ca-es/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/ca-es/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/ca-es/excel/functions/atan-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/ca-es/excel/functions/atan2-function', }, ], functionParameter: { @@ -173,7 +173,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/ca-es/excel/functions/atanh-function', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/ca-es/excel/functions/base-function', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/ca-es/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/ca-es/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/ca-es/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/ca-es/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/ca-es/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/ca-es/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/ca-es/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/ca-es/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/ca-es/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/ca-es/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/ca-es/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/ca-es/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/ca-es/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/ca-es/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/ca-es/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/ca-es/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/ca-es/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/ca-es/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/ca-es/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/ca-es/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/ca-es/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/ca-es/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/ca-es/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + number: { name: 'nombre', detail: 'El valor que voleu arrodonir.' }, + significance: { name: 'xifra_significativa', detail: 'El múltiple al qual voleu arrodonir.' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/ca-es/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: 'nombre2', detail: 'El segon nombre del qual s\'ha de trobar el mínim comú múltiple. Es poden especificar fins a 255 nombres d\'aquesta manera.' }, }, }, - LET: { - description: 'Assigna noms als resultats dels càlculs per permetre emmagatzemar càlculs intermedis, valors o definir noms dins d\'una fórmula', - abstract: 'Assigna noms als resultats dels càlculs per permetre emmagatzemar càlculs intermedis, valors o definir noms dins d\'una fórmula', - links: [ - { - title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', - }, - ], - functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, - }, - }, LN: { description: 'Retorna el logaritme natural d\'un nombre', abstract: 'Retorna el logaritme natural d\'un nombre', links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/ca-es/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/ca-es/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/ca-es/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/ca-es/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/ca-es/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/ca-es/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/ca-es/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/ca-es/excel/functions/mround-function', }, ], functionParameter: { @@ -649,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/ca-es/excel/functions/multinomial-function', }, ], functionParameter: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/ca-es/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/ca-es/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/ca-es/excel/functions/pi-function', }, ], functionParameter: { @@ -701,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/ca-es/excel/functions/power-function', }, ], functionParameter: { @@ -715,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/ca-es/excel/functions/product-function', }, ], functionParameter: { @@ -729,7 +715,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/ca-es/excel/functions/quotient-function', }, ], functionParameter: { @@ -743,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/ca-es/excel/functions/radians-function', }, ], functionParameter: { @@ -756,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/ca-es/excel/functions/rand-function', }, ], functionParameter: { @@ -768,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/ca-es/excel/functions/randarray-function', }, ], functionParameter: { @@ -785,7 +771,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/ca-es/excel/functions/randbetween-function', }, ], functionParameter: { @@ -799,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/ca-es/excel/functions/roman-function', }, ], functionParameter: { @@ -813,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/ca-es/excel/functions/round-function', }, ], functionParameter: { @@ -841,7 +827,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/ca-es/excel/functions/rounddown-function', }, ], functionParameter: { @@ -855,7 +841,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/ca-es/excel/functions/roundup-function', }, ], functionParameter: { @@ -869,7 +855,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/ca-es/excel/functions/sec-function', }, ], functionParameter: { @@ -882,7 +868,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/ca-es/excel/functions/sech-function', }, ], functionParameter: { @@ -895,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/ca-es/excel/functions/seriessum-function', }, ], functionParameter: { @@ -911,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/ca-es/excel/functions/sequence-function', }, ], functionParameter: { @@ -927,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/ca-es/excel/functions/sign-function', }, ], functionParameter: { @@ -940,7 +926,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/ca-es/excel/functions/sin-function', }, ], functionParameter: { @@ -953,7 +939,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/ca-es/excel/functions/sinh-function', }, ], functionParameter: { @@ -966,7 +952,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/ca-es/excel/functions/sqrt-function', }, ], functionParameter: { @@ -979,7 +965,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/ca-es/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -992,7 +978,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/ca-es/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1007,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/ca-es/excel/functions/sum-function', }, ], functionParameter: { @@ -1027,7 +1013,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumif-function', }, ], functionParameter: { @@ -1051,7 +1037,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1068,7 +1054,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1082,7 +1068,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1096,7 +1082,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1110,7 +1096,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1124,7 +1110,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/ca-es/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1138,7 +1124,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/tan-function-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/ca-es/excel/functions/tan-function', }, ], functionParameter: { @@ -1151,7 +1137,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/ca-es/excel/functions/tanh-function', }, ], functionParameter: { @@ -1164,7 +1150,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/ca-es/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/ca-es/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/de-DE.ts b/packages/sheets-formula/src/locale/function-list/math/de-DE.ts new file mode 100644 index 0000000000..331296eff1 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/de-DE.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'Liefert den Absolutwert einer Zahl. Der Absolutwert einer Zahl ist die Zahl ohne ihr Vorzeichen.', + abstract: 'Liefert den Absolutwert einer Zahl. Der Absolutwert einer Zahl ist die Zahl ohne ihr Vorzeichen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Es ist die reelle Zahl, deren Absolutwert Sie ermitteln möchten.' }, + }, + }, + ACOS: { + description: 'Liefert den Arkuskosinus oder umgekehrten Kosinus einer Zahl. Der Arkuskosinus ist der Winkel, dessen Kosinus "Zahl" ist. Der Ergebniswinkel wird im Bogenmaß (Radiant) im Wertebereich von 0 (Null) bis pi (Pi) angegeben.', + abstract: 'Liefert den Arkuskosinus oder umgekehrten Kosinus einer Zahl. Der Arkuskosinus ist der Winkel, dessen Kosinus "Zahl" ist. Der Ergebniswinkel wird im Bogenmaß (Radiant) im Wertebereich von 0 (Null) bis pi (Pi) angegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Kosinus des jeweiligen Winkels und muss zwischen -1 und 1 liegen.' }, + }, + }, + ACOSH: { + description: 'Gibt den umgekehrten hyperbolischen Kosinus einer Zahl zurück. Die Zahl muss größer oder gleich 1 sein. Der umgekehrte hyperbolische Kosinus ist der Wert, dessen hyperbolischer Kosinus zahl ist, sodass ACOSH(COSH(number)) gleich number ist.', + abstract: 'Gibt den umgekehrten hyperbolischen Kosinus einer Zahl zurück. Die Zahl muss größer oder gleich 1 sein. Der umgekehrte hyperbolische Kosinus ist der Wert, dessen hyperbolischer Kosinus zahl ist, sodass ACOSH(COSH(number)) gleich number ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Jede beliebige reelle Zahl, die größer gleich 1 ist.' }, + }, + }, + ACOT: { + description: 'Gibt den Hauptwert des Arkuskotangens (Umkehrfunktion des Kotangens) einer Zahl zurück.', + abstract: 'Gibt den Hauptwert des Arkuskotangens (Umkehrfunktion des Kotangens) einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. "Zahl" ist der Kotangens des Winkels, den Sie berechnen möchten. Der Wert muss eine reelle Zahl sein.' }, + }, + }, + ACOTH: { + description: 'Gibt den umgekehrten hyperbolischen Kotangens einer Zahl zurück.', + abstract: 'Gibt den umgekehrten hyperbolischen Kotangens einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Der Absolutwert von number muss größer als 1 sein.' }, + }, + }, + AGGREGATE: { + description: 'Gibt ein Aggregat in einer Liste oder einer Datenbank zurück. Mit der Funktion AGGREGAT können verschiedene Aggregatfunktionen auf eine Liste oder Datenbank mit der Option angewendet werden, ausgeblendete Zeilen sowie Fehlerwerte zu ignorieren.', + abstract: 'Gibt ein Aggregat in einer Liste oder einer Datenbank zurück. Mit der Funktion AGGREGAT können verschiedene Aggregatfunktionen auf eine Liste oder Datenbank mit der Option angewendet werden, ausgeblendete Zeilen sowie Fehlerwerte zu ignorieren.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Erforderlich. Ein Wert von 1 bis 19, der die zu verwendende Funktion angibt.' }, + options: { name: 'options', detail: 'Erforderlich. Ein numerischer Wert, der bestimmt, welche Werte im Berechnungsbereich ignoriert werden sollen. Hinweis Ausgeblendete Zeilen, geschachtelte Teilergebnisse oder geschachtelte Aggregate werden von der Funktion nicht ignoriert, wenn das Arrayargument eine Berechnung enthält, z. B.: =AGGREGATE(14;3;A1:A100*(A1:A100>0);1)' }, + ref1: { name: 'ref1', detail: 'Erforderlich. Das erste numerische Argument für Funktionen, die mehrere numerische Argumente nutzen, für die Sie den Aggregatwert ermitteln möchten.' }, + ref2: { name: 'ref2', detail: 'Optional. Die numerischen Argumente 2 bis 253, deren Aggregatwert Sie berechnen möchten. Bei Funktionen, die ein Array annehmen, ist ref1 ein Array, eine Arrayformel oder ein Verweis auf einen Zellbereich, für den Sie den Aggregatwert verwenden möchten. Ref2 ist ein zweites Argument, das für bestimmte Funktionen erforderlich ist. Die folgenden Funktionen erfordern ein ref2-Argument:' }, + }, + }, + ARABIC: { + description: 'Wandelt eine römische Zahl in eine arabische Zahl um.', + abstract: 'Wandelt eine römische Zahl in eine arabische Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Eine Zeichenfolge in Anführungszeichen, eine leere Zeichenfolge ("") oder ein Verweis auf eine Zelle, die Text enthält.' }, + }, + }, + ASIN: { + description: 'Gibt den Arkussinus oder umgekehrten Sinus einer Zahl zurück. Der Arkussinus ist der Winkel, dessen Sinus zahl ist. Der zurückgegebene Winkel wird im Bogenmaß im Bereich -pi/2 bis pi/2 angegeben.', + abstract: 'Gibt den Arkussinus oder umgekehrten Sinus einer Zahl zurück. Der Arkussinus ist der Winkel, dessen Sinus zahl ist. Der zurückgegebene Winkel wird im Bogenmaß im Bereich -pi/2 bis pi/2 angegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Sinus des jeweiligen Winkels, der zwischen -1 und 1 liegen muss.' }, + }, + }, + ASINH: { + description: 'Gibt den umgekehrten hyperbolischen Sinus einer Zahl zurück. Der inverse hyperbolische Sinus ist der Wert, dessen hyperbolischer Sinus zahl ist, sodass ASINH(SINH(number)) gleich number ist.', + abstract: 'Gibt den umgekehrten hyperbolischen Sinus einer Zahl zurück. Der inverse hyperbolische Sinus ist der Wert, dessen hyperbolischer Sinus zahl ist, sodass ASINH(SINH(number)) gleich number ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine beliebige reelle Zahl.' }, + }, + }, + ATAN: { + description: 'Gibt den Arkustangens oder umgekehrten Tangens einer Zahl zurück. Der Arkustangens ist der Winkel, dessen Tangens zahl ist. Der zurückgegebene Winkel wird im Bogenmaß im Bereich -pi/2 bis pi/2 angegeben.', + abstract: 'Gibt den Arkustangens oder umgekehrten Tangens einer Zahl zurück. Der Arkustangens ist der Winkel, dessen Tangens zahl ist. Der zurückgegebene Winkel wird im Bogenmaß im Bereich -pi/2 bis pi/2 angegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Tangens des Winkels, den Sie berechnen möchten.' }, + }, + }, + ATAN2: { + description: 'Gibt den Arkustangens oder auch umgekehrten Tangens ausgehend von einer x- und einer y-Koordinate zurück. Dieser Arkustangens ist der Winkel zwischen der x-Achse und der Linie, die durch den Koordinatenursprung (0; 0) und den Punkt verläuft, der die Koordinaten (x_Koordinate; y_Koordinate) hat. Der Winkel wird im Bogenmaß (Radiant) mit einem Wert zwischen -pi und pi (ausgenommen -pi) ausgegeben.', + abstract: 'Gibt den Arkustangens oder auch umgekehrten Tangens ausgehend von einer x- und einer y-Koordinate zurück. Dieser Arkustangens ist der Winkel zwischen der x-Achse und der Linie, die durch den Koordinatenursprung (0; 0) und den Punkt verläuft, der die Koordinaten (x_Koordinate; y_Koordinate) hat. Der Winkel wird im Bogenmaß (Radiant) mit einem Wert zwischen -pi und pi (ausgenommen -pi) ausgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Erforderlich. Die x-Koordinate des Punkts.' }, + yNum: { name: 'y_num', detail: 'Erforderlich. Die y-Koordinate des Punkts.' }, + }, + }, + ATANH: { + description: 'Gibt den umgekehrten hyperbolischen Tangens einer Zahl zurück. Die Zahl muss zwischen -1 und 1 (ausgenommen -1 und 1) sein. Der umgekehrte hyperbolische Tangens ist der Wert, dessen hyperbolischer Tangens zahl ist, sodass ATANH(TANH(number)) gleich number ist.', + abstract: 'Gibt den umgekehrten hyperbolischen Tangens einer Zahl zurück. Die Zahl muss zwischen -1 und 1 (ausgenommen -1 und 1) sein. Der umgekehrte hyperbolische Tangens ist der Wert, dessen hyperbolischer Tangens zahl ist, sodass ATANH(TANH(number)) gleich number ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Jede beliebige reelle Zahl zwischen 1 und -1.' }, + }, + }, + BASE: { + description: 'Wandelt eine Zahl in eine Textdarstellung mit der angegebenen Basis um.', + abstract: 'Wandelt eine Zahl in eine Textdarstellung mit der angegebenen Basis um.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, die Sie umwandeln möchten. Muss eine ganze Zahl sein, die größer gleich 0 und kleiner als 2^53 ist.' }, + radix: { name: 'radix', detail: 'Erforderlich. Die Basis, in die Sie die Zahl umwandeln möchten. Muss eine ganze Zahl sein, die größer gleich 2 und kleiner gleich 36 ist.' }, + minLength: { name: 'min_length', detail: 'Optional. Die Mindestlänge der zurückgegebenen Zeichenfolge. Muss eine ganze Zahl sein, die größer gleich 0 ist.' }, + }, + }, + CEILING: { + description: 'Rundet eine Zahl betragsmäßig auf das kleinste Vielfache von Schritt auf. Wenn Sie beispielsweise verhindern möchten, dass bei Ihren Preisen Cent verwendet werden, wobei Ihr Produkt 4,42 € kostet, können Sie die Formel =OBERGRENZE(4,42;0,05) verwenden, um die Preise entsprechend einer 5-Cent-Stufung aufzurunden.', + abstract: 'Rundet eine Zahl betragsmäßig auf das kleinste Vielfache von Schritt auf. Wenn Sie beispielsweise verhindern möchten, dass bei Ihren Preisen Cent verwendet werden, wobei Ihr Produkt 4,42 € kostet, können Sie die Formel =OBERGRENZE(4,42;0,05) verwenden, um die Preise entsprechend einer 5-Cent-Stufung aufzurunden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, den Sie runden möchten.' }, + significance: { name: 'significance', detail: 'Erforderlich. Das Vielfache, auf das Sie runden möchten.' }, + }, + }, + CEILING_MATH: { + description: 'Die OBERGRENZE. Die MATH-Funktion rundet eine Zahl auf die nächste ganze Zahl oder optional auf das nächste Vielfache der Signifikanz auf.', + abstract: 'Die OBERGRENZE. Die MATH-Funktion rundet eine Zahl auf die nächste ganze Zahl oder optional auf das nächste Vielfache der Signifikanz auf.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. (muss zwischen -2.229E-308.und 9.99E+307 sein.)' }, + significance: { name: 'significance', detail: 'Optional. Dies ist die Anzahl der signifikanten Ziffern nach dem Dezimaltrennzeichen, auf die die Zahl gerundet werden soll.' }, + mode: { name: 'mode', detail: 'Optional. Dadurch wird gesteuert, ob negative Zahlen in Richtung oder weg von 0 gerundet werden.' }, + }, + }, + CEILING_PRECISE: { + description: 'Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von "Schritt" gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist "Zahl" oder "Schritt" 0, wird 0 zurückgegeben.', + abstract: 'Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von "Schritt" gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist "Zahl" oder "Schritt" 0, wird 0 zurückgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll' }, + significance: { name: 'significance', detail: 'Optional. Das Vielfache, auf das die Zahl gerundet wird. Wenn "Schritt" ausgelassen wird, ist der Standardwert 1.' }, + }, + }, + COMBIN: { + description: 'Gibt die Anzahl von Kombinationen für eine bestimmte Anzahl von Elementen zurück. Verwenden Sie KOMBINATIONEN, um zu berechnen, wie viele Gruppen aus einer bestimmten Anzahl von Elementen gebildet werden können.', + abstract: 'Gibt die Anzahl von Kombinationen für eine bestimmte Anzahl von Elementen zurück. Verwenden Sie KOMBINATIONEN, um zu berechnen, wie viele Gruppen aus einer bestimmten Anzahl von Elementen gebildet werden können.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Anzahl von Elementen.' }, + numberChosen: { name: 'number_chosen', detail: 'Erforderlich. Gibt an, aus wie vielen Elementen jede Kombination bestehen soll.' }, + }, + }, + COMBINA: { + description: 'Gibt die Anzahl von Kombinationen (mit Wiederholungen) für eine bestimmte Anzahl von Elementen zurück.', + abstract: 'Gibt die Anzahl von Kombinationen (mit Wiederholungen) für eine bestimmte Anzahl von Elementen zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Muss größer gleich 0 und größer gleich "gewählte_Zahl" sein. Nicht ganzzahlige Werte werden abgeschnitten.' }, + numberChosen: { name: 'number_chosen', detail: 'Erforderlich. Muss größer gleich 0 sein. Nicht ganzzahlige Werte werden abgeschnitten.' }, + }, + }, + COS: { + description: 'Gibt den Kosinus einer Zahl zurück.', + abstract: 'Gibt den Kosinus einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der im Bogenmaß angegebene Winkel, dessen Kosinus Sie berechnen möchten.' }, + }, + }, + COSH: { + description: 'Gibt den hyperbolischen Kosinus einer Zahl zurück.', + abstract: 'Gibt den hyperbolischen Kosinus einer Zahl zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine beliebige reelle Zahl, für die Sie den hyperbolischen Kosinus ermitteln möchten.' }, + }, + }, + COT: { + description: 'Gibt den Kotangens eines im Bogenmaß angegebenen Winkels zurück.', + abstract: 'Gibt den Kotangens eines im Bogenmaß angegebenen Winkels zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Winkel im Bogenmaß, für den Sie den Kotangens berechnen möchten' }, + }, + }, + COTH: { + description: 'Gibt den hyperbolischen Kotangens eines hyperbolischen Winkels zurück.', + abstract: 'Gibt den hyperbolischen Kotangens eines hyperbolischen Winkels zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich.' }, + }, + }, + CSC: { + description: 'Gibt den Kosekans eines im Bogenmaß angegebenen Winkels zurück.', + abstract: 'Gibt den Kosekans eines im Bogenmaß angegebenen Winkels zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich.' }, + }, + }, + CSCH: { + description: 'Gibt den hyperbolischen Kosekans eines im Bogenmaß angegebenen Winkels zurück.', + abstract: 'Gibt den hyperbolischen Kosekans eines im Bogenmaß angegebenen Winkels zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich.' }, + }, + }, + DECIMAL: { + description: 'Konvertiert eine Textdarstellung einer Zahl mit einer angegebenen Basis in eine Dezimalzahl.', + abstract: 'Konvertiert eine Textdarstellung einer Zahl mit einer angegebenen Basis in eine Dezimalzahl.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich.' }, + radix: { name: 'radix', detail: 'Erforderlich. Die Basis muss eine ganze Zahl sein.' }, + }, + }, + DEGREES: { + description: 'Wandelt Bogenmaß (Radiant) in Grad um.', + abstract: 'Wandelt Bogenmaß (Radiant) in Grad um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Erforderlich. Der in Bogenmaß (Radiant) gegebene Winkel, den Sie umwandeln möchten.' }, + }, + }, + EVEN: { + description: 'Gibt die zahl zurück, die auf die nächste gerade ganze Zahl aufgerundet wurde. Sie können diese Funktion verwenden, um Elemente zu verarbeiten, die zu zweit vorhanden sind. Beispielsweise akzeptiert eine Packkiste Zeilen mit einem oder zwei Elementen. Die Kiste ist voll, wenn die Auf die nächsten beiden Elemente aufgerundet mit der Kapazität der Kiste übereinstimmt.', + abstract: 'Gibt die zahl zurück, die auf die nächste gerade ganze Zahl aufgerundet wurde. Sie können diese Funktion verwenden, um Elemente zu verarbeiten, die zu zweit vorhanden sind. Beispielsweise akzeptiert eine Packkiste Zeilen mit einem oder zwei Elementen. Die Kiste ist voll, wenn die Auf die nächsten beiden Elemente aufgerundet mit der Kapazität der Kiste übereinstimmt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll.' }, + }, + }, + EXP: { + description: 'Potenziert die Basis e mit der als Argument angegebenen Zahl. Die Konstante "e" ist die Basis des natürlichen Logarithmus und hat den Wert 2,71828182845904.', + abstract: 'Potenziert die Basis e mit der als Argument angegebenen Zahl. Die Konstante "e" ist die Basis des natürlichen Logarithmus und hat den Wert 2,71828182845904.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Exponent zur Basis e.' }, + }, + }, + FACT: { + description: 'Gibt die Fakultät einer Zahl zurück. Die Fakultät einer Zahl wird aus 1*2*3*...* Zahl berechnet.', + abstract: 'Gibt die Fakultät einer Zahl zurück. Die Fakultät einer Zahl wird aus 1*2*3*...* Zahl berechnet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die nicht negative Zahl, deren Fakultät Sie berechnen möchten. Ist "Zahl" keine ganze Zahl, werden die Nachkommastellen abgeschnitten.' }, + }, + }, + FACTDOUBLE: { + description: 'Gibt die Fakultät zu Zahl mit Schrittlänge 2 zurück.', + abstract: 'Gibt die Fakultät zu Zahl mit Schrittlänge 2 zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, für den die Fakultät mit Schrittlänge 2 berechnet werden soll. Ist "Zahl" keine ganze Zahl, werden die Nachkommastellen abgeschnitten.' }, + }, + }, + FLOOR: { + description: 'Die FLOOR-Funktion in Excel rundet eine angegebene Zahl auf das nächste angegebene Vielfache von Bedeutung ab. Negative Zahlen werden auf das nächste ganze Vielfache unter 0 (null) gerundet (weiter negativ).', + abstract: 'Die FLOOR-Funktion in Excel rundet eine angegebene Zahl auf das nächste angegebene Vielfache von Bedeutung ab. Negative Zahlen werden auf das nächste ganze Vielfache unter 0 (null) gerundet (weiter negativ).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der numerische Wert, den Sie runden möchten.' }, + significance: { name: 'significance', detail: 'Erforderlich. Das Vielfache, auf das Sie runden möchten.' }, + }, + }, + FLOOR_MATH: { + description: 'Rundet eine Zahl auf die nächste ganze Zahl oder auf das nächste Vielfache von Schritt ab.', + abstract: 'Rundet eine Zahl auf die nächste ganze Zahl oder auf das nächste Vielfache von Schritt ab.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, die Sie abrunden möchten.' }, + significance: { name: 'significance', detail: 'Optional. Das Vielfache, auf das Sie runden möchten.' }, + mode: { name: 'mode', detail: 'Optional. Die Richtung (hin zu oder weg von 0), in der negative Zahlen gerundet werden sollen.' }, + }, + }, + FLOOR_PRECISE: { + description: 'Rundet eine Zahl auf die nächste ganze Zahl oder das nächste Vielfache von "Schritt" ab. Die Zahl wird unabhängig vom Vorzeichen abgerundet. Wenn die Zahl oder der "Schritt" jedoch Null ist, wird Null zurückgegeben.', + abstract: 'Rundet eine Zahl auf die nächste ganze Zahl oder das nächste Vielfache von "Schritt" ab. Die Zahl wird unabhängig vom Vorzeichen abgerundet. Wenn die Zahl oder der "Schritt" jedoch Null ist, wird Null zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll' }, + significance: { name: 'significance', detail: 'Optional. Das Vielfache, auf das die Zahl gerundet wird. Wenn "Schritt" ausgelassen wird, ist der Standardwert 1.' }, + }, + }, + GCD: { + description: 'Gibt den größten gemeinsamen Teiler zurück. Der größte gemeinsame Teiler ist die ganze Zahl, durch die sowohl Zahl1 als auch Zahl2 dividiert werden können, ohne dass ein Rest bleibt.', + abstract: 'Gibt den größten gemeinsamen Teiler zurück. Der größte gemeinsame Teiler ist die ganze Zahl, durch die sowohl Zahl1 als auch Zahl2 dividiert werden können, ohne dass ein Rest bleibt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte. Bei Werten, die keine ganzen Zahlen sind, werden die Nachkommastellen abgeschnitten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte. Bei Werten, die keine ganzen Zahlen sind, werden die Nachkommastellen abgeschnitten.' }, + }, + }, + INT: { + description: 'Rundet eine Zahl auf die nächste ganze Zahl ab.', + abstract: 'Rundet eine Zahl auf die nächste ganze Zahl ab.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die reelle Zahl, die Sie auf eine ganze Zahl runden möchten.' }, + }, + }, + ISO_CEILING: { + description: 'Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von "Schritt" gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist "Zahl" oder "Schritt" 0, wird 0 zurückgegeben.', + abstract: 'Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von "Schritt" gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist "Zahl" oder "Schritt" 0, wird 0 zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll' }, + significance: { name: 'significance', detail: 'Optional. Das Vielfache, auf das die Zahl gerundet wird. Wenn "Schritt" ausgelassen wird, ist der Standardwert 1.' }, + }, + }, + LCM: { + description: 'Gibt das kleinste gemeinsame Vielfache der als Argumente angegebenen ganzen Zahlen zurück. Als kleinstes gemeinsames Vielfaches wird die kleinste positive ganze Zahl bezeichnet, die ein Vielfaches aller ganzzahligen Argumente "Zahl1", "Zahl2" und so weiter ist. KGV können Sie verwenden, wenn Sie Brüche addieren müssen, die unterschiedliche Nenner haben.', + abstract: 'Gibt das kleinste gemeinsame Vielfache der als Argumente angegebenen ganzen Zahlen zurück. Als kleinstes gemeinsames Vielfaches wird die kleinste positive ganze Zahl bezeichnet, die ein Vielfaches aller ganzzahligen Argumente "Zahl1", "Zahl2" und so weiter ist. KGV können Sie verwenden, wenn Sie Brüche addieren müssen, die unterschiedliche Nenner haben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte, deren kleinstes gemeinsames Vielfaches Sie berechnen möchten. Bei Werten, die keine ganzen Zahlen sind, werden deren Nachkommastellen abgeschnitten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte, deren kleinstes gemeinsames Vielfaches Sie berechnen möchten. Bei Werten, die keine ganzen Zahlen sind, werden deren Nachkommastellen abgeschnitten.' }, + }, + }, + LN: { + description: 'Gibt den natürlichen Logarithmus einer Zahl zurück. Natürliche Logarithmen haben die Konstante e (2,71828182845904) als Basis.', + abstract: 'Gibt den natürlichen Logarithmus einer Zahl zurück. Natürliche Logarithmen haben die Konstante e (2,71828182845904) als Basis.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die positive reelle Zahl, deren natürlichen Logarithmus Sie berechnen möchten' }, + }, + }, + LOG: { + description: 'Gibt den Logarithmus einer Zahl zu der angegebenen Basis zurück.', + abstract: 'Gibt den Logarithmus einer Zahl zu der angegebenen Basis zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die positive reelle Zahl, deren Logarithmus Sie berechnen möchten' }, + base: { name: 'base', detail: 'Optional. Die Basis des Logarithmus. Wenn das Argument "Basis" fehlt, wird es als 10 angenommen.' }, + }, + }, + LOG10: { + description: 'Gibt den Logarithmus einer Zahl zur Basis 10 zurück.', + abstract: 'Gibt den Logarithmus einer Zahl zur Basis 10 zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die positive reelle Zahl, deren Logarithmus zur Basis 10 Sie berechnen möchten' }, + }, + }, + MDETERM: { + description: 'Liefert die Determinante einer Matrix.', + abstract: 'Liefert die Determinante einer Matrix.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Eine quadratische Matrix (die Anzahl der Zeilen und Spalten ist identisch)' }, + }, + }, + MINVERSE: { + description: 'Die FUNKTION MINVERSE gibt die umgekehrte Matrix für eine Matrix zurück, die in einem Array gespeichert ist.', + abstract: 'Die FUNKTION MINVERSE gibt die umgekehrte Matrix für eine Matrix zurück, die in einem Array gespeichert ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Eine quadratische Matrix (die Anzahl der Zeilen und Spalten ist identisch)' }, + }, + }, + MMULT: { + description: 'Die MMULT-Funktion gibt das Matrixprodukt von zwei Arrays zurück. Das Ergebnis ist eine Matrix, die dieselbe Anzahl von Zeilen wie Matrix1 und dieselbe Anzahl von Spalten wie Matrix2 hat.', + abstract: 'Die MMULT-Funktion gibt das Matrixprodukt von zwei Arrays zurück. Das Ergebnis ist eine Matrix, die dieselbe Anzahl von Zeilen wie Matrix1 und dieselbe Anzahl von Spalten wie Matrix2 hat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Die Matrizen, die Sie multiplizieren möchten.' }, + array2: { name: 'array2', detail: 'Die Matrizen, die Sie multiplizieren möchten.' }, + }, + }, + MOD: { + description: 'Gibt den Rest einer Division zurück. Das Ergebnis hat dasselbe Vorzeichen wie Divisor.', + abstract: 'Gibt den Rest einer Division zurück. Das Ergebnis hat dasselbe Vorzeichen wie Divisor.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, für die der Rest einer Division gesucht wird.' }, + divisor: { name: 'divisor', detail: 'Erforderlich. Die Zahl, durch die "Zahl" dividiert werden soll.' }, + }, + }, + MROUND: { + description: 'MROUND gibt eine Zahl zurück, die auf das gewünschte Vielfache gerundet ist.', + abstract: 'MROUND gibt eine Zahl zurück, die auf das gewünschte Vielfache gerundet ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll.' }, + multiple: { name: 'multiple', detail: 'Erforderlich. Das Vielfache, auf das Sie "Zahl" runden möchten.' }, + }, + }, + MULTINOMIAL: { + description: 'Gibt den Polynomialkoeffizienten einer Gruppe von Zahlen zurück.', + abstract: 'Gibt den Polynomialkoeffizienten einer Gruppe von Zahlen zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte, deren Polynomialkoeffizienten Sie berechnen möchten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Werte, deren Polynomialkoeffizienten Sie berechnen möchten.' }, + }, + }, + MUNIT: { + description: 'Die MUNIT-Funktion gibt die Einheitenmatrix für die angegebene Dimension zurück.', + abstract: 'Die MUNIT-Funktion gibt die Einheitenmatrix für die angegebene Dimension zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Dimension ist eine ganze Zahl, die die Dimension der zurückzugebenden Einheitsmatrix angibt. Die Funktion gibt eine Matrix zurück. Dimension muss größer als null sein.' }, + }, + }, + ODD: { + description: 'Rundet eine Zahl auf die nächste ungerade ganze Zahl auf.', + abstract: 'Rundet eine Zahl auf die nächste ungerade ganze Zahl auf.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Wert, der aufgerundet werden soll.' }, + }, + }, + PI: { + description: 'Gibt den Wert pi zurück, die mathematische Konstante (3,14159265358979) mit einer Genauigkeit von 15 Stellen.', + abstract: 'Gibt den Wert pi zurück, die mathematische Konstante (3,14159265358979) mit einer Genauigkeit von 15 Stellen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Gibt als Ergebnis eine potenzierte Zahl zurück.', + abstract: 'Gibt als Ergebnis eine potenzierte Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, die Sie mit dem Exponenten potenzieren möchten. Es sind alle reellen Zahlen zulässig.' }, + power: { name: 'power', detail: 'Erforderlich. Der Exponent, mit dem Sie die Zahl potenzieren möchten' }, + }, + }, + PRODUCT: { + description: 'Die FUNKTION PRODUCT multipliziert alle als Argumente angegebenen Zahlen und gibt das Produkt zurück. Wenn die Zellen A1 und A2 z. B. Zahlen enthalten, können Sie die Formel =PRODUCT(A1, A2) verwenden, um diese beiden Zahlen zusammen zu multiplizieren. Sie können denselben Vorgang auch mit dem mathematischen Operator multiplizieren ( * ) ausführen, z. B. =A1 * A2 .', + abstract: 'Die FUNKTION PRODUCT multipliziert alle als Argumente angegebenen Zahlen und gibt das Produkt zurück. Wenn die Zellen A1 und A2 z. B. Zahlen enthalten, können Sie die Formel =PRODUCT(A1, A2) verwenden, um diese beiden Zahlen zusammen zu multiplizieren. Sie können denselben Vorgang auch mit dem mathematischen Operator multiplizieren ( * ) ausführen, z. B. =A1 * A2 .', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Die erste Zahl oder der erste Bereich, den Sie multiplizieren möchten.' }, + number2: { name: 'number2', detail: 'Optional. Bis zu 255 zusätzliche Zahlen oder Bereiche, die multipliziert werden sollen.' }, + }, + }, + QUOTIENT: { + description: 'Gibt den ganzzahligen Anteil einer Division zurück. Diese Funktion können Sie immer dann verwenden, wenn Sie die Nachkommastellen (den Rest) einer Division löschen möchten.', + abstract: 'Gibt den ganzzahligen Anteil einer Division zurück. Diese Funktion können Sie immer dann verwenden, wenn Sie die Nachkommastellen (den Rest) einer Division löschen möchten.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Erforderlich. Der Dividend' }, + denominator: { name: 'denominator', detail: 'Erforderlich. Der Divisor' }, + }, + }, + RADIANS: { + description: 'Wandelt Grad in Bogenmaß (Radiant) um.', + abstract: 'Wandelt Grad in Bogenmaß (Radiant) um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Erforderlich. Ein in Grad gegebener Winkel, den Sie umwandeln möchten' }, + }, + }, + RAND: { + description: 'Zufallszahl gibt eine gleichmäßig verteilte zufällige reelle Zahl zurück, die größer oder gleich 0 und kleiner als 1 ist. Bei jeder Neuberechnung des jeweiligen Arbeitsblatts wird eine neue zufällige reelle Zahl ausgegeben.', + abstract: 'Zufallszahl gibt eine gleichmäßig verteilte zufällige reelle Zahl zurück, die größer oder gleich 0 und kleiner als 1 ist. Bei jeder Neuberechnung des jeweiligen Arbeitsblatts wird eine neue zufällige reelle Zahl ausgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'In den folgenden Beispielen wurde ein Array erstellt, das 5 Zeilen hoch und 3 Spalten breit ist. Das erste gibt eine zufällige Gruppe von Werten zwischen 0 und 1 zurück, das Standardverhalten von ZUFALLSMATRIX. Die nächste gibt eine Reihe von zufälligen Dezimalwerten zwischen 1 und 100 zurück. Das dritte Beispiel schließlich gibt eine Reihe von zufälligen ganzen Zahlen zwischen 1 und 100 zurück.', + abstract: 'In den folgenden Beispielen wurde ein Array erstellt, das 5 Zeilen hoch und 3 Spalten breit ist. Das erste gibt eine zufällige Gruppe von Werten zwischen 0 und 1 zurück, das Standardverhalten von ZUFALLSMATRIX. Die nächste gibt eine Reihe von zufälligen Dezimalwerten zwischen 1 und 100 zurück. Das dritte Beispiel schließlich gibt eine Reihe von zufälligen ganzen Zahlen zwischen 1 und 100 zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Die Anzahl der Zeilen, die zurückgegeben werden sollen' }, + columns: { name: 'columns', detail: 'Die Anzahl der Spalten, die zurückgegeben werden sollen' }, + min: { name: 'min', detail: 'Der Mindestwert, der zurückgegeben werden soll' }, + max: { name: 'max', detail: 'Der Höchstwert, der zurückgegeben werden soll' }, + wholeNumber: { name: 'whole_number', detail: 'Eine ganze Zahl oder einen Dezimalwert zurückgeben WAHR für eine ganze Zahl, FALSE für eine Dezimalzahl' }, + }, + }, + RANDBETWEEN: { + description: 'Gibt eine ganze Zufallszahl aus dem festgelegten Bereich zurück. Bei jeder Neuberechnung des jeweiligen Arbeitsblatts wird eine neue ganze Zufallszahl ausgegeben.', + abstract: 'Gibt eine ganze Zufallszahl aus dem festgelegten Bereich zurück. Bei jeder Neuberechnung des jeweiligen Arbeitsblatts wird eine neue ganze Zufallszahl ausgegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Erforderlich. Die kleinste ganze Zahl, die ZUFALLSBEREICH als Ergebnis zurückgeben kann.' }, + top: { name: 'top', detail: 'Erforderlich. Die größte ganze Zahl, die ZUFALLSBEREICH als Ergebnis zurückgeben kann.' }, + }, + }, + ROMAN: { + description: 'Wandelt eine arabische Zahl in eine römische Zahl als Text um.', + abstract: 'Wandelt eine arabische Zahl in eine römische Zahl als Text um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die arabische Zahl, die Sie umwandeln möchten' }, + form: { name: 'form', detail: 'Optional. Eine Zahl, die den Typ der römischen Zahl angibt. Die Schreibweise der römischen Zahlen reicht von klassisch bis vereinfacht, wobei die Zeichenfolge kürzer wird, sobald ein höherer Typ vorliegt. Das unten gezeigte Beispiel "RÖMISCH(499;0)" erläutert dies.' }, + }, + }, + ROUND: { + description: 'Mit der Funktion RUNDEN wird eine Zahl auf eine angegebene Anzahl von Stellen gerundet. Wenn beispielsweise die Zelle A1 den Wert 23,7825 enthält und Sie diesen Wert auf zwei Dezimalstellen runden möchten, können Sie die folgende Formel verwenden:', + abstract: 'Mit der Funktion RUNDEN wird eine Zahl auf eine angegebene Anzahl von Stellen gerundet. Wenn beispielsweise die Zelle A1 den Wert 23,7825 enthält und Sie diesen Wert auf zwei Dezimalstellen runden möchten, können Sie die folgende Formel verwenden:', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, die gerundet werden soll.' }, + numDigits: { name: 'num_digits', detail: 'Erforderlich. Die Anzahl der Dezimalstellen, auf die die Zahl gerundet werden soll.' }, + }, + }, + ROUNDBANK: { + description: 'Rundet eine Zahl nach der Banker\'s-Rounding-Methode zur nächsten geraden Zahl.', + abstract: 'Rundet eine Zahl nach der Banker\'s-Rounding-Methode zur nächsten geraden Zahl.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Die Zahl, die Sie nach der Bankerrundungsmethode runden möchten.' }, + numDigits: { name: 'num_digits', detail: 'Die Anzahl der Stellen, auf die Sie nach der Bankerrundungsmethode runden möchten.' }, + }, + }, + ROUNDDOWN: { + description: 'Rundet die Zahl auf "Anzahl_Stellen" in Richtung Null ab.', + abstract: 'Rundet die Zahl auf "Anzahl_Stellen" in Richtung Null ab.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine reelle Zahl, die Sie abrunden möchten' }, + numDigits: { name: 'num_digits', detail: 'Erforderlich. Gibt an, auf wie viele Dezimalstellen die Zahl gerundet werden soll' }, + }, + }, + ROUNDUP: { + description: 'Rundet die Zahl auf Anzahl_Stellen auf.', + abstract: 'Rundet die Zahl auf Anzahl_Stellen auf.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine reelle Zahl, die Sie aufrunden möchten' }, + numDigits: { name: 'num_digits', detail: 'Erforderlich. Gibt an, auf wie viele Dezimalstellen die Zahl gerundet werden soll' }, + }, + }, + SEC: { + description: 'Gibt den Sekans eines Winkels zurück.', + abstract: 'Gibt den Sekans eines Winkels zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Number ist der Winkel im Bogenmaß, für den Sie den Sekans berechnen möchten.' }, + }, + }, + SECH: { + description: 'Gibt den hyperbolischen Sekans eines Winkels zurück.', + abstract: 'Gibt den hyperbolischen Sekans eines Winkels zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Number ist der Winkel im Bogenmaß, für den Sie den hyperbolischen Sekans berechnen möchten.' }, + }, + }, + SERIESSUM: { + description: 'Viele Funktionen können mithilfe einer Potenzreihenentwicklung angenähert werden.', + abstract: 'Viele Funktionen können mithilfe einer Potenzreihenentwicklung angenähert werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert der unabhängigen Variablen der Potenzreihe' }, + n: { name: 'n', detail: 'Erforderlich. Die Anfangspotenz, in die Sie "x" erheben möchten.' }, + m: { name: 'm', detail: 'Erforderlich. Das Inkrement, um das Sie "n" in jedem Glied der Reihe vergrößern möchten.' }, + coefficients: { name: 'coefficients', detail: 'Erforderlich. Ein Satz von Koeffizienten, mit denen jede aufeinanderfolgende Potenz von x multipliziert wird. Die Anzahl der Werte in Koeffizienten bestimmt die Anzahl der Begriffe in der Leistungsreihe. Wenn beispielsweise drei Werte in Koeffizienten vorhanden sind, gibt es drei Begriffe in der Leistungsreihe.' }, + }, + }, + SEQUENCE: { + description: 'Im folgenden Beispiel wurde mit =SEQUENZ(4;5) ein Array erstellt, das 4 Zeilen hoch und 5 Spalten breit ist.', + abstract: 'Im folgenden Beispiel wurde mit =SEQUENZ(4;5) ein Array erstellt, das 4 Zeilen hoch und 5 Spalten breit ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Die Anzahl der Zeilen, die zurückgegeben werden sollen' }, + columns: { name: 'columns', detail: 'Die Anzahl der Spalten, die zurückgegeben werden sollen' }, + start: { name: 'start', detail: 'Die erste Zahl in der Folge' }, + step: { name: 'step', detail: 'Der Betrag zum schrittweisen Erhöhen jedes nachfolgenden Werts im Array' }, + }, + }, + SIGN: { + description: 'Bestimmt das Vorzeichen einer Zahl. Gibt 1 zurück, wenn die Zahl positiv ist, null (0), wenn die Zahl 0 ist, und -1, wenn die Zahl negativ ist.', + abstract: 'Bestimmt das Vorzeichen einer Zahl. Gibt 1 zurück, wenn die Zahl positiv ist, null (0), wenn die Zahl 0 ist, und -1, wenn die Zahl negativ ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine beliebige reelle Zahl.' }, + }, + }, + SIN: { + description: 'Gibt den Sinus einer Zahl zurück.', + abstract: 'Gibt den Sinus einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Winkel im Bogenmaß, für den Sie den Sinus berechnen möchten' }, + }, + }, + SINH: { + description: 'Gibt den hyperbolischen Sinus einer Zahl zurück.', + abstract: 'Gibt den hyperbolischen Sinus einer Zahl zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine beliebige reelle Zahl' }, + }, + }, + SQRT: { + description: 'Gibt die Quadratwurzel einer Zahl zurück.', + abstract: 'Gibt die Quadratwurzel einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, deren Quadratwurzel Sie berechnen möchten' }, + }, + }, + SQRTPI: { + description: 'Gibt die Wurzel aus der mit Pi (pi) multiplizierten Zahl zurück.', + abstract: 'Gibt die Wurzel aus der mit Pi (pi) multiplizierten Zahl zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, mit der Pi multipliziert wird' }, + }, + }, + SUBTOTAL: { + description: 'Gibt ein Teilergebnis in einer Liste oder Datenbank zurück. Grundsätzlich ist es einfacher, eine mit Teilergebnissen versehene Liste mithilfe des Befehls Teilergebnisse in der Gruppe Gliederung auf der Registerkarte Daten der Excel-Desktopanwendung zu erstellen. Nachdem eine solche mit Teilergebnissen versehene Liste erstellt wurde, können Sie diese mit der Funktion TEILERGEBNIS bearbeiten.', + abstract: 'Gibt ein Teilergebnis in einer Liste oder Datenbank zurück. Grundsätzlich ist es einfacher, eine mit Teilergebnissen versehene Liste mithilfe des Befehls Teilergebnisse in der Gruppe Gliederung auf der Registerkarte Daten der Excel-Desktopanwendung zu erstellen. Nachdem eine solche mit Teilergebnissen versehene Liste erstellt wurde, können Sie diese mit der Funktion TEILERGEBNIS bearbeiten.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Erforderlich. Die Zahl 1-11 oder 101-111, die die Funktion angibt, die für das Teilergebnis verwendet werden soll. 1-11 enthält manuell ausgeblendete Zeilen, während 101-111 sie ausschließt; Herausgefilterte Zellen sind immer ausgeschlossen.' }, + ref1: { name: 'ref1', detail: 'Erforderlich. Der erste benannte Bereich oder Bezug, für den Sie das Teilergebnis berechnen möchten' }, + ref2: { name: 'ref2', detail: 'Optional. 2 bis 254 benannte Bereiche oder Bezüge, für die Sie das Teilergebnis berechnen möchten' }, + }, + }, + SUM: { + description: 'Die FUNKTION SUMME fügt Werte hinzu. Sie können einzelne Werte, Zellbezüge oder Bereiche bzw. eine Kombination aller drei Optionen addieren.', + abstract: 'Die FUNKTION SUMME fügt Werte hinzu. Sie können einzelne Werte, Zellbezüge oder Bereiche bzw. eine Kombination aller drei Optionen addieren.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'Die erste Zahl, die Sie addieren möchten. Die Zahl kann wie 4, ein Zellbezug wie B6 oder ein Zellbereich wie B2:B8 sein.' }, + number2: { name: 'Number 2', detail: 'Dies ist die zweite Zahl, die Sie addieren möchten. Sie können bis zu 255 Zahlen auf diese Weise angeben.' }, + }, + }, + SUMIF: { + description: 'Sie verwenden die FUNKTION SUMMEWENN , um die Werte in einem Bereich zu summieren, die den von Ihnen angegebenen Kriterien entsprechen. Angenommen, Sie möchten in einer Spalte, die Zahlen enthält nur die Werte summieren, die größer als 5 sind. Sie können die folgende Formel verwenden: =SUMMEWENN(B2:B25;">5")', + abstract: 'Sie verwenden die FUNKTION SUMMEWENN , um die Werte in einem Bereich zu summieren, die den von Ihnen angegebenen Kriterien entsprechen. Angenommen, Sie möchten in einer Spalte, die Zahlen enthält nur die Werte summieren, die größer als 5 sind. Sie können die folgende Formel verwenden: =SUMMEWENN(B2:B25;">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Erforderlich. Der Zellbereich, den Sie nach Kriterien auswerten möchten. Zulässige Zellen in jedem Bereich sind Zahlen oder Namen, Arrays oder Bezüge, die Zahlen enthalten. Leere Zellen und Textwerte werden ignoriert. Der ausgewählte Bereich kann Datumsangaben im Excel-Standardformat enthalten (siehe folgende Beispiele).' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Die Suchkriterien in Form einer Zahl, eines Ausdrucks, eines Zellbezugs, eines Texts oder einer Funktion, mit denen definiert wird, welche Zellen addiert werden. Es können Platzhalterzeichen eingefügt werden – ein Fragezeichen (?) zur Übereinstimmung mit einem beliebigen einzelnem Zeichen, ein Sternchen (*) zur Übereinstimmung mit einer beliebigen einzelnen Zeichenfolge. Wenn Sie ein tatsächliches Fragezeichen oder Sternchen suchen möchten, geben Sie eine Tilde ( ~ ) vor dem Zeichen ein. Kriterien können beispielsweise als 32, ">32", B5, "3?", "Apfel*", "*~?" oder HEUTE() ausgedrückt werden. Wichtig Suchkriterien in Textform oder Kriterien, die logische oder mathematische Symbole enthalten, müssen in doppelte Anführungszeichen ( " ) gesetzt werden. Bei numerischen Suchkriterien sind keine doppelten Anführungszeichen erforderlich.' }, + sumRange: { name: 'sum_range', detail: 'Optional. Die tatsächlich hinzuzufügenden Zellen, wenn Sie andere Zellen als die im Range-Argument angegebenen hinzufügen möchten. Wenn das argument sum_range ausgelassen wird, fügt Excel die Zellen hinzu, die im Argument range angegeben sind (die gleichen Zellen, auf die die Kriterien angewendet werden). Sum_range sollte die gleiche Größe und Form aufweisen wie der Bereich . Wenn dies nicht der Fall ist, kann die Leistung beeinträchtigt werden, und die Formel summiert einen Zellbereich, der mit der ersten Zelle in sum_range beginnt, aber die gleichen Dimensionen wie bereich aufweist. Beispiel: Bereich Summe_Bereich Tatsächlich summierte Zellen A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'Mit der Funktion SUMMEWENNS, einer der mathematischen und trigonometrischen Funktionen , werden alle Argumente addiert, die mehrere Kriterien erfüllen. Beispielsweise würden Sie SUMMEWENNS verwenden, um die Anzahl der Einzelhändler im Land zu addieren, (1) die in einem bestimmten Postleitzahlbereich wohnen, und (2) deren Gewinne einen bestimmten Wert überschreiten.', + abstract: 'Mit der Funktion SUMMEWENNS, einer der mathematischen und trigonometrischen Funktionen , werden alle Argumente addiert, die mehrere Kriterien erfüllen. Beispielsweise würden Sie SUMMEWENNS verwenden, um die Anzahl der Einzelhändler im Land zu addieren, (1) die in einem bestimmten Postleitzahlbereich wohnen, und (2) deren Gewinne einen bestimmten Wert überschreiten.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'Der zu addierende Zellbereich.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Der Bereich, der mit Criteria1 getestet wird. Criteria_range1 und Criteria1 richten ein Suchpaar ein, bei dem ein Bereich nach bestimmten Kriterien durchsucht wird. Sobald Elemente im Bereich gefunden wurden, werden die entsprechenden Werte in Sum_range hinzugefügt.' }, + criteria1: { name: 'criteria1', detail: 'Die Kriterien, die definieren, welche Zellen in Criteria_range1 hinzugefügt werden. Beispielsweise können Kriterien als 32 , ">32" , B4 , "Äpfel" oder "32" eingegeben werden.' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 127 Bereich/Kriterien-Paare eingeben.' }, + criteria2: { name: 'criteria2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 127 Bereich/Kriterien-Paare eingeben.' }, + }, + }, + SUMPRODUCT: { + description: 'Die FUNKTION SUMMENPRODUKT gibt die Summe der Produkte der entsprechenden Bereiche oder Arrays zurück. Der Standardvorgang ist Multiplikation, aber auch Addition, Subtraktion und Division sind möglich.', + abstract: 'Die FUNKTION SUMMENPRODUKT gibt die Summe der Produkte der entsprechenden Bereiche oder Arrays zurück. Der Standardvorgang ist Multiplikation, aber auch Addition, Subtraktion und Division sind möglich.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Das erste Arrayargument, dessen Komponenten Sie multiplizieren und anschließend addieren möchten' }, + array2: { name: 'array', detail: '2 bis 255 Arrayargumente, deren Komponenten Sie multiplizieren und anschließend addieren möchten' }, + }, + }, + SUMSQ: { + description: 'Summiert die quadrierten Argumente.', + abstract: 'Summiert die quadrierten Argumente.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Nummer1 ist erforderlich. Nachfolgende Zahlen sind optional. Es kann bis zu 255 Argumente geben, für die Sie die Summe der Quadrate verwenden möchten.' }, + number2: { name: 'number2', detail: 'Nummer1 ist erforderlich. Nachfolgende Zahlen sind optional. Es kann bis zu 255 Argumente geben, für die Sie die Summe der Quadrate verwenden möchten.' }, + }, + }, + SUMX2MY2: { + description: 'Diese Excel-Funktion gibt die Summe der Differenz der Quadrate der entsprechenden Werte in zwei Arrays zurück.', + abstract: 'Diese Excel-Funktion gibt die Summe der Differenz der Quadrate der entsprechenden Werte in zwei Arrays zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Erforderlich. Die erste Matrix oder der erste Wertebereich' }, + arrayY: { name: 'array_y', detail: 'Erforderlich. Die zweite Matrix oder der zweite Wertebereich' }, + }, + }, + SUMX2PY2: { + description: 'Summiert für zusammengehörige Komponenten zweier Matrizen die Summen der Quadrate. Die Gesamtsumme aus der Summe von Quadratzahlen ist ein Ausdruck, der häufig in statistischen Berechnungen verwendet wird.', + abstract: 'Summiert für zusammengehörige Komponenten zweier Matrizen die Summen der Quadrate. Die Gesamtsumme aus der Summe von Quadratzahlen ist ein Ausdruck, der häufig in statistischen Berechnungen verwendet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Erforderlich. Die erste Matrix oder der erste Wertebereich' }, + arrayY: { name: 'array_y', detail: 'Erforderlich. Die zweite Matrix oder der zweite Wertebereich' }, + }, + }, + SUMXMY2: { + description: 'Die SUMXMY2-Funktion gibt die Summe der Quadrate der Unterschiede der entsprechenden Werte in zwei Arrays zurück.', + abstract: 'Die SUMXMY2-Funktion gibt die Summe der Quadrate der Unterschiede der entsprechenden Werte in zwei Arrays zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Das erste Array oder der erste Wertebereich. Erforderlich.' }, + arrayY: { name: 'array_y', detail: 'Das zweite Array oder wertebereich. Erforderlich.' }, + }, + }, + TAN: { + description: 'Gibt den Tangens einer Zahl zurück.', + abstract: 'Gibt den Tangens einer Zahl zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Der Winkel im Bogenmaß, für den Sie den Tangens ermitteln möchten' }, + }, + }, + TANH: { + description: 'Gibt den hyperbolischen Tangens einer Zahl zurück.', + abstract: 'Gibt den hyperbolischen Tangens einer Zahl zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine beliebige reelle Zahl' }, + }, + }, + TRUNC: { + description: 'Die TRUNC-Funktionen kürzen eine Zahl auf eine ganze Zahl ab, indem der Bruchteil der Zahl entfernt wird.', + abstract: 'Die TRUNC-Funktionen kürzen eine Zahl auf eine ganze Zahl ab, indem der Bruchteil der Zahl entfernt wird.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, deren Stellen Sie abschneiden möchten.' }, + numDigits: { name: 'num_digits', detail: 'Optional. Eine Zahl, die angibt, wie viele Nachkommastellen erhalten bleiben sollen. Der Standardwert für "Anzahl_Stellen" ist 0 (null).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/en-US.ts b/packages/sheets-formula/src/locale/function-list/math/en-US.ts index 8b7161a4c2..bcf4e167d0 100644 --- a/packages/sheets-formula/src/locale/function-list/math/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/math/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/en-us/excel/functions/abs-function', }, ], functionParameter: { @@ -34,7 +34,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/en-us/excel/functions/acos-function', }, ], functionParameter: { @@ -47,7 +47,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/en-us/excel/functions/acosh-function', }, ], functionParameter: { @@ -60,7 +60,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/en-us/excel/functions/acot-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/en-us/excel/functions/acoth-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/en-us/excel/functions/aggregate-function', }, ], functionParameter: { @@ -100,42 +100,42 @@ const locale = { }, }, ARABIC: { - description: 'Converts a Roman number to Arabic, as a number', - abstract: 'Converts a Roman number to Arabic, as a number', + description: 'Converts a Roman numeral to an Arabic numeral.', + abstract: 'Converts a Roman numeral to an Arabic numeral.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/en-us/excel/functions/arabic-function', }, ], functionParameter: { - text: { name: 'text', detail: 'A string enclosed in quotation marks, an empty string (""), or a reference to a cell containing text.' }, + text: { name: 'text', detail: 'Required. 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', + description: 'Returns the arcsine, or inverse sine, of a number. The arcsine is the angle whose sine is number . The returned angle is given in radians in the range -pi/2 to pi/2.', + abstract: 'Returns the arcsine, or inverse sine, of a number. The arcsine is the angle whose sine is number . The returned angle is given in radians in the range -pi/2 to pi/2.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/en-us/excel/functions/asin-function', }, ], functionParameter: { - number: { name: 'number', detail: 'The sine of the angle you want and must be from -1 to 1.' }, + number: { name: 'number', detail: 'Required. 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', + description: 'Returns the inverse hyperbolic sine of a number. The inverse hyperbolic sine is the value whose hyperbolic sine is number , so ASINH(SINH(number)) equals number .', + abstract: 'Returns the inverse hyperbolic sine of a number. The inverse hyperbolic sine is the value whose hyperbolic sine is number , so ASINH(SINH(number)) equals number .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/en-us/excel/functions/asinh-function', }, ], functionParameter: { - number: { name: 'number', detail: 'Any real number.' }, + number: { name: 'number', detail: 'Required. Any real number.' }, }, }, ATAN: { @@ -144,7 +144,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/en-us/excel/functions/atan-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/en-us/excel/functions/atan2-function', }, ], functionParameter: { @@ -166,31 +166,31 @@ const locale = { }, }, ATANH: { - description: 'Returns the inverse hyperbolic tangent of a number.', - abstract: 'Returns the inverse hyperbolic tangent of a number', + description: 'Returns the inverse hyperbolic tangent of a number. Number must be between -1 and 1 (excluding -1 and 1). The inverse hyperbolic tangent is the value whose hyperbolic tangent is number , so ATANH(TANH(number)) equals number .', + abstract: 'Returns the inverse hyperbolic tangent of a number. Number must be between -1 and 1 (excluding -1 and 1). The inverse hyperbolic tangent is the value whose hyperbolic tangent is number , so ATANH(TANH(number)) equals number .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/en-us/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'number', detail: 'Any real number between 1 and -1.' }, + number: { name: 'number', detail: 'Required. 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)', + 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', + url: 'https://support.microsoft.com/en-us/excel/functions/base-function', }, ], 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.' }, + number: { name: 'number', detail: 'Required. 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: 'Required. 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: 'Optional. The minimum length of the returned string. Must be an integer greater than or equal to 0.' }, }, }, CEILING: { @@ -199,7 +199,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/en-us/excel/functions/ceiling-function', }, ], functionParameter: { @@ -213,7 +213,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/en-us/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -228,7 +228,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/en-us/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -242,7 +242,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/en-us/excel/functions/combin-function', }, ], functionParameter: { @@ -256,7 +256,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/en-us/excel/functions/combina-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/en-us/excel/functions/cos-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/en-us/excel/functions/cosh-function', }, ], functionParameter: { @@ -296,7 +296,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/en-us/excel/functions/cot-function', }, ], functionParameter: { @@ -309,7 +309,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/en-us/excel/functions/coth-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/en-us/excel/functions/csc-function', }, ], functionParameter: { @@ -335,7 +335,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/en-us/excel/functions/csch-function', }, ], functionParameter: { @@ -348,7 +348,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/en-us/excel/functions/decimal-function', }, ], functionParameter: { @@ -362,7 +362,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/en-us/excel/functions/degrees-function', }, ], functionParameter: { @@ -375,7 +375,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/en-us/excel/functions/even-function', }, ], functionParameter: { @@ -388,7 +388,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/en-us/excel/functions/exp-function', }, ], functionParameter: { @@ -401,7 +401,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/en-us/excel/functions/fact-function', }, ], functionParameter: { @@ -414,7 +414,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/en-us/excel/functions/factdouble-function', }, ], functionParameter: { @@ -427,7 +427,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/en-us/excel/functions/floor-function', }, ], functionParameter: { @@ -441,7 +441,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/en-us/excel/functions/floor-math-function', }, ], functionParameter: { @@ -456,7 +456,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/en-us/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -470,7 +470,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/en-us/excel/functions/gcd-function', }, ], functionParameter: { @@ -484,7 +484,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/en-us/excel/functions/int-function', }, ], functionParameter: { @@ -497,12 +497,12 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/en-us/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: 'number', detail: 'The value you want to round.' }, + significance: { name: 'significance', detail: 'The multiple to which you want to round.' }, }, }, LCM: { @@ -511,7 +511,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/en-us/excel/functions/lcm-function', }, ], functionParameter: { @@ -519,27 +519,13 @@ const locale = { 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', + url: 'https://support.microsoft.com/en-us/excel/functions/ln-function', }, ], functionParameter: { @@ -552,7 +538,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/en-us/excel/functions/log-function', }, ], functionParameter: { @@ -566,7 +552,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/en-us/excel/functions/log10-function', }, ], functionParameter: { @@ -579,7 +565,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/en-us/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -592,7 +578,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/en-us/excel/functions/minverse-function', }, ], functionParameter: { @@ -605,7 +591,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/en-us/excel/functions/mmult-function', }, ], functionParameter: { @@ -619,7 +605,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/en-us/excel/functions/mod-function', }, ], functionParameter: { @@ -633,7 +619,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/en-us/excel/functions/mround-function', }, ], functionParameter: { @@ -647,7 +633,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/en-us/excel/functions/multinomial-function', }, ], functionParameter: { @@ -661,7 +647,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/en-us/excel/functions/munit-function', }, ], functionParameter: { @@ -674,7 +660,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/en-us/excel/functions/odd-function', }, ], functionParameter: { @@ -687,7 +673,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/en-us/excel/functions/pi-function', }, ], functionParameter: { @@ -699,7 +685,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/en-us/excel/functions/power-function', }, ], functionParameter: { @@ -713,7 +699,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/en-us/excel/functions/product-function', }, ], functionParameter: { @@ -727,7 +713,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/en-us/excel/functions/quotient-function', }, ], functionParameter: { @@ -741,7 +727,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/en-us/excel/functions/radians-function', }, ], functionParameter: { @@ -754,7 +740,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/en-us/excel/functions/rand-function', }, ], functionParameter: { @@ -766,7 +752,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/en-us/excel/functions/randarray-function', }, ], functionParameter: { @@ -783,7 +769,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/en-us/excel/functions/randbetween-function', }, ], functionParameter: { @@ -797,7 +783,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/en-us/excel/functions/roman-function', }, ], functionParameter: { @@ -811,7 +797,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/en-us/excel/functions/round-function', }, ], functionParameter: { @@ -839,7 +825,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/en-us/excel/functions/rounddown-function', }, ], functionParameter: { @@ -853,7 +839,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/en-us/excel/functions/roundup-function', }, ], functionParameter: { @@ -867,7 +853,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/en-us/excel/functions/sec-function', }, ], functionParameter: { @@ -880,7 +866,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/en-us/excel/functions/sech-function', }, ], functionParameter: { @@ -893,7 +879,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/en-us/excel/functions/seriessum-function', }, ], functionParameter: { @@ -909,7 +895,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/en-us/excel/functions/sequence-function', }, ], functionParameter: { @@ -925,7 +911,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/en-us/excel/functions/sign-function', }, ], functionParameter: { @@ -938,7 +924,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/en-us/excel/functions/sin-function', }, ], functionParameter: { @@ -951,7 +937,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/en-us/excel/functions/sinh-function', }, ], functionParameter: { @@ -964,7 +950,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/en-us/excel/functions/sqrt-function', }, ], functionParameter: { @@ -977,7 +963,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/en-us/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -990,7 +976,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/en-us/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1005,7 +991,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/en-us/excel/functions/sum-function', }, ], functionParameter: { @@ -1025,7 +1011,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/en-us/excel/functions/sumif-function', }, ], functionParameter: { @@ -1049,7 +1035,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/en-us/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1066,7 +1052,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/en-us/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1080,7 +1066,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/en-us/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1094,7 +1080,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/en-us/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1108,7 +1094,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/en-us/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1122,7 +1108,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/en-us/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1136,7 +1122,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/en-us/excel/functions/tan-function', }, ], functionParameter: { @@ -1149,7 +1135,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/en-us/excel/functions/tanh-function', }, ], functionParameter: { @@ -1162,7 +1148,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/en-us/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/es-ES.ts b/packages/sheets-formula/src/locale/function-list/math/es-ES.ts index b2bad3cc67..72e5cde77b 100644 --- a/packages/sheets-formula/src/locale/function-list/math/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/math/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/es-es/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/es-es/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/es-es/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/es-es/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/es-es/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/es-es/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/es-es/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/es-es/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/es-es/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/es-es/excel/functions/atan-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/es-es/excel/functions/atan2-function', }, ], functionParameter: { @@ -168,31 +168,31 @@ const locale: typeof enUS = { }, }, ATANH: { - description: 'Devuelve la tangente hiperbólica inversa de un número.', - abstract: 'Devuelve la tangente hiperbólica inversa de un número', + description: 'Devuelve la tangente hiperbólica inversa de un número. El número debe estar entre -1 y 1 (excluyendo -1 y 1). La tangente hiperbólica inversa es el valor cuya tangente hiperbólica es número , de modo que ATANH(TANH(número)) es igual a número .', + abstract: 'Devuelve la tangente hiperbólica inversa de un número. El número debe estar entre -1 y 1 (excluyendo -1 y 1). La tangente hiperbólica inversa es el valor cuya tangente hiperbólica es número , de modo que ATANH(TANH(número)) es igual a número .', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/es-es/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'número', detail: 'Cualquier número real entre 1 y -1.' }, + number: { name: 'número', detail: 'Obligatorio. Cualquier número real entre 1 y -1.' }, }, }, BASE: { - description: 'Convierte un número en una representación de texto con la base dada (raíz)', - abstract: 'Convierte un número en una representación de texto con la base dada (raíz)', + description: 'Convierte un número en una representación de texto con la base dada.', + abstract: 'Convierte un número en una representación de texto con la base dada.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/es-es/excel/functions/base-function', }, ], functionParameter: { - number: { name: 'número', detail: 'El número que desea convertir. Debe ser un entero mayor o igual a 0 y menor que 2^53.' }, - radix: { name: 'base', detail: 'La base a la que desea convertir el número. Debe ser un entero mayor o igual a 2 y menor o igual a 36.' }, - minLength: { name: 'longitud_mínima', detail: 'La longitud mínima de la cadena devuelta. Debe ser un entero mayor o igual a 0.' }, + number: { name: 'número', detail: 'Obligatorio. El número que desea convertir. Debe ser un entero mayor o igual que 0 y menor que 2^53.' }, + radix: { name: 'base', detail: 'Obligatorio. La base a la que desea convertir el número. Debe ser un entero mayor o igual a 2 y menor o igual a 36.' }, + minLength: { name: 'longitud_mínima', detail: 'Opcional. La longitud mínima de la cadena que se devuelve. Debe ser un entero mayor o igual a 0.' }, }, }, CEILING: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/es-es/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/es-es/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/es-es/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/es-es/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/es-es/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/es-es/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/es-es/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/es-es/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/es-es/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/es-es/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/es-es/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/es-es/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/es-es/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/es-es/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/es-es/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/es-es/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/es-es/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/es-es/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/es-es/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/es-es/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/es-es/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/es-es/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/es-es/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + number: { name: 'número', detail: 'El valor que desea redondear.' }, + significance: { name: 'cifra_significativa', detail: 'El múltiplo al que desea redondear.' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/es-es/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: 'número2', detail: 'El segundo número cuyo mínimo común múltiplo se va a encontrar. Se pueden especificar hasta 255 números de esta manera.' }, }, }, - LET: { - description: 'Asigna nombres a los resultados de los cálculos para permitir el almacenamiento de cálculos intermedios, valores o la definición de nombres dentro de una fórmula', - abstract: 'Asigna nombres a los resultados de los cálculos para permitir el almacenamiento de cálculos intermedios, valores o la definición de nombres dentro de una fórmula', - links: [ - { - title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', - }, - ], - functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, - }, - }, LN: { description: 'Devuelve el logaritmo natural de un número', abstract: 'Devuelve el logaritmo natural de un número', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/es-es/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/es-es/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/es-es/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/es-es/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/es-es/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/es-es/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/es-es/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/es-es/excel/functions/mround-function', }, ], functionParameter: { @@ -649,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/es-es/excel/functions/multinomial-function', }, ], functionParameter: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/es-es/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/es-es/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/es-es/excel/functions/pi-function', }, ], functionParameter: { @@ -701,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/es-es/excel/functions/power-function', }, ], functionParameter: { @@ -715,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/es-es/excel/functions/product-function', }, ], functionParameter: { @@ -729,7 +715,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/es-es/excel/functions/quotient-function', }, ], functionParameter: { @@ -743,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/es-es/excel/functions/radians-function', }, ], functionParameter: { @@ -756,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/es-es/excel/functions/rand-function', }, ], functionParameter: { @@ -768,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/es-es/excel/functions/randarray-function', }, ], functionParameter: { @@ -785,7 +771,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/es-es/excel/functions/randbetween-function', }, ], functionParameter: { @@ -799,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/es-es/excel/functions/roman-function', }, ], functionParameter: { @@ -813,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/es-es/excel/functions/round-function', }, ], functionParameter: { @@ -841,7 +827,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/es-es/excel/functions/rounddown-function', }, ], functionParameter: { @@ -855,7 +841,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/es-es/excel/functions/roundup-function', }, ], functionParameter: { @@ -869,7 +855,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/es-es/excel/functions/sec-function', }, ], functionParameter: { @@ -882,7 +868,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/es-es/excel/functions/sech-function', }, ], functionParameter: { @@ -895,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/es-es/excel/functions/seriessum-function', }, ], functionParameter: { @@ -911,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/es-es/excel/functions/sequence-function', }, ], functionParameter: { @@ -927,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/es-es/excel/functions/sign-function', }, ], functionParameter: { @@ -940,7 +926,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/es-es/excel/functions/sin-function', }, ], functionParameter: { @@ -953,7 +939,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/es-es/excel/functions/sinh-function', }, ], functionParameter: { @@ -966,7 +952,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/es-es/excel/functions/sqrt-function', }, ], functionParameter: { @@ -979,7 +965,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/es-es/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -992,7 +978,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/es-es/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1007,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/es-es/excel/functions/sum-function', }, ], functionParameter: { @@ -1027,7 +1013,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/es-es/excel/functions/sumif-function', }, ], functionParameter: { @@ -1051,7 +1037,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/es-es/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1068,7 +1054,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/es-es/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1082,7 +1068,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/es-es/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1096,7 +1082,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/es-es/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1110,7 +1096,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/es-es/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1124,7 +1110,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/es-es/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1138,7 +1124,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/tan-function-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/es-es/excel/functions/tan-function', }, ], functionParameter: { @@ -1151,7 +1137,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/es-es/excel/functions/tanh-function', }, ], functionParameter: { @@ -1164,7 +1150,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/es-es/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/es-es/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/math/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/math/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/math/fr-FR.ts index 60a22638e2..a926886e18 100644 --- a/packages/sheets-formula/src/locale/function-list/math/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/math/fr-FR.ts @@ -14,8 +14,1132 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ABS: { + description: 'Renvoie la valeur absolue d’un nombre. La valeur absolue d’un nombre est le nombre sans son signe.', + abstract: 'Renvoie la valeur absolue d’un nombre. La valeur absolue d’un nombre est le nombre sans son signe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre réel dont vous voulez obtenir la valeur absolue.' }, + }, + }, + ACOS: { + description: 'Renvoie l’arccosinus d’un nombre. L’arccosinus, ou inverse du cosinus, est l’angle dont le cosinus est l’argument nombre . L’angle renvoyé, exprimé en radians, est compris entre 0 (zéro) et pi.', + abstract: 'Renvoie l’arccosinus d’un nombre. L’arccosinus, ou inverse du cosinus, est l’angle dont le cosinus est l’argument nombre . L’angle renvoyé, exprimé en radians, est compris entre 0 (zéro) et pi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Cosinus de l’angle souhaité et doit être de -1 à 1.' }, + }, + }, + ACOSH: { + description: 'Renvoie le cosinus hyperbolique inverse d’un nombre. L’argument Nombre doit être supérieur ou égal à 1. Le cosinus hyperbolique inverse est la valeur dont le cosinus hyperbolique est nombre , de sorte que ACOSH(COSH(nombre)) égale nombre .', + abstract: 'Renvoie le cosinus hyperbolique inverse d’un nombre. L’argument Nombre doit être supérieur ou égal à 1. Le cosinus hyperbolique inverse est la valeur dont le cosinus hyperbolique est nombre , de sorte que ACOSH(COSH(nombre)) égale nombre .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre réel quelconque supérieur ou égal à 1.' }, + }, + }, + ACOT: { + description: 'Renvoie la valeur principale de l’arccotangente, ou cotangente inverse, d’un nombre.', + abstract: 'Renvoie la valeur principale de l’arccotangente, ou cotangente inverse, d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Ce nombre représente la cotangente de l’angle souhaité. Il doit s’agit d’un nombre réel.' }, + }, + }, + ACOTH: { + description: 'Renvoie la cotangente hyperbolique inverse d’un nombre.', + abstract: 'Renvoie la cotangente hyperbolique inverse d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'La valeur absolue de number doit être supérieure à 1.' }, + }, + }, + AGGREGATE: { + description: 'Renvoie un agrégat dans une liste ou une base de données. La fonction AGREGAT peut appliquer diverses fonctions d’agrégation à une liste ou à une base de données en proposant l’option d’ignorer les lignes masquées et les valeurs d’erreur.', + abstract: 'Renvoie un agrégat dans une liste ou une base de données. La fonction AGREGAT peut appliquer diverses fonctions d’agrégation à une liste ou à une base de données en proposant l’option d’ignorer les lignes masquées et les valeurs d’erreur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Obligatoire. Un nombre compris entre 1 et 19 et incluant ces valeurs qui spécifie la fonction à utiliser.' }, + options: { name: 'options', detail: 'Obligatoire. Valeur numérique qui détermine les valeurs à ignorer dans la plage d’évaluation de la fonction. Remarque La fonction n’ignore pas les lignes masquées, les sous-totaux imbriqués ou les agrégats imbriqués si l’argument de tableau inclut un calcul, par exemple : =AGGREGATE(14,3,A1 :A100*(A1 :A100>0),1)' }, + ref1: { name: 'ref1', detail: 'Obligatoire. Premier argument numérique des fonctions qui acceptent plusieurs arguments numériques pour lesquels vous souhaitez obtenir la valeur d’agrégation.' }, + ref2: { name: 'ref2', detail: 'Optionnel. Arguments numériques compris entre 2 et 253 pour lesquels vous souhaitez obtenir la valeur d’agrégation. Pour les fonctions qui acceptent une matrice, réf1 est une matrice, une formule matricielle ou une référence à une plage de cellules pour lesquelles vous souhaitez obtenir la valeur d’agrégation. Réf2 est un deuxième argument obligatoire pour certaines fonctions. Les fonctions suivantes exigent un argument réf2 :' }, + }, + }, + ARABIC: { + description: 'Convertit un chiffre romain en chiffre arabe.', + abstract: 'Convertit un chiffre romain en chiffre arabe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Chaîne placée entre guillemets, chaîne vide ("") ou référence à une cellule contenant du texte.' }, + }, + }, + ASIN: { + description: 'Renvoie l’arcsinus, ou sinus inverse, d’un nombre. L’arcsinus est l’angle dont le sinus est ce nombre. L’angle renvoyé est exprimé en radians entre -pi/2 et pi/2.', + abstract: 'Renvoie l’arcsinus, ou sinus inverse, d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Sinus de l’angle souhaité; il doit être compris entre -1 et 1.' }, + }, + }, + ASINH: { + description: 'Renvoie le sinus hyperbolique inverse d’un nombre. Le sinus hyperbolique inverse est la valeur dont le sinus hyperbolique est ce nombre ; ainsi ASINH(SINH(nombre)) est égal à nombre.', + abstract: 'Renvoie le sinus hyperbolique inverse d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Tout nombre réel.' }, + }, + }, + ATAN: { + description: 'Renvoie l’arctangente ou la tangente inverse d’un nombre. L’arctangente est l’angle dont la tangente est l’argument nombre . L’angle renvoyé, exprimé en radians, est compris entre -pi/2 et pi/2.', + abstract: 'Renvoie l’arctangente ou la tangente inverse d’un nombre. L’arctangente est l’angle dont la tangente est l’argument nombre . L’angle renvoyé, exprimé en radians, est compris entre -pi/2 et pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la tangente de l’angle.' }, + }, + }, + ATAN2: { + description: 'Renvoie l’arctangente ou la tangente inverse des coordonnées x et y spécifiées. L’arctangente est l’angle formé par l’axe des abscisses (x) et une droite passant par l’origine (0, 0) et un point dont les coordonnées sont (no_x, no_y). Cet angle, exprimé en radians, est compris entre -pi et pi, -pi non compris.', + abstract: 'Renvoie l’arctangente ou la tangente inverse des coordonnées x et y spécifiées. L’arctangente est l’angle formé par l’axe des abscisses (x) et une droite passant par l’origine (0, 0) et un point dont les coordonnées sont (no_x, no_y). Cet angle, exprimé en radians, est compris entre -pi et pi, -pi non compris.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Obligatoire. Représente l’abscisse du point (coordonnée sur l’axe des x).' }, + yNum: { name: 'y_num', detail: 'Obligatoire. Représente l’ordonnée du point (coordonnée sur l’axe des y).' }, + }, + }, + ATANH: { + description: 'Renvoie la tangente hyperbolique inverse d’un nombre. L’argument nombre doit être strictement compris entre -1 et 1 (-1 et 1 non compris). La tangente hyperbolique inverse est la valeur dont la tangente hyperbolique est l’argument nombre , de sorte que ATANH(TANH(nombre)) égale nombre .', + abstract: 'Renvoie la tangente hyperbolique inverse d’un nombre. L’argument nombre doit être strictement compris entre -1 et 1 (-1 et 1 non compris). La tangente hyperbolique inverse est la valeur dont la tangente hyperbolique est l’argument nombre , de sorte que ATANH(TANH(nombre)) égale nombre .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre réel quelconque compris entre -1 et 1.' }, + }, + }, + BASE: { + description: 'Convertit un nombre en une représentation textuelle avec la base donnée.', + abstract: 'Convertit un nombre en une représentation textuelle avec la base donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Nombre à convertir. Doit être un entier supérieur ou égal à 0 et inférieur à 2^53.' }, + radix: { name: 'radix', detail: 'Obligatoire. Base dans laquelle convertir le nombre. Doit être un entier supérieur ou égal à 2 et inférieur ou égal à 36.' }, + minLength: { name: 'min_length', detail: 'Optionnel. Longueur minimale de la chaîne renvoyée. Doit être un entier supérieur ou égal à 0.' }, + }, + }, + CEILING: { + description: 'Renvoie l’argument nombre après l’avoir arrondi au multiple de l’argument précision en s’éloignant de zéro. Par exemple, si vous voulez que la valeur décimale de vos prix soit toujours un multiple de 5 centimes, et que le prix de votre produit est 4,42 F, utilisez la formule =PLAFOND(4,42;0,05) pour arrondir les centimes au multiple de 5 supérieur.', + abstract: 'Renvoie l’argument nombre après l’avoir arrondi au multiple de l’argument précision en s’éloignant de zéro. Par exemple, si vous voulez que la valeur décimale de vos prix soit toujours un multiple de 5 centimes, et que le prix de votre produit est 4,42 F, utilisez la formule =PLAFOND(4,42;0,05) pour arrondir les centimes au multiple de 5 supérieur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + significance: { name: 'significance', detail: 'Obligatoire. Représente le multiple auquel vous souhaitez arrondir.' }, + }, + }, + CEILING_MATH: { + description: 'Le PLAFOND. La fonction MATH arrondit un nombre jusqu’à l’entier le plus proche ou, éventuellement, au multiple de précision le plus proche.', + abstract: 'Le PLAFOND. La fonction MATH arrondit un nombre jusqu’à l’entier le plus proche ou, éventuellement, au multiple de précision le plus proche.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. (doit être compris entre -2.229E-308.et 9.99E+307.)' }, + significance: { name: 'significance', detail: 'Optionnel. Il s’agit du nombre de chiffres significatifs après la virgule décimale à laquelle le nombre doit être arrondi.' }, + mode: { name: 'mode', detail: 'Optionnel. Cela contrôle si les nombres négatifs sont arrondis vers ou loin de zéro.' }, + }, + }, + CEILING_PRECISE: { + description: 'Renvoie un nombre arrondi au nombre entier le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. Quel que soit son signe, ce nombre est arrondi à l’entier supérieur. Toutefois, si le nombre ou l’argument précision est égal à zéro, zéro est retourné.', + abstract: 'Renvoie un nombre arrondi au nombre entier le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. Quel que soit son signe, ce nombre est arrondi à l’entier supérieur. Toutefois, si le nombre ou l’argument précision est égal à zéro, zéro est retourné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + significance: { name: 'significance', detail: 'Optionnel. Multiple auquel le nombre doit être arrondi. Si l’argument précision est omis, sa valeur par défaut est 1.' }, + }, + }, + COMBIN: { + description: 'Renvoie le nombre de combinaisons pour un nombre donné d’éléments. Utilisez COMBIN pour déterminer le nombre total de groupes qu’il est possible de former à partir d’un nombre donné d’éléments.', + abstract: 'Renvoie le nombre de combinaisons pour un nombre donné d’éléments. Utilisez COMBIN pour déterminer le nombre total de groupes qu’il est possible de former à partir d’un nombre donné d’éléments.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre d’éléments.' }, + numberChosen: { name: 'number_chosen', detail: 'Obligatoire. Représente le nombre d’éléments dans chaque combinaison.' }, + }, + }, + COMBINA: { + description: 'Renvoie le nombre de combinaisons (avec répétitions) pour un nombre d’éléments donné.', + abstract: 'Renvoie le nombre de combinaisons (avec répétitions) pour un nombre d’éléments donné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Doit être supérieur ou égal à 0 et supérieur ou égal à Number_chosen. Les valeurs non entières sont tronquées.' }, + numberChosen: { name: 'number_chosen', detail: 'Obligatoire. Doit être supérieur ou égal à 0. Les valeurs non entières sont tronquées.' }, + }, + }, + COS: { + description: 'Renvoie le cosinus de l’angle spécifié.', + abstract: 'Renvoie le cosinus de l’angle spécifié.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente l’angle, exprimé en radians, dont vous voulez obtenir le cosinus.' }, + }, + }, + COSH: { + description: 'Renvoie le cosinus hyperbolique d’un nombre.', + abstract: 'Renvoie le cosinus hyperbolique d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente n’importe quel nombre réel dont vous voulez le cosinus hyperbolique.' }, + }, + }, + COT: { + description: 'Renvoie la cotangente d’un angle spécifié en radians.', + abstract: 'Renvoie la cotangente d’un angle spécifié en radians.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Angle exprimé en radians dont vous voulez calculer la cotangente.' }, + }, + }, + COTH: { + description: 'Retourne la cotangente hyperbolique d’un angle hyperbolique.', + abstract: 'Retourne la cotangente hyperbolique d’un angle hyperbolique.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire.' }, + }, + }, + CSC: { + description: 'Renvoie la cosécante d’un angle spécifié en radians.', + abstract: 'Renvoie la cosécante d’un angle spécifié en radians.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire.' }, + }, + }, + CSCH: { + description: 'Renvoie la cosécante hyperbolique d’un angle spécifié en radians.', + abstract: 'Renvoie la cosécante hyperbolique d’un angle spécifié en radians.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire.' }, + }, + }, + DECIMAL: { + description: 'Convertit une représentation textuelle d’un nombre dans une base donnée en nombre décimal.', + abstract: 'Convertit une représentation textuelle d’un nombre dans une base donnée en nombre décimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire.' }, + radix: { name: 'radix', detail: 'Obligatoire. La base doit être un entier.' }, + }, + }, + DEGREES: { + description: 'Cette fonction convertit les radians en degrés.', + abstract: 'Cette fonction convertit les radians en degrés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Obligatoire. Représente l’angle en radians que vous souhaitez convertir.' }, + }, + }, + EVEN: { + description: 'Retourne un nombre arrondi à l’entier pair le plus proche. Vous pouvez utiliser cette fonction pour traiter les éléments qui sont fournis en deux. Par exemple, une caisse d’emballage accepte des lignes d’un ou deux éléments. La caisse est pleine lorsque le nombre d’éléments, arrondi aux deux plus proches, correspond à la capacité de la caisse.', + abstract: 'Retourne un nombre arrondi à l’entier pair le plus proche. Vous pouvez utiliser cette fonction pour traiter les éléments qui sont fournis en deux. Par exemple, une caisse d’emballage accepte des lignes d’un ou deux éléments. La caisse est pleine lorsque le nombre d’éléments, arrondi aux deux plus proches, correspond à la capacité de la caisse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + }, + }, + EXP: { + description: 'Renvoie la constante e élevée à la puissance de l’argument nombre. La constante e est égale à 2,71828182845904, soit la base du logarithme népérien.', + abstract: 'Renvoie la constante e élevée à la puissance de l’argument nombre. La constante e est égale à 2,71828182845904, soit la base du logarithme népérien.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente l’exposant de la base e.' }, + }, + }, + FACT: { + description: 'Donne la factorielle d’un nombre. La factorielle de l’argument nombre est égale à 1*2*3*...* nombre.', + abstract: 'Donne la factorielle d’un nombre. La factorielle de l’argument nombre est égale à 1*2*3*...* nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre non négatif dont vous voulez obtenir la factorielle. Si ce nombre n’est pas un nombre entier, il sera tronqué à sa partie entière.' }, + }, + }, + FACTDOUBLE: { + description: 'Renvoie la factorielle double d’un nombre.', + abstract: 'Renvoie la factorielle double d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur dont vous voulez obtenir la factorielle double. Si nombre n’est pas un nombre entier, il est tronqué à sa partie entière.' }, + }, + }, + FLOOR: { + description: 'La fonction FLOOR dans Excel arrondit un nombre spécifié au multiple de précision spécifié le plus proche. Les nombres négatifs sont arrondis vers le bas (négatif supplémentaire) au multiple entier le plus proche en dessous de zéro.', + abstract: 'La fonction FLOOR dans Excel arrondit un nombre spécifié au multiple de précision spécifié le plus proche. Les nombres négatifs sont arrondis vers le bas (négatif supplémentaire) au multiple entier le plus proche en dessous de zéro.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur numérique à arrondir.' }, + significance: { name: 'significance', detail: 'Obligatoire. Représente le multiple auquel vous souhaitez arrondir.' }, + }, + }, + FLOOR_MATH: { + description: 'Arrondir un nombre au nombre entier inférieur le plus proche ou au multiple le plus proche de l’argument précision en tendant vers zéro.', + abstract: 'Arrondir un nombre au nombre entier inférieur le plus proche ou au multiple le plus proche de l’argument précision en tendant vers zéro.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Nombre à arrondir vers le bas.' }, + significance: { name: 'significance', detail: 'Optionnel. Multiple auquel vous souhaitez arrondir.' }, + mode: { name: 'mode', detail: 'Optionnel. Direction (vers 0 ou en s’éloignant de 0) pour l’arrondi des nombres négatifs.' }, + }, + }, + FLOOR_PRECISE: { + description: 'Renvoie un nombre arrondi au nombre entier inférieur le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. Quel que soit son signe, ce nombre est arrondi à l’entier inférieur. Toutefois, si le nombre ou l’argument précision est égal à zéro, zéro est retourné.', + abstract: 'Renvoie un nombre arrondi au nombre entier inférieur le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. Quel que soit son signe, ce nombre est arrondi à l’entier inférieur. Toutefois, si le nombre ou l’argument précision est égal à zéro, zéro est retourné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + significance: { name: 'significance', detail: 'Optionnel. Multiple auquel le nombre doit être arrondi. Si l’argument précision est omis, sa valeur par défaut est 1.' }, + }, + }, + GCD: { + description: 'Renvoie le plus grand commun diviseur de plusieurs nombres entiers. Le plus grand commun diviseur est le nombre entier le plus grand qui puisse diviser nombre1 et nombre2 sans qu’il y ait de reste.', + abstract: 'Renvoie le plus grand commun diviseur de plusieurs nombres entiers. Le plus grand commun diviseur est le nombre entier le plus grand qui puisse diviser nombre1 et nombre2 sans qu’il y ait de reste.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent 1 à 255 valeurs. Si une valeur n’est pas un nombre entier, elle sera tronquée à sa partie entière.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent 1 à 255 valeurs. Si une valeur n’est pas un nombre entier, elle sera tronquée à sa partie entière.' }, + }, + }, + INT: { + description: 'Arrondit un nombre à l’entier immédiatement inférieur.', + abstract: 'Arrondit un nombre à l’entier immédiatement inférieur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre réel que vous souhaitez arrondir au nombre entier immédiatement inférieur.' }, + }, + }, + ISO_CEILING: { + description: 'Renvoie un nombre arrondi à l’entier supérieur le plus proche ou au multiple de précision supérieur le plus proche.', + abstract: 'Renvoie un nombre arrondi à l’entier supérieur le plus proche ou au multiple de précision supérieur le plus proche.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + significance: { name: 'significance', detail: 'Optionnel. Multiple auquel le nombre doit être arrondi. Si l’argument précision est omis, sa valeur par défaut est 1.' }, + }, + }, + LCM: { + description: 'Retourne le multiple le moins commun d’entiers. Le multiple le moins commun est le plus petit entier positif qui est un multiple de tous les arguments entiers nombre1, nombre2, etc. Utilisez LCM pour ajouter des fractions avec différents dénominateurs.', + abstract: 'Retourne le multiple le moins commun d’entiers. Le multiple le moins commun est le plus petit entier positif qui est un multiple de tous les arguments entiers nombre1, nombre2, etc. Utilisez LCM pour ajouter des fractions avec différents dénominateurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 valeurs dont vous recherchez le plus petit commun multiple. Si une valeur n’est pas un nombre entier, elle est tronquée à sa partie entière.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 valeurs dont vous recherchez le plus petit commun multiple. Si une valeur n’est pas un nombre entier, elle est tronquée à sa partie entière.' }, + }, + }, + LN: { + description: 'Donne le logarithme népérien d’un nombre. Les logarithmes népériens sont ceux dont la base est la constante e (2,71828182845904).', + abstract: 'Donne le logarithme népérien d’un nombre. Les logarithmes népériens sont ceux dont la base est la constante e (2,71828182845904).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre réel positif dont vous souhaitez obtenir le logarithme népérien.' }, + }, + }, + LOG: { + description: 'Renvoie le logarithme d’un nombre de la base spécifiée.', + abstract: 'Renvoie le logarithme d’un nombre de la base spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre réel positif dont vous souhaitez obtenir le logarithme.' }, + base: { name: 'base', detail: 'Optionnel. Représente la base du logarithme. Si base est omis, la valeur par défaut est 10.' }, + }, + }, + LOG10: { + description: 'Calcule le logarithme en base 10 d’un nombre.', + abstract: 'Calcule le logarithme en base 10 d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre réel positif dont vous souhaitez obtenir le logarithme en base 10.' }, + }, + }, + MDETERM: { + description: 'Renvoie le déterminant matriciel d’une matrice.', + abstract: 'Renvoie le déterminant matriciel d’une matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente une matrice numérique comportant un nombre égal de lignes et de colonnes.' }, + }, + }, + MINVERSE: { + description: 'Renvoie l’inverse matricielle d’une matrice.', + abstract: 'Renvoie l’inverse matricielle d’une matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tableau numérique comportant le même nombre de lignes et de colonnes.' }, + }, + }, + MMULT: { + description: 'Renvoie le produit matriciel de deux matrices.', + abstract: 'Renvoie le produit matriciel de deux matrices.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Les tableaux à multiplier.' }, + array2: { name: 'array2', detail: 'Les tableaux à multiplier.' }, + }, + }, + MOD: { + description: 'Renvoie le reste de la division de l’argument nombre par l’argument diviseur. Le résultat est du même signe que diviseur.', + abstract: 'Renvoie le reste de la division de l’argument nombre par l’argument diviseur. Le résultat est du même signe que diviseur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre à diviser pour obtenir le reste.' }, + divisor: { name: 'divisor', detail: 'Obligatoire. Représente le nombre par lequel vous souhaitez diviser le nombre.' }, + }, + }, + MROUND: { + description: 'MROUND retourne un nombre arrondi au multiple souhaité.', + abstract: 'MROUND retourne un nombre arrondi au multiple souhaité.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + multiple: { name: 'multiple', detail: 'Obligatoire. Représente le multiple auquel vous souhaitez arrondir le nombre.' }, + }, + }, + MULTINOMIAL: { + description: 'Renvoie le rapport de la factorielle d’une somme de valeurs sur le produit des factorielles.', + abstract: 'Renvoie le rapport de la factorielle d’une somme de valeurs sur le produit des factorielles.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 valeurs dont vous souhaitez obtenir la multinomiale.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 valeurs dont vous souhaitez obtenir la multinomiale.' }, + }, + }, + MUNIT: { + description: 'La fonction MUNIT retourne la matrice d’unités pour la dimension spécifiée.', + abstract: 'La fonction MUNIT retourne la matrice d’unités pour la dimension spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Entier indiquant la dimension de la matrice unité à renvoyer. La fonction renvoie un tableau. Dimension doit être supérieure à zéro.' }, + }, + }, + ODD: { + description: 'Renvoie le nombre, arrondi à la valeur du nombre entier impair le plus proche en s’éloignant de zéro.', + abstract: 'Renvoie le nombre, arrondi à la valeur du nombre entier impair le plus proche en s’éloignant de zéro.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente la valeur à arrondir.' }, + }, + }, + PI: { + description: 'Renvoie la valeur 3,14159265358979, la constante mathématique pi, avec une précision de 15 décimales.', + abstract: 'Renvoie la valeur 3,14159265358979, la constante mathématique pi, avec une précision de 15 décimales.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Renvoie la valeur du nombre élevé à une puissance.', + abstract: 'Renvoie la valeur du nombre élevé à une puissance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Numéro de base. Il peut s’agir de n’importe quel nombre réel.' }, + power: { name: 'power', detail: 'Obligatoire. Représente l’exposant auquel le nombre de base est élevé.' }, + }, + }, + PRODUCT: { + description: 'La fonction PRODUIT multiplie tous les nombres donnés comme arguments et renvoie le produit. Par exemple, si les cellules A1 et A2 contiennent des nombres, vous pouvez utiliser la formule =PRODUCT(A1, A2) pour multiplier ces deux nombres ensemble. Vous pouvez également effectuer la même opération à l’aide de l’opérateur mathématique de multiplication ( * ), par exemple, =A1*A2 .', + abstract: 'La fonction PRODUIT multiplie tous les nombres donnés comme arguments et renvoie le produit. Par exemple, si les cellules A1 et A2 contiennent des nombres, vous pouvez utiliser la formule =PRODUCT(A1, A2) pour multiplier ces deux nombres ensemble. Vous pouvez également effectuer la même opération à l’aide de l’opérateur mathématique de multiplication ( * ), par exemple, =A1*A2 .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier nombre ou plage que vous souhaitez multiplier.' }, + number2: { name: 'number2', detail: 'Optionnel. Nombres ou plages supplémentaires que vous voulez multiplier, jusqu’à un maximum de 255 arguments.' }, + }, + }, + QUOTIENT: { + description: 'Renvoie la partie entière du résultat d’une division. Utilisez cette fonction lorsque vous voulez ignorer le reste d’une division.', + abstract: 'Renvoie la partie entière du résultat d’une division. Utilisez cette fonction lorsque vous voulez ignorer le reste d’une division.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Obligatoire. Représente le dividende.' }, + denominator: { name: 'denominator', detail: 'Obligatoire. Représente le diviseur.' }, + }, + }, + RADIANS: { + description: 'Convertit des degrés en radians.', + abstract: 'Convertit des degrés en radians.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Obligatoire. Désigne l’angle en degrés que vous souhaitez convertir.' }, + }, + }, + RAND: { + description: 'ALEA renvoie un nombre réel aléatoire distribué de manière symétrique supérieur ou égal à 0 et inférieur à 1. Un nouveau nombre réel aléatoire est renvoyé chaque fois que la feuille de calcul est recalculée.', + abstract: 'ALEA renvoie un nombre réel aléatoire distribué de manière symétrique supérieur ou égal à 0 et inférieur à 1. Un nouveau nombre réel aléatoire est renvoyé chaque fois que la feuille de calcul est recalculée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'Dans l’exemple suivant, nous avons créé un tableau de 5 lignes en hauteur x 3 colonnes de large. La première renvoie un ensemble de valeurs aléatoire compris entre 0 et 1, c\'est-à-dire le comportement par défaut de TABLEAU. ALEA. L’autre renvoie une série de valeurs décimales aléatoires compris entre 1 et 100. Enfin, le troisième exemple renvoie une série de nombres entiers aléatoires compris entre 1 et 100.', + abstract: 'Dans l’exemple suivant, nous avons créé un tableau de 5 lignes en hauteur x 3 colonnes de large. La première renvoie un ensemble de valeurs aléatoire compris entre 0 et 1, c\'est-à-dire le comportement par défaut de TABLEAU. ALEA. L’autre renvoie une série de valeurs décimales aléatoires compris entre 1 et 100. Enfin, le troisième exemple renvoie une série de nombres entiers aléatoires compris entre 1 et 100.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Nombre de lignes à renvoyer' }, + columns: { name: 'columns', detail: 'Nombre de colonnes à renvoyer' }, + min: { name: 'min', detail: 'Le nombre minimal que vous souhaitez renvoyé' }, + max: { name: 'max', detail: 'Le nombre maximal que vous souhaitez renvoyé' }, + wholeNumber: { name: 'whole_number', detail: 'Renvoyer un nombre entier ou une valeur décimale Vrai pour un nombre entier FALSE pour un nombre décimal' }, + }, + }, + RANDBETWEEN: { + description: 'Renvoie un nombre entier aléatoire entre les nombres que vous spécifiez. Un nouveau nombre entier aléatoire est renvoyé chaque fois que la feuille de calcul est calculée.', + abstract: 'Renvoie un nombre entier aléatoire entre les nombres que vous spécifiez. Un nouveau nombre entier aléatoire est renvoyé chaque fois que la feuille de calcul est calculée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Obligatoire. Représente le plus petit nombre entier que la fonction ALEA.ENTRE.BORNES peut renvoyer.' }, + top: { name: 'top', detail: 'Obligatoire. Représente le plus grand nombre entier que la fonction ALEA.ENTRE.BORNES peut renvoyer.' }, + }, + }, + ROMAN: { + description: 'Convertit un nombre arabe en nombre romain, sous forme de texte.', + abstract: 'Convertit un nombre arabe en nombre romain, sous forme de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le chiffre arabe que vous souhaitez convertir.' }, + form: { name: 'form', detail: 'Optionnel. Représente un argument déterminant le type de chiffres romains que vous souhaitez obtenir. Le style peut aller de Classique à Simplifié, c’est-à-dire devenir plus concis à mesure que les valeurs augmentent. Reportez-vous à l’exemple ROMAN(499,0) ci-dessous.' }, + }, + }, + ROUND: { + description: 'La fonction ARRONDI arrondi un nombre à un nombre spécifié de chiffres. Par exemple, si la cellule A1 contient la valeur 23,7825 et que vous voulez l’arrondir à deux décimales, vous pouvez utiliser la formule suivante :', + abstract: 'La fonction ARRONDI arrondi un nombre à un nombre spécifié de chiffres. Par exemple, si la cellule A1 contient la valeur 23,7825 et que vous voulez l’arrondir à deux décimales, vous pouvez utiliser la formule suivante :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Nombre à arrondir.' }, + numDigits: { name: 'num_digits', detail: 'Obligatoire. Nombre de chiffres auquel vous voulez arrondir l’argument nombre.' }, + }, + }, + ROUNDBANK: { + description: 'Arrondit un nombre selon la méthode de l’arrondi bancaire.', + abstract: 'Arrondit un nombre selon la méthode de l’arrondi bancaire.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Nombre à arrondir selon la méthode de l’arrondi bancaire.' }, + numDigits: { name: 'num_digits', detail: 'Nombre de chiffres auquel effectuer l’arrondi bancaire.' }, + }, + }, + ROUNDDOWN: { + description: 'Arrondit un nombre en tendant vers 0 (zéro).', + abstract: 'Arrondit un nombre en tendant vers 0 (zéro).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre réel quelconque à arrondir en tendant vers zéro.' }, + numDigits: { name: 'num_digits', detail: 'Obligatoire. Représente le nombre de chiffres à prendre en compte pour arrondir l’argument nombre.' }, + }, + }, + ROUNDUP: { + description: 'Arrondit un nombre en s’éloignant de 0 (zéro).', + abstract: 'Arrondit un nombre en s’éloignant de 0 (zéro).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre réel quelconque à arrondir en s’éloignant de zéro.' }, + numDigits: { name: 'num_digits', detail: 'Obligatoire. Représente le nombre de chiffres à prendre en compte pour arrondir l’argument nombre.' }, + }, + }, + SEC: { + description: 'Renvoie la sécante d’un angle.', + abstract: 'Renvoie la sécante d’un angle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angle en radians dont vous souhaitez obtenir la sécante.' }, + }, + }, + SECH: { + description: 'Renvoie la sécante hyperbolique d’un angle.', + abstract: 'Renvoie la sécante hyperbolique d’un angle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angle en radians dont vous souhaitez obtenir la sécante hyperbolique.' }, + }, + }, + SERIESSUM: { + description: 'Renvoie la somme d’une série géométrique en s’appuyant sur la formule suivante :', + abstract: 'Renvoie la somme d’une série géométrique en s’appuyant sur la formule suivante :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur d’entrée de la série de puissances.' }, + n: { name: 'n', detail: 'Obligatoire. Représente la puissance initiale à laquelle vous voulez élever x.' }, + m: { name: 'm', detail: 'Obligatoire. Représente le degré d’accroissement de la valeur de l’argument n pour chacun des termes de la série.' }, + coefficients: { name: 'coefficients', detail: 'Obligatoire. Représente un ensemble de coefficients multiplicateurs de chaque puissance successive de l’argument x. Le nombre de valeurs de l’argument coefficients détermine le nombre de termes de la série de puissances. Ainsi, si l’argument coefficients est composé de trois valeurs, la série comporte trois termes.' }, + }, + }, + SEQUENCE: { + description: 'Dans l’exemple suivant, nous avons créé un tableau de 4 lignes x 5 colonnes avec la formule =SEQUENCE(4;5) .', + abstract: 'Dans l’exemple suivant, nous avons créé un tableau de 4 lignes x 5 colonnes avec la formule =SEQUENCE(4;5) .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Nombre de lignes à renvoyer' }, + columns: { name: 'columns', detail: 'Nombre de colonnes à renvoyer' }, + start: { name: 'start', detail: 'Premier nombre de la séquence' }, + step: { name: 'step', detail: 'Montant à appliquer pour incrémenter chaque valeur suivante dans le tableau' }, + }, + }, + SIGN: { + description: 'Détermine le signe d’un nombre. Renvoie 1 si le nombre est positif, zéro (0) si le nombre est égal à 0 et -1 si le nombre est négatif.', + abstract: 'Détermine le signe d’un nombre. Renvoie 1 si le nombre est positif, zéro (0) si le nombre est égal à 0 et -1 si le nombre est négatif.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente n’importe quel nombre réel.' }, + }, + }, + SIN: { + description: 'Renvoie le sinus d’un nombre.', + abstract: 'Renvoie le sinus d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente l’angle exprimé en radians dont vous voulez obtenir le sinus.' }, + }, + }, + SINH: { + description: 'Renvoie le sinus hyperbolique d’un nombre.', + abstract: 'Renvoie le sinus hyperbolique d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente n’importe quel nombre réel.' }, + }, + }, + SQRT: { + description: 'Donne la racine carrée d’un nombre.', + abstract: 'Donne la racine carrée d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre dont vous voulez obtenir la racine carrée.' }, + }, + }, + SQRTPI: { + description: 'Renvoie la racine carrée de (nombre * pi).', + abstract: 'Renvoie la racine carrée de (nombre * pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre par lequel pi est multiplié.' }, + }, + }, + SUBTOTAL: { + description: 'Renvoie un sous-total dans une liste ou une base de données. Il est généralement plus facile de créer une liste comportant des sous-totaux à l’aide de la commande Sous-total du groupe Contour dans l’onglet Données de l’application de bureau Excel. Une fois cette liste de sous-totaux créée, vous pouvez la modifier en changeant la fonction SOUS.TOTAL.', + abstract: 'Renvoie un sous-total dans une liste ou une base de données. Il est généralement plus facile de créer une liste comportant des sous-totaux à l’aide de la commande Sous-total du groupe Contour dans l’onglet Données de l’application de bureau Excel. Une fois cette liste de sous-totaux créée, vous pouvez la modifier en changeant la fonction SOUS.TOTAL.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Obligatoire. Le nombre 1 à 11 ou 101 à 111 qui spécifie la fonction à utiliser pour calculer le sous-total. 1 à 11 inclut les lignes masquées manuellement, tandis que 101 à 111 les exclut ; les cellules filtrées sont toujours exclues.' }, + ref1: { name: 'ref1', detail: 'Obligatoire. Première référence ou plage nommée dont vous souhaitez calculer le sous-total.' }, + ref2: { name: 'ref2', detail: 'Optionnel. Plages ou références nommées 2 à 254 dont vous souhaitez calculer le sous-total.' }, + }, + }, + SUM: { + description: 'La fonction SUM ajoute des valeurs. Vous pouvez ajouter des valeurs individuelles, des références ou des plages de cellules, ou une combinaison des trois.', + abstract: 'La fonction SUM ajoute des valeurs. Vous pouvez ajouter des valeurs individuelles, des références ou des plages de cellules, ou une combinaison des trois.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'Premier nombre à additionner. Le nombre peut être comme 4, une référence de cellule comme B6 ou une plage de cellules comme B2 :B8.' }, + number2: { name: 'Number 2', detail: 'Il s’agit du deuxième nombre à additionner. Vous pouvez spécifier jusqu’à 255 nombres de cette façon.' }, + }, + }, + SUMIF: { + description: 'Vous utilisez la fonction SUMIF pour additionner les valeurs d’une plage qui répondent aux critères que vous spécifiez. Par exemple, supposons que dans une colonne contenant des nombres, vous vouliez uniquement calculer la somme des valeurs supérieures à 5. Vous pouvez utiliser la formule suivante : =SUMIF(B2 :B25,">5 »)', + abstract: 'Vous utilisez la fonction SUMIF pour additionner les valeurs d’une plage qui répondent aux critères que vous spécifiez. Par exemple, supposons que dans une colonne contenant des nombres, vous vouliez uniquement calculer la somme des valeurs supérieures à 5. Vous pouvez utiliser la formule suivante : =SUMIF(B2 :B25,">5 »)', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obligatoire. Plage de cellules à calculer en fonction du critère. Les cellules de chaque plage doivent être des nombres ou des noms, des matrices ou des références contenant des nombres. Les valeurs vides ou textuelles ne sont pas prises en compte. La plage sélectionnée peut contenir des dates au format Excel standard (voir exemples ci-dessous).' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Critère, exprimé sous forme de nombre, d’expression, de référence de cellule, de texte ou de fonction qui définit les cellules à ajouter. Des caractères génériques peuvent être inclus : un point d’interrogation ( ?) pour correspondre à n’importe quel caractère, un astérisque (*) pour correspondre à n’importe quelle séquence de caractères. Si vous souhaitez trouver un point d’interrogation ou un astérisque réel, tapez un tilde ( ~ ) qui précède le caractère. Par exemple, les critères peuvent être exprimés sous la forme 32, «> 32 », « B5 », « 3 ? », « apple* », « *~ ? » ou TODAY(). Important Tous les critères textuels et tous les critères qui contiennent des symboles mathématiques ou logiques doivent être placés entre guillemets ( " ). En revanche, les guillemets ne sont pas nécessaires pour les critères numériques.' }, + sumRange: { name: 'sum_range', detail: 'Optionnel. Cellules réelles à ajouter, si vous souhaitez ajouter des cellules autres que celles spécifiées dans l’argument plage . Si l’argument sum_range est omis, Excel ajoute les cellules spécifiées dans l’argument range (les cellules auxquelles les critères sont appliqués). Sum_range doit avoir la même taille et la même forme que la plage . Si ce n’est pas le cas, les performances peuvent en pâtir et la formule additionne une plage de cellules qui commence par la première cellule de sum_range mais a les mêmes dimensions que la plage . Par exemple : plage plage_somme Cellules additionnées réelles A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'Additionne tous les arguments qui répondent à plusieurs critères.', + abstract: 'Additionne tous les arguments qui répondent à plusieurs critères.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'Plage de cellules à additionner.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Plage testée avec criteria1. criteria_range1 et criteria1 forment une paire de recherche : la plage est recherchée selon des critères précis, puis les valeurs correspondantes de sum_range sont additionnées.' }, + criteria1: { name: 'criteria1', detail: 'Critère définissant les cellules de criteria_range1 à ajouter. Par exemple : 32, ">32", B4, "pommes" ou "32".' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Plages supplémentaires. Vous pouvez saisir jusqu’à 127 paires de plages.' }, + criteria2: { name: 'criteria2', detail: 'Critères associés supplémentaires. Vous pouvez saisir jusqu’à 127 paires de critères.' }, + }, + }, + SUMPRODUCT: { + description: 'La fonction SUMPRODUCT retourne la somme des produits des plages ou tableaux correspondants. L’opération par défaut est la multiplication, mais l’addition, la soustraction et la division sont également possibles.', + abstract: 'La fonction SUMPRODUCT retourne la somme des produits des plages ou tableaux correspondants. L’opération par défaut est la multiplication, mais l’addition, la soustraction et la division sont également possibles.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Représente le premier argument de matrice dont vous voulez multiplier les valeurs pour ensuite additionner leur produit.' }, + array2: { name: 'array', detail: 'Arguments de matrices 2 à 255 dont vous voulez multiplier les valeurs pour ensuite additionner leur produit.' }, + }, + }, + SUMSQ: { + description: 'Renvoie la somme des carrés des arguments.', + abstract: 'Renvoie la somme des carrés des arguments.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire. Les numéros suivants sont facultatifs. Il peut y avoir jusqu’à 255 arguments pour lesquels vous souhaitez la somme des carrés.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire. Les numéros suivants sont facultatifs. Il peut y avoir jusqu’à 255 arguments pour lesquels vous souhaitez la somme des carrés.' }, + }, + }, + SUMX2MY2: { + description: 'Renvoie la somme des différences des carrés des valeurs correspondantes de deux matrices.', + abstract: 'Renvoie la somme des différences des carrés des valeurs correspondantes de deux matrices.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Obligatoire. Représente la première matrice ou plage de valeurs.' }, + arrayY: { name: 'array_y', detail: 'Obligatoire. Représente la seconde matrice ou plage de valeurs.' }, + }, + }, + SUMX2PY2: { + description: 'Renvoie la somme des sommes des carrés des valeurs correspondantes de deux matrices.', + abstract: 'Renvoie la somme des sommes des carrés des valeurs correspondantes de deux matrices.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Premier tableau ou première plage de valeurs.' }, + arrayY: { name: 'array_y', detail: 'Deuxième tableau ou deuxième plage de valeurs.' }, + }, + }, + SUMXMY2: { + description: 'La fonction SUMXMY2 retourne la somme des carrés des différences de valeurs correspondantes dans deux tableaux.', + abstract: 'La fonction SUMXMY2 retourne la somme des carrés des différences de valeurs correspondantes dans deux tableaux.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Premier tableau ou plage de valeurs. Obligatoire.' }, + arrayY: { name: 'array_y', detail: 'Deuxième tableau ou plage de valeurs. Obligatoire.' }, + }, + }, + TAN: { + description: 'Renvoie la tangente de l’angle donné.', + abstract: 'Renvoie la tangente de l’angle donné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente l’angle exprimé en radians dont vous voulez calculer la tangente.' }, + }, + }, + TANH: { + description: 'Donne la tangente hyperbolique d’un nombre.', + abstract: 'Donne la tangente hyperbolique d’un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente n’importe quel nombre réel.' }, + }, + }, + TRUNC: { + description: 'Les fonctions TRUNC tronquent un nombre en entier en supprimant la partie fractionnaire du nombre.', + abstract: 'Les fonctions TRUNC tronquent un nombre en entier en supprimant la partie fractionnaire du nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre à tronquer.' }, + numDigits: { name: 'num_digits', detail: 'Optionnel. Représente le nombre de décimales apparaissant à droite de la virgule après que le chiffre a été tronqué. La valeur par défaut de no_chiffres est 0 (zéro).' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/id-ID.ts b/packages/sheets-formula/src/locale/function-list/math/id-ID.ts new file mode 100644 index 0000000000..c07891ef9b --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/id-ID.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'Mengembalikan nilai absolut dari suatu angka. Nilai mutlak suatu angka adalah angka tanpa tanda.', + abstract: 'Mengembalikan nilai absolut dari suatu angka. Nilai mutlak suatu angka adalah angka tanpa tanda.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil yang Anda inginkan nilai mutlaknya.' }, + }, + }, + ACOS: { + description: 'Mengembalikan arka kosinus, atau kosinus inversi, dari suatu angka. Arka kosinus adalah sudut yang kosinusnya adalah angka . Sudut yang dikembalikan diberikan dalam satuan radian dalam rentang 0 (nol) hingga pi.', + abstract: 'Mengembalikan arka kosinus, atau kosinus inversi, dari suatu angka. Arka kosinus adalah sudut yang kosinusnya adalah angka . Sudut yang dikembalikan diberikan dalam satuan radian dalam rentang 0 (nol) hingga pi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Kosinus sudut yang Anda inginkan dan harus bernilai mulai -1 sampai 1.' }, + }, + }, + ACOSH: { + description: 'Mengembalikan nilai inversi kosinus hiperbolik dari bilangan. Bilangan harus lebih besar dari atau sama dengan 1. Nilai inversi kosinus hiperbolik adalah nilai dengan kosinus hiperbolik berupa bilangan , sehingga ACOSH(COSH(bilangan)) sama dengan bilangan .', + abstract: 'Mengembalikan nilai inversi kosinus hiperbolik dari bilangan. Bilangan harus lebih besar dari atau sama dengan 1. Nilai inversi kosinus hiperbolik adalah nilai dengan kosinus hiperbolik berupa bilangan , sehingga ACOSH(COSH(bilangan)) sama dengan bilangan .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil sama dengan atau lebih dari 1.' }, + }, + }, + ACOT: { + description: 'Mengembalikan nilai utama arka kotangen, atau balikan kotangen dari suatu angka.', + abstract: 'Mengembalikan nilai utama arka kotangen, atau balikan kotangen dari suatu angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka adalah kotangen dari sudut yang Anda inginkan. Nilai ini harus berupa bilangan riil.' }, + }, + }, + ACOTH: { + description: 'Mengembalikan kotangen hiperbolik balikan dari suatu angka.', + abstract: 'Mengembalikan kotangen hiperbolik balikan dari suatu angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Nilai absolut angka harus lebih besar dari 1.' }, + }, + }, + AGGREGATE: { + description: 'Mengembalikan agregat dalam daftar atau database. Fungsi AGGREGATE dapat menerapkan fungsi-fungsi agregat lain ke daftar atau database dengan opsi untuk mengabaikan baris tersembunyi dan nilai kesalahan.', + abstract: 'Mengembalikan agregat dalam daftar atau database. Fungsi AGGREGATE dapat menerapkan fungsi-fungsi agregat lain ke daftar atau database dengan opsi untuk mengabaikan baris tersembunyi dan nilai kesalahan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Diperlukan. Angka 1 sampai 19 yang menentukan fungsi yang akan digunakan.' }, + options: { name: 'options', detail: 'Diperlukan. Nilai numerik yang menetapkan nilai yang akan diabaikan dalam rentang evaluasi bagi fungsi tersebut. Catatan Fungsi tidak akan mengabaikan baris tersembunyi, subtotal bertumpuk, atau agregat bertumpuk jika argumen array menyertakan penghitungan, misalnya: =AGGREGATE(14,3,A1:A100*(A1:A100>0),1)' }, + ref1: { name: 'ref1', detail: 'Diperlukan. Argumen numerik pertama untuk fungsi-fungsi yang mengambil beberapa argumen numerik yang Anda inginkan nilai agregatnya.' }, + ref2: { name: 'ref2', detail: 'Opsional. Argumen numerik 2 sampai 253 yang Anda inginkan nilai agregatnya. Untuk fungsi-fungsi yang mengambil array, ref1 adalah array, rumus array, atau referensi ke rentang sel yang Anda inginkan nilai agregatnya. Ref2 adalah argumen kedua yang diperlukan bagi fungsi-fungsi tertentu. Fungsi-fungsi berikut memerlukan argumen ref2:' }, + }, + }, + ARABIC: { + description: 'Mengonversi angka Romawi ke angka Arab.', + abstract: 'Mengonversi angka Romawi ke angka Arab.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. String yang dimasukkan dalam tanda kutip, string kosong (""), atau referensi ke sel berisi teks.' }, + }, + }, + ASIN: { + description: 'Mengembalikan arka sinus, atau nilai inversi sinus, dari bilangan. Arka sinus adalah sudut yang sinusnya adalah angka . Sudut yang dikembalikan diberikan dalam satuan radian dalam rentang -pi/2 sampai pi/2.', + abstract: 'Mengembalikan arka sinus, atau nilai inversi sinus, dari bilangan. Arka sinus adalah sudut yang sinusnya adalah angka . Sudut yang dikembalikan diberikan dalam satuan radian dalam rentang -pi/2 sampai pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sinus sudut yang Anda inginkan dan harus bernilai mulai -1 sampai 1.' }, + }, + }, + ASINH: { + description: 'Mengembalikan nilai inversi sinus hiperbolik bilangan. Nilai inversi sinus hiperbolik adalah nilai yang sinus hiperboliknya berupa angka , sehingga ASINH(SINH(angka)) sama dengan angka .', + abstract: 'Mengembalikan nilai inversi sinus hiperbolik bilangan. Nilai inversi sinus hiperbolik adalah nilai yang sinus hiperboliknya berupa angka , sehingga ASINH(SINH(angka)) sama dengan angka .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil.' }, + }, + }, + ATAN: { + description: 'Mengembalikan arka tangen, atau inversi tangen dari sebuah bilangan. Arka tangen adalah sudut yang tangennya adalah angka . Sudut yang dikembalikan diberikan dalam radian dalam rentang -pi/2 sampai pi/2.', + abstract: 'Mengembalikan arka tangen, atau inversi tangen dari sebuah bilangan. Arka tangen adalah sudut yang tangennya adalah angka . Sudut yang dikembalikan diberikan dalam radian dalam rentang -pi/2 sampai pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Tangen dari sudut yang Anda inginkan.' }, + }, + }, + ATAN2: { + description: 'Mengembalikan arka tangen, atau inversi tangen, dari koordinat x dan y yang ditentukan. Arka tangen adalah sudut dari sumbu-x ke garis yang berisi asal (0,0) dan titik dengan koordinat (angka_x, angka_y). Sudut diberikan dalam radian antara -pi dan pi, tidak termasuk -pi.', + abstract: 'Mengembalikan arka tangen, atau inversi tangen, dari koordinat x dan y yang ditentukan. Arka tangen adalah sudut dari sumbu-x ke garis yang berisi asal (0,0) dan titik dengan koordinat (angka_x, angka_y). Sudut diberikan dalam radian antara -pi dan pi, tidak termasuk -pi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Diperlukan. Koordinat x titik tersebut.' }, + yNum: { name: 'y_num', detail: 'Diperlukan. Koordinat y titik tersebut.' }, + }, + }, + ATANH: { + description: 'Mengembalikan inversi tangen hiperbolik dari bilangan. Angka harus bernilai antara -1 dan 1 (tidak termasuk -1 dan 1). Inversi tangen hiperbolik adalah nilai yang tangen hiperboliknya berupa angka , sehingga ATANH(TANH(angka)) sama dengan angka .', + abstract: 'Mengembalikan inversi tangen hiperbolik dari bilangan. Angka harus bernilai antara -1 dan 1 (tidak termasuk -1 dan 1). Inversi tangen hiperbolik adalah nilai yang tangen hiperboliknya berupa angka , sehingga ATANH(TANH(angka)) sama dengan angka .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil berapa pun antara 1 dan -1.' }, + }, + }, + BASE: { + description: 'Mengonversi angka menjadi representasi teks beserta bilangan pokoknya (basis).', + abstract: 'Mengonversi angka menjadi representasi teks beserta bilangan pokoknya (basis).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan yang ingin Anda konversi. Harus berupa bilangan bulat yang lebih besar dari atau sama dengan 0 dan kurang dari 2^53.' }, + radix: { name: 'radix', detail: 'Diperlukan. Bilangan pokok basis yang merupakan hasil konversi bilangan. Harus berupa bilangan bulat yang lebih besar dari atau sama dengan 2 dan kurang dari atau sama dengan 36.' }, + minLength: { name: 'min_length', detail: 'Opsional. Panjang minimum string yang dikembalikan. Harus berupa bilangan bulat yang lebih besar dari atau sama dengan 0.' }, + }, + }, + CEILING: { + description: 'Mengembalikan angka yang dibulatkan ke atas, menjauh dari nol, ke kelipatan signifikansi terdekat. Misalnya, jika Anda ingin menghindari penggunaan sen dalam harga Anda dan produk Anda dihargai $4,42, gunakan rumus =CEILING(4.42,0.05) untuk membulatkan harga ke atas ke nikel terdekat.', + abstract: 'Mengembalikan angka yang dibulatkan ke atas, menjauh dari nol, ke kelipatan signifikansi terdekat. Misalnya, jika Anda ingin menghindari penggunaan sen dalam harga Anda dan produk Anda dihargai $4,42, gunakan rumus =CEILING(4.42,0.05) untuk membulatkan harga ke atas ke nikel terdekat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang ingin Anda bulatkan.' }, + significance: { name: 'significance', detail: 'Diperlukan. Kelipatan yang menjadi tujuan pembulatan.' }, + }, + }, + CEILING_MATH: { + description: 'LANGIT-LANGIT. Fungsi MATH membulatkan angka ke atas ke bilangan bulat terdekat atau, secara opsional, ke kelipatan signifikansi terdekat.', + abstract: 'LANGIT-LANGIT. Fungsi MATH membulatkan angka ke atas ke bilangan bulat terdekat atau, secara opsional, ke kelipatan signifikansi terdekat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. (harus antara -2,229E-308.dan 9.99E+307.)' }, + significance: { name: 'significance', detail: 'Opsional. Ini adalah jumlah digit signifikan setelah koma desimal di mana angka akan dibulatkan.' }, + mode: { name: 'mode', detail: 'Opsional. Ini mengontrol apakah angka negatif dibulatkan ke arah atau menjauh dari nol.' }, + }, + }, + CEILING_PRECISE: { + description: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan lambang angkanya, bilangan itu dibulatkan ke atas. Akan tetapi, jika angka signifikansinya nol, maka hasilnya nol.', + abstract: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan lambang angkanya, bilangan itu dibulatkan ke atas. Akan tetapi, jika angka signifikansinya nol, maka hasilnya nol.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + significance: { name: 'significance', detail: 'Opsional. Kelipatan yang menjadi tujuan pembulatan number. Jika signifikansi dikosongkan, maka nilai default adalah 1.' }, + }, + }, + COMBIN: { + description: 'Mengembalikan jumlah kombinasi untuk jumlah item tertentu. Gunakan COMBIN untuk menentukan total jumlah grup yang memungkinkan untuk jumlah item tertentu.', + abstract: 'Mengembalikan jumlah kombinasi untuk jumlah item tertentu. Gunakan COMBIN untuk menentukan total jumlah grup yang memungkinkan untuk jumlah item tertentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Jumlah item.' }, + numberChosen: { name: 'number_chosen', detail: 'Diperlukan. Jumlah item dalam setiap kombinasi.' }, + }, + }, + COMBINA: { + description: 'Mengembalikan jumlah kombinasi (dengan perulangan) untuk sejumlah item tertentu.', + abstract: 'Mengembalikan jumlah kombinasi (dengan perulangan) untuk sejumlah item tertentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Harus lebih besar atau sama dengan 0, dan lebih besar atau sama dengan Number_chosen. Nilai yang bukan bilangan bulat dipotong.' }, + numberChosen: { name: 'number_chosen', detail: 'Diperlukan. Harus lebih besar dari atau sama dengan 0. Nilai yang bukan bilangan bulat dipotong.' }, + }, + }, + COS: { + description: 'Mengembalikan kosinus dari sudut tertentu.', + abstract: 'Mengembalikan kosinus dari sudut tertentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sudut dalam radian yang Anda inginkan kosinusnya.' }, + }, + }, + COSH: { + description: 'Mengembalikan kosinus hiperbolik dari suatu angka.', + abstract: 'Mengembalikan kosinus hiperbolik dari suatu angka.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil yang ingin Anda temukan kosinus hiperboliknya.' }, + }, + }, + COT: { + description: 'Mengembalikan kotangen sebuah sudut yang ditentukan dalam radian.', + abstract: 'Mengembalikan kotangen sebuah sudut yang ditentukan dalam radian.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sudut dalam radian yang Anda inginkan untuk kotangen.' }, + }, + }, + COTH: { + description: 'Mengembalikan kotangen hiperbolik dari sudut hiperbolik.', + abstract: 'Mengembalikan kotangen hiperbolik dari sudut hiperbolik.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan.' }, + }, + }, + CSC: { + description: 'Mengembalikan kosekan sebuah sudut yang ditentukan dalam radian.', + abstract: 'Mengembalikan kosekan sebuah sudut yang ditentukan dalam radian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan.' }, + }, + }, + CSCH: { + description: 'Mengembalikan kosekan hiperbolik sebuah sudut yang ditentukan dalam radian.', + abstract: 'Mengembalikan kosekan hiperbolik sebuah sudut yang ditentukan dalam radian.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan.' }, + }, + }, + DECIMAL: { + description: 'Mengonversi representasi teks dari sebuah basis tertentu ke dalam bilangan desimal.', + abstract: 'Mengonversi representasi teks dari sebuah basis tertentu ke dalam bilangan desimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan.' }, + radix: { name: 'radix', detail: 'Diperlukan. Bilangan pokok harus berupa bilangan bulat.' }, + }, + }, + DEGREES: { + description: 'Mengonversi radian ke dalam derajat.', + abstract: 'Mengonversi radian ke dalam derajat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Diperlukan. Sudut dalam radian yang ingin Anda konversi.' }, + }, + }, + EVEN: { + description: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat genap terdekat. Anda dapat menggunakan fungsi ini untuk memproses item yang disusun dua-dua. Misalnya, peti kemas dari kayu menampung satu atau dua baris item. Peti tersebut penuh ketika jumlah item, yang dibulatkan ke kelipatan dua terdekat, sesuai dengan kapasitas peti.', + abstract: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat genap terdekat. Anda dapat menggunakan fungsi ini untuk memproses item yang disusun dua-dua. Misalnya, peti kemas dari kayu menampung satu atau dua baris item. Peti tersebut penuh ketika jumlah item, yang dibulatkan ke kelipatan dua terdekat, sesuai dengan kapasitas peti.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + }, + }, + EXP: { + description: 'Mengembalikan e yang dinaikkan ke pangkat angka. Konstanta e sama dengan 2,71828182845904, bilangan dasar logaritma natural.', + abstract: 'Mengembalikan e yang dinaikkan ke pangkat angka. Konstanta e sama dengan 2,71828182845904, bilangan dasar logaritma natural.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Pangkat yang diterapkan ke bilangan dasar e.' }, + }, + }, + FACT: { + description: 'Mengembalikan faktorial dari suatu angka. Faktorial suatu angka sama dengan 1*2*3*...* angka.', + abstract: 'Mengembalikan faktorial dari suatu angka. Faktorial suatu angka sama dengan 1*2*3*...* angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka nonnegatif yang Anda inginkan faktorialnya. Jika angka bukan bilangan bulat, maka dipotong.' }, + }, + }, + FACTDOUBLE: { + description: 'Mengembalikan faktorial ganda dari suatu angka.', + abstract: 'Mengembalikan faktorial ganda dari suatu angka.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai untuk mengembalikan faktorial ganda. Jika angka bukan bilangan bulat, maka dipotong.' }, + }, + }, + FLOOR: { + description: 'Fungsi FLOOR di Excel membulatkan angka tertentu ke kelipatan signifikansi yang ditentukan terdekat. Angka negatif dibulatkan ke bawah (negatif lebih lanjut) ke kelipatan terdekat di bawah nol.', + abstract: 'Fungsi FLOOR di Excel membulatkan angka tertentu ke kelipatan signifikansi yang ditentukan terdekat. Angka negatif dibulatkan ke bawah (negatif lebih lanjut) ke kelipatan terdekat di bawah nol.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai numerik yang ingin Anda bulatkan.' }, + significance: { name: 'significance', detail: 'Diperlukan. Kelipatan yang menjadi tujuan pembulatan.' }, + }, + }, + FLOOR_MATH: { + description: 'Membulatkan angka ke bawah, sampai ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat.', + abstract: 'Membulatkan angka ke bawah, sampai ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang akan dibulatkan ke bawah.' }, + significance: { name: 'significance', detail: 'Opsional. Kelipatan yang menjadi tujuan pembulatan.' }, + mode: { name: 'mode', detail: 'Opsional. Arah (mendekati atau menjauhi 0) untuk membulatkan bilangan negatif.' }, + }, + }, + FLOOR_PRECISE: { + description: 'Mengembalikan angka yang dibulatkan ke bawah ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan tanda angka, angka dibulatkan ke bawah. Akan tetapi, jika angka signifikansi adalah nol, maka nol dikembalikan.', + abstract: 'Mengembalikan angka yang dibulatkan ke bawah ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan tanda angka, angka dibulatkan ke bawah. Akan tetapi, jika angka signifikansi adalah nol, maka nol dikembalikan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + significance: { name: 'significance', detail: 'Opsional. Kelipatan yang menjadi tujuan pembulatan number. Jika signifikansi dikosongkan, maka nilai default adalah 1.' }, + }, + }, + GCD: { + description: 'Mengembalikan faktor persekutuan terbesar dari dua atau lebih bilangan bulat. Faktor persekutuan terbesar adalah bilangan bulat terbesar yang dapat membagi habis number1 and number2.', + abstract: 'Mengembalikan faktor persekutuan terbesar dari dua atau lebih bilangan bulat. Faktor persekutuan terbesar adalah bilangan bulat terbesar yang dapat membagi habis number1 and number2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. nilai 1 hingga 255. Jika nilai bukan bilangan bulat, akan terpotong.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. nilai 1 hingga 255. Jika nilai bukan bilangan bulat, akan terpotong.' }, + }, + }, + INT: { + description: 'Membulatkan angka ke bawah ke bilangan bulat terdekat.', + abstract: 'Membulatkan angka ke bawah ke bilangan bulat terdekat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil yang ingin Anda bulatkan ke bawah ke bilangan bulat.' }, + }, + }, + ISO_CEILING: { + description: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan lambang angkanya, bilangan itu dibulatkan ke atas. Akan tetapi, jika angka signifikansinya nol, maka hasilnya nol.', + abstract: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan lambang angkanya, bilangan itu dibulatkan ke atas. Akan tetapi, jika angka signifikansinya nol, maka hasilnya nol.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + significance: { name: 'significance', detail: 'Opsional. Kelipatan yang menjadi tujuan pembulatan number. Jika signifikansi dikosongkan, maka nilai default adalah 1.' }, + }, + }, + LCM: { + description: 'Mengembalikan kelipatan persekutuan terkecil (KPK) bilangan bulat. KPK adalah bilangan bulat paling kecil yang merupakan kelipatan dari semua argumen bilangan bulat number1, number2, dan seterusnya. Gunakan LCM untuk menambahkan pecahan dengan penyebut yang berbeda.', + abstract: 'Mengembalikan kelipatan persekutuan terkecil (KPK) bilangan bulat. KPK adalah bilangan bulat paling kecil yang merupakan kelipatan dari semua argumen bilangan bulat number1, number2, dan seterusnya. Gunakan LCM untuk menambahkan pecahan dengan penyebut yang berbeda.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Nilai 1 sampai 255 yang ingin Anda cari KPK-nya. Jika nilai bukan bilangan bulat, maka bilangan tersebut dipotong.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Nilai 1 sampai 255 yang ingin Anda cari KPK-nya. Jika nilai bukan bilangan bulat, maka bilangan tersebut dipotong.' }, + }, + }, + LN: { + description: 'Mengembalikan logaritma natural dari sebuah bilangan. Logaritma natural didasarkan pada konstanta e (2,71828182845904).', + abstract: 'Mengembalikan logaritma natural dari sebuah bilangan. Logaritma natural didasarkan pada konstanta e (2,71828182845904).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil positif yang ingin Anda dapatkan logaritma naturalnya.' }, + }, + }, + LOG: { + description: 'Mengembalikan logaritma dari bilangan dengan basis tertentu.', + abstract: 'Mengembalikan logaritma dari bilangan dengan basis tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil positif yang ingin Anda dapatkan logaritmanya.' }, + base: { name: 'base', detail: 'Opsional. Basis dari logaritma. Jika basis dikosongkan, maka diasumsikan sebagai 10.' }, + }, + }, + LOG10: { + description: 'Mengembalikan bilangan logaritma berbasis 10.', + abstract: 'Mengembalikan bilangan logaritma berbasis 10.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan riil positif yang ingin Anda dapatkan logaritma berbasis 10.' }, + }, + }, + MDETERM: { + description: 'Mengembalikan determinan matriks sebuah array.', + abstract: 'Mengembalikan determinan matriks sebuah array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Sebuah array numerik dengan jumlah baris dan kolom yang sama.' }, + }, + }, + MINVERSE: { + description: 'Fungsi MINVERSE mengembalikan matriks inversi untuk matriks yang disimpan dalam array.', + abstract: 'Fungsi MINVERSE mengembalikan matriks inversi untuk matriks yang disimpan dalam array.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Sebuah array numerik dengan jumlah baris dan kolom yang sama.' }, + }, + }, + MMULT: { + description: 'Fungsi MMULT mengembalikan produk matriks dari dua array. Hasilnya adalah sebuah array dengan jumlah baris yang sama dengan array1 dan jumlah kolom yang sama dengan array2.', + abstract: 'Fungsi MMULT mengembalikan produk matriks dari dua array. Hasilnya adalah sebuah array dengan jumlah baris yang sama dengan array1 dan jumlah kolom yang sama dengan array2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Array yang ingin Anda kalikan.' }, + array2: { name: 'array2', detail: 'Array yang ingin Anda kalikan.' }, + }, + }, + MOD: { + description: 'Mengembalikan sisa setelah angka dibagi oleh divisor. Hasilnya memiliki lambang yang sama dengan divisor.', + abstract: 'Mengembalikan sisa setelah angka dibagi oleh divisor. Hasilnya memiliki lambang yang sama dengan divisor.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda cari sisanya.' }, + divisor: { name: 'divisor', detail: 'Diperlukan. Angka untuk membagi angka.' }, + }, + }, + MROUND: { + description: 'MROUND mengembalikan angka yang dibulatkan ke kelipatan yang diinginkan.', + abstract: 'MROUND mengembalikan angka yang dibulatkan ke kelipatan yang diinginkan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + multiple: { name: 'multiple', detail: 'Diperlukan. Kelipatan yang dituju saat membulatkan angka.' }, + }, + }, + MULTINOMIAL: { + description: 'Mengembalikan rasio faktorial jumlah nilai terhadap hasil kali faktorial.', + abstract: 'Mengembalikan rasio faktorial jumlah nilai terhadap hasil kali faktorial.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Nilai dari 1 sampai 255 yang Anda ingin cari multinomialnya.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Nilai dari 1 sampai 255 yang Anda ingin cari multinomialnya.' }, + }, + }, + MUNIT: { + description: 'Fungsi MUNIT mengembalikan matriks unit untuk dimensi yang ditentukan.', + abstract: 'Fungsi MUNIT mengembalikan matriks unit untuk dimensi yang ditentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Bilangan bulat yang menentukan dimensi matriks unit yang ingin dikembalikan. Mengembalikan array dan dimensinya harus lebih besar dari nol.' }, + }, + }, + ODD: { + description: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat ganjil terdekat.', + abstract: 'Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat ganjil terdekat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Nilai yang akan dibulatkan.' }, + }, + }, + PI: { + description: 'Mengembalikan angka 3,14159265358979, konstanta matematika pi, akurat sampai 15 digit.', + abstract: 'Mengembalikan angka 3,14159265358979, konstanta matematika pi, akurat sampai 15 digit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Mengembalikan sebuah angka yang dipangkatkan.', + abstract: 'Mengembalikan sebuah angka yang dipangkatkan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Bilangan basis. Bisa berupa bilangan riil berapa pun.' }, + power: { name: 'power', detail: 'Diperlukan. Eksponen untuk menaikkan bilangan basis.' }, + }, + }, + PRODUCT: { + description: 'Fungsi PRODUCT mengalikan semua angka yang diberikan sebagai argumen dan mengembalikan hasil kali. Misalnya, jika sel A1 dan A2 berisi angka, Anda dapat menggunakan rumus =PRODUCT(A1, A2) untuk mengalikan kedua angka tersebut bersama-sama. Anda juga dapat melakukan operasi yang sama dengan menggunakan operator matematika perkalian ( * ); misalnya, =A1 * A2 .', + abstract: 'Fungsi PRODUCT mengalikan semua angka yang diberikan sebagai argumen dan mengembalikan hasil kali. Misalnya, jika sel A1 dan A2 berisi angka, Anda dapat menggunakan rumus =PRODUCT(A1, A2) untuk mengalikan kedua angka tersebut bersama-sama. Anda juga dapat melakukan operasi yang sama dengan menggunakan operator matematika perkalian ( * ); misalnya, =A1 * A2 .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Angka atau rentang pertama yang ingin Anda kalikan.' }, + number2: { name: 'number2', detail: 'Opsional. Angka atau rentang tambahan yang ingin Anda kalikan, maksimum sampai 255 argumen.' }, + }, + }, + QUOTIENT: { + description: 'Mengembalikan bilangan bulat dari sebuah pembagian. Gunakan fungsi saat Anda ingin menghapus sisa dari sebuah pembagian.', + abstract: 'Mengembalikan bilangan bulat dari sebuah pembagian. Gunakan fungsi saat Anda ingin menghapus sisa dari sebuah pembagian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Diperlukan. Dividen.' }, + denominator: { name: 'denominator', detail: 'Diperlukan. Pembagi.' }, + }, + }, + RADIANS: { + description: 'Mengonversi derajat menjadi radian.', + abstract: 'Mengonversi derajat menjadi radian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Diperlukan. Sudut dalam derajat yang ingin Anda konversi.' }, + }, + }, + RAND: { + description: 'RAND mengembalikan bilangan riil acak yang terdistribusi secara merata yang lebih besar atau sama dengan 0 dan kurang dari 1. Bilangan riil acak akan dikembalikan setiap kali lembar kerja dihitung.', + abstract: 'RAND mengembalikan bilangan riil acak yang terdistribusi secara merata yang lebih besar atau sama dengan 0 dan kurang dari 1. Bilangan riil acak akan dikembalikan setiap kali lembar kerja dihitung.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'Dalam contoh berikut, kami membuat larik dengan tinggi 5 baris dan lebar 3 kolom. Contoh pertama mengembalikan rangkaian nilai antara 0 dan 1, yang adalah perilaku default RANDARRAY. Contoh berikutnya mengembalikan rangkaian nilai desimal acak antara 1 dan 100. Terakhir, contoh ketiga mengembalikan rangkaian bilangan bulat acak antara 1 dan 100.', + abstract: 'Dalam contoh berikut, kami membuat larik dengan tinggi 5 baris dan lebar 3 kolom. Contoh pertama mengembalikan rangkaian nilai antara 0 dan 1, yang adalah perilaku default RANDARRAY. Contoh berikutnya mengembalikan rangkaian nilai desimal acak antara 1 dan 100. Terakhir, contoh ketiga mengembalikan rangkaian bilangan bulat acak antara 1 dan 100.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Jumlah baris yang akan dihasilkan' }, + columns: { name: 'columns', detail: 'Jumlah kolom yang akan dihasilkan' }, + min: { name: 'min', detail: 'Angka minimum yang dikembalikan' }, + max: { name: 'max', detail: 'Angka maksimum yang dikembalikan' }, + wholeNumber: { name: 'whole_number', detail: 'Mengembalikan bilangan bulat atau nilai desimal TRUE untuk bilangan bulat FALSE untuk angka desimal' }, + }, + }, + RANDBETWEEN: { + description: 'Mengembalikan angka bilangan bulat acak di antara angka-angka yang Anda tentukan. Bilangan bulat acak baru akan dikembalikan setiap kali lembar kerja dihitung.', + abstract: 'Mengembalikan angka bilangan bulat acak di antara angka-angka yang Anda tentukan. Bilangan bulat acak baru akan dikembalikan setiap kali lembar kerja dihitung.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Diperlukan. RANDBETWEEN akan mengembalikan bilangan bulat terkecil.' }, + top: { name: 'top', detail: 'Diperlukan. RANDBETWEEN akan mengembalikan bilangan bulat terbesar.' }, + }, + }, + ROMAN: { + description: 'Mengonversi angka Arab ke Romawi, sebagai teks.', + abstract: 'Mengonversi angka Arab ke Romawi, sebagai teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka Arab yang ingin Anda konversikan.' }, + form: { name: 'form', detail: 'Opsional. Angka yang menentukan tipe angka Romawi yang Anda inginkan. Gaya angka Romawi beragam dari Klasik sampai Sederhana, menjadi lebih singkat seiring nilai dari formulir meningkat. Lihat contoh berikut ROMAN(499,0) di bawah.' }, + }, + }, + ROUND: { + description: 'Fungsi ROUND membulatkan angka ke jumlah digit yang ditentukan. Sebagai contoh, jika sel A1 berisi 23,7825, dan Anda ingin membulatkan nilai itu ke dua tempat desimal, Anda bisa menggunakan rumus berikut:', + abstract: 'Fungsi ROUND membulatkan angka ke jumlah digit yang ditentukan. Sebagai contoh, jika sel A1 berisi 23,7825, dan Anda ingin membulatkan nilai itu ke dua tempat desimal, Anda bisa menggunakan rumus berikut:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda bulatkan.' }, + numDigits: { name: 'num_digits', detail: 'Diperlukan. Jumlah digit pembulatan yang Anda ingin terapkan pada angka.' }, + }, + }, + ROUNDBANK: { + description: 'Membulatkan angka dengan metode pembulatan bankir.', + abstract: 'Membulatkan angka dengan metode pembulatan bankir.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angka yang ingin Anda bulatkan dengan pembulatan bankir.' }, + numDigits: { name: 'num_digits', detail: 'Jumlah digit tujuan pembulatan dengan metode pembulatan bankir.' }, + }, + }, + ROUNDDOWN: { + description: 'Membulatkan angka ke bawah, mendekati nol.', + abstract: 'Membulatkan angka ke bawah, mendekati nol.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil yang ingin Anda bulatkan ke bawah.' }, + numDigits: { name: 'num_digits', detail: 'Diperlukan. Jumlah digit pembulatan yang ingin Anda terapkan pada angka.' }, + }, + }, + ROUNDUP: { + description: 'Membulatkan angka ke atas, menjauhi 0 (nol).', + abstract: 'Membulatkan angka ke atas, menjauhi 0 (nol).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil yang ingin Anda bulatkan ke atas.' }, + numDigits: { name: 'num_digits', detail: 'Diperlukan. Jumlah digit pembulatan yang ingin Anda terapkan pada angka.' }, + }, + }, + SEC: { + description: 'Mengembalikan nilai sekan dari suatu sudut.', + abstract: 'Mengembalikan nilai sekan dari suatu sudut.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Sudut dalam radian yang ingin dicari nilai sekannya.' }, + }, + }, + SECH: { + description: 'Mengembalikan nilai sekan hiperbolik dari suatu sudut.', + abstract: 'Mengembalikan nilai sekan hiperbolik dari suatu sudut.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Sudut dalam radian yang ingin dicari nilai sekan hiperboliknya.' }, + }, + }, + SERIESSUM: { + description: 'Banyak fungsi dapat diperkirakan oleh pengembangan deret pangkat.', + abstract: 'Banyak fungsi dapat diperkirakan oleh pengembangan deret pangkat.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai input deret pangkat.' }, + n: { name: 'n', detail: 'Diperlukan. Pangkat awal yang ingin Anda terapkan untuk menaikkan x.' }, + m: { name: 'm', detail: 'Diperlukan. Langkah untuk meningkatkan n untuk setiap item dalam deret.' }, + coefficients: { name: 'coefficients', detail: 'Diperlukan. Sekumpulan koefisien di mana setiap pangkat dari x yang berurutan dilipatkan. Jumlah nilai dalam koefisien menentukan jumlah item di deret pangkat. Sebagai contoh, jika ada tiga nilai di koefisien, maka ada tiga item di deret pangkat.' }, + }, + }, + SEQUENCE: { + description: 'Dalam contoh berikut, kami membuat larik dengan tinggi 4 baris dan lebar 5 kolom menggunakan =SEQUENCE(4,5) .', + abstract: 'Dalam contoh berikut, kami membuat larik dengan tinggi 4 baris dan lebar 5 kolom menggunakan =SEQUENCE(4,5) .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Jumlah baris yang ingin dihasilkan' }, + columns: { name: 'columns', detail: 'Jumlah kolom yang ingin dihasilkan' }, + start: { name: 'start', detail: 'Angka pertama dalam urutan' }, + step: { name: 'step', detail: 'Jumlah yang perlu ditambahkan pada setiap nilai berikutnya dalam larik' }, + }, + }, + SIGN: { + description: 'Mengembalikan lambang angka. Mengembalikan 1 jika angkanya positif, nol (0) jika angkanya adalah 0, dan -1 jika angkanya negatif.', + abstract: 'Mengembalikan lambang angka. Mengembalikan 1 jika angkanya positif, nol (0) jika angkanya adalah 0, dan -1 jika angkanya negatif.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil.' }, + }, + }, + SIN: { + description: 'Mengembalikan sinus sudut tertentu.', + abstract: 'Mengembalikan sinus sudut tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sudut dalam radian yang ingin Anda dapatkan sinusnya.' }, + }, + }, + SINH: { + description: 'Mengembalikan sinus hiperbolik sebuah angka.', + abstract: 'Mengembalikan sinus hiperbolik sebuah angka.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil.' }, + }, + }, + SQRT: { + description: 'Mengembalikan akar kuadrat positif.', + abstract: 'Mengembalikan akar kuadrat positif.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda dapatkan akar kuadratnya.' }, + }, + }, + SQRTPI: { + description: 'Mengembalikan akar kuadrat dari (angka * pi).', + abstract: 'Mengembalikan akar kuadrat dari (angka * pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang dikalikan dengan pi.' }, + }, + }, + SUBTOTAL: { + description: 'Menghasilkan subtotal dalam daftar atau database. Umumnya lebih muda membuat daftar dengan subtotal dengan menggunakan perintah Subtotal di grup Kerangka di tab Data di aplikasi desktop Excel. Setelah daftar subtotal dibuat, Anda bisa mengubahnya dengan mengedit fungsi SUBTOTAL.', + abstract: 'Menghasilkan subtotal dalam daftar atau database. Umumnya lebih muda membuat daftar dengan subtotal dengan menggunakan perintah Subtotal di grup Kerangka di tab Data di aplikasi desktop Excel. Setelah daftar subtotal dibuat, Anda bisa mengubahnya dengan mengedit fungsi SUBTOTAL.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Diperlukan. Angka 1-11 atau 101-111 yang menentukan fungsi yang akan digunakan untuk subtotal. 1-11 menyertakan baris yang disembunyikan secara manual, sementara 101-111, sel yang difilter selalu dikecualikan.' }, + ref1: { name: 'ref1', detail: 'Diperlukan. Rentang atau referensi yang pertama kali dinamai yang ingin Anda dapatkan subtotalnya..' }, + ref2: { name: 'ref2', detail: 'Opsional. Rentang atau referensi yang dinamai 2 sampai 254 yang ingin Anda dapatkan subtotalnya.' }, + }, + }, + SUM: { + description: 'Fungsi SUM menambahkan nilai. Anda dapat menambahkan nilai individual, referensi sel atau rentang, atau campuran ketiganya.', + abstract: 'Fungsi SUM menambahkan nilai. Anda dapat menambahkan nilai individual, referensi sel atau rentang, atau campuran ketiganya.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'Angka pertama yang ingin Anda tambahkan. Angkanya bisa seperti 4, referensi sel seperti B6, atau rentang sel seperti B2:B8.' }, + number2: { name: 'Number 2', detail: 'Inilah angka kedua yang ingin Anda tambahkan. Anda dapat menentukan hingga 255 angka dengan cara ini.' }, + }, + }, + SUMIF: { + description: 'Anda menggunakan fungsi SUMIF untuk menjumlahkan nilai dalam rentang yang memenuhi kriteria yang Anda tentukan. Sebagai contoh, di dalam kolom yang berisi angka, Anda hanya ingin menjumlahkan nilai-nilai yang lebih besar dari 5. Anda dapat menggunakan rumus berikut: =SUMIF(B2:B25,">5")', + abstract: 'Anda menggunakan fungsi SUMIF untuk menjumlahkan nilai dalam rentang yang memenuhi kriteria yang Anda tentukan. Sebagai contoh, di dalam kolom yang berisi angka, Anda hanya ingin menjumlahkan nilai-nilai yang lebih besar dari 5. Anda dapat menggunakan rumus berikut: =SUMIF(B2:B25,">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Diperlukan. Rentang sel yang akan Anda evaluasi menurut kriteria. Sel di setiap rentang harus merupakan angka atau nama, array, atau referensi yang berisi angka. Sel kosong atau nilai teks diabaikan. Rentang yang dipilih dapat berisi tanggal dalam format Excel standar (contoh di bawah).' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Kriteria dalam bentuk angka, ekspresi, referensi sel, teks, atau fungsi yang menentukan sel mana yang akan ditambahkan. Karakter wildcard dapat disertakan - tanda tanya (?) untuk mencocokkan karakter tunggal apa pun, tanda bintang (*) untuk mencocokkan urutan karakter apa pun. Jika Anda ingin menemukan tanda tanya atau tanda bintang aktual, ketikkan tilde ( ~ ) sebelum karakter. Misalnya, kriteria dapat dinyatakan sebagai 32, ">32", B5, "3?", "apple*", "*~?", atau TODAY(). Penting Kriteria teks atau kriteria apa pun yang mencakup simbol logika atau matematika harus disertakan dalam tanda kutip ganda ( " ). Jika kriteria adalah numerik, tanda kutip ganda tidak diperlukan.' }, + sumRange: { name: 'sum_range', detail: 'Opsional. Sel aktual untuk ditambahkan, jika Anda ingin menambahkan sel selain sel yang ditentukan dalam argumen rentang . Jika argumen sum_range dihilangkan, Excel menambahkan sel yang ditentukan dalam argumen rentang (sel yang sama dengan tempat kriteria diterapkan). Sum_range harus memiliki ukuran dan bentuk yang sama dengan rentang . Jika tidak, kinerja mungkin menderita, dan rumus akan menjumlahkan rentang sel yang dimulai dengan sel pertama di sum_range tetapi memiliki dimensi yang sama seperti rentang . Misalnya: rentang sum_range Sel yang dijumlahkan aktual A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'Fungsi SUMIFS, salah satu dari fungsi matematika dan trigonometri , menambahkan semua argumennya yang memenuhi beberapa kriteria. Sebagai contoh, gunakan SUMIFS untuk menjumlahkan jumlah pengecer di negara yang (1) berada dalam satu kode pos dan (2) yang labanya melebihi nilai dolar tertentu.', + abstract: 'Fungsi SUMIFS, salah satu dari fungsi matematika dan trigonometri , menambahkan semua argumennya yang memenuhi beberapa kriteria. Sebagai contoh, gunakan SUMIFS untuk menjumlahkan jumlah pengecer di negara yang (1) berada dalam satu kode pos dan (2) yang labanya melebihi nilai dolar tertentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'Rentang sel untuk dijumlahkan.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Rentang yang diuji menggunakan Criteria1 . Criteria_range1 dan Criteria1 menyiapkan pasangan pencarian di mana rentang dicari untuk kriteria tertentu. Setelah item dalam rentang ditemukan, nilai terkaitnya dalam Sum_range ditambahkan.' }, + criteria1: { name: 'criteria1', detail: 'Kriteria yang menentukan sel mana di Criteria_range1 yang akan ditambahkan. Misalnya, kriteria dapat dimasukkan sebagai 32 , ">32" , B4 , "apel" , atau "32" .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 127 pasang rentang/kriteria.' }, + criteria2: { name: 'criteria2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 127 pasang rentang/kriteria.' }, + }, + }, + SUMPRODUCT: { + description: 'Fungsi SUMPRODUCT mengembalikan jumlah produk rentang atau array terkait. Operasi default adalah perkalian, tetapi penambahan, pengurangan, dan pembagian juga dimungkinkan.', + abstract: 'Fungsi SUMPRODUCT mengembalikan jumlah produk rentang atau array terkait. Operasi default adalah perkalian, tetapi penambahan, pengurangan, dan pembagian juga dimungkinkan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Argumen array pertama yang komponen-komponennya ingin Anda kalikan lalu tambahkan.' }, + array2: { name: 'array', detail: 'Argumen array 2 sampai 255 yang komponen-komponennya ingin Anda kalikan lalu tambahkan.' }, + }, + }, + SUMSQ: { + description: 'Mengembalikan jumlah kuadrat dari argumen.', + abstract: 'Mengembalikan jumlah kuadrat dari argumen.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan. Angka berikutnya bersifat opsional. Bisa ada sebanyak 255 argumen yang Anda inginkan jumlah kuadratnya.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan. Angka berikutnya bersifat opsional. Bisa ada sebanyak 255 argumen yang Anda inginkan jumlah kuadratnya.' }, + }, + }, + SUMX2MY2: { + description: 'Fungsi Excel ini mengembalikan jumlah selisih kuadrat dari nilai terkait dalam dua array.', + abstract: 'Fungsi Excel ini mengembalikan jumlah selisih kuadrat dari nilai terkait dalam dua array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Diperlukan. Array atau rentang nilai pertama.' }, + arrayY: { name: 'array_y', detail: 'Diperlukan. Array atau rentang nilai kedua.' }, + }, + }, + SUMX2PY2: { + description: 'Mengembalikan jumlah dari jumlah kuadrat dari nilai yang terkait dalam dua array. Jumlah dari jumlah kuadrat adalah istilah yang umum dalam banyak perhitungan statistik.', + abstract: 'Mengembalikan jumlah dari jumlah kuadrat dari nilai yang terkait dalam dua array. Jumlah dari jumlah kuadrat adalah istilah yang umum dalam banyak perhitungan statistik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Diperlukan. Array atau rentang nilai pertama.' }, + arrayY: { name: 'array_y', detail: 'Diperlukan. Array atau rentang nilai kedua.' }, + }, + }, + SUMXMY2: { + description: 'Fungsi SUMXMY2 mengembalikan jumlah kuadrat selisih nilai terkait dalam dua array.', + abstract: 'Fungsi SUMXMY2 mengembalikan jumlah kuadrat selisih nilai terkait dalam dua array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Array atau rentang nilai pertama. Diperlukan.' }, + arrayY: { name: 'array_y', detail: 'Array atau rentang nilai kedua. Diperlukan.' }, + }, + }, + TAN: { + description: 'Mengembalikan tangen dari sudut yang diberikan.', + abstract: 'Mengembalikan tangen dari sudut yang diberikan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sudut dalam radian yang ingin Anda dapatkan tangennya.' }, + }, + }, + TANH: { + description: 'Mengembalikan tangen hiperbolik dari sebuah angka.', + abstract: 'Mengembalikan tangen hiperbolik dari sebuah angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Setiap bilangan riil.' }, + }, + }, + TRUNC: { + description: 'Fungsi TRUNC memotong angka menjadi bilangan bulat dengan menghapus bagian pecahan dari angka.', + abstract: 'Fungsi TRUNC memotong angka menjadi bilangan bulat dengan menghapus bagian pecahan dari angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda potong.' }, + numDigits: { name: 'num_digits', detail: 'Opsional. Angka yang menentukan presisi dari pemotongan. Nilai default untuk num_digits adalah 0 (nol).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/it-IT.ts b/packages/sheets-formula/src/locale/function-list/math/it-IT.ts new file mode 100644 index 0000000000..fdec58efcf --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/it-IT.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'Restituisce il valore assoluto di un numero. Il valore assoluto di un numero è il numero privo del segno corrispondente.', + abstract: 'Restituisce il valore assoluto di un numero. Il valore assoluto di un numero è il numero privo del segno corrispondente.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale di cui si vuole ottenere il valore assoluto.' }, + }, + }, + ACOS: { + description: 'Restituisce l\'arcocoseno, o inversa del coseno, di un numero. L\'arcocoseno è l\'angolo il cui coseno è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra 0 (zero) e pi.', + abstract: 'Restituisce l\'arcocoseno, o inversa del coseno, di un numero. L\'arcocoseno è l\'angolo il cui coseno è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra 0 (zero) e pi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Coseno dell\'angolo desiderato e deve essere un valore compreso tra -1 e 1.' }, + }, + }, + ACOSH: { + description: 'Restituisce l\'inversa del coseno iperbolico di un numero. Il numero deve essere maggiore o uguale a 1. L\'inversa del coseno iperbolico è il valore il cui coseno iperbolico è num , quindi ACOSH(COSH(num)) equivale a num .', + abstract: 'Restituisce l\'inversa del coseno iperbolico di un numero. Il numero deve essere maggiore o uguale a 1. L\'inversa del coseno iperbolico è il valore il cui coseno iperbolico è num , quindi ACOSH(COSH(num)) equivale a num .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale qualsiasi maggiore o uguale a 1.' }, + }, + }, + ACOT: { + description: 'Restituisce il valore principale dell\'arcotangente, o cotangente inversa, di un numero.', + abstract: 'Restituisce il valore principale dell\'arcotangente, o cotangente inversa, di un numero.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Num è la cotangente dell\'angolo desiderato. Questo deve essere un numero reale.' }, + }, + }, + ACOTH: { + description: 'Restituisce l\'inversa della cotangente iperbolica di un numero.', + abstract: 'Restituisce l\'inversa della cotangente iperbolica di un numero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Il valore assoluto di numero deve essere maggiore di 1.' }, + }, + }, + AGGREGATE: { + description: 'Restituisce un aggregato in un elenco o database. La funzione AGGREGA può applicare funzioni di aggregazione diverse a un elenco o database con l\'opzione di ignorare le righe nascoste e i valori di errore.', + abstract: 'Restituisce un aggregato in un elenco o database. La funzione AGGREGA può applicare funzioni di aggregazione diverse a un elenco o database con l\'opzione di ignorare le righe nascoste e i valori di errore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Obbligatorio. Numero compreso tra 1 e 19 che specifica la funzione da utilizzare.' }, + options: { name: 'options', detail: 'Obbligatorio. Valore numerico che determina i valori da ignorare nell\'intervallo di valutazione della funzione. Nota La funzione non ignorerà le righe nascoste, i subtotali annidati o le aggregazioni annidate se l\'argomento matrice include un calcolo, ad esempio: =AGGREGA(14;3;A1:A100*(A1:A100>0);1)' }, + ref1: { name: 'ref1', detail: 'Obbligatorio. Primo argomento numerico per le funzioni che accettano più argomenti numerici di cui si vuole calcolare il valore aggregato.' }, + ref2: { name: 'ref2', detail: 'Opzionale. Argomenti numerici da 2 a 253 di cui si desidera il valore aggregato. Per le funzioni che accettano matrici, rif1 è una matrice o una formula matrice oppure un riferimento a un intervallo di celle di cui si desidera il valore aggregato. Rif2 è un secondo argomento obbligatorio per determinate funzioni. Le funzioni seguenti richiedono un argomento rif2:' }, + }, + }, + ARABIC: { + description: 'Converte un numero romano in numero arabo.', + abstract: 'Converte un numero romano in numero arabo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Stringa tra virgolette, stringa vuota (""), o riferimento a una cella contenente testo.' }, + }, + }, + ASIN: { + description: 'Restituisce l\'arcoseno, o inversa del seno, di un numero. L\'arcoseno è l\'angolo il cui seno è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra -pi greco/2 e pi greco/2.', + abstract: 'Restituisce l\'arcoseno, o inversa del seno, di un numero. L\'arcoseno è l\'angolo il cui seno è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra -pi greco/2 e pi greco/2.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Seno dell\'angolo desiderato e deve essere un valore compreso tra -1 e 1.' }, + }, + }, + ASINH: { + description: 'Restituisce l\'inversa del seno iperbolico di un numero. L\'inversa del seno iperbolico è il valore il cui seno iperbolico è num , quindi ASINH(SINH(num)) equivale a num .', + abstract: 'Restituisce l\'inversa del seno iperbolico di un numero. L\'inversa del seno iperbolico è il valore il cui seno iperbolico è num , quindi ASINH(SINH(num)) equivale a num .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale.' }, + }, + }, + ATAN: { + description: 'Restituisce l\'arcotangente, o inversa della tangente, di un numero. L\'arcotangente è l\'angolo la cui tangente è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra -pi greco/2 e pi greco/2.', + abstract: 'Restituisce l\'arcotangente, o inversa della tangente, di un numero. L\'arcotangente è l\'angolo la cui tangente è num . L\'angolo risultante viene espresso in radianti con un valore compreso tra -pi greco/2 e pi greco/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Tangente dell\'angolo desiderato.' }, + }, + }, + ATAN2: { + description: 'Restituisce l\'arcotangente, o inversa della tangente, delle coordinate x e y specificate. L\'arcotangente è l\'angolo compreso tra l\'asse x e una linea contenente l\'origine (0; 0) e un punto con coordinate (x; y). L\'angolo viene espresso in radianti con valori compresi tra -pi greco e pi greco, a esclusione di -pi greco.', + abstract: 'Restituisce l\'arcotangente, o inversa della tangente, delle coordinate x e y specificate. L\'arcotangente è l\'angolo compreso tra l\'asse x e una linea contenente l\'origine (0; 0) e un punto con coordinate (x; y). L\'angolo viene espresso in radianti con valori compresi tra -pi greco e pi greco, a esclusione di -pi greco.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Obbligatorio. Ascissa del punto.' }, + yNum: { name: 'y_num', detail: 'Obbligatorio. Ordinata del punto.' }, + }, + }, + ATANH: { + description: 'Restituisce l\'inversa della tangente iperbolica di un numero. Num deve essere compreso tra -1 e 1 (esclusi -1 e 1). L\'inversa della tangente iperbolica è il valore la cui tangente iperbolica è num , quindi ARCTANH(TANH(num)) equivale a num .', + abstract: 'Restituisce l\'inversa della tangente iperbolica di un numero. Num deve essere compreso tra -1 e 1 (esclusi -1 e 1). L\'inversa della tangente iperbolica è il valore la cui tangente iperbolica è num , quindi ARCTANH(TANH(num)) equivale a num .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale compreso tra 1 e -1.' }, + }, + }, + BASE: { + description: 'Converte un numero in una rappresentazione in formato testo con la radice data (base).', + abstract: 'Converte un numero in una rappresentazione in formato testo con la radice data (base).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero da convertire. Deve essere un numero intero maggiore o uguale a 0 e minore di 2^53.' }, + radix: { name: 'radix', detail: 'Obbligatorio. Radice base nella quale si vuole convertire il numero. Deve essere un numero intero maggiore o uguale a 2 e minore o uguale a 36.' }, + minLength: { name: 'min_length', detail: 'Opzionale. Lunghezza minima della stringa restituita. Deve essere un numero intero maggiore o uguale a 0.' }, + }, + }, + CEILING: { + description: 'Restituisce un numero arrotondato per eccesso al multiplo più vicino a peso. Se ad esempio si desidera arrotondare il prezzo di un prodotto in modo da eliminare i centesimi inferiori a 5 e il prodotto costa € 4,42, utilizzare la formula =ARROTONDA.ECCESSO(4,42;0,05).', + abstract: 'Restituisce un numero arrotondato per eccesso al multiplo più vicino a peso. Se ad esempio si desidera arrotondare il prezzo di un prodotto in modo da eliminare i centesimi inferiori a 5 e il prodotto costa € 4,42, utilizzare la formula =ARROTONDA.ECCESSO(4,42;0,05).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore che si desidera arrotondare.' }, + significance: { name: 'significance', detail: 'Obbligatorio. Multiplo a cui si desidera arrotondare il numero.' }, + }, + }, + CEILING_MATH: { + description: 'Il SOFFITTO. La funzione MATEMATICA arrotonda un numero per eccesso all\'intero più vicino o, facoltativamente, al multiplo più vicino a peso.', + abstract: 'Il SOFFITTO. La funzione MATEMATICA arrotonda un numero per eccesso all\'intero più vicino o, facoltativamente, al multiplo più vicino a peso.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. (deve essere compreso tra -2,229E-308.e 9,99E+307.)' }, + significance: { name: 'significance', detail: 'Opzionale. Numero di cifre significative dopo la virgola decimale a cui arrotondare num .' }, + mode: { name: 'mode', detail: 'Opzionale. Controlla se i numeri negativi vengono arrotondati per eccesso o per eccesso.' }, + }, + }, + CEILING_PRECISE: { + description: 'Restituisce un numero arrotondato per eccesso all\'intero più vicino o al multiplo più vicino a peso. Indipendentemente dal segno di num, il numero viene arrotondato per eccesso. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + abstract: 'Restituisce un numero arrotondato per eccesso all\'intero più vicino o al multiplo più vicino a peso. Indipendentemente dal segno di num, il numero viene arrotondato per eccesso. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + significance: { name: 'significance', detail: 'Opzionale. Multiplo al quale arrotondare num. Se il valore di peso viene omesso, il valore predefinito è 1.' }, + }, + }, + COMBIN: { + description: 'Restituisce il numero delle combinazioni per un numero assegnato di elementi, indipendentemente dal loro ordine. Utilizzare la funzione COMBINAZIONE per calcolare tutti i possibili gruppi che si possono formare con un determinato numero di elementi.', + abstract: 'Restituisce il numero delle combinazioni per un numero assegnato di elementi, indipendentemente dal loro ordine. Utilizzare la funzione COMBINAZIONE per calcolare tutti i possibili gruppi che si possono formare con un determinato numero di elementi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero di elementi.' }, + numberChosen: { name: 'number_chosen', detail: 'Obbligatorio. Numero di elementi in ogni combinazione.' }, + }, + }, + COMBINA: { + description: 'Restituisce il numero delle combinazioni (con ripetizioni) per un numero assegnato di elementi.', + abstract: 'Restituisce il numero delle combinazioni (con ripetizioni) per un numero assegnato di elementi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Deve essere maggiore di o uguale a 0 e maggiore di o uguale a classe. I valori non interi vengono troncati.' }, + numberChosen: { name: 'number_chosen', detail: 'Obbligatorio. Deve essere maggiore di o uguale a 0. I valori non interi vengono troncati.' }, + }, + }, + COS: { + description: 'Restituisce il coseno dell\'angolo specificato.', + abstract: 'Restituisce il coseno dell\'angolo specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Angolo in radianti di cui si desidera il coseno.' }, + }, + }, + COSH: { + description: 'Restituisce il coseno iperbolico di un numero.', + abstract: 'Restituisce il coseno iperbolico di un numero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Qualsiasi numero reale di cui si desidera trovare il coseno iperbolico.' }, + }, + }, + COT: { + description: 'Restituisce la COTgente di un angolo espresso in radianti.', + abstract: 'Restituisce la COTgente di un angolo espresso in radianti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Angolo in radianti di cui si vuole la cotangente.' }, + }, + }, + COTH: { + description: 'Restituisce la cotangente iperbolico di un angolo iperbolico.', + abstract: 'Restituisce la cotangente iperbolico di un angolo iperbolico.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio.' }, + }, + }, + CSC: { + description: 'Restituisce la cosecante di un angolo espresso in radianti.', + abstract: 'Restituisce la cosecante di un angolo espresso in radianti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio.' }, + }, + }, + CSCH: { + description: 'Restituisce la cosecante iperbolica di un angolo espresso in radianti.', + abstract: 'Restituisce la cosecante iperbolica di un angolo espresso in radianti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio.' }, + }, + }, + DECIMAL: { + description: 'Converte la rappresentazione di un numero in formato testo di una determinata base in un numero decimale.', + abstract: 'Converte la rappresentazione di un numero in formato testo di una determinata base in un numero decimale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio.' }, + radix: { name: 'radix', detail: 'Obbligatorio. La radice deve essere un numero intero.' }, + }, + }, + DEGREES: { + description: 'Converte i radianti in gradi.', + abstract: 'Converte i radianti in gradi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Obbligatorio. Angolo espresso in radianti che si desidera convertire.' }, + }, + }, + EVEN: { + description: 'Restituisce num arrotondato per eccesso all\'intero pari più vicino. Questa funzione consente di elaborare elementi disponibili a gruppi di due. Una cassa da imballaggio può contenere ad esempio alcune file di uno o due articoli. La cassa sarà piena quando ci sarà corrispondenza tra il numero degli articoli, arrotondato per eccesso ai due più vicini, e la capacità della cassa.', + abstract: 'Restituisce num arrotondato per eccesso all\'intero pari più vicino. Questa funzione consente di elaborare elementi disponibili a gruppi di due. Una cassa da imballaggio può contenere ad esempio alcune file di uno o due articoli. La cassa sarà piena quando ci sarà corrispondenza tra il numero degli articoli, arrotondato per eccesso ai due più vicini, e la capacità della cassa.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + }, + }, + EXP: { + description: 'Restituisce il numero e elevato alla potenza di num. La costante e è uguale a 2,71828182845904, la base del logaritmo naturale.', + abstract: 'Restituisce il numero e elevato alla potenza di num. La costante e è uguale a 2,71828182845904, la base del logaritmo naturale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Esponente applicato alla base e.' }, + }, + }, + FACT: { + description: 'Restituisce il fattoriale di un numero. Il fattoriale di un numero è uguale a 1*2*3*...* num.', + abstract: 'Restituisce il fattoriale di un numero. Il fattoriale di un numero è uguale a 1*2*3*...* num.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero non negativo di cui si desidera calcolare il fattoriale. Se num non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + FACTDOUBLE: { + description: 'Restituisce il fattoriale doppio di un numero.', + abstract: 'Restituisce il fattoriale doppio di un numero.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore di cui calcolare il fattoriale doppio. Se num non è un numero intero, la parte decimale verrà troncata.' }, + }, + }, + FLOOR: { + description: 'La funzione ARROTONDA.DIFETTO di Excel arrotonda un numero specificato per difetto al multiplo specificato più vicino a peso. I numeri negativi vengono arrotondati per difetto (ulteriori negativi) al multiplo intero più vicino sotto lo zero.', + abstract: 'La funzione ARROTONDA.DIFETTO di Excel arrotonda un numero specificato per difetto al multiplo specificato più vicino a peso. I numeri negativi vengono arrotondati per difetto (ulteriori negativi) al multiplo intero più vicino sotto lo zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore numerico che si desidera arrotondare.' }, + significance: { name: 'significance', detail: 'Obbligatorio. Multiplo a cui si desidera arrotondare il numero.' }, + }, + }, + FLOOR_MATH: { + description: 'Arrotonda un numero per difetto all\'intero più vicino o al multiplo più vicino a peso.', + abstract: 'Arrotonda un numero per difetto all\'intero più vicino o al multiplo più vicino a peso.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero da arrotondare per difetto.' }, + significance: { name: 'significance', detail: 'Opzionale. Multiplo a cui arrotondare il numero.' }, + mode: { name: 'mode', detail: 'Opzionale. Direzione (per difetto o per eccesso) in cui arrotondare i numeri negativi.' }, + }, + }, + FLOOR_PRECISE: { + description: 'Restituisce un numero arrotondato per difetto all\'intero più vicino o al multiplo più vicino al peso. Indipendentemente dal segno di num, il numero viene arrotondato per difetto. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + abstract: 'Restituisce un numero arrotondato per difetto all\'intero più vicino o al multiplo più vicino al peso. Indipendentemente dal segno di num, il numero viene arrotondato per difetto. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + significance: { name: 'significance', detail: 'Opzionale. Multiplo al quale arrotondare num. Se il valore di peso viene omesso, il valore predefinito è 1.' }, + }, + }, + GCD: { + description: 'Restituisce il massimo comun divisore di due o più numeri interi. Il massimo comun divisore è il più grande numero intero che divide perfettamente sia num1 che num2.', + abstract: 'Restituisce il massimo comun divisore di due o più numeri interi. Il massimo comun divisore è il più grande numero intero che divide perfettamente sia num1 che num2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 valori. Se uno di questi valori non è un numero intero, la relativa parte decimale verrà troncata.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 valori. Se uno di questi valori non è un numero intero, la relativa parte decimale verrà troncata.' }, + }, + }, + INT: { + description: 'Arrotonda un numero per difetto all\'intero più vicino.', + abstract: 'Arrotonda un numero per difetto all\'intero più vicino.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale che si desidera arrotondare per difetto a un intero.' }, + }, + }, + ISO_CEILING: { + description: 'Restituisce un numero arrotondato per eccesso all\'intero più vicino o al multiplo più vicino a peso. Indipendentemente dal segno di num, il numero viene arrotondato per eccesso. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + abstract: 'Restituisce un numero arrotondato per eccesso all\'intero più vicino o al multiplo più vicino a peso. Indipendentemente dal segno di num, il numero viene arrotondato per eccesso. Se tuttavia num o peso è zero, verrà restituito il valore zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + significance: { name: 'significance', detail: 'Opzionale. Multiplo al quale arrotondare num. Se il valore di peso viene omesso, il valore predefinito è 1.' }, + }, + }, + LCM: { + description: 'Restituisce il minimo comune multiplo.', + abstract: 'Restituisce il minimo comune multiplo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Primo numero del minimo comune multiplo. In alternativa ai parametri separati da virgole, è possibile usare una singola matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Secondo numero di cui trovare il minimo comune multiplo. È possibile specificare fino a 255 numeri.' }, + }, + }, + LN: { + description: 'Restituisce il logaritmo naturale di un numero. I logaritmi naturali si basano sulla costante e (2,71828182845904).', + abstract: 'Restituisce il logaritmo naturale di un numero. I logaritmi naturali si basano sulla costante e (2,71828182845904).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale positivo di cui si desidera calcolare il logaritmo naturale.' }, + }, + }, + LOG: { + description: 'Restituisce il logaritmo di un numero nella base specificata.', + abstract: 'Restituisce il logaritmo di un numero nella base specificata.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale positivo di cui si desidera calcolare il logaritmo.' }, + base: { name: 'base', detail: 'Opzionale. Base del logaritmo. Se base viene omesso, verrà considerato uguale a 10.' }, + }, + }, + LOG10: { + description: 'Restituisce il logaritmo in base 10 di un numero.', + abstract: 'Restituisce il logaritmo in base 10 di un numero.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale positivo di cui si desidera calcolare il logaritmo in base 10.' }, + }, + }, + MDETERM: { + description: 'Restituisce il determinante di una matrice.', + abstract: 'Restituisce il determinante di una matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice numerica con lo stesso numero di righe e colonne.' }, + }, + }, + MINVERSE: { + description: 'La funzione MATR.INVERSA restituisce l\'inversa di una matrice memorizzata in una matrice.', + abstract: 'La funzione MATR.INVERSA restituisce l\'inversa di una matrice memorizzata in una matrice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice numerica quadrata.' }, + }, + }, + MMULT: { + description: 'Restituisce il prodotto matriciale di due matrici.', + abstract: 'Restituisce il prodotto matriciale di due matrici.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Le matrici che si desidera moltiplicare.' }, + array2: { name: 'array2', detail: 'Le matrici che si desidera moltiplicare.' }, + }, + }, + MOD: { + description: 'Restituisce il resto quando dividendo viene diviso per divisore. Il segno del risultato coinciderà con quello di divisore.', + abstract: 'Restituisce il resto quando dividendo viene diviso per divisore. Il segno del risultato coinciderà con quello di divisore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero di cui si desidera calcolare il resto.' }, + divisor: { name: 'divisor', detail: 'Obbligatorio. Numero per il quale si desidera dividere il dividendo.' }, + }, + }, + MROUND: { + description: 'ARROTONDA.MULTIPLO restituisce un numero arrotondato al multiplo desiderato.', + abstract: 'ARROTONDA.MULTIPLO restituisce un numero arrotondato al multiplo desiderato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + multiple: { name: 'multiple', detail: 'Obbligatorio. Multiplo a cui si desidera arrotondare il numero.' }, + }, + }, + MULTINOMIAL: { + description: 'Restituisce il multinomiale di un insieme di numeri.', + abstract: 'Restituisce il multinomiale di un insieme di numeri.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Primo valore o intervallo da usare nel calcolo.' }, + number2: { name: 'number2', detail: 'Valori o intervalli aggiuntivi da usare nel calcolo.' }, + }, + }, + MUNIT: { + description: 'La funzione MATR.UNIT restituisce la matrice unitaria per la dimensione specificata.', + abstract: 'La funzione MATR.UNIT restituisce la matrice unitaria per la dimensione specificata.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Intero che specifica la dimensione della matrice unitaria da restituire. Restituisce una matrice e la dimensione deve essere maggiore di zero.' }, + }, + }, + ODD: { + description: 'Restituisce num arrotondato per eccesso all\'intero dispari più vicino.', + abstract: 'Restituisce num arrotondato per eccesso all\'intero dispari più vicino.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Valore da arrotondare.' }, + }, + }, + PI: { + description: 'Restituisce il numero 3,14159265358979, la costante matematica pi, con una precisione di 15 cifre.', + abstract: 'Restituisce il numero 3,14159265358979, la costante matematica pi, con una precisione di 15 cifre.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Restituisce il risultato di un numero elevato a potenza.', + abstract: 'Restituisce il risultato di un numero elevato a potenza.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero della base. Può essere qualsiasi numero reale.' }, + power: { name: 'power', detail: 'Obbligatorio. Esponente a cui elevare il numero della base.' }, + }, + }, + PRODUCT: { + description: 'La funzione PRODOTTO moltiplica tutti i numeri assegnati come argomenti e restituisce il prodotto. Ad esempio, se le celle A1 e A2 contengono numeri, è possibile usare la formula =PRODOTTO(A1, A2) per moltiplicare questi due numeri. È anche possibile eseguire la stessa operazione usando l\'operatore matematico moltiplicazione ( * ), ad esempio =A1 * A2 .', + abstract: 'La funzione PRODOTTO moltiplica tutti i numeri assegnati come argomenti e restituisce il prodotto. Ad esempio, se le celle A1 e A2 contengono numeri, è possibile usare la formula =PRODOTTO(A1, A2) per moltiplicare questi due numeri. È anche possibile eseguire la stessa operazione usando l\'operatore matematico moltiplicazione ( * ), ad esempio =A1 * A2 .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo numero o intervallo da moltiplicare.' }, + number2: { name: 'number2', detail: 'Opzionale. Ulteriori numeri o intervalli da moltiplicare, fino a un massimo di 255 argomenti.' }, + }, + }, + QUOTIENT: { + description: 'Restituisce il quoziente di una divisione. Utilizzare questa funzione quando si desidera ignorare il resto di una divisione.', + abstract: 'Restituisce il quoziente di una divisione. Utilizzare questa funzione quando si desidera ignorare il resto di una divisione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Obbligatorio. Dividendo.' }, + denominator: { name: 'denominator', detail: 'Obbligatorio. Divisore.' }, + }, + }, + RADIANS: { + description: 'Converte i gradi in radianti.', + abstract: 'Converte i gradi in radianti.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Obbligatorio. Angolo espresso in gradi che si desidera convertire.' }, + }, + }, + RAND: { + description: 'CASUALE restituisce un numero reale casuale distribuito in maniera uniforme maggiore o uguale a 0 e minore di 1. Un nuovo numero reale casuale viene restituito volta che il foglio di lavoro viene calcolato.', + abstract: 'CASUALE restituisce un numero reale casuale distribuito in maniera uniforme maggiore o uguale a 0 e minore di 1. Un nuovo numero reale casuale viene restituito volta che il foglio di lavoro viene calcolato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'Negli esempi seguenti viene creata una matrice composta da 5 righe e 3 colonne. Il primo esempio restituisce un set di valori casuali compresi tra 0 e 1, che è il comportamento predefinito di MATR.CASUALE. Il secondo esempio restituisce una serie di valori decimali casuali compresi tra 1 e 100. Infine, il terzo esempio restituisce una serie di numeri interi casuali compresi tra 1 e 100.', + abstract: 'Negli esempi seguenti viene creata una matrice composta da 5 righe e 3 colonne. Il primo esempio restituisce un set di valori casuali compresi tra 0 e 1, che è il comportamento predefinito di MATR.CASUALE. Il secondo esempio restituisce una serie di valori decimali casuali compresi tra 1 e 100. Infine, il terzo esempio restituisce una serie di numeri interi casuali compresi tra 1 e 100.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Il numero di righe da restituire' }, + columns: { name: 'columns', detail: 'Il numero di colonne da restituire' }, + min: { name: 'min', detail: 'Il numero minimo che si desidera venga restituito' }, + max: { name: 'max', detail: 'Il numero massimo che si desidera venga restituito' }, + wholeNumber: { name: 'whole_number', detail: 'Restituisce un numero intero o decimale VERO per un numero intero. FALSE per un numero decimale' }, + }, + }, + RANDBETWEEN: { + description: 'Restituisce un numero intero casuale compreso tra i numeri specificati. Un nuovo numero intero casuale viene restituito ogni volta che il foglio di lavoro viene calcolato.', + abstract: 'Restituisce un numero intero casuale compreso tra i numeri specificati. Un nuovo numero intero casuale viene restituito ogni volta che il foglio di lavoro viene calcolato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Obbligatorio. Intero più piccolo restituito da CASUALE.TRA.' }, + top: { name: 'top', detail: 'Obbligatorio. Intero più grande restituito da CASUALE.TRA.' }, + }, + }, + ROMAN: { + description: 'Restituisce il numero come numero romano sotto forma di testo.', + abstract: 'Restituisce il numero come numero romano sotto forma di testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero arabo che si desidera convertire.' }, + form: { name: 'form', detail: 'Opzionale. Numero che specifica il tipo di numero romano desiderato. Lo stile dei numeri romani varia da Classico a Semplificato, diventando più conciso con l\'aumentare del valore di forma. Vedere l\'esempio relativo a ROMANO(499,0) seguente.' }, + }, + }, + ROUND: { + description: 'La funzione ARROTONDA arrotonda un numero al numero di cifre specificato. Se ad esempio la cella A1 contiene 23,7825 e si desidera arrotondare tale valore a due posizioni decimali, sarà possibile usare la formula seguente:', + abstract: 'La funzione ARROTONDA arrotonda un numero al numero di cifre specificato. Se ad esempio la cella A1 contiene 23,7825 e si desidera arrotondare tale valore a due posizioni decimali, sarà possibile usare la formula seguente:', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero da arrotondare.' }, + numDigits: { name: 'num_digits', detail: 'Obbligatorio. Numero di cifre a cui arrotondare l\'argomento num.' }, + }, + }, + ROUNDBANK: { + description: 'Arrotonda un numero con il metodo dell\'arrotondamento bancario.', + abstract: 'Arrotonda un numero con il metodo dell\'arrotondamento bancario.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Numero che si desidera arrotondare con il metodo dell\'arrotondamento bancario.' }, + numDigits: { name: 'num_digits', detail: 'Numero di cifre a cui si desidera arrotondare con il metodo dell\'arrotondamento bancario.' }, + }, + }, + ROUNDDOWN: { + description: 'Arrotonda il valore assoluto di un numero per difetto.', + abstract: 'Arrotonda il valore assoluto di un numero per difetto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale che si desidera arrotondare per difetto.' }, + numDigits: { name: 'num_digits', detail: 'Obbligatorio. Numero di cifre a cui si desidera arrotondare num.' }, + }, + }, + ROUNDUP: { + description: 'Arrotonda il valore assoluto di un numero, escluso zero, per eccesso.', + abstract: 'Arrotonda il valore assoluto di un numero, escluso zero, per eccesso.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale che si desidera arrotondare per eccesso.' }, + numDigits: { name: 'num_digits', detail: 'Obbligatorio. Numero di cifre a cui si desidera arrotondare num.' }, + }, + }, + SEC: { + description: 'Restituisce la secante di un angolo.', + abstract: 'Restituisce la secante di un angolo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angolo in radianti di cui si desidera ottenere la secante.' }, + }, + }, + SECH: { + description: 'Restituisce la secante iperbolica di un angolo.', + abstract: 'Restituisce la secante iperbolica di un angolo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angolo in radianti di cui si desidera ottenere la secante iperbolica.' }, + }, + }, + SERIESSUM: { + description: 'Molte funzioni possono essere approssimate per un\'espansione di serie di potenze.', + abstract: 'Molte funzioni possono essere approssimate per un\'espansione di serie di potenze.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore di input della serie di potenze.' }, + n: { name: 'n', detail: 'Obbligatorio. Potenza iniziale alla quale si desidera elevare x.' }, + m: { name: 'm', detail: 'Obbligatorio. Incremento di n per ciascun termine della serie.' }, + coefficients: { name: 'coefficients', detail: 'Obbligatorio. Insieme di coefficienti per ogni potenza successiva di x. Il numero di valori in coefficienti determina il numero di termini nella serie di potenze. Ad esempio, se coefficienti contiene tre valori, nella serie di potenze saranno presenti tre termini.' }, + }, + }, + SEQUENCE: { + description: 'Nell\'esempio seguente, viene creata una matrice alta 4 righe e larga 5 colonne con =SEQUENZA(4,5) .', + abstract: 'Nell\'esempio seguente, viene creata una matrice alta 4 righe e larga 5 colonne con =SEQUENZA(4,5) .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Il numero di righe da restituire' }, + columns: { name: 'columns', detail: 'Il numero di colonne da restituire.' }, + start: { name: 'start', detail: 'Il primo numero della sequenza' }, + step: { name: 'step', detail: 'La quantità di incremento di ciascun valore successivo nella matrice' }, + }, + }, + SIGN: { + description: 'Determina il segno di un numero. Restituisce 1 se il numero è positivo, zero (0) se il numero è 0 e -1 se il numero è negativo.', + abstract: 'Determina il segno di un numero. Restituisce 1 se il numero è positivo, zero (0) se il numero è 0 e -1 se il numero è negativo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale.' }, + }, + }, + SIN: { + description: 'Restituisce il seno dell\'angolo specificato.', + abstract: 'Restituisce il seno dell\'angolo specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Angolo in radianti di cui si desidera il seno.' }, + }, + }, + SINH: { + description: 'Restituisce il seno iperbolico di un numero.', + abstract: 'Restituisce il seno iperbolico di un numero.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale.' }, + }, + }, + SQRT: { + description: 'Restituisce una radice quadrata positiva.', + abstract: 'Restituisce una radice quadrata positiva.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero di cui si desidera la radice quadrata.' }, + }, + }, + SQRTPI: { + description: 'Restituisce la radice quadrata di (num * pi).', + abstract: 'Restituisce la radice quadrata di (num * pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero per il quale viene moltiplicato pi greco.' }, + }, + }, + SUBTOTAL: { + description: 'Restituisce un subtotale in un elenco o in un database. In genere, risulta più semplice creare un elenco con i subtotali scegliendo Subtotale nel gruppo Struttura della scheda Dati nell\'applicazione desktop Excel. Dopo la creazione dell\'elenco con i subtotali, sarà possibile apportarvi delle modifiche modificando la funzione SUBTOTALE.', + abstract: 'Restituisce un subtotale in un elenco o in un database. In genere, risulta più semplice creare un elenco con i subtotali scegliendo Subtotale nel gruppo Struttura della scheda Dati nell\'applicazione desktop Excel. Dopo la creazione dell\'elenco con i subtotali, sarà possibile apportarvi delle modifiche modificando la funzione SUBTOTALE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Obbligatorio. Numero 1-11 o 101-111 che specifica la funzione da usare per il subtotale. 1-11 include le righe nascoste manualmente, mentre 101-111 le esclude; le celle filtrate sono sempre escluse.' }, + ref1: { name: 'ref1', detail: 'Obbligatorio. Primo riferimento o intervallo denominato del quale si desidera calcolare il subtotale.' }, + ref2: { name: 'ref2', detail: 'Opzionale. Da 2 a 254 riferimenti o intervalli denominati dei quali si desidera calcolare il subtotale.' }, + }, + }, + SUM: { + description: 'La funzione SOMMA somma i valori. È possibile sommare singoli valori, riferimenti o intervalli di celle, o una combinazione dei tre.', + abstract: 'La funzione SOMMA somma i valori. È possibile sommare singoli valori, riferimenti o intervalli di celle, o una combinazione dei tre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'Primo numero da sommare. Il numero può essere simile a 4, a un riferimento di cella come B6 o a un intervallo di celle come B2:B8.' }, + number2: { name: 'Number 2', detail: 'Secondo numero da sommare. È possibile specificare fino a 255 numeri in questo modo.' }, + }, + }, + SUMIF: { + description: 'Usare la funzione SOMMA.SE per sommare i valori di un intervallo che soddisfano i criteri specificati. Supponiamo ad esempio di voler sommare in una colonna contenente numeri solo i valori maggiori di 5. È possibile usare la formula seguente: =SOMMA.SE(B2:B25;">5")', + abstract: 'Usare la funzione SOMMA.SE per sommare i valori di un intervallo che soddisfano i criteri specificati. Supponiamo ad esempio di voler sommare in una colonna contenente numeri solo i valori maggiori di 5. È possibile usare la formula seguente: =SOMMA.SE(B2:B25;">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obbligatorio. Intervallo di celle da valutare in base ai criteri. Le celle di ogni intervallo devono contenere numeri oppure nomi, matrici o riferimenti che includono numeri. Le celle vuote e i valori di testo verranno ignorati. L\'intervallo selezionato può contenere date nel formato standard di Excel (vedere gli esempi di seguito).' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Criteri in forma di numero, espressione, riferimento di cella, testo o funzione che definisce le celle che verranno sommate. È possibile includere caratteri jolly: un punto interrogativo (?) per la corrispondenza con qualsiasi carattere singolo, un asterisco (*) per la corrispondenza con qualsiasi sequenza di caratteri. Per trovare un punto interrogativo o un asterisco, digitare una tilde ( ~ ) prima del carattere. Ad esempio, i criteri possono essere espressi come 32, ">32", B5, "3?", "mela*", "*~?" o OGGI(). Importante Qualsiasi criterio di testo o di altro tipo comprendente simboli logici o matematici deve essere racchiuso tra virgolette doppie ( " ). Se il criterio è numerico, le virgolette doppie non saranno necessarie.' }, + sumRange: { name: 'sum_range', detail: 'Opzionale. Celle effettive da aggiungere, se si desidera aggiungere celle diverse da quelle specificate nell\'argomento intervallo . Se l\'argomento sum_range viene omesso, Verranno sommate le celle specificate nell\'argomento intervallo , ovvero le stesse celle a cui vengono applicati i criteri. Sum_range devono avere le stesse dimensioni e la stessa forma di intervallo . In caso contrario, potrebbero verificarsi problemi di prestazioni e la formula sommerà un intervallo di celle che inizia con la prima cella di sum_range ma ha le stesse dimensioni di intervallo . Ad esempio: intervallo int_somma Celle effettive sommate A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'La funzione SOMMA.PIÙ.SE, una delle funzioni matematiche e trigonometriche , somma tutti i suoi argomenti che soddisfano più criteri. Ad esempio, si può usare SUMIFS per sommare il numero di rivenditori del paese che (1) risiedono in un singolo codice postale e (2) i cui profitti superano un determinato valore in dollari.', + abstract: 'La funzione SOMMA.PIÙ.SE, una delle funzioni matematiche e trigonometriche , somma tutti i suoi argomenti che soddisfano più criteri. Ad esempio, si può usare SUMIFS per sommare il numero di rivenditori del paese che (1) risiedono in un singolo codice postale e (2) i cui profitti superano un determinato valore in dollari.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'Intervallo di celle da sommare.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Intervallo testato con Criteri1 . Criteria_range1 e Criteri1 impostano una coppia di ricerca in base alla quale viene eseguita la ricerca di criteri specifici in un intervallo. Una volta trovati gli elementi nell\'intervallo, vengono aggiunti i valori corrispondenti in Sum_range .' }, + criteria1: { name: 'criteria1', detail: 'Criteri che definiscono quali celle in Criteria_range1 verranno aggiunte. Ad esempio, i criteri possono essere immessi come 32, "32", B4 , "mele" o "32". For example, criteria can be entered as 32 , ">32" , B4, "apples" or "32".' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Intervalli aggiuntivi e criteri associati. È possibile immettere fino a 127 coppie di intervalli/criteri.' }, + criteria2: { name: 'criteria2', detail: 'Intervalli aggiuntivi e criteri associati. È possibile immettere fino a 127 coppie di intervalli/criteri.' }, + }, + }, + SUMPRODUCT: { + description: 'MATR.SOMMA.PRODOTTO corrisponde a tutte le istanze dell\'elemento Y/Dimensione M e le somma, quindi per questo esempio 21 più 41 è uguale a 62.', + abstract: 'MATR.SOMMA.PRODOTTO corrisponde a tutte le istanze dell\'elemento Y/Dimensione M e le somma, quindi per questo esempio 21 più 41 è uguale a 62.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Il primo argomento matrice di cui si desidera moltiplicare e quindi sommare gli elementi.' }, + array2: { name: 'array', detail: 'Argomenti matrice da 2 a 255 di cui si desidera moltiplicare e quindi sommare i componenti.' }, + }, + }, + SUMSQ: { + description: 'Restituisce la somma dei quadrati degli argomenti.', + abstract: 'Restituisce la somma dei quadrati degli argomenti.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio. I numeri successivi sono facoltativi. Possono essere presenti un massimo di 255 argomenti di cui si desidera la somma dei quadrati.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio. I numeri successivi sono facoltativi. Possono essere presenti un massimo di 255 argomenti di cui si desidera la somma dei quadrati.' }, + }, + }, + SUMX2MY2: { + description: 'Questa funzione di Excel restituisce la somma della differenza dei quadrati dei valori corrispondenti di due matrici.', + abstract: 'Questa funzione di Excel restituisce la somma della differenza dei quadrati dei valori corrispondenti di due matrici.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Obbligatorio. Prima matrice o primo intervallo di valori.' }, + arrayY: { name: 'array_y', detail: 'Obbligatorio. Seconda matrice o secondo intervallo di valori.' }, + }, + }, + SUMX2PY2: { + description: 'Restituisce la somma della somma dei quadrati dei valori corrispondenti di due matrici. La somma della somma dei quadrati è un termine ricorrente in molte funzioni di calcolo statistico.', + abstract: 'Restituisce la somma della somma dei quadrati dei valori corrispondenti di due matrici. La somma della somma dei quadrati è un termine ricorrente in molte funzioni di calcolo statistico.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Obbligatorio. Prima matrice o primo intervallo di valori.' }, + arrayY: { name: 'array_y', detail: 'Obbligatorio. Seconda matrice o secondo intervallo di valori.' }, + }, + }, + SUMXMY2: { + description: 'La funzione SUMXMY2 restituisce la somma dei quadrati delle differenze dei valori corrispondenti di due matrici.', + abstract: 'La funzione SUMXMY2 restituisce la somma dei quadrati delle differenze dei valori corrispondenti di due matrici.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Prima matrice o primo intervallo di valori. Obbligatorio.' }, + arrayY: { name: 'array_y', detail: 'Seconda matrice o secondo intervallo di valori. Obbligatorio.' }, + }, + }, + TAN: { + description: 'Restituisce la tangente dell\'angolo specificato.', + abstract: 'Restituisce la tangente dell\'angolo specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Angolo in radianti di cui si desidera la tangente.' }, + }, + }, + TANH: { + description: 'Restituisce la tangente iperbolica di un numero.', + abstract: 'Restituisce la tangente iperbolica di un numero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero reale.' }, + }, + }, + TRUNC: { + description: 'La funzione TRONCA tronca un numero in un numero intero rimuovendo la parte frazionaria del numero.', + abstract: 'La funzione TRONCA tronca un numero in un numero intero rimuovendo la parte frazionaria del numero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero che si desidera troncare.' }, + numDigits: { name: 'num_digits', detail: 'Opzionale. Numero che specifica la precisione del troncamento. Il valore predefinito di num_cifre è 0 (zero).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/math/ja-JP.ts index a79f142b48..4906e8f08f 100644 --- a/packages/sheets-formula/src/locale/function-list/math/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/math/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/abs-%E9%96%A2%E6%95%B0-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/acos-%E9%96%A2%E6%95%B0-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/acosh-%E9%96%A2%E6%95%B0-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/acot-%E9%96%A2%E6%95%B0-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/ja-jp/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/acoth-%E9%96%A2%E6%95%B0-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/aggregate-%E9%96%A2%E6%95%B0-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/ja-jp/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/arabic-%E9%96%A2%E6%95%B0-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/asin-%E9%96%A2%E6%95%B0-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/ja-jp/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/asinh-%E9%96%A2%E6%95%B0-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/atan-%E9%96%A2%E6%95%B0-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/ja-jp/excel/functions/atan-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/atan2-%E9%96%A2%E6%95%B0-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/ja-jp/excel/functions/atan2-function', }, ], functionParameter: { @@ -168,16 +168,16 @@ const locale: typeof enUS = { }, }, ATANH: { - description: '数値の双曲線逆正接 (ハイパーボリック タンジェントの逆関数) を返します。', - abstract: '数値の双曲線逆正接 (ハイパーボリック タンジェントの逆関数) を返します', + description: '数値の逆双曲線正接を返します。 数値は 、-1 から 1 (-1 と 1 を除く) の間である必要があります。 逆双曲線正接は、双曲線正接が 数値 である値であるため、ATANH(TANH(number)) は 数値 と等しくなります。', + abstract: '数値の逆双曲線正接を返します。 数値は 、-1 から 1 (-1 と 1 を除く) の間である必要があります。 逆双曲線正接は、双曲線正接が 数値 である値であるため、ATANH(TANH(number)) は 数値 と等しくなります。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/atanh-%E9%96%A2%E6%95%B0-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/ja-jp/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: '数値', detail: '-1 より大きく 1 より小さい実数を指定します。' }, + number: { name: '数値', detail: '必ず指定します。 -1 より大きく 1 より小さい実数を指定します。' }, }, }, BASE: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/base-%E9%96%A2%E6%95%B0-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/ja-jp/excel/functions/base-function', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ceiling-%E9%96%A2%E6%95%B0-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ceiling-math-%E9%96%A2%E6%95%B0-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/ceiling-precise-%E9%96%A2%E6%95%B0-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/combin-%E9%96%A2%E6%95%B0-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/combina-%E9%96%A2%E6%95%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cos-%E9%96%A2%E6%95%B0-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cosh-%E9%96%A2%E6%95%B0-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/cot-%E9%96%A2%E6%95%B0-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/coth-%E9%96%A2%E6%95%B0-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/csc-%E9%96%A2%E6%95%B0-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/csch-%E9%96%A2%E6%95%B0-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/decimal-%E9%96%A2%E6%95%B0-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/degrees-%E9%96%A2%E6%95%B0-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/even-%E9%96%A2%E6%95%B0-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/exp-%E9%96%A2%E6%95%B0-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fact-%E9%96%A2%E6%95%B0-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/factdouble-%E9%96%A2%E6%95%B0-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/floor-%E9%96%A2%E6%95%B0-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/ja-jp/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/floor-math-%E9%96%A2%E6%95%B0-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/floor-precise-%E9%96%A2%E6%95%B0-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gcd-%E9%96%A2%E6%95%B0-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/int-%E9%96%A2%E6%95%B0-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/ja-jp/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/iso-ceiling-%E9%96%A2%E6%95%B0-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/ja-jp/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '数値', detail: '丸めの対象となる数値を指定します。' }, + significance: { name: '基準値', detail: '倍数の基準となる数値を指定します。' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lcm-%E9%96%A2%E6%95%B0-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: '数値2', detail: '計算に使用する追加の値または範囲。' }, }, }, - LET: { - description: '計算結果に名前を割り当てることにより、中間計算、値、定義名などを数式内に格納できます。', - abstract: '計算結果に名前を割り当てることにより、中間計算、値、定義名などを数式内に格納できます。', - links: [ - { - title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/let-%E9%96%A2%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/ja-jp/office/ln-%E9%96%A2%E6%95%B0-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/log-%E9%96%A2%E6%95%B0-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/ja-jp/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/log10-%E9%96%A2%E6%95%B0-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/ja-jp/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mdeterm-%E9%96%A2%E6%95%B0-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/minverse-%E9%96%A2%E6%95%B0-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mmult-%E9%96%A2%E6%95%B0-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mod-%E9%96%A2%E6%95%B0-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mround-%E9%96%A2%E6%95%B0-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mround-function', }, ], functionParameter: { @@ -649,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/multinomial-%E9%96%A2%E6%95%B0-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/multinomial-function', }, ], functionParameter: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/munit-%E9%96%A2%E6%95%B0-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/odd-%E9%96%A2%E6%95%B0-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/ja-jp/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pi-%E9%96%A2%E6%95%B0-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pi-function', }, ], functionParameter: { @@ -701,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/power-%E9%96%A2%E6%95%B0-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/power-function', }, ], functionParameter: { @@ -715,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/product-%E9%96%A2%E6%95%B0-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/ja-jp/excel/functions/product-function', }, ], functionParameter: { @@ -729,7 +715,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/quotient-%E9%96%A2%E6%95%B0-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/ja-jp/excel/functions/quotient-function', }, ], functionParameter: { @@ -743,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/radians-%E9%96%A2%E6%95%B0-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/ja-jp/excel/functions/radians-function', }, ], functionParameter: { @@ -756,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rand-%E9%96%A2%E6%95%B0-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rand-function', }, ], functionParameter: { @@ -768,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/randarray-%E9%96%A2%E6%95%B0-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/ja-jp/excel/functions/randarray-function', }, ], functionParameter: { @@ -785,7 +771,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/randbetween-%E9%96%A2%E6%95%B0-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/ja-jp/excel/functions/randbetween-function', }, ], functionParameter: { @@ -799,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/roman-%E9%96%A2%E6%95%B0-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/roman-function', }, ], functionParameter: { @@ -813,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/round-%E9%96%A2%E6%95%B0-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/round-function', }, ], functionParameter: { @@ -841,7 +827,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rounddown-%E9%96%A2%E6%95%B0-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rounddown-function', }, ], functionParameter: { @@ -855,7 +841,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/roundup-%E9%96%A2%E6%95%B0-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/roundup-function', }, ], functionParameter: { @@ -869,7 +855,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sec-%E9%96%A2%E6%95%B0-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sec-function', }, ], functionParameter: { @@ -882,7 +868,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sech-%E9%96%A2%E6%95%B0-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sech-function', }, ], functionParameter: { @@ -895,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/seriessum-%E9%96%A2%E6%95%B0-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/ja-jp/excel/functions/seriessum-function', }, ], functionParameter: { @@ -911,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sequence-%E9%96%A2%E6%95%B0-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sequence-function', }, ], functionParameter: { @@ -927,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sign-%E9%96%A2%E6%95%B0-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sign-function', }, ], functionParameter: { @@ -940,7 +926,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sin-%E9%96%A2%E6%95%B0-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sin-function', }, ], functionParameter: { @@ -953,7 +939,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sinh-%E9%96%A2%E6%95%B0-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sinh-function', }, ], functionParameter: { @@ -966,7 +952,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sqrt-%E9%96%A2%E6%95%B0-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sqrt-function', }, ], functionParameter: { @@ -979,7 +965,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sqrtpi-%E9%96%A2%E6%95%B0-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -992,7 +978,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/subtotal-%E9%96%A2%E6%95%B0-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/ja-jp/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1007,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sum-%E9%96%A2%E6%95%B0-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sum-function', }, ], functionParameter: { @@ -1027,7 +1013,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumif-%E9%96%A2%E6%95%B0-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumif-function', }, ], functionParameter: { @@ -1042,7 +1028,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumifs-%E9%96%A2%E6%95%B0-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1059,7 +1045,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumproduct-%E9%96%A2%E6%95%B0-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1073,7 +1059,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumsq-%E9%96%A2%E6%95%B0-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1087,7 +1073,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumx2my2-%E9%96%A2%E6%95%B0-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1101,7 +1087,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumx2py2-%E9%96%A2%E6%95%B0-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1115,7 +1101,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/sumxmy2-%E9%96%A2%E6%95%B0-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/ja-jp/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1129,7 +1115,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tan-%E9%96%A2%E6%95%B0-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tan-function', }, ], functionParameter: { @@ -1142,7 +1128,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/tanh-%E9%96%A2%E6%95%B0-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/tanh-function', }, ], functionParameter: { @@ -1155,7 +1141,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/trunc-%E9%96%A2%E6%95%B0-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/ja-jp/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/math/ko-KR.ts index da38cad705..4846fbfa83 100644 --- a/packages/sheets-formula/src/locale/function-list/math/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/math/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/abs-함수-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/acos-함수-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/acosh-함수-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/acot-함수-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/ko-kr/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/acoth-함수-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/aggregate-함수-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/ko-kr/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/arabic-함수-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/asin-함수-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/ko-kr/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/asinh-함수-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/atan-함수-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/ko-kr/excel/functions/atan-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/atan2-함수-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/ko-kr/excel/functions/atan2-function', }, ], functionParameter: { @@ -168,16 +168,16 @@ const locale: typeof enUS = { }, }, ATANH: { - description: '숫자의 역쌍곡탄젠트를 반환합니다.', - abstract: '숫자의 역쌍곡탄젠트를 반환합니다', + description: '역 하이퍼볼릭 탄젠트 값을 반환합니다. number는 -1과 1 사이의 값이어야 합니다(-1과 1은 제외). 역 하이퍼볼릭 탄젠트 값은 하이퍼볼릭 탄젠트 값이 number 인 값이므로 ATANH(TANH(number))는 number 와 같습니다.', + abstract: '역 하이퍼볼릭 탄젠트 값을 반환합니다. number는 -1과 1 사이의 값이어야 합니다(-1과 1은 제외). 역 하이퍼볼릭 탄젠트 값은 하이퍼볼릭 탄젠트 값이 number 인 값이므로 ATANH(TANH(number))는 number 와 같습니다.', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/atanh-함수-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/ko-kr/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'number', detail: '1과 -1 사이의 실수입니다.' }, + number: { name: 'number', detail: '필수 요소입니다. 1과 -1 사이의 실수입니다.' }, }, }, BASE: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/base-함수-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/ko-kr/excel/functions/base-function', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ceiling-함수-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ceiling-math-함수-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ceiling-precise-함수-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/combin-함수-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/combina-함수-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cos-함수-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cosh-함수-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/cot-함수-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/coth-함수-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/csc-함수-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/csch-함수-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/decimal-함수-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/degrees-함수-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/even-함수-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/exp-함수-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fact-함수-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/factdouble-함수-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/floor-함수-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/ko-kr/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/floor-math-함수-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/floor-precise-함수-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gcd-함수-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/int-함수-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/ko-kr/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/iso-ceiling-함수-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/ko-kr/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: 'number', detail: '반올림하려는 값입니다.' }, + significance: { name: 'significance', detail: '반올림하려는 배수입니다.' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lcm-함수-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: 'number2', detail: '최소공배수를 찾으려는 두 번째 숫자입니다. 이런 방식으로 최대 255개의 숫자를 지정할 수 있습니다.' }, }, }, - 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: '숫자의 자연 로그를 반환합니다', abstract: '숫자의 자연 로그를 반환합니다', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/ln-함수-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/log-함수-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/ko-kr/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/log10-함수-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/ko-kr/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mdeterm-함수-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/minverse-함수-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mmult-함수-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mod-함수-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mround-함수-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mround-function', }, ], functionParameter: { @@ -649,12 +635,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/multinomial-함수-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/multinomial-function', }, ], 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.' }, + number1: { name: 'number1', detail: '계산에 사용할 첫 번째 값 또는 범위입니다.' }, + number2: { name: 'number2', detail: '계산에 사용할 추가 값 또는 범위입니다.' }, }, }, MUNIT: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/munit-함수-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/odd-함수-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/ko-kr/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pi-함수-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pi-function', }, ], functionParameter: { @@ -701,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/power-함수-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/power-function', }, ], functionParameter: { @@ -715,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/product-함수-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/ko-kr/excel/functions/product-function', }, ], functionParameter: { @@ -729,7 +715,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/quotient-함수-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/ko-kr/excel/functions/quotient-function', }, ], functionParameter: { @@ -743,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/radians-함수-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/ko-kr/excel/functions/radians-function', }, ], functionParameter: { @@ -756,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rand-함수-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rand-function', }, ], functionParameter: { @@ -768,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/randarray-함수-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/ko-kr/excel/functions/randarray-function', }, ], functionParameter: { @@ -785,7 +771,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/randbetween-함수-4cc7f0d1-87dc-4eb7-987f-0a21263ce3e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/randbetween-function', }, ], functionParameter: { @@ -799,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/roman-함수-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/roman-function', }, ], functionParameter: { @@ -813,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/round-함수-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/round-function', }, ], functionParameter: { @@ -822,8 +808,8 @@ const locale: typeof enUS = { }, }, ROUNDBANK: { - description: 'Rounds a number in banker\'s rounding', - abstract: 'Rounds a number in banker\'s rounding', + description: '은행가 반올림 방식으로 숫자를 반올림합니다.', + abstract: '은행가 반올림 방식으로 숫자를 반올림합니다.', links: [ { title: 'Instruction', @@ -831,8 +817,8 @@ const locale: typeof enUS = { }, ], 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.' }, + number: { name: 'number', detail: '은행가 반올림 방식으로 반올림할 수입니다.' }, + numDigits: { name: 'num_digits', detail: '은행가 반올림 방식으로 반올림할 자릿수입니다.' }, }, }, ROUNDDOWN: { @@ -841,7 +827,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rounddown-함수-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rounddown-function', }, ], functionParameter: { @@ -855,7 +841,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/roundup-함수-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/roundup-function', }, ], functionParameter: { @@ -869,7 +855,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sec-함수-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sec-function', }, ], functionParameter: { @@ -882,36 +868,20 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sech-함수-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sech-function', }, ], functionParameter: { number: { name: 'number', detail: '쌍곡시컨트를 원하는 각도(라디안)입니다.' }, }, }, - SEQUENCE: { - description: '1, 2, 3, 4와 같은 순차 숫자 목록을 배열로 생성합니다', - abstract: '순차 숫자 목록을 배열로 생성합니다', - links: [ - { - title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sequence-함수-57467a98-57e0-4817-9f14-2eb78519ca90', - }, - ], - functionParameter: { - rows: { name: 'rows', detail: '반환할 행 수입니다.' }, - columns: { name: 'columns', detail: '반환할 열 수입니다.' }, - start: { name: 'start', detail: '순서의 첫 번째 숫자입니다.' }, - step: { name: 'step', detail: '배열의 각 순차 값 사이의 증분입니다.' }, - }, - }, SERIESSUM: { description: '수식을 기반으로 거듭제곱 급수의 합을 반환합니다', abstract: '수식을 기반으로 거듭제곱 급수의 합을 반환합니다', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/seriessum-함수-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/ko-kr/excel/functions/seriessum-function', }, ], functionParameter: { @@ -921,13 +891,29 @@ const locale: typeof enUS = { coefficients: { name: 'coefficients', detail: 'x의 연속 거듭제곱에 곱할 계수 집합입니다.' }, }, }, + SEQUENCE: { + description: '1, 2, 3, 4와 같은 순차 숫자 목록을 배열로 생성합니다', + abstract: '순차 숫자 목록을 배열로 생성합니다', + links: [ + { + title: '사용법', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: '반환할 행 수입니다.' }, + columns: { name: 'columns', detail: '반환할 열 수입니다.' }, + start: { name: 'start', detail: '순서의 첫 번째 숫자입니다.' }, + step: { name: 'step', detail: '배열의 각 순차 값 사이의 증분입니다.' }, + }, + }, SIGN: { description: '숫자의 부호를 반환합니다', abstract: '숫자의 부호를 반환합니다', links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sign-함수-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sign-function', }, ], functionParameter: { @@ -940,7 +926,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sin-함수-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sin-function', }, ], functionParameter: { @@ -953,7 +939,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sinh-함수-1e4e8b9f-2b65-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sinh-function', }, ], functionParameter: { @@ -966,7 +952,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sqrt-함수-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sqrt-function', }, ], functionParameter: { @@ -979,7 +965,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sqrtpi-함수-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -992,7 +978,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/subtotal-함수-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/ko-kr/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1007,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sum-함수-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sum-function', }, ], functionParameter: { @@ -1021,7 +1007,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumif-함수-169b8c99-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumif-function', }, ], functionParameter: { @@ -1036,7 +1022,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumifs-함수-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1053,7 +1039,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumproduct-함수-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1067,7 +1053,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumsq-함수-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1081,7 +1067,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumx2my2-함수-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1095,7 +1081,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumx2py2-함수-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1109,7 +1095,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/sumxmy2-함수-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/ko-kr/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1123,7 +1109,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tan-함수-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tan-function', }, ], functionParameter: { @@ -1136,7 +1122,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/tanh-함수-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/tanh-function', }, ], functionParameter: { @@ -1149,7 +1135,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/trunc-함수-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/ko-kr/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/math/pl-PL.ts new file mode 100644 index 0000000000..bd2b196d08 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/pl-PL.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'Zwraca wartość bezwzględną liczby. Wartość bezwzględna liczby to liczba bez znaku.', + abstract: 'Zwraca wartość bezwzględną liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Liczba rzeczywista, której wartość bezwzględną chcesz otrzymać.' }, + }, + }, + ACOS: { + description: 'Zwraca arcus cosinus lub odwrotny cosinus liczby. Arcus cosinus jest wartością kąta, którego cosinus to liczba . Wyznaczona wartość w radianach należy do przedziału od 0 (zero) do pi.', + abstract: 'Zwraca arcus cosinus lub odwrotny cosinus liczby. Arcus cosinus jest wartością kąta, którego cosinus to liczba . Wyznaczona wartość w radianach należy do przedziału od 0 (zero) do pi.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Cosinus poszukiwanego kąta. Musi należeć do przedziału od -1 do 1.' }, + }, + }, + ACOSH: { + description: 'Zwraca arcus cosinus hiperboliczny liczby. Liczba musi być większa niż lub równa 1. Arcus cosinus hiperboliczny jest wartością, której cosinus hiperboliczny to liczba , dlatego ACOSH(COSH(liczba)) równa się liczba .', + abstract: 'Zwraca arcus cosinus hiperboliczny liczby. Liczba musi być większa niż lub równa 1. Arcus cosinus hiperboliczny jest wartością, której cosinus hiperboliczny to liczba , dlatego ACOSH(COSH(liczba)) równa się liczba .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista większa niż lub równa 1.' }, + }, + }, + ACOT: { + description: 'Zwraca wartość główną funkcji arcus cotangens lub odwrotności funkcji cotangens określonej liczby.', + abstract: 'Zwraca wartość główną funkcji arcus cotangens lub odwrotności funkcji cotangens określonej liczby.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba to cotangens kąta, który należy wyznaczyć. Musi to być liczba rzeczywista.' }, + }, + }, + ACOTH: { + description: 'Zwraca odwrotny kotangens hiperboliczny liczby.', + abstract: 'Zwraca odwrotny kotangens hiperboliczny liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wartość bezwzględna argumentu Number musi być większa niż 1.' }, + }, + }, + AGGREGATE: { + description: 'Zwraca wartość zagregowaną z listy lub bazy danych. Funkcja AGREGUJ może stosować różne funkcje agregujące do listy lub bazy danych, oferując przy tym opcję ignorowania ukrytych wierszy i wartości błędów.', + abstract: 'Zwraca wartość zagregowaną z listy lub bazy danych. Funkcja AGREGUJ może stosować różne funkcje agregujące do listy lub bazy danych, oferując przy tym opcję ignorowania ukrytych wierszy i wartości błędów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Wymagane. Liczba od 1 do 19, określająca funkcję, która ma zostać użyta.' }, + options: { name: 'options', detail: 'Wymagane. Wartość liczbowa określająca, które wartości z zakresu obliczeń funkcji mają być ignorowane. Uwaga Funkcja nie ignoruje ukrytych wierszy, zagnieżdżonych sum częściowych ani zagnieżdżonych funkcji agregujących, jeśli argument tablica zawiera obliczenie, na przykład: =AGREGUJ(14;3;A1:A100*(A1:A100>0);1)' }, + ref1: { name: 'ref1', detail: 'Wymagane. Jest to pierwszy argument liczbowy dla funkcji przyjmujących kilka argumentów liczbowych, z których ma być agregowana wartość.' }, + ref2: { name: 'ref2', detail: 'Opcjonalne. Są to argumenty liczbowe od 2 do 253, dla których ma być agregowana wartość. W przypadku funkcji pobierających tablicę argument odw1 jest tablicą, formułą tablicową lub odwołaniem do zakresu komórek, dla których ma zostać zagregowana wartość. Odw2 jest drugim argumentem, wymaganym w niektórych funkcjach. Argumentu odw2 wymagają następujące funkcje:' }, + }, + }, + ARABIC: { + description: 'Konwertuje liczbę rzymską na liczbę arabską.', + abstract: 'Konwertuje liczbę rzymską na liczbę arabską.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Ciąg ujęty w cudzysłów, ciąg pusty ("") lub odwołanie do komórki zawierającej tekst.' }, + }, + }, + ASIN: { + description: 'Zwraca arcus sinus lub odwrotny sinus liczby. Arcus sinus jest wartością kąta, którego sinus to liczba . Zwracany kąt w radianach należy do przedziału od -pi/2 do pi/2.', + abstract: 'Zwraca arcus sinus lub odwrotny sinus liczby. Arcus sinus jest wartością kąta, którego sinus to liczba . Zwracany kąt w radianach należy do przedziału od -pi/2 do pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Sinus żądanego kąta i musi wynosić od -1 do 1.' }, + }, + }, + ASINH: { + description: 'Zwraca arcus sinus hiperboliczny liczby. Arcus sinus hiperboliczny jest wartością, której sinus hiperboliczny to liczba , dlatego ASINH(SINH(liczba)) równa się liczba .', + abstract: 'Zwraca arcus sinus hiperboliczny liczby. Arcus sinus hiperboliczny jest wartością, której sinus hiperboliczny to liczba , dlatego ASINH(SINH(liczba)) równa się liczba .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista.' }, + }, + }, + ATAN: { + description: 'Zwraca arcus tangens lub odwrotny tangens liczby. Arcus tangens jest kątem, którego tangens to liczba . Zwracany kąt w radianach należy do przedziału od -pi/2 do pi/2.', + abstract: 'Zwraca arcus tangens lub odwrotny tangens liczby. Arcus tangens jest kątem, którego tangens to liczba . Zwracany kąt w radianach należy do przedziału od -pi/2 do pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Tangens kąta, który należy wyznaczyć.' }, + }, + }, + ATAN2: { + description: 'Zwraca arcus tangens lub odwrotny tangens określonych współrzędnych x i y. Arcus tangens jest wartością kąta pomiędzy osią x a linią prostą poprowadzoną przez początek układu współrzędnych i punkt o współrzędnych (x_liczba;y_liczba). Kąt w radianach zawiera się w przedziale od -pi do pi, z wyłączeniem wartości -pi.', + abstract: 'Zwraca arcus tangens lub odwrotny tangens określonych współrzędnych x i y. Arcus tangens jest wartością kąta pomiędzy osią x a linią prostą poprowadzoną przez początek układu współrzędnych i punkt o współrzędnych (x_liczba;y_liczba). Kąt w radianach zawiera się w przedziale od -pi do pi, z wyłączeniem wartości -pi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Wymagane. Współrzędna x punktu.' }, + yNum: { name: 'y_num', detail: 'Wymagane. Współrzędna y punktu.' }, + }, + }, + ATANH: { + description: 'Zwraca arcus tangens hiperboliczny liczby. Liczba musi być w przedziale -1 i 1 (z wyłączeniem wartości -1 i 1). Arcus tangens hiperboliczny jest wartością, której tangens hiperboliczny to liczba , dlatego ATANH(TANH(liczba)) równa się liczba .', + abstract: 'Zwraca arcus tangens hiperboliczny liczby. Liczba musi być w przedziale -1 i 1 (z wyłączeniem wartości -1 i 1). Arcus tangens hiperboliczny jest wartością, której tangens hiperboliczny to liczba , dlatego ATANH(TANH(liczba)) równa się liczba .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista z przedziału od 1 do -1.' }, + }, + }, + BASE: { + description: 'Konwertuje liczbę na formę tekstową o określonej podstawie.', + abstract: 'Konwertuje liczbę na formę tekstową o określonej podstawie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, która ma zostać przekonwertowana. Musi to być liczba całkowita większa niż lub równa 0 i mniejsza niż 2^53.' }, + radix: { name: 'radix', detail: 'Wymagane. Podstawa, na którą liczba ma zostać przekonwertowana. Musi to być liczba całkowita większa niż lub równa 2 i mniejsza niż lub równa 36.' }, + minLength: { name: 'min_length', detail: 'Opcjonalne. Minimalna długość zwracanego ciągu. Musi to być liczba całkowita większa niż lub równa 0.' }, + }, + }, + CEILING: { + description: 'Zwraca wartość liczby, zaokrąglając ją w górę, dalej od zera, do najbliższej wielokrotności istotności. Na przykład jeśli chce się uniknąć używania ułamków bilonu w cenach, a produkt wyceniony jest na 4,42 zł, należy użyć formuły =ZAOKR.W.GÓRĘ(4,42;0,05) aby zaokrąglić cenę do najbliższej drobnej monety.', + abstract: 'Zwraca wartość liczby, zaokrąglając ją w górę, dalej od zera, do najbliższej wielokrotności istotności. Na przykład jeśli chce się uniknąć używania ułamków bilonu w cenach, a produkt wyceniony jest na 4,42 zł, należy użyć formuły =ZAOKR.W.GÓRĘ(4,42;0,05) aby zaokrąglić cenę do najbliższej drobnej monety.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + significance: { name: 'significance', detail: 'Wymagane. Wielokrotność, do której ma zostać wykonane zaokrąglenie.' }, + }, + }, + CEILING_MATH: { + description: 'ZAOKR.W.W. Funkcja MATEMATYCZNE zaokrągla liczbę w górę do najbliższej liczby całkowitej lub opcjonalnie do najbliższej wielokrotności po istotności.', + abstract: 'ZAOKR.W.W. Funkcja MATEMATYCZNE zaokrągla liczbę w górę do najbliższej liczby całkowitej lub opcjonalnie do najbliższej wielokrotności po istotności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wymagane. (musi być w przedziale od -2,229E-308.do 9,99E+307).' }, + significance: { name: 'significance', detail: 'Opcjonalne. Jest to liczba cyfr znaczących po przecinku dziesiętnym, do którego ma zostać zaokrąglona liczba .' }, + mode: { name: 'mode', detail: 'Opcjonalne. Ta opcja określa, czy liczby ujemne są zaokrąglane w kierunku zera, czy od zera.' }, + }, + }, + CEILING_PRECISE: { + description: 'Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w górę niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + abstract: 'Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w górę niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + significance: { name: 'significance', detail: 'Opcjonalne. Wielokrotność, do której zaokrąglana jest liczba. Jeśli istotność zostanie pominięta, zostanie użyta wartość domyślna równa 1.' }, + }, + }, + COMBIN: { + description: 'Zwraca liczbę kombinacji dla danej liczby elementów. Funkcja KOMBINACJE służy do określania całkowitej możliwej liczby grup dla danej liczby elementów.', + abstract: 'Zwraca liczbę kombinacji dla danej liczby elementów. Funkcja KOMBINACJE służy do określania całkowitej możliwej liczby grup dla danej liczby elementów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba elementów.' }, + numberChosen: { name: 'number_chosen', detail: 'Wymagane. Liczba elementów w każdej z kombinacji.' }, + }, + }, + COMBINA: { + description: 'Zwraca liczbę kombinacji (wraz z powtórzeniami) dla danej liczby elementów.', + abstract: 'Zwraca liczbę kombinacji (wraz z powtórzeniami) dla danej liczby elementów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Musi to być liczba większa niż lub równa 0 i większa niż lub równa wartości argumentu liczba_wybrana. Liczby niecałkowite są obcinane do liczb całkowitych.' }, + numberChosen: { name: 'number_chosen', detail: 'Wymagane. Musi być większy lub równy 0. Liczby niecałkowite są obcinane do liczb całkowitych.' }, + }, + }, + COS: { + description: 'Zwraca cosinus danego kąta.', + abstract: 'Zwraca cosinus danego kąta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Kąt w radianach, dla którego należy obliczyć cosinus.' }, + }, + }, + COSH: { + description: 'Zwraca cosinus hiperboliczny liczby.', + abstract: 'Zwraca cosinus hiperboliczny liczby.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista, której cosinus hiperboliczny ma zostać obliczony.' }, + }, + }, + COT: { + description: 'Zwraca cotangens kąta określonego w radianach.', + abstract: 'Zwraca cotangens kąta określonego w radianach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Kąt w radianach, dla którego należy obliczyć cotangens.' }, + }, + }, + COTH: { + description: 'Zwraca cotangens hiperboliczny kąta hiperbolicznego.', + abstract: 'Zwraca cotangens hiperboliczny kąta hiperbolicznego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany.' }, + }, + }, + CSC: { + description: 'Zwraca cosecans kąta określonego w radianach.', + abstract: 'Zwraca cosecans kąta określonego w radianach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany.' }, + }, + }, + CSCH: { + description: 'Zwraca cosecans hiperboliczny kąta określonego w radianach.', + abstract: 'Zwraca cosecans hiperboliczny kąta określonego w radianach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany.' }, + }, + }, + DECIMAL: { + description: 'Konwertuje postać tekstową liczby o określonej podstawie na liczbę dziesiętną.', + abstract: 'Konwertuje postać tekstową liczby o określonej podstawie na liczbę dziesiętną.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany.' }, + radix: { name: 'radix', detail: 'Wymagane. Argument podstawa musi być liczbą całkowitą.' }, + }, + }, + DEGREES: { + description: 'Konwertuje radiany na stopnie.', + abstract: 'Konwertuje radiany na stopnie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Wymagane. Kąt określony w radianach, który ma zostać przekonwertowany.' }, + }, + }, + EVEN: { + description: 'Zwraca wartość liczby zaokrąglonej do najbliższej parzystej liczby całkowitej. Funkcji tej można używać do przetwarzania obiektów występujących parami. Na przykład opakowanie pozwala na umieszczenie jednego lub dwóch rodzajów przedmiotów. Opakowanie jest wypełnione, gdy liczba przedmiotów, zaokrąglona do najbliższej liczby parzystej, zgadza się z jego pojemnością.', + abstract: 'Zwraca wartość liczby zaokrąglonej do najbliższej parzystej liczby całkowitej. Funkcji tej można używać do przetwarzania obiektów występujących parami. Na przykład opakowanie pozwala na umieszczenie jednego lub dwóch rodzajów przedmiotów. Opakowanie jest wypełnione, gdy liczba przedmiotów, zaokrąglona do najbliższej liczby parzystej, zgadza się z jego pojemnością.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + }, + }, + EXP: { + description: 'Zwraca wartość liczby e podniesioną do potęgi liczba. Stała e jest równa 2,71828182845904, podstawie logarytmu naturalnego.', + abstract: 'Zwraca wartość liczby e podniesioną do potęgi liczba. Stała e jest równa 2,71828182845904, podstawie logarytmu naturalnego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wykładnik potęgi o podstawie e.' }, + }, + }, + FACT: { + description: 'Zwraca wartość silni liczby. Silnia liczby jest równa wyrażeniu 1*2*3*...* liczba.', + abstract: 'Zwraca wartość silni liczby. Silnia liczby jest równa wyrażeniu 1*2*3*...* liczba.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Nieujemna liczba, której silnia ma zostać obliczona. Jeśli argument „liczba” nie jest liczbą całkowitą, jego wartość zostanie obcięta do liczby całkowitej.' }, + }, + }, + FACTDOUBLE: { + description: 'Zwraca dwukrotną wartość silni liczby.', + abstract: 'Zwraca dwukrotną wartość silni liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, której dwukrotna wartość silni ma zostać obliczona. Jeśli argument „liczba” nie jest liczbą całkowitą, jego wartość zostanie obcięta do liczby całkowitej.' }, + }, + }, + FLOOR: { + description: 'Funkcja ZAOKR.W.DÓŁ w programie Excel zaokrągla określoną liczbę w dół do najbliższej określonej wielokrotności podanej istotności. Liczby ujemne są zaokrąglane w dół (dalej ujemne) do najbliższej pełnej wielokrotności poniżej zera.', + abstract: 'Funkcja ZAOKR.W.DÓŁ w programie Excel zaokrągla określoną liczbę w dół do najbliższej określonej wielokrotności podanej istotności. Liczby ujemne są zaokrąglane w dół (dalej ujemne) do najbliższej pełnej wielokrotności poniżej zera.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość liczbowa do zaokrąglenia.' }, + significance: { name: 'significance', detail: 'Wymagane. Wielokrotność, do której ma zostać wykonane zaokrąglenie.' }, + }, + }, + FLOOR_MATH: { + description: 'Zaokrągla liczbę w dół do najbliższej liczby całkowitej lub najbliższej wielokrotności istotności.', + abstract: 'Zaokrągla liczbę w dół do najbliższej liczby całkowitej lub najbliższej wielokrotności istotności.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba do zaokrąglenia w dół.' }, + significance: { name: 'significance', detail: 'Opcjonalne. Wielokrotność, do której ma zostać wykonane zaokrąglenie.' }, + mode: { name: 'mode', detail: 'Opcjonalne. Kierunek zaokrąglania liczb ujemnych (do zera lub od zera).' }, + }, + }, + FLOOR_PRECISE: { + description: 'Zaokrągla liczbę w dół do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w dół niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + abstract: 'Zaokrągla liczbę w dół do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w dół niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + significance: { name: 'significance', detail: 'Opcjonalne. Wielokrotność, do której zaokrąglana jest liczba. Jeśli istotność zostanie pominięta, zostanie użyta wartość domyślna równa 1.' }, + }, + }, + GCD: { + description: 'Zwraca wartość największego wspólnego dzielnika dwu lub więcej liczb całkowitych. Największy wspólny dzielnik jest największą liczbą całkowitą, dzielącą bez reszty zarówno argument liczba1, jak i argument liczba2.', + abstract: 'Zwraca wartość największego wspólnego dzielnika dwu lub więcej liczb całkowitych. Największy wspólny dzielnik jest największą liczbą całkowitą, dzielącą bez reszty zarówno argument liczba1, jak i argument liczba2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Ciąg od 1 do 255 wartości. Jeśli którakolwiek z wartości nie jest liczbą całkowitą, zostanie obcięta do liczby całkowitej.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Ciąg od 1 do 255 wartości. Jeśli którakolwiek z wartości nie jest liczbą całkowitą, zostanie obcięta do liczby całkowitej.' }, + }, + }, + INT: { + description: 'Zaokrągla liczbę w dół do najbliższej liczby całkowitej.', + abstract: 'Zaokrągla liczbę w dół do najbliższej liczby całkowitej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba rzeczywista, którą należy zaokrąglić w dół do liczby całkowitej.' }, + }, + }, + ISO_CEILING: { + description: 'Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w górę niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + abstract: 'Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w górę niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + significance: { name: 'significance', detail: 'Opcjonalne. Wielokrotność, do której zaokrąglana jest liczba. Jeśli istotność zostanie pominięta, zostanie użyta wartość domyślna równa 1.' }, + }, + }, + LCM: { + description: 'Zwraca wartość najmniejszej wspólnej wielokrotności liczb całkowitych. Najmniejszą wspólną wielokrotnością jest najmniejsza dodatnia liczba całkowita będąca wielokrotnością wszystkich całkowitych argumentów liczba1, liczba2 i tak dalej. Funkcję NAJMN.WSP.WIEL należy stosować przy dodawaniu ułamków o różnych mianownikach.', + abstract: 'Zwraca wartość najmniejszej wspólnej wielokrotności liczb całkowitych. Najmniejszą wspólną wielokrotnością jest najmniejsza dodatnia liczba całkowita będąca wielokrotnością wszystkich całkowitych argumentów liczba1, liczba2 i tak dalej. Funkcję NAJMN.WSP.WIEL należy stosować przy dodawaniu ułamków o różnych mianownikach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy wyznaczyć najmniejszą wspólną wielokrotność. Jeśli wartość nie jest liczbą całkowitą, zostanie obcięta.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy wyznaczyć najmniejszą wspólną wielokrotność. Jeśli wartość nie jest liczbą całkowitą, zostanie obcięta.' }, + }, + }, + LN: { + description: 'Zwraca wartość logarytmu naturalnego danej liczby. Podstawą logarytmów naturalnych jest stała e (2,71828182845904).', + abstract: 'Zwraca wartość logarytmu naturalnego danej liczby. Podstawą logarytmów naturalnych jest stała e (2,71828182845904).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba rzeczywista dodatnia, której logarytm naturalny należy obliczyć.' }, + }, + }, + LOG: { + description: 'Zwraca logarytm liczby przy zadanej podstawie.', + abstract: 'Zwraca logarytm liczby przy zadanej podstawie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba rzeczywista dodatnia, której logarytm należy obliczyć.' }, + base: { name: 'base', detail: 'Opcjonalne. Postawa logarytmu. Jeśli argument „podstawa” jest pominięty, przyjmowana jest wartość 10.' }, + }, + }, + LOG10: { + description: 'Zwraca logarytm zadanej liczby przy podstawie 10.', + abstract: 'Zwraca logarytm zadanej liczby przy podstawie 10.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba rzeczywista dodatnia, dla której należy wyznaczyć logarytm przy podstawie 10.' }, + }, + }, + MDETERM: { + description: 'Zwraca wartość wyznacznika macierzy tablicy.', + abstract: 'Zwraca wartość wyznacznika macierzy tablicy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica liczb zawierająca jednakową liczbę wierszy i kolumn.' }, + }, + }, + MINVERSE: { + description: 'Funkcja MACIERZ.ODW zwraca macierz odwrotną dla macierzy przechowywanej w tablicy.', + abstract: 'Funkcja MACIERZ.ODW zwraca macierz odwrotną dla macierzy przechowywanej w tablicy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica liczb zawierająca jednakową liczbę wierszy i kolumn.' }, + }, + }, + MMULT: { + description: 'Funkcja MACIERZ.ILOCZYN zwraca iloczyn macierzy dwóch tablic. Wynik jest tablicą o takiej samej liczbie wierszy jak tablica1 i takiej samej liczbie kolumn jak tablica2.', + abstract: 'Funkcja MACIERZ.ILOCZYN zwraca iloczyn macierzy dwóch tablic. Wynik jest tablicą o takiej samej liczbie wierszy jak tablica1 i takiej samej liczbie kolumn jak tablica2.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Tablice, które chcesz pomnożyć.' }, + array2: { name: 'array2', detail: 'Tablice, które chcesz pomnożyć.' }, + }, + }, + MOD: { + description: 'Zwraca wartość reszty po podzieleniu liczby przez dzielnik. Wynik ma taki sam znak jak dzielnik.', + abstract: 'Zwraca wartość reszty po podzieleniu liczby przez dzielnik. Wynik ma taki sam znak jak dzielnik.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, dla której należy wyznaczyć resztę.' }, + divisor: { name: 'divisor', detail: 'Wymagane. Liczba, przez którą należy podzielić liczbę.' }, + }, + }, + MROUND: { + description: 'Funkcja ZAOKR.DO.WIELOKR zwraca liczbę zaokrągloną do odpowiedniej wielokrotności.', + abstract: 'Funkcja ZAOKR.DO.WIELOKR zwraca liczbę zaokrągloną do odpowiedniej wielokrotności.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Wartość do zaokrąglenia.' }, + multiple: { name: 'multiple', detail: 'Wymagane. Wielokrotność, do której należy zaokrąglić liczbę.' }, + }, + }, + MULTINOMIAL: { + description: 'Zwraca wartość stosunku silni sumy wartości do iloczynu silni.', + abstract: 'Zwraca wartość stosunku silni sumy wartości do iloczynu silni.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy obliczyć wielomian.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy obliczyć wielomian.' }, + }, + }, + MUNIT: { + description: 'Funkcja MACIERZ.JEDNOSTKOWA zwraca macierz jednostkową dla określonego wymiaru.', + abstract: 'Funkcja MACIERZ.JEDNOSTKOWA zwraca macierz jednostkową dla określonego wymiaru.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Liczba całkowita określająca wymiar macierzy jednostkowej, która ma zostać zwrócona. Funkcja zwraca tablicę. Wymiar musi być większy od zera.' }, + }, + }, + ODD: { + description: 'Zwraca wartość liczby zaokrągloną w górę do najbliższej nieparzystej liczby całkowitej.', + abstract: 'Zwraca wartość liczby zaokrągloną w górę do najbliższej nieparzystej liczby całkowitej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wymagane. Wartość do zaokrąglenia.' }, + }, + }, + PI: { + description: 'Zwraca liczbę 3,14159265358979, stałą matematyczną pi, z dokładnością do 15 cyfr.', + abstract: 'Zwraca liczbę 3,14159265358979, stałą matematyczną pi, z dokładnością do 15 cyfr.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Zwraca wartość liczby podniesionej do potęgi.', + abstract: 'Zwraca wartość liczby podniesionej do potęgi.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Podstawa potęgi. Może to być dowolna liczba rzeczywista.' }, + power: { name: 'power', detail: 'Wymagane. Wykładnik potęgi, do której jest podnoszona podstawa.' }, + }, + }, + PRODUCT: { + description: 'Funkcja ILOCZYN mnoży wszystkie liczby podane jako argumenty i zwraca iloczyn. Jeśli na przykład komórki A1 i A2 zawierają liczby, możesz użyć formuły =ILOCZYN(A1; A2), aby pomnożyć te dwie liczby razem. Tę samą operację można również wykonać za pomocą operatora matematycznego mnożenia ( * ), na przykład =A1 * A2 .', + abstract: 'Funkcja ILOCZYN mnoży wszystkie liczby podane jako argumenty i zwraca iloczyn. Jeśli na przykład komórki A1 i A2 zawierają liczby, możesz użyć formuły =ILOCZYN(A1; A2), aby pomnożyć te dwie liczby razem. Tę samą operację można również wykonać za pomocą operatora matematycznego mnożenia ( * ), na przykład =A1 * A2 .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwsza liczba lub zakres, który chcesz pomnożyć.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Można podać do 255 argumentów.' }, + }, + }, + QUOTIENT: { + description: 'Zwraca całkowitą część z dzielenia. Należy z niej korzystać, aby odrzucić resztę z dzielenia.', + abstract: 'Zwraca całkowitą część z dzielenia. Należy z niej korzystać, aby odrzucić resztę z dzielenia.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Wymagane. Dzielna.' }, + denominator: { name: 'denominator', detail: 'Wymagane. Dzielnik.' }, + }, + }, + RADIANS: { + description: 'Konwertuje stopnie na radiany.', + abstract: 'Konwertuje stopnie na radiany.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Wymagane. Kąt, który ma zostać przekonwertowany, określony w stopniach.' }, + }, + }, + RAND: { + description: 'Funkcja LOS zwraca losową liczbę rzeczywistą o równomiernym rozkładzie, która jest większa niż lub równa 0 i mniejsza od 1. Nowa losowa liczba rzeczywista jest zwracana po każdym obliczeniu arkusza.', + abstract: 'Funkcja LOS zwraca losową liczbę rzeczywistą o równomiernym rozkładzie, która jest większa niż lub równa 0 i mniejsza od 1. Nowa losowa liczba rzeczywista jest zwracana po każdym obliczeniu arkusza.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'W poniższym przykładzie utworzono tablicę o wysokości 5 wierszy i szerokości 3 kolumn. Pierwszy zwraca losowy zestaw wartości od 0 do 1, czyli domyślne wartości funkcji LOSOWA.TABLICA. Następny zwraca serię losowych wartości dziesiętnych między 1 a 100. Trzeci przykład zwraca serię losowych liczb całkowitych między 1 a 100.', + abstract: 'W poniższym przykładzie utworzono tablicę o wysokości 5 wierszy i szerokości 3 kolumn. Pierwszy zwraca losowy zestaw wartości od 0 do 1, czyli domyślne wartości funkcji LOSOWA.TABLICA. Następny zwraca serię losowych wartości dziesiętnych między 1 a 100. Trzeci przykład zwraca serię losowych liczb całkowitych między 1 a 100.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Liczba wierszy do zwrócenia' }, + columns: { name: 'columns', detail: 'Liczba kolumn do zwrócenia' }, + min: { name: 'min', detail: 'Wartość minimalna oczekiwanej liczby' }, + max: { name: 'max', detail: 'Wartość maksymalna oczekiwanej liczby' }, + wholeNumber: { name: 'whole_number', detail: 'Zwraca liczbę całkowitą lub wartość dziesiętną PRAWDA dla liczby całkowitej. FAŁSZ dla liczby dziesiętnej' }, + }, + }, + RANDBETWEEN: { + description: 'Zwraca losową liczbę całkowitą z wybranego zakresu liczb. Przy każdym obliczaniu arkusza jest zwracana nowa losowa liczba całkowita.', + abstract: 'Zwraca losową liczbę całkowitą z wybranego zakresu liczb. Przy każdym obliczaniu arkusza jest zwracana nowa losowa liczba całkowita.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Wymagane. Najmniejsza liczba całkowita, jaką może zwrócić funkcja LOS.ZAKR.' }, + top: { name: 'top', detail: 'Wymagane. Największa liczba całkowita, jaką może zwrócić funkcja LOS.ZAKR.' }, + }, + }, + ROMAN: { + description: 'Konwertuje cyfry arabskie na rzymskie, jako tekst.', + abstract: 'Konwertuje cyfry arabskie na rzymskie, jako tekst.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba zapisana w systemie cyfr arabskich, która ma zostać przekonwertowana.' }, + form: { name: 'form', detail: 'Opcjonalne. Liczba określająca rodzaj cyfr rzymskich, które zostaną użyte. Istnieją różne typy cyfr rzymskich, od klasycznych do uproszczonych, które stają się bardziej zwarte wraz ze wzrostem wartości formy. Zobacz przykłady form następujących po ciągu RZYMSKIE(499;0) poniżej.' }, + }, + }, + ROUND: { + description: 'Funkcja ZAOKR zaokrągla liczbę do określonej liczby cyfr. Aby na przykład zaokrąglić liczbę 23,7825 znajdującą się w komórce A1 do dwóch miejsc dziesiętnych, można użyć następującej formuły:', + abstract: 'Funkcja ZAOKR zaokrągla liczbę do określonej liczby cyfr. Aby na przykład zaokrąglić liczbę 23,7825 znajdującą się w komórce A1 do dwóch miejsc dziesiętnych, można użyć następującej formuły:', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wymagane. Liczba, która ma zostać zaokrąglona.' }, + numDigits: { name: 'num_digits', detail: 'Wymagane. Liczba cyfr, do której liczba ma zostać zaokrąglony argument number.' }, + }, + }, + ROUNDBANK: { + description: 'Zaokrągla liczbę metodą zaokrąglania bankierskiego.', + abstract: 'Zaokrągla liczbę metodą zaokrąglania bankierskiego.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Liczba, którą chcesz zaokrąglić metodą zaokrąglania bankierskiego.' }, + numDigits: { name: 'num_digits', detail: 'Liczba cyfr, do których chcesz zaokrąglić metodą zaokrąglania bankierskiego.' }, + }, + }, + ROUNDDOWN: { + description: 'Zaokrągla liczbę w dół w kierunku zera.', + abstract: 'Zaokrągla liczbę w dół w kierunku zera.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista, która ma zostać zaokrąglona w dół.' }, + numDigits: { name: 'num_digits', detail: 'Wymagane. Liczba cyfr, do których liczba ma zostać zaokrąglona.' }, + }, + }, + ROUNDUP: { + description: 'Zaokrągla liczbę w górę, dalej od zera.', + abstract: 'Zaokrągla liczbę w górę, dalej od zera.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista, która ma zostać zaokrąglona w górę.' }, + numDigits: { name: 'num_digits', detail: 'Wymagane. Liczba cyfr, do których liczba ma zostać zaokrąglona.' }, + }, + }, + SEC: { + description: 'Zwraca sekans kąta.', + abstract: 'Zwraca sekans kąta.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Kąt w radianach, którego sekans chcesz obliczyć.' }, + }, + }, + SECH: { + description: 'Zwraca sekans hiperboliczny kąta.', + abstract: 'Zwraca sekans hiperboliczny kąta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Kąt w radianach, którego sekans hiperboliczny chcesz obliczyć.' }, + }, + }, + SERIESSUM: { + description: 'Wiele funkcji można aproksymować przy pomocy rozwinięć w szeregi potęgowe.', + abstract: 'Wiele funkcji można aproksymować przy pomocy rozwinięć w szeregi potęgowe.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość początkowa dla szeregów potęgowych.' }, + n: { name: 'n', detail: 'Argument wymagany. Początkowa potęga, do której zostanie podniesiona wartość x.' }, + m: { name: 'm', detail: 'Argument wymagany. Krok, o który wzrasta n w każdym kolejnym składniku szeregu.' }, + coefficients: { name: 'coefficients', detail: 'Wymagane. Zbiory współczynników, przez które jest mnożona każda kolejna potęga x. Liczba wartości we współczynnikach określa liczbę składników w szeregach potęgowych. Jeśli na przykład we współczynnikach występują trzy wartości, to w szeregach potęgowych będą trzy składniki.' }, + }, + }, + SEQUENCE: { + description: 'W poniższym przykładzie stworzyliśmy tablicę mającą 4 wiersze i 5 kolumn, stosując funkcję =SEKWENCJA(4,5) .', + abstract: 'W poniższym przykładzie stworzyliśmy tablicę mającą 4 wiersze i 5 kolumn, stosując funkcję =SEKWENCJA(4,5) .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'Liczba wierszy do zwrócenia' }, + columns: { name: 'columns', detail: 'Liczba kolumn do zwrócenia' }, + start: { name: 'start', detail: 'Pierwsza liczba w sekwencji' }, + step: { name: 'step', detail: 'Wartość rosnąca wraz z każdą kolejną wartością w tablicy' }, + }, + }, + SIGN: { + description: 'Określa znak liczby. Funkcja zwraca wartość 1, jeśli liczba jest dodatnia, oraz wartość 0, jeśli liczba jest ujemna.', + abstract: 'Określa znak liczby. Funkcja zwraca wartość 1, jeśli liczba jest dodatnia, oraz wartość 0, jeśli liczba jest ujemna.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista.' }, + }, + }, + SIN: { + description: 'Zwraca sinus podanego kąta.', + abstract: 'Zwraca sinus podanego kąta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Kąt w radianach, dla którego ma zostać obliczony sinus.' }, + }, + }, + SINH: { + description: 'Zwraca sinus hiperboliczny liczby.', + abstract: 'Zwraca sinus hiperboliczny liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista.' }, + }, + }, + SQRT: { + description: 'Zwraca dodatni pierwiastek kwadratowy liczby.', + abstract: 'Zwraca dodatni pierwiastek kwadratowy liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, dla której zostanie obliczony pierwiastek kwadratowy.' }, + }, + }, + SQRTPI: { + description: 'Zwraca pierwiastek kwadratowy z (liczba * pi).', + abstract: 'Zwraca pierwiastek kwadratowy z (liczba * pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, przez którą jest mnożona liczba pi.' }, + }, + }, + SUBTOTAL: { + description: 'Zwraca sumę częściową na liście lub w bazie danych. Na ogół listę z sumami częściowymi można łatwiej utworzyć, używając polecenia Suma częściowa dostępnego w grupie Konspekt na karcie Dane w aplikacji komputerowej programu Excel. Po utworzeniu listy z sumami częściowymi można ją modyfikować, edytując funkcję SUMY.CZĘŚCIOWE.', + abstract: 'Zwraca sumę częściową na liście lub w bazie danych. Na ogół listę z sumami częściowymi można łatwiej utworzyć, używając polecenia Suma częściowa dostępnego w grupie Konspekt na karcie Dane w aplikacji komputerowej programu Excel. Po utworzeniu listy z sumami częściowymi można ją modyfikować, edytując funkcję SUMY.CZĘŚCIOWE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Wymagane. Liczba 1–11 lub 101–111 określająca funkcję dla sumy częściowej. Od 1 do 11 zawiera ukryte ręcznie wiersze, natomiast wiersze 101-111 nie są z nich wykluczone; odfiltrowane komórki są zawsze wykluczone.' }, + ref1: { name: 'ref1', detail: 'Wymagane. Pierwszy nazwany zakres lub odwołanie, dla którego ma zostać obliczona suma częściowa.' }, + ref2: { name: 'ref2', detail: 'Opcjonalne. Od 2 do 254 nazwanych zakresów lub odwołań, dla których ma zostać obliczona suma częściowa.' }, + }, + }, + SUM: { + description: 'Funkcja SUMA dodaje wartości. Możesz dodawać pojedyncze wartości, odwołania do komórek lub zakresów lub połączenie tych wszystkich trzech typów wyrażeń.', + abstract: 'Funkcja SUMA dodaje wartości. Możesz dodawać pojedyncze wartości, odwołania do komórek lub zakresów lub połączenie tych wszystkich trzech typów wyrażeń.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'Pierwsza liczba, którą chcesz dodać. Liczba może być taka jak 4, odwołanie do komórki, na przykład B6, lub zakres komórek, taki jak B2:B8.' }, + number2: { name: 'Number 2', detail: 'Druga liczba, którą chcesz dodać. W ten sposób możesz określić do 255 liczb.' }, + }, + }, + SUMIF: { + description: 'Funkcja SUMA.JEŻELI służy do sumowania wartości z zakresu spełniającego określone kryteria. Załóżmy na przykład, że mają zostać zsumowane liczby z danej kolumny, które są większe od 5. Możesz użyć następującej formuły: =SUMA.JEŻELI(B2:B25;">5")', + abstract: 'Funkcja SUMA.JEŻELI służy do sumowania wartości z zakresu spełniającego określone kryteria. Załóżmy na przykład, że mają zostać zsumowane liczby z danej kolumny, które są większe od 5. Możesz użyć następującej formuły: =SUMA.JEŻELI(B2:B25;">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Wymagane. Jest to zakres komórek, do których zostaną zastosowane kryteria. Komórki w każdym zakresie muszą być liczbami lub nazwami, tablicami albo odwołaniami zawierającymi liczby. Wartości puste i wartości tekstowe są ignorowane. Wybrany zakres może zawierać daty w standardowym formacie programu Excel (przykłady poniżej).' }, + criteria: { name: 'criteria', detail: 'Wymagane. Są to kryteria w postaci liczby, wyrażenia, odwołania do komórki, tekstu lub funkcji określającej, które komórki będą dodawane. Można dołączyć symbole wieloznaczne — znak zapytania (?), aby dopasować dowolny pojedynczy znak, gwiazdkę (*), aby dopasować ją do dowolnej sekwencji znaków. Jeśli chcesz znaleźć rzeczywisty znak zapytania lub gwiazdkę, wpisz tyldę ( ~ ) poprzedzającą znak. Kryteria można wyrazić na przykład jako 32, ">32", B5, "3?", "jabłko*", "*~?" lub DZIŚ(). Ważne Wszelkie kryteria tekstowe oraz zawierające symbole matematyczne lub logiczne należy ująć w podwójny cudzysłów ( " ). Kryteria liczbowe nie wymagają cudzysłowów.' }, + sumRange: { name: 'sum_range', detail: 'Opcjonalne. Rzeczywiste komórki do dodania, jeśli chcesz dodać komórki inne niż te określone w arguencie zakres . Jeśli argument sum_range zostanie pominięty, program Excel doda komórki określone w arguencie zakres (te same komórki, do których zastosowano kryteria). Sum_range powinny mieć taki sam rozmiar i kształt jak zakres . Jeśli tak nie jest, może to oznaczać spadek wydajności, a formuła zsumuje zakres komórek, który zaczyna się od pierwszej komórki w sum_range ale ma takie same wymiary jak zakres . Na przykład: zakres suma_zakres Rzeczywiste sumowane komórki A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'Funkcja SUMA.WARUNKÓW, jedna z funkcji matematycznych i trygonometrycznych , dodaje wszystkie argumenty, które spełniają wiele kryteriów. Funkcji SUMA.WARUNKÓW można użyć na przykład do zsumowania sprzedawców w kraju, których (1) adres zamieszkania obejmuje ten sam kod pocztowy oraz (2) których zyski przekraczają określoną wartość w dolarach.', + abstract: 'Funkcja SUMA.WARUNKÓW, jedna z funkcji matematycznych i trygonometrycznych , dodaje wszystkie argumenty, które spełniają wiele kryteriów. Funkcji SUMA.WARUNKÓW można użyć na przykład do zsumowania sprzedawców w kraju, których (1) adres zamieszkania obejmuje ten sam kod pocztowy oraz (2) których zyski przekraczają określoną wartość w dolarach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'Zakres komórek do zsumowania.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Zakres, który jest sprawdzany przy użyciu argumentu kryteria1 . Criteria_range1 i kryteria1 tworzą parę wyszukiwania, w której zakres jest wyszukiwany w poszukiwaniu określonych kryteriów. Po znalezieniu elementów w zakresie zostaną dodane odpowiadające im wartości w Sum_range .' }, + criteria1: { name: 'criteria1', detail: 'Kryteria określające, które komórki w Criteria_range1 zostaną dodane. Kryteria można wprowadzić na przykład jako 32 , ">32" , B4 , "jabłka" lub "32".' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 127 par zakres/kryteria.' }, + criteria2: { name: 'criteria2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 127 par zakres/kryteria.' }, + }, + }, + SUMPRODUCT: { + description: 'Funkcja SUMA.ILOCZYNÓW odpowiada wszystkim wystąpieniom elementu Y/Rozmiar M i sumuje je, dlatego w tym przykładzie 21 plus 41 równa się 62.', + abstract: 'Funkcja SUMA.ILOCZYNÓW odpowiada wszystkim wystąpieniom elementu Y/Rozmiar M i sumuje je, dlatego w tym przykładzie 21 plus 41 równa się 62.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'Pierwszy argument tablicy, której elementy zostaną pomnożone, a następnie zsumowane.' }, + array2: { name: 'array', detail: 'Od 2 do 255 tablic, których elementy zostaną pomnożone, a następnie zsumowane.' }, + }, + }, + SUMSQ: { + description: 'Zwraca sumę kwadratów argumentów.', + abstract: 'Zwraca sumę kwadratów argumentów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany. Kolejne liczby są opcjonalne. Może istnieć nawet 255 argumentów, dla których należy obliczyć sumę kwadratów.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany. Kolejne liczby są opcjonalne. Może istnieć nawet 255 argumentów, dla których należy obliczyć sumę kwadratów.' }, + }, + }, + SUMX2MY2: { + description: 'Ta funkcja programu Excel zwraca sumę różnic kwadratów odpowiadających sobie wartości w dwóch tablicach.', + abstract: 'Ta funkcja programu Excel zwraca sumę różnic kwadratów odpowiadających sobie wartości w dwóch tablicach.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Wymagane. Pierwsza tablica lub pierwszy zakres wartości.' }, + arrayY: { name: 'array_y', detail: 'Wymagane. Druga tablica lub drugi zakres wartości.' }, + }, + }, + SUMX2PY2: { + description: 'Zwraca sumę sum kwadratów odpowiadających sobie wartości w dwóch tablicach. Suma sum kwadratów jest często wykorzystywana jako składnik w wielu obliczeniach statystycznych.', + abstract: 'Zwraca sumę sum kwadratów odpowiadających sobie wartości w dwóch tablicach. Suma sum kwadratów jest często wykorzystywana jako składnik w wielu obliczeniach statystycznych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Wymagane. Pierwsza tablica lub pierwszy zakres wartości.' }, + arrayY: { name: 'array_y', detail: 'Wymagane. Druga tablica lub drugi zakres wartości.' }, + }, + }, + SUMXMY2: { + description: 'Funkcja SUMXMY2 zwraca sumę kwadratów różnic odpowiadających sobie wartości w dwóch tablicach.', + abstract: 'Funkcja SUMXMY2 zwraca sumę kwadratów różnic odpowiadających sobie wartości w dwóch tablicach.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Pierwsza tablica lub pierwszy zakres wartości. Argument wymagany.' }, + arrayY: { name: 'array_y', detail: 'Druga tablica lub drugi zakres wartości. Argument wymagany.' }, + }, + }, + TAN: { + description: 'Zwraca tangens podanego kąta.', + abstract: 'Zwraca tangens podanego kąta.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Kąt w radianach, dla którego należy obliczyć tangens.' }, + }, + }, + TANH: { + description: 'Zwraca tangens hiperboliczny liczby.', + abstract: 'Zwraca tangens hiperboliczny liczby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Dowolna liczba rzeczywista.' }, + }, + }, + TRUNC: { + description: 'Funkcje TRUNC obcinają liczbę do liczby całkowitej, usuwając część ułamkową liczby.', + abstract: 'Funkcje TRUNC obcinają liczbę do liczby całkowitej, usuwając część ułamkową liczby.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, którą należy obciąć.' }, + numDigits: { name: 'num_digits', detail: 'Opcjonalne. Liczba określająca dokładność obcinania. Argument liczba_cyfr przyjmuje domyślnie wartość 0 (zero).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/math/pt-BR.ts new file mode 100644 index 0000000000..3a22e32fad --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/math/pt-BR.ts @@ -0,0 +1,1145 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ABS: { + description: 'Retorna o valor absoluto de um número. Esse valor é o número sem o seu sinal.', + abstract: 'Retorna o valor absoluto de um número. Esse valor é o número sem o seu sinal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/abs-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número real cujo valor absoluto você deseja obter.' }, + }, + }, + ACOS: { + description: 'Retorna o arco cosseno ou o cosseno inverso de um número. O arco cosseno é o ângulo cujo cosseno é núm . O ângulo retornado é fornecido em radianos no intervalo de 0 (zero) a pi.', + abstract: 'Retorna o arco cosseno ou o cosseno inverso de um número. O arco cosseno é o ângulo cujo cosseno é núm . O ângulo retornado é fornecido em radianos no intervalo de 0 (zero) a pi.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/acos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O cosseno do ângulo desejado e deve estar entre -1 e 1.' }, + }, + }, + ACOSH: { + description: 'Retorna o cosseno hiperbólico inverso de um número. O número deve ser maior ou igual a 1. O cosseno hiperbólico inverso é o valor cujo cosseno hiperbólico é núm , de modo que ACOSH(COSH(núm)) é igual a núm .', + abstract: 'Retorna o cosseno hiperbólico inverso de um número. O número deve ser maior ou igual a 1. O cosseno hiperbólico inverso é o valor cujo cosseno hiperbólico é núm , de modo que ACOSH(COSH(núm)) é igual a núm .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/acosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real maior ou igual a 1.' }, + }, + }, + ACOT: { + description: 'Retorna o valor principal do arco cotangente, ou cotangente inverso, de um número.', + abstract: 'Retorna o valor principal do arco cotangente, ou cotangente inverso, de um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/acot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número é o cotangente do ângulo desejado. Esse deve ser um número real.' }, + }, + }, + ACOTH: { + description: 'Retorna o cotangente hiperbólico inverso de um número.', + abstract: 'Retorna o cotangente hiperbólico inverso de um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/acoth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O valor absoluto de número deve ser maior que 1.' }, + }, + }, + AGGREGATE: { + description: 'Retorna uma agregação em uma lista ou banco de dados. A função AGREGAR pode aplicar diferentes funções de agregação a uma lista ou a um banco de dados com a opção de ignorar linhas ocultas e valores de erro.', + abstract: 'Retorna uma agregação em uma lista ou banco de dados. A função AGREGAR pode aplicar diferentes funções de agregação a uma lista ou a um banco de dados com a opção de ignorar linhas ocultas e valores de erro.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/aggregate-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Obrigatório. Um número de 1 a 19 que especifica qual função usar.' }, + options: { name: 'options', detail: 'Obrigatório. Um valor numérico que determina quais valores ignorar no intervalo de avaliação da função. Observação A função não ignorará linhas ocultas, subtotais aninhados ou agregados aninhados se o argumento de matriz incluir um cálculo, por exemplo: =AGREGAR(14;3;A1:A100*(A1:A100>0),1)' }, + ref1: { name: 'ref1', detail: 'Obrigatório. O primeiro argumento numérico para funções que usam vários argumentos numéricos para os quais você quer agregar o valor.' }, + ref2: { name: 'ref2', detail: 'Opcional. Argumentos numéricos de 2 a 253 dos quais você quer o valor de agregação. Para funções que usam uma matriz, ref1 é uma matriz, uma fórmula de matriz ou uma referência a um intervalo de células das quais você quer o valor de agregação. Ref2 é um segundo argumento requerido para certas funções. As funções a seguir requerem um argumento ref2:' }, + }, + }, + ARABIC: { + description: 'Converte um algarismo romano em um arábico.', + abstract: 'Converte um algarismo romano em um arábico.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/arabic-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. Uma cadeia de caracteres entre aspas, uma cadeia de caracteres vazia("") ou uma referência a uma célula que contém texto.' }, + }, + }, + ASIN: { + description: 'Retorna o arco seno ou o seno inverso de um número. O arco seno é o ângulo cujo seno é núm . O ângulo retornado é fornecido em radianos no intervalo de -pi/2 a pi/2.', + abstract: 'Retorna o arco seno ou o seno inverso de um número. O arco seno é o ângulo cujo seno é núm . O ângulo retornado é fornecido em radianos no intervalo de -pi/2 a pi/2.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/asin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O seno do ângulo desejado e deve estar entre -1 e 1.' }, + }, + }, + ASINH: { + description: 'Retorna o seno hiperbólico inverso de um número. O seno hiperbólico inverso é o valor cujo seno hiperbólico é núm , de modo que ASENH(SENH(núm)) é igual a núm .', + abstract: 'Retorna o seno hiperbólico inverso de um número. O seno hiperbólico inverso é o valor cujo seno hiperbólico é núm , de modo que ASENH(SENH(núm)) é igual a núm .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/asinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real.' }, + }, + }, + ATAN: { + description: 'Retorna o arco tangente, ou a tangente inversa, de um número. O arco tangente é o ângulo cuja tangente é núm . O ângulo retornado é fornecido em radianos no intervalo -pi/2 a pi/2.', + abstract: 'Retorna o arco tangente, ou a tangente inversa, de um número. O arco tangente é o ângulo cuja tangente é núm . O ângulo retornado é fornecido em radianos no intervalo -pi/2 a pi/2.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/atan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. A tangente do ângulo desejado.' }, + }, + }, + ATAN2: { + description: 'Retorna o arco tangente, ou a tangente inversa, das coordenadas x e y especificadas. O arco tangente é o ângulo entre eixo x e uma linha que contém a origem (0, 0) e um ponto com coordenadas (núm_x; núm_y). O ângulo é fornecido em radianos entre -pi e pi, excluindo -pi.', + abstract: 'Retorna o arco tangente, ou a tangente inversa, das coordenadas x e y especificadas. O arco tangente é o ângulo entre eixo x e uma linha que contém a origem (0, 0) e um ponto com coordenadas (núm_x; núm_y). O ângulo é fornecido em radianos entre -pi e pi, excluindo -pi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/atan2-function', + }, + ], + functionParameter: { + xNum: { name: 'x_num', detail: 'Obrigatório. A coordenada x do ponto.' }, + yNum: { name: 'y_num', detail: 'Obrigatório. A coordenada y do ponto.' }, + }, + }, + ATANH: { + description: 'Retorna a tangente hiperbólica inversa de um número. O número deve estar entre -1 e 1 (excluindo -1 e 1). A tangente hiperbólica inversa é o valor cuja tangente hiperbólica é núm , de modo que ATANH(TANH(núm)) é igual a núm .', + abstract: 'Retorna a tangente hiperbólica inversa de um número. O número deve estar entre -1 e 1 (excluindo -1 e 1). A tangente hiperbólica inversa é o valor cuja tangente hiperbólica é núm , de modo que ATANH(TANH(núm)) é igual a núm .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/atanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real entre 1 e -1.' }, + }, + }, + BASE: { + description: 'Converte um número em uma representação de texto com a base fornecida.', + abstract: 'Converte um número em uma representação de texto com a base fornecida.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/base-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número que você deseja converter. Deve ser um número inteiro maior que ou igual a 0 e menor que 2^53.' }, + radix: { name: 'radix', detail: 'Obrigatório. A base para a qual você deseja converter o número. Deve ser um número inteiro maior que ou igual a 2 e menor que ou igual a 36.' }, + minLength: { name: 'min_length', detail: 'Opcional. A extensão mínima da cadeia de caracteres retornada. Deve ser um número inteiro maior que ou igual a 0.' }, + }, + }, + CEILING: { + description: 'Retorna um núm arredondado para cima, afastando-o de zero, até o múltiplo mais próximo de significância. Por exemplo, se quiser evitar usar centavos nos preços e o seu produto custar $ 4,42, use a fórmula =TETO(4;42;0;05) para arredondar os preços para cima até o valor inteiro mais próximo.', + abstract: 'Retorna um núm arredondado para cima, afastando-o de zero, até o múltiplo mais próximo de significância. Por exemplo, se quiser evitar usar centavos nos preços e o seu produto custar $ 4,42, use a fórmula =TETO(4;42;0;05) para arredondar os preços para cima até o valor inteiro mais próximo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor que você deseja arredondar.' }, + significance: { name: 'significance', detail: 'Obrigatório. O múltiplo para o qual você deseja arredondar.' }, + }, + }, + CEILING_MATH: { + description: 'O TETO. A função MATH arredonda um número até o inteiro mais próximo ou, opcionalmente, para o múltiplo de significado mais próximo.', + abstract: 'O TETO. A função MATH arredonda um número até o inteiro mais próximo ou, opcionalmente, para o múltiplo de significado mais próximo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ceiling-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Necessário. (deve estar entre -2.229E-308.e 9.99E+307.)' }, + significance: { name: 'significance', detail: 'Opcional. Esse é o número de dígitos significativos após o ponto decimal para o qual o número deve ser arredondado.' }, + mode: { name: 'mode', detail: 'Opcional. Isso controla se os números negativos são arredondados para ou longe de zero.' }, + }, + }, + CEILING_PRECISE: { + description: 'Retorna um número que é arredondado para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal de núm, um valor será arredondado. No entanto, se núm ou significância for zero, zero será retornado.', + abstract: 'Retorna um número que é arredondado para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal de núm, um valor será arredondado. No entanto, se núm ou significância for zero, zero será retornado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ceiling-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser arredondado.' }, + significance: { name: 'significance', detail: 'Opcional. O múltiplo para o qual o número será arredondado. Se a significância for omitida, o valor padrão será 1.' }, + }, + }, + COMBIN: { + description: 'Retorna o número de combinações de um determinado número de itens. Use COMBIN para determinar o número total possível de grupos para determinado número de objetos.', + abstract: 'Retorna o número de combinações de um determinado número de itens. Use COMBIN para determinar o número total possível de grupos para determinado número de objetos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/combin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número de itens.' }, + numberChosen: { name: 'number_chosen', detail: 'Necessário. O número de itens em cada combinação.' }, + }, + }, + COMBINA: { + description: 'Retorna o número de combinações (com repetições) de um determinado número de itens.', + abstract: 'Retorna o número de combinações (com repetições) de um determinado número de itens.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/combina-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Deve ser maior que ou igual a 0 e maior que ou igual a Núm_escolhido. Os valores que não forem inteiros serão truncados.' }, + numberChosen: { name: 'number_chosen', detail: 'Necessário. Deve ser maior que ou igual a 0. Os valores que não forem inteiros serão truncados.' }, + }, + }, + COS: { + description: 'Retorna o cosseno do ângulo dado.', + abstract: 'Retorna o cosseno do ângulo dado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/cos-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O ângulo em radianos cujo cosseno você deseja obter.' }, + }, + }, + COSH: { + description: 'Retorna o cosseno hiperbólico de um número.', + abstract: 'Retorna o cosseno hiperbólico de um número.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/cosh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real cujo cosseno hiperbólico você deseja calcular.' }, + }, + }, + COT: { + description: 'Retorna o cotangente de um ângulo especificado em radianos.', + abstract: 'Retorna o cotangente de um ângulo especificado em radianos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/cot-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O ângulo em radianos para o qual você deseja o cotangente.' }, + }, + }, + COTH: { + description: 'Devolver a cotangente hiperbólica de um ângulo hiperbólico.', + abstract: 'Devolver a cotangente hiperbólica de um ângulo hiperbólico.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/coth-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório.' }, + }, + }, + CSC: { + description: 'Retorna a cossecante de um ângulo especificado em radianos.', + abstract: 'Retorna a cossecante de um ângulo especificado em radianos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/csc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório.' }, + }, + }, + CSCH: { + description: 'Retorna a hiperbólica da cossecante de um ângulo especificado em radianos.', + abstract: 'Retorna a hiperbólica da cossecante de um ângulo especificado em radianos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/csch-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório.' }, + }, + }, + DECIMAL: { + description: 'Converte uma representação de texto de um número em uma determinada base em um número decimal.', + abstract: 'Converte uma representação de texto de um número em uma determinada base em um número decimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/decimal-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório.' }, + radix: { name: 'radix', detail: 'Necessário. O radix deve ser um número inteiro.' }, + }, + }, + DEGREES: { + description: 'Converte radianos em graus.', + abstract: 'Converte radianos em graus.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/degrees-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Necessário. O ângulo em radianos que se deseja converter.' }, + }, + }, + EVEN: { + description: 'Retorna o núm arredondado para o inteiro par mais próximo. Esta função pode ser usada para processar itens que aparecem em pares. Por exemplo, um engradado aceita fileiras de um ou dois itens. O engradado está cheio quando o número de itens, arredondado para mais até o par mais próximo, preencher sua capacidade.', + abstract: 'Retorna o núm arredondado para o inteiro par mais próximo. Esta função pode ser usada para processar itens que aparecem em pares. Por exemplo, um engradado aceita fileiras de um ou dois itens. O engradado está cheio quando o número de itens, arredondado para mais até o par mais próximo, preencher sua capacidade.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/even-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser arredondado.' }, + }, + }, + EXP: { + description: 'Retorna e elevado à potência de núm. A constante e é igual a 2,71828182845904, a base do logaritmo natural.', + abstract: 'Retorna e elevado à potência de núm. A constante e é igual a 2,71828182845904, a base do logaritmo natural.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/exp-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O expoente aplicado à base e.' }, + }, + }, + FACT: { + description: 'Retorna o FATORIALrial de um número. O FATORIALrial de um número é igual ao número 1*2*3*...*.', + abstract: 'Retorna o FATORIALrial de um número. O FATORIALrial de um número é igual ao número 1*2*3*...*.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fact-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número não negativo para o qual você deseja obter o FATORIALrial. Se o número não for um inteiro, ele será truncado.' }, + }, + }, + FACTDOUBLE: { + description: 'Retorna o fatorial duplo de um número.', + abstract: 'Retorna o fatorial duplo de um número.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/factdouble-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor para o qual você deseja retornar o fatorial duplo. Se núm não for um inteiro, será truncado.' }, + }, + }, + FLOOR: { + description: 'A função FLOOR no Excel arredonda um número especificado para baixo para o múltiplo de significado especificado mais próximo. Os números negativos são arredondados para baixo (mais negativos) para vários inteiros mais próximos abaixo de zero.', + abstract: 'A função FLOOR no Excel arredonda um número especificado para baixo para o múltiplo de significado especificado mais próximo. Os números negativos são arredondados para baixo (mais negativos) para vários inteiros mais próximos abaixo de zero.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/floor-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor numérico que você deseja arredondar.' }, + significance: { name: 'significance', detail: 'Necessário. O múltiplo para o qual você deseja arredondar.' }, + }, + }, + FLOOR_MATH: { + description: 'Arredonda um número para baixo, para o número inteiro mais próximo ou para o próximo múltiplo significativo.', + abstract: 'Arredonda um número para baixo, para o número inteiro mais próximo ou para o próximo múltiplo significativo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/floor-math-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número a ser arredondado para baixo.' }, + significance: { name: 'significance', detail: 'Opcional. O múltiplo para o qual você deseja arredondar.' }, + mode: { name: 'mode', detail: 'Opcional. A direção (aproximando-se ou afastando-se de 0) na qual os números negativos devem ser arredondados.' }, + }, + }, + FLOOR_PRECISE: { + description: 'Retorna um número que é arredondado para baixo para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal do número, ele será arredondado para baixo. No entanto, se o número ou a significância for zero, zero será retornado.', + abstract: 'Retorna um número que é arredondado para baixo para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal do número, ele será arredondado para baixo. No entanto, se o número ou a significância for zero, zero será retornado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/floor-precise-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser arredondado.' }, + significance: { name: 'significance', detail: 'Opcional. O múltiplo para o qual o número será arredondado. Se a significância for omitida, o valor padrão será 1.' }, + }, + }, + GCD: { + description: 'Retorna o máximo divisor comum de dois ou mais inteiros. O máximo divisor comum é o maior inteiro que divide núm1 e núm2 sem resto.', + abstract: 'Retorna o máximo divisor comum de dois ou mais inteiros. O máximo divisor comum é o maior inteiro que divide núm1 e núm2 sem resto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/gcd-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. Valores de 1 a 255. Se o valor não for um inteiro, será truncado.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. Valores de 1 a 255. Se o valor não for um inteiro, será truncado.' }, + }, + }, + INT: { + description: 'Arredonda um número para baixo até o número inteiro mais próximo.', + abstract: 'Arredonda um número para baixo até o número inteiro mais próximo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/int-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número real que se deseja arredondar para baixo até um inteiro.' }, + }, + }, + ISO_CEILING: { + description: 'Retorna um número que é arredondado para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal de núm, um valor será arredondado. No entanto, se núm ou significância for zero, zero será retornado.', + abstract: 'Retorna um número que é arredondado para o inteiro mais próximo ou para o múltiplo mais próximo de significância. Independentemente do sinal de núm, um valor será arredondado. No entanto, se núm ou significância for zero, zero será retornado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/iso-ceiling-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser arredondado.' }, + significance: { name: 'significance', detail: 'Opcional. O múltiplo para o qual o número será arredondado. Se a significância for omitida, o valor padrão será 1.' }, + }, + }, + LCM: { + description: 'Retorna o mínimo múltiplo comum de inteiros. O mínimo múltiplo comum é o menor inteiro positivo múltiplo de todos os argumentos inteiros núm1, núm 2, e assim por diante. Use MMC para incluir frações com denominadores diferentes.', + abstract: 'Retorna o mínimo múltiplo comum de inteiros. O mínimo múltiplo comum é o menor inteiro positivo múltiplo de todos os argumentos inteiros núm1, núm 2, e assim por diante. Use MMC para incluir frações com denominadores diferentes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/lcm-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. Valores de 1 a 255 para os quais você deseja obter o mínimo múltiplo comum. Se o valor não for um inteiro, será truncado.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. Valores de 1 a 255 para os quais você deseja obter o mínimo múltiplo comum. Se o valor não for um inteiro, será truncado.' }, + }, + }, + LN: { + description: 'Retorna o logaritmo natural de um número. Os logaritmos naturais se baseiam na constante e (2,71828182845904).', + abstract: 'Retorna o logaritmo natural de um número. Os logaritmos naturais se baseiam na constante e (2,71828182845904).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/ln-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número real positivo para o qual você deseja obter o logaritmo natural.' }, + }, + }, + LOG: { + description: 'Retorna o logaritmo de um número de uma base especificada.', + abstract: 'Retorna o logaritmo de um número de uma base especificada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/log-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número real positivo para o qual você deseja obter o logaritmo.' }, + base: { name: 'base', detail: 'Opcional. A base do logaritmo. Se base for omitido, será considerado 10.' }, + }, + }, + LOG10: { + description: 'Retorna o logaritmo de base 10 de um número.', + abstract: 'Retorna o logaritmo de base 10 de um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/log10-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número real positivo para o qual você deseja obter o logaritmo na base 10.' }, + }, + }, + MDETERM: { + description: 'Retorna o determinante de uma matriz de uma variável do tipo matriz.', + abstract: 'Retorna o determinante de uma matriz de uma variável do tipo matriz.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/mdeterm-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. Uma matriz numérica com um número igual de linhas e colunas.' }, + }, + }, + MINVERSE: { + description: 'A função MINVERSE devolve a matriz inversa de uma matriz armazenada numa matriz.', + abstract: 'A função MINVERSE devolve a matriz inversa de uma matriz armazenada numa matriz.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/minverse-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. Uma matriz numérica com um número igual de linhas e colunas.' }, + }, + }, + MMULT: { + description: 'A função MMULT retorna o produto de matriz de duas matrizes. O resultado é uma matriz com o mesmo número de linhas que matriz1 e com o mesmo número de colunas que matriz2.', + abstract: 'A função MMULT retorna o produto de matriz de duas matrizes. O resultado é uma matriz com o mesmo número de linhas que matriz1 e com o mesmo número de colunas que matriz2.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mmult-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'As matrizes que você deseja multiplicar.' }, + array2: { name: 'array2', detail: 'As matrizes que você deseja multiplicar.' }, + }, + }, + MOD: { + description: 'Retorna o resto depois da divisão de número por divisor. O resultado possui o mesmo sinal que divisor.', + abstract: 'Retorna o resto depois da divisão de número por divisor. O resultado possui o mesmo sinal que divisor.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mod-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número para o qual você deseja encontrar o resto.' }, + divisor: { name: 'divisor', detail: 'Necessário. O número pelo qual você deseja dividir o número.' }, + }, + }, + MROUND: { + description: 'MROUND devolve um número arredondado para o múltiplo pretendido.', + abstract: 'MROUND devolve um número arredondado para o múltiplo pretendido.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/mround-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O valor a ser arredondado.' }, + multiple: { name: 'multiple', detail: 'Obrigatório. O múltiplo para o qual se deseja arredondar núm.' }, + }, + }, + MULTINOMIAL: { + description: 'Retorna a razão do fatorial de uma soma de valores para o produto de fatoriais.', + abstract: 'Retorna a razão do fatorial de uma soma de valores para o produto de fatoriais.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/multinomial-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 cujo multinominal você deseja obter.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 cujo multinominal você deseja obter.' }, + }, + }, + MUNIT: { + description: 'A função MUNIT devolve a matriz de unidades para a dimensão especificada.', + abstract: 'A função MUNIT devolve a matriz de unidades para a dimensão especificada.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/munit-function', + }, + ], + functionParameter: { + dimension: { name: 'dimension', detail: 'Um inteiro que especifica a dimensão da matriz identidade a retornar. Retorna uma matriz e a dimensão deve ser maior que zero.' }, + }, + }, + ODD: { + description: 'Retorna o número arredondado para cima até o inteiro ímpar mais próximo.', + abstract: 'Retorna o número arredondado para cima até o inteiro ímpar mais próximo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/odd-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Necessário. O valor a ser arredondado.' }, + }, + }, + PI: { + description: 'Retorna o número 3,14159265358979, a constante matemática pi, com precisão de até 15 dígitos.', + abstract: 'Retorna o número 3,14159265358979, a constante matemática pi, com precisão de até 15 dígitos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/pi-function', + }, + ], + functionParameter: { + }, + }, + POWER: { + description: 'Fornece o resultado de um número elevado a uma potência.', + abstract: 'Fornece o resultado de um número elevado a uma potência.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/power-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número base. Pode ser qualquer número real.' }, + power: { name: 'power', detail: 'Necessário. O expoente para o qual a base é elevada.' }, + }, + }, + PRODUCT: { + description: 'A função MULT multiplica todos os números dados como argumentos e retorna o produto. Por exemplo, se as células A1 e A2 contiverem números, você poderá usar a fórmula =PRODUCT(A1, A2) para multiplicar esses dois números juntos. Você também pode executar a mesma operação usando o operador matemático ( * ); por exemplo, =A1 * A2 .', + abstract: 'A função MULT multiplica todos os números dados como argumentos e retorna o produto. Por exemplo, se as células A1 e A2 contiverem números, você poderá usar a fórmula =PRODUCT(A1, A2) para multiplicar esses dois números juntos. Você também pode executar a mesma operação usando o operador matemático ( * ); por exemplo, =A1 * A2 .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/product-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro número ou intervalo que você deseja multiplicar.' }, + number2: { name: 'number2', detail: 'Opcional. Números ou intervalos adicionais que você deseja multiplicar, até um máximo de 255 argumentos.' }, + }, + }, + QUOTIENT: { + description: 'Retorna a parte inteira de uma divisão. Use esta função para descartar o resto de uma divisão.', + abstract: 'Retorna a parte inteira de uma divisão. Use esta função para descartar o resto de uma divisão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/quotient-function', + }, + ], + functionParameter: { + numerator: { name: 'numerator', detail: 'Obrigatório. O dividendo.' }, + denominator: { name: 'denominator', detail: 'Obrigatório. O divisor.' }, + }, + }, + RADIANS: { + description: 'Converte graus em radianos.', + abstract: 'Converte graus em radianos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/radians-function', + }, + ], + functionParameter: { + angle: { name: 'angle', detail: 'Necessário. Um ângulo em graus que você deseja converter.' }, + }, + }, + RAND: { + description: 'ALEATÓRIO retorna um número aleatório real maior que ou igual a 0 e menor que 1 distribuído uniformemente. Um novo número aleatório real é retornado sempre que a planilha é calculada.', + abstract: 'ALEATÓRIO retorna um número aleatório real maior que ou igual a 0 e menor que 1 distribuído uniformemente. Um novo número aleatório real é retornado sempre que a planilha é calculada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rand-function', + }, + ], + functionParameter: { + }, + }, + RANDARRAY: { + description: 'Nos exemplos a seguir, foi criada uma matriz de 5 linhas de altura e 3 colunas de largura. O primeiro retorna um conjunto de valores aleatório entre 0 e 1, que é o comportamento padrão da MATRIZALEATÓRIA. O segundo retorna uma série de valores decimais aleatórios entre 1 e 100. Por fim, o terceiro exemplo retorna uma série de números inteiros aleatórios entre 1 e 100.', + abstract: 'Nos exemplos a seguir, foi criada uma matriz de 5 linhas de altura e 3 colunas de largura. O primeiro retorna um conjunto de valores aleatório entre 0 e 1, que é o comportamento padrão da MATRIZALEATÓRIA. O segundo retorna uma série de valores decimais aleatórios entre 1 e 100. Por fim, o terceiro exemplo retorna uma série de números inteiros aleatórios entre 1 e 100.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/randarray-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'O número de linhas a serem retornadas' }, + columns: { name: 'columns', detail: 'O número de colunas a serem retornadas' }, + min: { name: 'min', detail: 'O número mínimo que você deseja que seja retornado' }, + max: { name: 'max', detail: 'O número máximo que você deseja que seja retornada' }, + wholeNumber: { name: 'whole_number', detail: 'Retornar um número inteiro ou um valor decimal VERDADEIRO para um número inteiro FALSE para um número decimal' }, + }, + }, + RANDBETWEEN: { + description: 'Retorna um número aleatório inteiro entre os números especificados. Um novo número aleatório inteiro será retornado sempre que a planilha for calculada.', + abstract: 'Retorna um número aleatório inteiro entre os números especificados. Um novo número aleatório inteiro será retornado sempre que a planilha for calculada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/randbetween-function', + }, + ], + functionParameter: { + bottom: { name: 'bottom', detail: 'Obrigatório. O menor inteiro que ALEATÓRIOENTRE retornará.' }, + top: { name: 'top', detail: 'Obrigatório. O maior inteiro que ALEATÓRIOENTRE retornará.' }, + }, + }, + ROMAN: { + description: 'Converte um algarismo arábico em romano, como texto.', + abstract: 'Converte um algarismo arábico em romano, como texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/roman-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O algarismo arábico a ser convertido.' }, + form: { name: 'form', detail: 'Opcional. O algarismo que especifica o tipo de algarismo romano desejado. O estilo do algarismo romano varia de clássico a simplificado, tornando-se mais conciso à medida que o valor da forma aumenta. Consulte o exemplo de ROMANO(499,0) seguinte.' }, + }, + }, + ROUND: { + description: 'A função ARRED arredonda um número para um número especificado de dígitos. Por exemplo, se a célula A1 contiver 23,7825 e você quiser arredondar esse valor para duas casas decimais, poderá usar a seguinte fórmula:', + abstract: 'A função ARRED arredonda um número para um número especificado de dígitos. Por exemplo, se a célula A1 contiver 23,7825 e você quiser arredondar esse valor para duas casas decimais, poderá usar a seguinte fórmula:', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/round-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número que você deseja arredondar.' }, + numDigits: { name: 'num_digits', detail: 'Obrigatório. O número de dígitos para o qual você deseja arredondar o argumento número.' }, + }, + }, + ROUNDBANK: { + description: 'Arredonda um número pelo método de arredondamento bancário.', + abstract: 'Arredonda um número pelo método de arredondamento bancário.', + links: [ + { + title: 'Instruction', + url: '', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O número que você deseja arredondar pelo método de arredondamento bancário.' }, + numDigits: { name: 'num_digits', detail: 'O número de dígitos para o qual você deseja arredondar pelo método de arredondamento bancário.' }, + }, + }, + ROUNDDOWN: { + description: 'Arredonda um número para baixo até zero.', + abstract: 'Arredonda um número para baixo até zero.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rounddown-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real que se deseja arredondar para baixo.' }, + numDigits: { name: 'num_digits', detail: 'Obrigatório. O número de dígitos para o qual se deseja arredondar núm.' }, + }, + }, + ROUNDUP: { + description: 'Arredonda um número para cima afastando-o de zero.', + abstract: 'Arredonda um número para cima afastando-o de zero.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/roundup-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real que se deseja arredondar para cima.' }, + numDigits: { name: 'num_digits', detail: 'Obrigatório. O número de dígitos para o qual se deseja arredondar núm.' }, + }, + }, + SEC: { + description: 'Retorna a secante de um ângulo.', + abstract: 'Retorna a secante de um ângulo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sec-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O ângulo em radianos para o qual você deseja obter a secante.' }, + }, + }, + SECH: { + description: 'Retorna a secante hiperbólica de um ângulo.', + abstract: 'Retorna a secante hiperbólica de um ângulo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sech-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O ângulo em radianos para o qual você deseja obter a secante hiperbólica.' }, + }, + }, + SERIESSUM: { + description: 'Muitas funções podem ser aproximadas por uma expansão da série polinomial.', + abstract: 'Muitas funções podem ser aproximadas por uma expansão da série polinomial.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/seriessum-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor de entrada da série polinomial.' }, + n: { name: 'n', detail: 'Obrigatório. A potência inicial à qual você deseja elevar x.' }, + m: { name: 'm', detail: 'Obrigatório. O passo pelo qual se acrescenta n a cada termo na sequência.' }, + coefficients: { name: 'coefficients', detail: 'Necessário. Um conjunto de coeficientes pelo qual cada potência de x é multiplicada. O número de valores em coeficientes determina o número de termos na série polinomial. Por exemplo, se houver três valores em coeficientes, haverá três termos na série polinomial.' }, + }, + }, + SEQUENCE: { + description: 'No exemplo a seguir, criamos uma matriz de 4 linhas de altura por 5 colunas de largura usando a fórmula =SEQUÊNCIA(4;5) .', + abstract: 'No exemplo a seguir, criamos uma matriz de 4 linhas de altura por 5 colunas de largura usando a fórmula =SEQUÊNCIA(4;5) .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sequence-function', + }, + ], + functionParameter: { + rows: { name: 'rows', detail: 'O número de linhas a serem retornadas' }, + columns: { name: 'columns', detail: 'O número de colunas a serem retornadas' }, + start: { name: 'start', detail: 'O primeiro número na sequência' }, + step: { name: 'step', detail: 'O valor a ser aumentado a cada valor subsequente na matriz' }, + }, + }, + SIGN: { + description: 'Determina o sinal de um número. Fornece 1 se núm for positivo, zero (0) se núm for 0, e -1 se núm for negativo.', + abstract: 'Determina o sinal de um número. Fornece 1 se núm for positivo, zero (0) se núm for 0, e -1 se núm for negativo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sign-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real.' }, + }, + }, + SIN: { + description: 'Retorna o seno de um ângulo dado.', + abstract: 'Retorna o seno de um ângulo dado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sin-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O ângulo em radianos para o qual você deseja obter o seno.' }, + }, + }, + SINH: { + description: 'Retorna o seno hiperbólico de um número.', + abstract: 'Retorna o seno hiperbólico de um número.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sinh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real.' }, + }, + }, + SQRT: { + description: 'Retorna uma raiz quadrada positiva.', + abstract: 'Retorna uma raiz quadrada positiva.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sqrt-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número do qual você deseja obter a raiz quadrada.' }, + }, + }, + SQRTPI: { + description: 'Retorna a raiz quadrada de (núm* pi).', + abstract: 'Retorna a raiz quadrada de (núm* pi).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sqrtpi-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número pelo qual se multiplica pi.' }, + }, + }, + SUBTOTAL: { + description: 'Retorna um subtotal em uma lista ou em um banco de dados. É geralmente mais fácil criar uma lista com subtotais usando o comando Subtotais , grupo Contorno , na guia Dados no aplicativo de desktop do Excel. Assim que a lista de subtotais for criada, você poderá modificá-la editando a função SUBTOTAL.', + abstract: 'Retorna um subtotal em uma lista ou em um banco de dados. É geralmente mais fácil criar uma lista com subtotais usando o comando Subtotais , grupo Contorno , na guia Dados no aplicativo de desktop do Excel. Assim que a lista de subtotais for criada, você poderá modificá-la editando a função SUBTOTAL.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/subtotal-function', + }, + ], + functionParameter: { + functionNum: { name: 'function_num', detail: 'Necessário. O número 1-11 ou 101-111 que especifica a função a ser usada para o subtotal. 1-11 inclui linhas ocultas manualmente, enquanto 101-111 as exclui; células filtradas sempre são excluídas.' }, + ref1: { name: 'ref1', detail: 'Necessário. O primeiro intervalo nomeado ou referência cujo subtotal você deseja.' }, + ref2: { name: 'ref2', detail: 'Opcional. Intervalos nomeados ou referências de 2 a 254 cujo subtotal você deseja.' }, + }, + }, + SUM: { + description: 'A função SUM adiciona valores. É possível adicionar valores individuais, referências de célula ou intervalos, ou uma mistura dos três.', + abstract: 'A função SUM adiciona valores. É possível adicionar valores individuais, referências de célula ou intervalos, ou uma mistura dos três.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sum-function', + }, + ], + functionParameter: { + number1: { name: 'Number 1', detail: 'O primeiro número que você deseja somar. O número pode ser como 4, uma referência de célula como B6 ou um intervalo de células como B2:B8.' }, + number2: { name: 'Number 2', detail: 'Este é o segundo número que você deseja somar. Você pode especificar até 255 números adicionais dessa maneira.' }, + }, + }, + SUMIF: { + description: 'Você usa a função SUMIF para resumir os valores em um intervalo que atenda aos critérios especificados. Por exemplo, suponha que em uma coluna que contém números, você deseja somar apenas os valores maiores que 5. Você pode usar a seguinte fórmula: =SUMIF(B2:B25">5")', + abstract: 'Você usa a função SUMIF para resumir os valores em um intervalo que atenda aos critérios especificados. Por exemplo, suponha que em uma coluna que contém números, você deseja somar apenas os valores maiores que 5. Você pode usar a seguinte fórmula: =SUMIF(B2:B25">5")', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Necessário. O intervalo de células que se deseja calcular por critérios. As células em cada intervalo devem ser números ou nomes, matrizes ou referências que contêm números. Espaços em branco e valores de texto são ignorados. O intervalo selecionado deve conter datas no formato padrão do Excel (exemplos abaixo).' }, + criteria: { name: 'criteria', detail: 'Necessário. Os critérios na forma de um número, expressão, referência de célula, texto ou função que define quais células serão adicionadas. Caracteres curinga podem ser incluídos – um ponto de interrogação (?) para corresponder a qualquer caractere, um asterisco (*) para corresponder a qualquer sequência de caracteres. Se você quiser encontrar um ponto de interrogação ou um asterisco real, digite um bloco ( ~ ) anterior ao caractere. Por exemplo, os critérios podem ser expressos como 32, ">32", B5, "3?", "apple*", "*~?", ou TODAY(). Importante Qualquer critério de texto ou qualquer critério que inclua símbolos lógicos ou matemáticos deve estar entre aspas duplas ( " ). Se os critérios forem numéricos, as aspas duplas não serão necessárias.' }, + sumRange: { name: 'sum_range', detail: 'Opcional. As células reais a serem adicionadas, se você quiser adicionar células diferentes daquelas especificadas no argumento de intervalo . Se o argumento sum_range for omitido, o Excel adicionará as células especificadas no argumento de intervalo (as mesmas células às quais os critérios são aplicados). Sum_range deve ter o mesmo tamanho e forma que o intervalo . Se não for, o desempenho poderá sofrer, e a fórmula somará um intervalo de células que começa com a primeira célula em sum_range , mas tem as mesmas dimensões que o intervalo . Por exemplo: intervalo intervalo_soma Células resumidas reais A1:A5 B1:B5 B1:B5 A1:A5 B1:K5 B1:B5' }, + }, + }, + SUMIFS: { + description: 'A função SOMASES, uma das funções de matemática e trigonometria , adiciona todos os seus argumentos que atendem a vários critérios. Por exemplo, você usaria SOMASES para somar o número de varejistas no país/região que (1) residem em um único CEP e (2) cujos lucros excedem um valor específico em dólar.', + abstract: 'A função SOMASES, uma das funções de matemática e trigonometria , adiciona todos os seus argumentos que atendem a vários critérios. Por exemplo, você usaria SOMASES para somar o número de varejistas no país/região que (1) residem em um único CEP e (2) cujos lucros excedem um valor específico em dólar.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumifs-function', + }, + ], + functionParameter: { + sumRange: { name: 'sum_range', detail: 'O intervalo de células para somar.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'O intervalo testado usando os Critérios1 . Criteria_range1 e Critérios1 configuram um par de pesquisa no qual um intervalo é pesquisado em busca de critérios específicos. Quando os itens do intervalo são encontrados, seus valores correspondentes em Sum_range são adicionados.' }, + criteria1: { name: 'criteria1', detail: 'Os critérios que definem quais células em Criteria_range1 serão adicionadas. Por exemplo, os critérios podem ser inseridos como 32 , ">32" , B4 , "maçãs" ou "32".' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Intervalos adicionais e seus critérios associados. Você pode inserir até 127 pares de intervalo/critérios.' }, + criteria2: { name: 'criteria2', detail: 'Intervalos adicionais e seus critérios associados. Você pode inserir até 127 pares de intervalo/critérios.' }, + }, + }, + SUMPRODUCT: { + description: 'SUMPRODUCT corresponde a todas as instâncias do Item Y/Tamanho M e as soma, portanto, para este exemplo, 21 mais 41 são iguais a 62.', + abstract: 'SUMPRODUCT corresponde a todas as instâncias do Item Y/Tamanho M e as soma, portanto, para este exemplo, 21 mais 41 são iguais a 62.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumproduct-function', + }, + ], + functionParameter: { + array1: { name: 'array', detail: 'O primeiro argumento matricial cujos componentes você deseja multiplicar e depois somar.' }, + array2: { name: 'array', detail: 'Argumentos matriciais de 2 a 255 cujos componentes você deseja multiplicar e depois somar.' }, + }, + }, + SUMSQ: { + description: 'Retorna a soma dos quadrados dos argumentos.', + abstract: 'Retorna a soma dos quadrados dos argumentos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Núm1 é obrigatório. Os números subsequentes são opcionais. Podem existir até 255 argumentos para os quais pretende obter a soma dos quadrados.' }, + number2: { name: 'number2', detail: 'Núm1 é obrigatório. Os números subsequentes são opcionais. Podem existir até 255 argumentos para os quais pretende obter a soma dos quadrados.' }, + }, + }, + SUMX2MY2: { + description: 'Esta função do Excel devolve a soma da diferença dos quadrados dos valores correspondentes em duas matrizes.', + abstract: 'Esta função do Excel devolve a soma da diferença dos quadrados dos valores correspondentes em duas matrizes.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumx2my2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Obrigatório. A primeira matriz ou intervalo de valores.' }, + arrayY: { name: 'array_y', detail: 'Obrigatório. A segunda matriz ou intervalo de valores.' }, + }, + }, + SUMX2PY2: { + description: 'Retorna a soma da soma dos quadrados dos valores correspondentes em duas matrizes. A soma da soma dos quadrados é um termo comum em muitos cálculos estatísticos.', + abstract: 'Retorna a soma da soma dos quadrados dos valores correspondentes em duas matrizes. A soma da soma dos quadrados é um termo comum em muitos cálculos estatísticos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumx2py2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'Necessário. A primeira matriz ou intervalo de valores.' }, + arrayY: { name: 'array_y', detail: 'Necessário. A segunda matriz ou intervalo de valores.' }, + }, + }, + SUMXMY2: { + description: 'A função SUMXMY2 devolve a soma de quadrados de diferenças dos valores correspondentes em duas matrizes.', + abstract: 'A função SUMXMY2 devolve a soma de quadrados de diferenças dos valores correspondentes em duas matrizes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/sumxmy2-function', + }, + ], + functionParameter: { + arrayX: { name: 'array_x', detail: 'A primeira matriz ou intervalo de valores. Obrigatório.' }, + arrayY: { name: 'array_y', detail: 'A segunda matriz ou intervalo de valores. Obrigatório.' }, + }, + }, + TAN: { + description: 'Retorna a tangente de um determinado ângulo.', + abstract: 'Retorna a tangente de um determinado ângulo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tan-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O ângulo em radianos para o qual você deseja obter a tangente.' }, + }, + }, + TANH: { + description: 'Retorna a tangente hiperbólica de um número.', + abstract: 'Retorna a tangente hiperbólica de um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/tanh-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Qualquer número real.' }, + }, + }, + TRUNC: { + description: 'As funções TRUNC truncam um número para um número inteiro ao remover a parte fracionária do número.', + abstract: 'As funções TRUNC truncam um número para um número inteiro ao remover a parte fracionária do número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/trunc-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número que se deseja truncar.' }, + numDigits: { name: 'num_digits', detail: 'Opcional. Um número que especifica a precisão da operação. O valor padrão para núm_dígitos é 0 (zero).' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/math/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/math/ru-RU.ts index a559ffc648..26f4bae643 100644 --- a/packages/sheets-formula/src/locale/function-list/math/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/math/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-abs-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-acos-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-acosh-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/acot-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-acot-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/ru-ru/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/acoth-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-acoth-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D0%B3%D1%80%D0%B5%D0%B3%D0%B0%D1%82-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/ru-ru/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B0%D1%80%D0%B0%D0%B1%D1%81%D0%BA%D0%BE%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B0%D1%80%D0%B0%D0%B1%D1%81%D0%BA%D0%BE%D0%B5-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-asin-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/ru-ru/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-asinh-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-atan-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/ru-ru/excel/functions/atan-function', }, ], functionParameter: { @@ -159,7 +159,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-atan2-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/ru-ru/excel/functions/atan2-function', }, ], functionParameter: { @@ -168,16 +168,16 @@ const locale: typeof enUS = { }, }, ATANH: { - description: 'Возвращает гиперболический арктангенс числа', - abstract: 'Возвращает гиперболический арктангенс числа', + description: 'Возвращает гиперболический арктангенс числа. Число должно быть в интервале от -1 до 1 (исключая -1 и 1). Гиперболический арктангенс числа — это значение, гиперболический тангенс которого равен числу , следовательно ATANH(TANH(число)) равняется числу .', + abstract: 'Возвращает гиперболический арктангенс числа. Число должно быть в интервале от -1 до 1 (исключая -1 и 1). Гиперболический арктангенс числа — это значение, гиперболический тангенс которого равен числу , следовательно ATANH(TANH(число)) равняется числу .', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-atanh-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/ru-ru/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'число', detail: 'Любое вещественное число в интервале от -1 до 1.' }, + number: { name: 'число', detail: 'Обязательный аргумент. Любое вещественное число в интервале от -1 до 1.' }, }, }, BASE: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/ru-ru/excel/functions/base-function', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-%D0%BC%D0%B0%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-%D0%BC%D0%B0%D1%82-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-%D1%82%D0%BE%D1%87%D0%BD-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D0%BB%D0%BA%D0%BE%D0%BC%D0%B1-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D0%B8%D1%81%D0%BB%D0%BA%D0%BE%D0%BC%D0%B1%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B8%D1%81%D0%BB%D0%BA%D0%BE%D0%BC%D0%B1%D0%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-cos-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-cosh-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/cot-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-cot-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/coth-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-coth-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/csc-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-csc-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/csch-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-csch-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%B5%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D1%81-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D1%80%D0%B0%D0%B4%D1%83%D1%81%D1%8B-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D1%91%D1%82%D0%BD-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-exp-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%B0%D0%BA%D1%82%D1%80-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B2%D1%84%D0%B0%D0%BA%D1%82%D1%80-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%BD%D0%B8%D0%B7-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/ru-ru/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D0%BA%D1%80%D0%B2%D0%BD%D0%B8%D0%B7-%D0%BC%D0%B0%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%BD%D0%B8%D0%B7-%D0%BC%D0%B0%D1%82-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D0%B2%D0%BD%D0%B8%D0%B7-%D1%82%D0%BE%D1%87%D0%BD-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D0%B4-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%86%D0%B5%D0%BB%D0%BE%D0%B5-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/ru-ru/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/iso-%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-iso-%D0%BE%D0%BA%D1%80%D0%B2%D0%B2%D0%B5%D1%80%D1%85-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/ru-ru/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + number: { name: 'число', detail: 'Округляемое значение.' }, + significance: { name: 'точность', detail: 'Кратное, до которого требуется округлить значение.' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D0%BA-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: 'число2', detail: 'Второе число, наименьшее общее кратное которого требуется найти. Таким образом можно указать до 255 чисел.' }, }, }, - LET: { - description: 'Функция LET присваивает имена результатам вычисления. Это позволяет сохранять промежуточные расчеты, значения и определять имена в формуле', - abstract: 'Функция LET присваивает имена результатам вычисления', - links: [ - { - title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-let-34842dd8-b92b-4d3f-b325-b8b8f9908999', - }, - ], - functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, - }, - }, LN: { description: 'Возвращает натуральный логарифм числа', abstract: 'Возвращает натуральный логарифм числа', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-ln-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-log-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/ru-ru/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-log10-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/ru-ru/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BE%D0%BF%D1%80%D0%B5%D0%B4-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BE%D0%B1%D1%80-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D1%83%D0%BC%D0%BD%D0%BE%D0%B6-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%81%D1%82%D0%B0%D1%82-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB%D1%82-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mround-function', }, ], functionParameter: { @@ -649,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D1%83%D0%BB%D1%8C%D1%82%D0%B8%D0%BD%D0%BE%D0%BC-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/multinomial-function', }, ], functionParameter: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%B5%D0%B4%D0%B8%D0%BD-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B5%D0%B4%D0%B8%D0%BD-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B5%D1%87%D1%91%D1%82-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/ru-ru/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B8-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pi-function', }, ], functionParameter: { @@ -701,7 +687,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B5%D0%BF%D0%B5%D0%BD%D1%8C-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/power-function', }, ], functionParameter: { @@ -715,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D0%B8%D0%B7%D0%B2%D0%B5%D0%B4-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/ru-ru/excel/functions/product-function', }, ], functionParameter: { @@ -729,7 +715,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%BE%D0%B5-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%BE%D0%B5-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/ru-ru/excel/functions/quotient-function', }, ], functionParameter: { @@ -743,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%B4%D0%B8%D0%B0%D0%BD%D1%8B-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/ru-ru/excel/functions/radians-function', }, ], functionParameter: { @@ -756,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BB%D1%87%D0%B8%D1%81-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rand-function', }, ], functionParameter: { @@ -768,7 +754,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D0%BB%D1%83%D1%87%D0%BC%D0%B0%D1%81%D1%81%D0%B8%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BB%D1%83%D1%87%D0%BC%D0%B0%D1%81%D1%81%D0%B8%D0%B2-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/ru-ru/excel/functions/randarray-function', }, ], functionParameter: { @@ -785,7 +771,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BB%D1%83%D1%87%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/ru-ru/excel/functions/randbetween-function', }, ], functionParameter: { @@ -799,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B8%D0%BC%D1%81%D0%BA%D0%BE%D0%B5-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/roman-function', }, ], functionParameter: { @@ -813,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/round-function', }, ], functionParameter: { @@ -841,7 +827,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB%D0%B2%D0%BD%D0%B8%D0%B7-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB%D0%B2%D0%BD%D0%B8%D0%B7-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rounddown-function', }, ], functionParameter: { @@ -855,7 +841,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB%D0%B2%D0%B2%D0%B5%D1%80%D1%85-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D0%BA%D1%80%D1%83%D0%B3%D0%BB%D0%B2%D0%B2%D0%B5%D1%80%D1%85-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/roundup-function', }, ], functionParameter: { @@ -869,7 +855,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/sec-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-sec-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sec-function', }, ], functionParameter: { @@ -882,7 +868,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/sech-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-sech-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sech-function', }, ], functionParameter: { @@ -895,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%80%D1%8F%D0%B4-%D1%81%D1%83%D0%BC%D0%BC-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D1%8F%D0%B4-%D1%81%D1%83%D0%BC%D0%BC-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/ru-ru/excel/functions/seriessum-function', }, ], functionParameter: { @@ -911,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BE%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BE%D0%B2-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sequence-function', }, ], functionParameter: { @@ -927,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B7%D0%BD%D0%B0%D0%BA-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sign-function', }, ], functionParameter: { @@ -940,7 +926,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/sin-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-sin-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sin-function', }, ], functionParameter: { @@ -953,7 +939,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-sinh-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sinh-function', }, ], functionParameter: { @@ -966,7 +952,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D1%80%D0%B5%D0%BD%D1%8C-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sqrt-function', }, ], functionParameter: { @@ -979,7 +965,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D1%80%D0%B5%D0%BD%D1%8C%D0%BF%D0%B8-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -992,7 +978,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D0%BC%D0%B5%D0%B6%D1%83%D1%82%D0%BE%D1%87%D0%BD%D1%8B%D0%B5-%D0%B8%D1%82%D0%BE%D0%B3%D0%B8-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/ru-ru/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1007,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%83%D0%BC%D0%BC-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sum-function', }, ], functionParameter: { @@ -1027,7 +1013,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D0%B5%D1%81%D0%BB%D0%B8-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumif-function', }, ], functionParameter: { @@ -1051,7 +1037,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D0%B5%D1%81%D0%BB%D0%B8%D0%BC%D0%BD-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1068,7 +1054,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%83%D0%BC%D0%BC%D0%BF%D1%80%D0%BE%D0%B8%D0%B7%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D0%BF%D1%80%D0%BE%D0%B8%D0%B7%D0%B2-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1082,7 +1068,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D0%BA%D0%B2-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1096,7 +1082,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%83%D0%BC%D0%BC%D1%80%D0%B0%D0%B7%D0%BD%D0%BA%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D1%80%D0%B0%D0%B7%D0%BD%D0%BA%D0%B2-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1110,7 +1096,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D1%81%D1%83%D0%BC%D0%BC%D0%BA%D0%B2-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1124,7 +1110,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%83%D0%BC%D0%BC%D0%BA%D0%B2%D1%80%D0%B0%D0%B7%D0%BD-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/ru-ru/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1138,7 +1124,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-tan-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tan-function', }, ], functionParameter: { @@ -1151,7 +1137,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-tanh-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/tanh-function', }, ], functionParameter: { @@ -1164,7 +1150,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%82%D0%B1%D1%80-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/ru-ru/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/math/sk-SK.ts index f6d8c9604d..8229e6e0ba 100644 --- a/packages/sheets-formula/src/locale/function-list/math/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/math/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/abs-function-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/acos-function-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/acosh-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/acot-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/sk-sk/excel/functions/acot-function', }, ], functionParameter: { @@ -78,7 +78,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/acoth-function-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/acoth-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/sk-sk/excel/functions/aggregate-function', }, ], functionParameter: { @@ -107,7 +107,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/arabic-function-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/arabic-function', }, ], functionParameter: { @@ -120,7 +120,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/asin-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/sk-sk/excel/functions/asin-function', }, ], functionParameter: { @@ -133,7 +133,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/asinh-function-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/asinh-function', }, ], functionParameter: { @@ -146,7 +146,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/atan-function-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/sk-sk/excel/functions/atan-function', }, ], functionParameter: { @@ -154,45 +154,45 @@ const locale: typeof enUS = { }, }, ATAN2: { - description: 'Vracia arkustangens z x- a y-súradníc.', - abstract: 'Vracia arkustangens z x- a y-súradníc', + description: 'Vráti arkustangens alebo inverzný tangens zadaných súradníc x a y. Arkustangens je uhol, ktorý zviera os x a priamka obsahujúca počiatok (0, 0) a bod so súradnicami (x_num, y_num). Uhol je daný v radiánoch medzi -pí a pí, okrem -pí.', + abstract: 'Vráti arkustangens alebo inverzný tangens zadaných súradníc x a y. Arkustangens je uhol, ktorý zviera os x a priamka obsahujúca počiatok (0, 0) a bod so súradnicami (x_num, y_num). Uhol je daný v radiánoch medzi -pí a pí, okrem -pí.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/atan2-function-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/sk-sk/excel/functions/atan2-function', }, ], functionParameter: { - xNum: { name: 'x_číslo', detail: 'X-súradnica bodu.' }, - yNum: { name: 'y_číslo', detail: 'Y-súradnica bodu.' }, + xNum: { name: 'x_číslo', detail: 'Povinné. je Súradnica x bodu.' }, + yNum: { name: 'y_číslo', detail: 'Povinné. Súradnica y bodu.' }, }, }, ATANH: { - description: 'Vracia inverzný hyperbolický tangens čísla.', - abstract: 'Vracia inverzný hyperbolický tangens čísla', + description: 'Vráti inverzný hyperbolický tangens čísla. Číslo musí byť väčšie než -1 a menšie než 1. Inverzný hyperbolický tangens je hodnota, ktorej hyperbolický tangens je dané číslo , takže ATANH(TANH(číslo)) = číslo .', + abstract: 'Vráti inverzný hyperbolický tangens čísla. Číslo musí byť väčšie než -1 a menšie než 1. Inverzný hyperbolický tangens je hodnota, ktorej hyperbolický tangens je dané číslo , takže ATANH(TANH(číslo)) = číslo .', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/atanh-function-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/sk-sk/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'číslo', detail: 'Ľubovoľné reálne číslo medzi -1 a 1.' }, + number: { name: 'číslo', detail: 'Povinné. Ľubovoľné reálne číslo v intervale od 1 do -1.' }, }, }, BASE: { - description: 'Konvertuje číslo na textové vyjadrenie so zadaným základom', - abstract: 'Konvertuje číslo na textové vyjadrenie so zadaným základom', + description: 'Konvertuje číslo na textové vyjadrenie s daným základom sústavy (základ).', + abstract: 'Konvertuje číslo na textové vyjadrenie s daným základom sústavy (základ).', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/base-function-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/sk-sk/excel/functions/base-function', }, ], functionParameter: { - number: { name: 'číslo', detail: 'Číslo, ktoré chcete previesť. Musí to byť celé číslo väčšie alebo rovné 0 a menšie ako 2^53.' }, - radix: { name: 'základ', detail: 'Základ, do ktorého chcete číslo previesť. Musí to byť celé číslo väčšie alebo rovné 2 a menšie alebo rovné 36.' }, - minLength: { name: 'minimálna_dĺžka', detail: 'Minimálna dĺžka vráteného reťazca. Musí to byť celé číslo väčšie alebo rovné 0.' }, + number: { name: 'číslo', detail: 'Povinné. Číslo, ktoré chcete skonvertovať. Musí to byť celé číslo väčšie ako alebo rovné 0 a menšie ako 2^53.' }, + radix: { name: 'základ', detail: 'Povinné. Základ sústavy, na ktorý chcete skonvertovať číslo. Musí to byť celé číslo väčšie alebo rovné 0 a menšie alebo rovné 36.' }, + minLength: { name: 'minimálna_dĺžka', detail: 'Voliteľný argument. Minimálna dĺžka vráteného reťazca. Musí to byť celé číslo väčšia alebo rovné 0.' }, }, }, CEILING: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ceiling-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ceiling-function', }, ], functionParameter: { @@ -215,7 +215,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ceiling-math-function-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ceiling-precise-function-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/combin-function', }, ], functionParameter: { @@ -258,7 +258,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/combina-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/combina-function', }, ], functionParameter: { @@ -272,7 +272,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cos-function-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cos-function', }, ], functionParameter: { @@ -285,7 +285,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cosh-function-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cosh-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/cot-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/cot-function', }, ], functionParameter: { @@ -311,7 +311,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/coth-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/coth-function', }, ], functionParameter: { @@ -324,7 +324,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/csc-function-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/csc-function', }, ], functionParameter: { @@ -337,7 +337,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/csch-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/csch-function', }, ], functionParameter: { @@ -350,7 +350,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/decimal-function-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/decimal-function', }, ], functionParameter: { @@ -364,7 +364,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/degrees-function', }, ], functionParameter: { @@ -377,7 +377,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/even-function-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/even-function', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/exp-function-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/exp-function', }, ], functionParameter: { @@ -403,7 +403,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fact-function-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fact-function', }, ], functionParameter: { @@ -416,7 +416,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/factdouble-function-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/factdouble-function', }, ], functionParameter: { @@ -429,7 +429,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/sk-sk/excel/functions/floor-function', }, ], functionParameter: { @@ -443,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/floor-math-function', }, ], functionParameter: { @@ -458,7 +458,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/floor-precise-function-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gcd-function', }, ], functionParameter: { @@ -486,7 +486,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/int-function-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/sk-sk/excel/functions/int-function', }, ], functionParameter: { @@ -499,12 +499,12 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/sk-sk/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + number: { name: 'číslo', detail: 'Hodnota, ktorú chcete zaokrúhliť.' }, + significance: { name: 'významnosť', detail: 'Násobok, na ktorý chcete číslo zaokrúhliť.' }, }, }, LCM: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lcm-function-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lcm-function', }, ], functionParameter: { @@ -521,27 +521,13 @@ const locale: typeof enUS = { number2: { name: 'číslo2', detail: 'Druhé číslo, pre ktoré sa má nájsť najmenší spoločný násobok. Týmto spôsobom možno zadať až 255 čísel.' }, }, }, - LET: { - description: 'Priraďuje názvy výsledkom výpočtov, čo umožňuje ukladať medzivýpočty, hodnoty alebo definovať názvy vo vzorci', - abstract: 'Priraďuje názvy výsledkom výpočtov, čo umožňuje ukladať medzivýpočty, hodnoty alebo definovať názvy vo vzorci', - links: [ - { - title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/let-function-34842dd8-b92b-4d3f-b325-b8b8f9908999', - }, - ], - functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, - }, - }, LN: { description: 'Vracia prirodzený logaritmus čísla', abstract: 'Vracia prirodzený logaritmus čísla', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/ln-function-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/ln-function', }, ], functionParameter: { @@ -554,7 +540,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/log-function-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/sk-sk/excel/functions/log-function', }, ], functionParameter: { @@ -568,7 +554,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/sk-sk/excel/functions/log10-function', }, ], functionParameter: { @@ -581,7 +567,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mdeterm-function-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -594,7 +580,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/minverse-function-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/minverse-function', }, ], functionParameter: { @@ -607,7 +593,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mmult-function', }, ], functionParameter: { @@ -621,7 +607,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mod-function-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mod-function', }, ], functionParameter: { @@ -635,7 +621,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mround-function', }, ], functionParameter: { @@ -649,7 +635,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/multinomial-function-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/multinomial-function', }, ], functionParameter: { @@ -663,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/munit-function-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/munit-function', }, ], functionParameter: { @@ -676,7 +662,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/odd-function-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/sk-sk/excel/functions/odd-function', }, ], functionParameter: { @@ -689,7 +675,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pi-function-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pi-function', }, ], functionParameter: {}, @@ -700,7 +686,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/power-function', }, ], functionParameter: { @@ -714,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/product-function-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/sk-sk/excel/functions/product-function', }, ], functionParameter: { @@ -728,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/sk-sk/excel/functions/quotient-function', }, ], functionParameter: { @@ -742,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/sk-sk/excel/functions/radians-function', }, ], functionParameter: { @@ -755,7 +741,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rand-function-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rand-function', }, ], functionParameter: {}, @@ -766,7 +752,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/randarray-function-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/sk-sk/excel/functions/randarray-function', }, ], functionParameter: { @@ -783,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/randbetween-function-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/sk-sk/excel/functions/randbetween-function', }, ], functionParameter: { @@ -797,7 +783,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/roman-function-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/roman-function', }, ], functionParameter: { @@ -811,7 +797,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/round-function-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/round-function', }, ], functionParameter: { @@ -839,7 +825,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rounddown-function-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rounddown-function', }, ], functionParameter: { @@ -853,7 +839,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/roundup-function-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/roundup-function', }, ], functionParameter: { @@ -867,7 +853,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sec-function-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sec-function', }, ], functionParameter: { @@ -880,7 +866,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sech-function-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sech-function', }, ], functionParameter: { @@ -893,7 +879,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/seriessum-function-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/sk-sk/excel/functions/seriessum-function', }, ], functionParameter: { @@ -909,7 +895,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sequence-function-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sequence-function', }, ], functionParameter: { @@ -925,7 +911,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sign-function-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sign-function', }, ], functionParameter: { @@ -938,7 +924,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sin-function-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sin-function', }, ], functionParameter: { @@ -951,7 +937,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sinh-function-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sinh-function', }, ], functionParameter: { @@ -964,7 +950,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sqrt-function-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sqrt-function', }, ], functionParameter: { @@ -977,7 +963,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sqrtpi-function-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -990,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/subtotal-function-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/sk-sk/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1005,7 +991,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sum-function-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sum-function', }, ], functionParameter: { @@ -1025,7 +1011,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumif-function-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumif-function', }, ], functionParameter: { @@ -1049,7 +1035,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1066,7 +1052,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1080,7 +1066,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumsq-function-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1094,7 +1080,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumx2my2-function-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1108,7 +1094,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumx2py2-function-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1122,7 +1108,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/sumxmy2-function-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/sk-sk/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1136,7 +1122,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tan-function-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tan-function', }, ], functionParameter: { @@ -1149,7 +1135,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/tanh-function-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/tanh-function', }, ], functionParameter: { @@ -1162,7 +1148,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/trunc-function-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/sk-sk/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/math/vi-VN.ts index 1f0b4af847..971b98548f 100644 --- a/packages/sheets-formula/src/locale/function-list/math/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/math/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/abs-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/acos-function', }, ], functionParameter: { @@ -49,7 +49,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/acosh-function', }, ], functionParameter: { @@ -62,7 +62,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/acot-function', }, ], functionParameter: { @@ -75,7 +75,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/acoth-function', }, ], functionParameter: { @@ -88,7 +88,7 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.microsoft.com/vi-vn/office/aggregate-function-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/vi-vn/excel/functions/aggregate-function', }, ], functionParameter: { @@ -104,7 +104,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/arabic-function', }, ], functionParameter: { @@ -117,7 +117,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/asin-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/asinh-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/atan-function', }, ], functionParameter: { @@ -151,30 +151,30 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Trả về arctang, hay tang nghịch đảo của tọa độ x và tọa độ y đã xác định. Arctang là góc từ trục x đến đường thẳng chứa tọa độ gốc (0, 0) và một điểm có tọa độ (x_num, y_num). Góc được tính bằng radian và có giá trị từ -pi đến pi, không bao gồm -pi.', + abstract: 'Trả về arctang, hay tang nghịch đảo của tọa độ x và tọa độ y đã xác định. Arctang là góc từ trục x đến đường thẳng chứa tọa độ gốc (0, 0) và một điểm có tọa độ (x_num, y_num). Góc được tính bằng radian và có giá trị từ -pi đến pi, không bao gồm -pi.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/atan2-function', }, ], 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.' }, + xNum: { name: 'Tọa độ x', detail: 'Yêu cầu. Tọa độ x của điểm.' }, + yNum: { name: 'Tọa độ y', detail: 'Yêu cầu. 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ố.', + description: 'Trả về tang hyperbolic nghịch đảo của một số. Số phải từ -1 đến 1 (không bao gồm -1 và 1). Tang hyperbolic nghịch đảo là giá trị mà tang hyperbolic của nó là số , vì vậy ATANH(TANH(number)) bằng số .', + abstract: 'Trả về tang hyperbolic nghịch đảo của một số. Số phải từ -1 đến 1 (không bao gồm -1 và 1). Tang hyperbolic nghịch đảo là giá trị mà tang hyperbolic của nó là số , vì vậy ATANH(TANH(number)) bằng 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: 'số', detail: 'Bất kỳ số thực nào từ 1 đến -1.' }, + number: { name: 'số', detail: 'Bắt buộc. Bất kỳ số thực nào từ 1 đến -1.' }, }, }, BASE: { @@ -183,7 +183,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/base-function', }, ], functionParameter: { @@ -198,7 +198,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ceiling-function', }, ], functionParameter: { @@ -212,7 +212,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -227,7 +227,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -241,7 +241,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/combin-function', }, ], functionParameter: { @@ -255,7 +255,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/combina-function', }, ], functionParameter: { @@ -269,7 +269,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cos-function', }, ], functionParameter: { @@ -282,7 +282,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cosh-function', }, ], functionParameter: { @@ -295,7 +295,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/cot-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/coth-function', }, ], functionParameter: { @@ -321,7 +321,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/csc-function', }, ], functionParameter: { @@ -334,7 +334,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/csch-function', }, ], functionParameter: { @@ -347,7 +347,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/decimal-function', }, ], functionParameter: { @@ -361,7 +361,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/degrees-function', }, ], functionParameter: { @@ -374,7 +374,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/even-function', }, ], functionParameter: { @@ -387,7 +387,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/exp-function', }, ], functionParameter: { @@ -400,7 +400,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fact-function', }, ], functionParameter: { @@ -413,7 +413,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/factdouble-function', }, ], functionParameter: { @@ -426,7 +426,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/floor-function', }, ], functionParameter: { @@ -440,7 +440,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/floor-math-function', }, ], functionParameter: { @@ -455,7 +455,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -469,7 +469,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gcd-function', }, ], functionParameter: { @@ -483,7 +483,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/int-function', }, ], functionParameter: { @@ -491,17 +491,17 @@ const locale: typeof enUS = { }, }, 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', + 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. Tuy nhiên, nếu đối số số hoặc đối số số có nghĩa là không, thì kết quả là không.', + 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. Bất chấp dấu của số, số sẽ được làm tròn lên. Tuy nhiên, nếu đối số số hoặc đối số số có nghĩa là không, thì kết quả là không.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/iso-ceiling-function-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/vi-vn/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + 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.' }, }, }, LCM: { @@ -510,7 +510,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lcm-function', }, ], functionParameter: { @@ -518,27 +518,13 @@ const locale: typeof enUS = { 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.' }, }, }, - 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: '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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/ln-function', }, ], functionParameter: { @@ -551,7 +537,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/log-function', }, ], functionParameter: { @@ -565,7 +551,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/log10-function', }, ], functionParameter: { @@ -578,7 +564,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -591,7 +577,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/minverse-function', }, ], functionParameter: { @@ -604,7 +590,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mmult-function', }, ], functionParameter: { @@ -618,7 +604,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mod-function', }, ], functionParameter: { @@ -632,7 +618,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mround-function', }, ], functionParameter: { @@ -646,7 +632,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/multinomial-function', }, ], functionParameter: { @@ -660,7 +646,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/munit-function', }, ], functionParameter: { @@ -673,7 +659,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/odd-function', }, ], functionParameter: { @@ -686,7 +672,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pi-function', }, ], functionParameter: { @@ -698,7 +684,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/power-function', }, ], functionParameter: { @@ -712,7 +698,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/product-function', }, ], functionParameter: { @@ -726,7 +712,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/quotient-function', }, ], functionParameter: { @@ -740,7 +726,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/radians-function', }, ], functionParameter: { @@ -753,7 +739,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rand-function', }, ], functionParameter: { @@ -765,7 +751,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/randarray-function', }, ], functionParameter: { @@ -782,7 +768,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/randbetween-function', }, ], functionParameter: { @@ -796,7 +782,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/roman-function', }, ], functionParameter: { @@ -810,7 +796,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/round-function', }, ], functionParameter: { @@ -838,7 +824,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rounddown-function', }, ], functionParameter: { @@ -852,7 +838,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/roundup-function', }, ], functionParameter: { @@ -866,7 +852,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sec-function', }, ], functionParameter: { @@ -879,7 +865,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sech-function', }, ], functionParameter: { @@ -892,7 +878,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/seriessum-function', }, ], functionParameter: { @@ -908,7 +894,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sequence-function', }, ], functionParameter: { @@ -924,7 +910,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sign-function', }, ], functionParameter: { @@ -937,7 +923,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sin-function', }, ], functionParameter: { @@ -950,7 +936,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sinh-function', }, ], functionParameter: { @@ -963,7 +949,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sqrt-function', }, ], functionParameter: { @@ -976,7 +962,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -989,7 +975,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1004,7 +990,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sum-function', }, ], functionParameter: { @@ -1024,7 +1010,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumif-function', }, ], functionParameter: { @@ -1048,7 +1034,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1065,7 +1051,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1079,7 +1065,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1093,7 +1079,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1107,7 +1093,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1121,7 +1107,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1135,7 +1121,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tan-function', }, ], functionParameter: { @@ -1148,7 +1134,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/tanh-function', }, ], functionParameter: { @@ -1161,7 +1147,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/math/zh-CN.ts index 7f4034bd29..82cbfa97fe 100644 --- a/packages/sheets-formula/src/locale/function-list/math/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/math/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/abs-%E5%87%BD%E6%95%B0-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/abs-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/acos-%E5%87%BD%E6%95%B0-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/acos-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/acosh-%E5%87%BD%E6%95%B0-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/acosh-function', }, ], functionParameter: { @@ -64,7 +64,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/acot-%E5%87%BD%E6%95%B0-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/zh-cn/excel/functions/acot-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/acoth-%E5%87%BD%E6%95%B0-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/acoth-function', }, ], functionParameter: { @@ -90,7 +90,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/aggregate-%E5%87%BD%E6%95%B0-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/zh-cn/excel/functions/aggregate-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/arabic-%E5%87%BD%E6%95%B0-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/arabic-function', }, ], functionParameter: { @@ -119,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/asin-%E5%87%BD%E6%95%B0-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/zh-cn/excel/functions/asin-function', }, ], functionParameter: { @@ -132,7 +132,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/asinh-%E5%87%BD%E6%95%B0-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/asinh-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/atan-%E5%87%BD%E6%95%B0-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/zh-cn/excel/functions/atan-function', }, ], functionParameter: { @@ -153,30 +153,30 @@ const locale: typeof enUS = { }, }, ATAN2: { - description: '返回 X 和 Y 坐标的反正切值。', - abstract: '返回 X 和 Y 坐标的反正切值', + description: '返回给定的 X 轴及 Y 轴坐标值的反正切值。 反正切值是指从 X 轴到通过原点 (0, 0) 和坐标点 (x_num, y_num) 的直线之间的夹角。 该角度以弧度表示,弧度值在 -pi 到 pi 之间(不包括 -pi)。', + abstract: '返回给定的 X 轴及 Y 轴坐标值的反正切值。 反正切值是指从 X 轴到通过原点 (0, 0) 和坐标点 (x_num, y_num) 的直线之间的夹角。 该角度以弧度表示,弧度值在 -pi 到 pi 之间(不包括 -pi)。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/atan2-%E5%87%BD%E6%95%B0-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/zh-cn/excel/functions/atan2-function', }, ], functionParameter: { - xNum: { name: 'x 坐标', detail: '点的 x 坐标。' }, - yNum: { name: 'y 坐标', detail: '点的 y 坐标。' }, + xNum: { name: 'x 坐标', detail: '必填。 点的 x 坐标。' }, + yNum: { name: 'y 坐标', detail: '必填。 点的 y 坐标。' }, }, }, ATANH: { - description: '返回数字的反双曲正切值。', - abstract: '返回数字的反双曲正切值', + description: '返回数字的反双曲正切值。 Number 必须介于 -1 到 1 之间(不包括 -1 和 1)。 反双曲正切值是指双曲正切值为 number 的值,因此 ATANH(TANH(number)) 等于 number 。', + abstract: '返回数字的反双曲正切值。 Number 必须介于 -1 到 1 之间(不包括 -1 和 1)。 反双曲正切值是指双曲正切值为 number 的值,因此 ATANH(TANH(number)) 等于 number 。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/atanh-%E5%87%BD%E6%95%B0-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/zh-cn/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: '数值', detail: '-1 到 1 之间的任意实数。' }, + number: { name: '数值', detail: '必需。 -1 到 1 之间的任意实数。' }, }, }, BASE: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/base-%E5%87%BD%E6%95%B0-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/zh-cn/excel/functions/base-function', }, ], functionParameter: { @@ -200,7 +200,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ceiling-%E5%87%BD%E6%95%B0-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ceiling-function', }, ], functionParameter: { @@ -214,7 +214,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ceiling-math-%E5%87%BD%E6%95%B0-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -229,7 +229,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/ceiling-precise-%E5%87%BD%E6%95%B0-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -243,7 +243,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/combin-%E5%87%BD%E6%95%B0-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/combin-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/combina-%E5%87%BD%E6%95%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/combina-function', }, ], functionParameter: { @@ -271,7 +271,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cos-%E5%87%BD%E6%95%B0-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cos-function', }, ], functionParameter: { @@ -284,7 +284,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cosh-%E5%87%BD%E6%95%B0-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cosh-function', }, ], functionParameter: { @@ -297,7 +297,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/cot-%E5%87%BD%E6%95%B0-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/cot-function', }, ], functionParameter: { @@ -310,7 +310,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/coth-%E5%87%BD%E6%95%B0-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/coth-function', }, ], functionParameter: { @@ -323,7 +323,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/csc-%E5%87%BD%E6%95%B0-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/csc-function', }, ], functionParameter: { @@ -336,7 +336,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/csch-%E5%87%BD%E6%95%B0-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/csch-function', }, ], functionParameter: { @@ -349,7 +349,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/decimal-%E5%87%BD%E6%95%B0-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/decimal-function', }, ], functionParameter: { @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/degrees-%E5%87%BD%E6%95%B0-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/degrees-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/even-%E5%87%BD%E6%95%B0-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/even-function', }, ], functionParameter: { @@ -389,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/exp-%E5%87%BD%E6%95%B0-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/exp-function', }, ], functionParameter: { @@ -402,7 +402,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fact-%E5%87%BD%E6%95%B0-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fact-function', }, ], functionParameter: { @@ -415,7 +415,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/factdouble-%E5%87%BD%E6%95%B0-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/factdouble-function', }, ], functionParameter: { @@ -428,7 +428,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/floor-%E5%87%BD%E6%95%B0-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/zh-cn/excel/functions/floor-function', }, ], functionParameter: { @@ -442,7 +442,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/floor-math-%E5%87%BD%E6%95%B0-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/floor-math-function', }, ], functionParameter: { @@ -457,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/floor-precise-%E5%87%BD%E6%95%B0-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -471,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gcd-%E5%87%BD%E6%95%B0-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gcd-function', }, ], functionParameter: { @@ -485,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/int-%E5%87%BD%E6%95%B0-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/zh-cn/excel/functions/int-function', }, ], functionParameter: { @@ -498,12 +498,12 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/iso-ceiling-%E5%87%BD%E6%95%B0-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/zh-cn/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '数值', detail: '要舍入的值。' }, + significance: { name: '倍数', detail: '要舍入到的倍数。' }, }, }, LCM: { @@ -512,7 +512,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lcm-%E5%87%BD%E6%95%B0-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lcm-function', }, ], functionParameter: { @@ -520,27 +520,13 @@ const locale: typeof enUS = { number2: { name: '数值2', detail: '用于计算的其他数值或范围。' }, }, }, - LET: { - description: '将名称分配给计算结果,以允许将中间计算、值或定义名称存储在公式内', - abstract: '将名称分配给计算结果,以允许将中间计算、值或定义名称存储在公式内', - links: [ - { - title: '教学', - url: 'https://support.microsoft.com/zh-cn/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-cn/office/ln-%E5%87%BD%E6%95%B0-81fe1ed7-dac9-4acd-ba1d-07a142c6118f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/ln-function', }, ], functionParameter: { @@ -553,7 +539,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/log-%E5%87%BD%E6%95%B0-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/zh-cn/excel/functions/log-function', }, ], functionParameter: { @@ -567,7 +553,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/log10-%E5%87%BD%E6%95%B0-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/zh-cn/excel/functions/log10-function', }, ], functionParameter: { @@ -580,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mdeterm-%E5%87%BD%E6%95%B0-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -593,7 +579,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/minverse-%E5%87%BD%E6%95%B0-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/minverse-function', }, ], functionParameter: { @@ -606,7 +592,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mmult-%E5%87%BD%E6%95%B0-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mmult-function', }, ], functionParameter: { @@ -620,7 +606,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mod-%E5%87%BD%E6%95%B0-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mod-function', }, ], functionParameter: { @@ -634,7 +620,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mround-%E5%87%BD%E6%95%B0-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mround-function', }, ], functionParameter: { @@ -648,7 +634,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/multinomial-%E5%87%BD%E6%95%B0-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/multinomial-function', }, ], functionParameter: { @@ -662,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/munit-%E5%87%BD%E6%95%B0-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/munit-function', }, ], functionParameter: { @@ -675,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/odd-%E5%87%BD%E6%95%B0-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/zh-cn/excel/functions/odd-function', }, ], functionParameter: { @@ -688,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pi-%E5%87%BD%E6%95%B0-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pi-function', }, ], functionParameter: { @@ -700,7 +686,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/power-%E5%87%BD%E6%95%B0-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/power-function', }, ], functionParameter: { @@ -714,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/product-%E5%87%BD%E6%95%B0-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/zh-cn/excel/functions/product-function', }, ], functionParameter: { @@ -728,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/quotient-%E5%87%BD%E6%95%B0-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/zh-cn/excel/functions/quotient-function', }, ], functionParameter: { @@ -742,7 +728,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/radians-%E5%87%BD%E6%95%B0-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/zh-cn/excel/functions/radians-function', }, ], functionParameter: { @@ -755,7 +741,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rand-%E5%87%BD%E6%95%B0-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rand-function', }, ], functionParameter: { @@ -767,7 +753,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/randarray-%E5%87%BD%E6%95%B0-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/zh-cn/excel/functions/randarray-function', }, ], functionParameter: { @@ -784,7 +770,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/randbetween-%E5%87%BD%E6%95%B0-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/zh-cn/excel/functions/randbetween-function', }, ], functionParameter: { @@ -798,7 +784,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/roman-%E5%87%BD%E6%95%B0-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/roman-function', }, ], functionParameter: { @@ -812,7 +798,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/round-%E5%87%BD%E6%95%B0-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/round-function', }, ], functionParameter: { @@ -840,7 +826,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rounddown-%E5%87%BD%E6%95%B0-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rounddown-function', }, ], functionParameter: { @@ -854,7 +840,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/roundup-%E5%87%BD%E6%95%B0-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/roundup-function', }, ], functionParameter: { @@ -868,7 +854,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sec-%E5%87%BD%E6%95%B0-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sec-function', }, ], functionParameter: { @@ -881,7 +867,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sech-%E5%87%BD%E6%95%B0-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sech-function', }, ], functionParameter: { @@ -894,7 +880,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/seriessum-%E5%87%BD%E6%95%B0-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/zh-cn/excel/functions/seriessum-function', }, ], functionParameter: { @@ -910,7 +896,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sequence-%E5%87%BD%E6%95%B0-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sequence-function', }, ], functionParameter: { @@ -926,7 +912,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sign-%E5%87%BD%E6%95%B0-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sign-function', }, ], functionParameter: { @@ -939,7 +925,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sin-%E5%87%BD%E6%95%B0-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sin-function', }, ], functionParameter: { @@ -952,7 +938,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sinh-%E5%87%BD%E6%95%B0-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sinh-function', }, ], functionParameter: { @@ -965,7 +951,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sqrt-%E5%87%BD%E6%95%B0-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sqrt-function', }, ], functionParameter: { @@ -978,7 +964,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sqrtpi-%E5%87%BD%E6%95%B0-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -991,7 +977,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/subtotal-%E5%87%BD%E6%95%B0-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/zh-cn/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1006,7 +992,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sum-%E5%87%BD%E6%95%B0-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sum-function', }, ], functionParameter: { @@ -1026,7 +1012,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumif-%E5%87%BD%E6%95%B0-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumif-function', }, ], functionParameter: { @@ -1050,7 +1036,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumifs-%E5%87%BD%E6%95%B0-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1067,7 +1053,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumproduct-%E5%87%BD%E6%95%B0-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1081,7 +1067,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumsq-%E5%87%BD%E6%95%B0-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1095,7 +1081,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumx2my2-%E5%87%BD%E6%95%B0-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1109,7 +1095,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumx2py2-%E5%87%BD%E6%95%B0-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1123,7 +1109,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/sumxmy2-%E5%87%BD%E6%95%B0-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/zh-cn/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1137,7 +1123,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tan-%E5%87%BD%E6%95%B0-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tan-function', }, ], functionParameter: { @@ -1150,7 +1136,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/tanh-%E5%87%BD%E6%95%B0-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/tanh-function', }, ], functionParameter: { @@ -1163,7 +1149,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/trunc-%E5%87%BD%E6%95%B0-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/zh-cn/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/math/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/math/zh-TW.ts index f3ace2d01a..444cf25a42 100644 --- a/packages/sheets-formula/src/locale/function-list/math/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/math/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/abs-%E5%87%BD%E6%95%B0-3420200f-5628-4e8c-99da-c99d7c87713c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/abs-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/acos-%E5%87%BD%E6%95%B0-cb73173f-d089-4582-afa1-76e5524b5d5b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/acos-function', }, ], functionParameter: { @@ -51,7 +51,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/acosh-%E5%87%BD%E6%95%B0-e3992cc1-103f-4e72-9f04-624b9ef5ebfe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/acosh-function', }, ], functionParameter: { @@ -64,7 +64,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/acot-%E5%87%BD%E6%95%B0-dc7e5008-fe6b-402e-bdd6-2eea8383d905', + url: 'https://support.microsoft.com/zh-tw/excel/functions/acot-function', }, ], functionParameter: { @@ -77,7 +77,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/acoth-%E5%87%BD%E6%95%B0-cc49480f-f684-4171-9fc5-73e4e852300f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/acoth-function', }, ], functionParameter: { @@ -90,7 +90,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/aggregate-%E5%87%BD%E6%95%B0-43b9278e-6aa7-4f17-92b6-e19993fa26df', + url: 'https://support.microsoft.com/zh-tw/excel/functions/aggregate-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/arabic-%E5%87%BD%E6%95%B0-9a8da418-c17b-4ef9-a657-9370a30a674f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/arabic-function', }, ], functionParameter: { @@ -119,7 +119,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/asin-%E5%87%BD%E6%95%B0-81fb95e5-6d6f-48c4-bc45-58f955c6d347', + url: 'https://support.microsoft.com/zh-tw/excel/functions/asin-function', }, ], functionParameter: { @@ -132,7 +132,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/asinh-%E5%87%BD%E6%95%B0-4e00475a-067a-43cf-926a-765b0249717c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/asinh-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/atan-%E5%87%BD%E6%95%B0-50746fa8-630a-406b-81d0-4a2aed395543', + url: 'https://support.microsoft.com/zh-tw/excel/functions/atan-function', }, ], functionParameter: { @@ -153,30 +153,30 @@ const locale: typeof enUS = { }, }, ATAN2: { - description: '傳回 X 和 Y 座標的反正切值', - abstract: '傳回 X 和 Y 座標的反正切值', + description: '傳回指定 X 和 Y 座標的反正切值 (正切值的倒數)。 反正切是從 X 軸到穿過原點 (0, 0) 和和一個座標點 (x_num, y_num) 之線段的角度。 該角度是以弧度表示,有效範圍是 -pi 和 pi 之間 (不含 -pi)。', + abstract: '傳回指定 X 和 Y 座標的反正切值 (正切值的倒數)。 反正切是從 X 軸到穿過原點 (0, 0) 和和一個座標點 (x_num, y_num) 之線段的角度。 該角度是以弧度表示,有效範圍是 -pi 和 pi 之間 (不含 -pi)。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/atan2-%E5%87%BD%E6%95%B0-c04592ab-b9e3-4908-b428-c96b3a565033', + url: 'https://support.microsoft.com/zh-tw/excel/functions/atan2-function', }, ], functionParameter: { - xNum: { name: 'x 座標', detail: '點的 X 座標。' }, - yNum: { name: 'y 座標', detail: '點的 Y 座標。' }, + xNum: { name: 'x 座標', detail: '必須。 這是點的 X 座標。' }, + yNum: { name: 'y 座標', detail: '必須。 這是點的 Y 座標。' }, }, }, ATANH: { - description: '傳回數字的反雙曲正切值', - abstract: '傳回數字的反雙曲正切值', + description: '傳回數值的反雙曲線正切值。 數值必須介於 -1 和 1 (不含 -1 和 1) 之間。 反雙曲線正切是一個值,其雙曲線正切是一個 數字 ,所以 ATANH(TANH(number)) 等於 數字 。', + abstract: '傳回數值的反雙曲線正切值。 數值必須介於 -1 和 1 (不含 -1 和 1) 之間。 反雙曲線正切是一個值,其雙曲線正切是一個 數字 ,所以 ATANH(TANH(number)) 等於 數字 。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/atanh-%E5%87%BD%E6%95%B0-3cd65768-0de7-4f1d-b312-d01c8c930d90', + url: 'https://support.microsoft.com/zh-tw/excel/functions/atanh-function', }, ], functionParameter: { - number: { name: '數值', detail: '任何介於 1 和 -1 之間的實數。' }, + number: { name: '數值', detail: '必要。 這是任何介於 1 和 -1 之間的實數。' }, }, }, BASE: { @@ -185,7 +185,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/base-%E5%87%BD%E6%95%B0-2ef61411-aee9-4f29-a811-1c42456c6342', + url: 'https://support.microsoft.com/zh-tw/excel/functions/base-function', }, ], functionParameter: { @@ -200,7 +200,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ceiling-%E5%87%BD%E6%95%B0-0a5cd7c8-0720-4f0a-bd2c-c943e510899f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ceiling-function', }, ], functionParameter: { @@ -214,7 +214,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ceiling-math-%E5%87%BD%E6%95%B0-80f95d2f-b499-4eee-9f16-f795a8e306c8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ceiling-math-function', }, ], functionParameter: { @@ -229,7 +229,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/ceiling-precise-%E5%87%BD%E6%95%B0-f366a774-527a-4c92-ba49-af0a196e66cb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ceiling-precise-function', }, ], functionParameter: { @@ -243,7 +243,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/combin-%E5%87%BD%E6%95%B0-12a3f276-0a21-423a-8de6-06990aaf638a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/combin-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/combina-%E5%87%BD%E6%95%B0-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/combina-function', }, ], functionParameter: { @@ -271,7 +271,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cos-%E5%87%BD%E6%95%B0-0fb808a5-95d6-4553-8148-22aebdce5f05', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cos-function', }, ], functionParameter: { @@ -284,7 +284,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cosh-%E5%87%BD%E6%95%B0-e460d426-c471-43e8-9540-a57ff3b70555', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cosh-function', }, ], functionParameter: { @@ -297,7 +297,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/cot-%E5%87%BD%E6%95%B0-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/cot-function', }, ], functionParameter: { @@ -310,7 +310,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/coth-%E5%87%BD%E6%95%B0-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/coth-function', }, ], functionParameter: { @@ -323,7 +323,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/csc-%E5%87%BD%E6%95%B0-07379361-219a-4398-8675-07ddc4f135c1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/csc-function', }, ], functionParameter: { @@ -336,7 +336,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/csch-%E5%87%BD%E6%95%B0-f58f2c22-eb75-4dd6-84f4-a503527f8eeb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/csch-function', }, ], functionParameter: { @@ -349,7 +349,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/decimal-%E5%87%BD%E6%95%B0-ee554665-6176-46ef-82de-0a283658da2e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/decimal-function', }, ], functionParameter: { @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/degrees-%E5%87%BD%E6%95%B0-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/degrees-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/even-%E5%87%BD%E6%95%B0-197b5f06-c795-4c1e-8696-3c3b8a646cf9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/even-function', }, ], functionParameter: { @@ -389,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/exp-%E5%87%BD%E6%95%B0-c578f034-2c45-4c37-bc8c-329660a63abe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/exp-function', }, ], functionParameter: { @@ -402,7 +402,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fact-%E5%87%BD%E6%95%B0-ca8588c2-15f2-41c0-8e8c-c11bd471a4f3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fact-function', }, ], functionParameter: { @@ -415,7 +415,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/factdouble-%E5%87%BD%E6%95%B0-e67697ac-d214-48eb-b7b7-cce2589ecac8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/factdouble-function', }, ], functionParameter: { @@ -428,7 +428,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/floor-%E5%87%BD%E6%95%B0-14bb497c-24f2-4e04-b327-b0b4de5a8886', + url: 'https://support.microsoft.com/zh-tw/excel/functions/floor-function', }, ], functionParameter: { @@ -442,7 +442,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/floor-math-%E5%87%BD%E6%95%B0-c302b599-fbdb-4177-ba19-2c2b1249a2f5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/floor-math-function', }, ], functionParameter: { @@ -457,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/floor-precise-%E5%87%BD%E6%95%B0-f769b468-1452-4617-8dc3-02f842a0702e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/floor-precise-function', }, ], functionParameter: { @@ -471,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gcd-%E5%87%BD%E6%95%B0-d5107a51-69e3-461f-8e4c-ddfc21b5073a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gcd-function', }, ], functionParameter: { @@ -485,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/int-%E5%87%BD%E6%95%B0-a6c4af9e-356d-4369-ab6a-cb1fd9d343ef', + url: 'https://support.microsoft.com/zh-tw/excel/functions/int-function', }, ], functionParameter: { @@ -498,12 +498,12 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/iso-ceiling-%E5%87%BD%E6%95%B0-e587bb73-6cc2-4113-b664-ff5b09859a83', + url: 'https://support.microsoft.com/zh-tw/excel/functions/iso-ceiling-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '數值', detail: '要捨位的數值。' }, + significance: { name: '倍數', detail: '要捨位的倍數。' }, }, }, LCM: { @@ -512,7 +512,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lcm-%E5%87%BD%E6%95%B0-7152b67a-8bb5-4075-ae5c-06ede5563c94', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lcm-function', }, ], functionParameter: { @@ -520,27 +520,13 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/ln-function', }, ], functionParameter: { @@ -553,7 +539,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/log-%E5%87%BD%E6%95%B0-4e82f196-1ca9-4747-8fb0-6c4a3abb3280', + url: 'https://support.microsoft.com/zh-tw/excel/functions/log-function', }, ], functionParameter: { @@ -567,7 +553,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/log10-%E5%87%BD%E6%95%B0-c75b881b-49dd-44fb-b6f4-37e3486a0211', + url: 'https://support.microsoft.com/zh-tw/excel/functions/log10-function', }, ], functionParameter: { @@ -580,7 +566,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mdeterm-%E5%87%BD%E6%95%B0-e7bfa857-3834-422b-b871-0ffd03717020', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mdeterm-function', }, ], functionParameter: { @@ -593,7 +579,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/minverse-%E5%87%BD%E6%95%B0-11f55086-adde-4c9f-8eb9-59da2d72efc6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/minverse-function', }, ], functionParameter: { @@ -606,7 +592,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mmult-%E5%87%BD%E6%95%B0-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mmult-function', }, ], functionParameter: { @@ -620,7 +606,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mod-%E5%87%BD%E6%95%B0-9b6cd169-b6ee-406a-a97b-edf2a9dc24f3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mod-function', }, ], functionParameter: { @@ -634,7 +620,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mround-%E5%87%BD%E6%95%B0-c299c3b0-15a5-426d-aa4b-d2d5b3baf427', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mround-function', }, ], functionParameter: { @@ -648,7 +634,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/multinomial-%E5%87%BD%E6%95%B0-6fa6373c-6533-41a2-a45e-a56db1db1bf6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/multinomial-function', }, ], functionParameter: { @@ -662,7 +648,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/munit-%E5%87%BD%E6%95%B0-c9fe916a-dc26-4105-997d-ba22799853a3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/munit-function', }, ], functionParameter: { @@ -675,7 +661,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/odd-%E5%87%BD%E6%95%B0-deae64eb-e08a-4c88-8b40-6d0b42575c98', + url: 'https://support.microsoft.com/zh-tw/excel/functions/odd-function', }, ], functionParameter: { @@ -688,7 +674,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pi-%E5%87%BD%E6%95%B0-264199d0-a3ba-46b8-975a-c4a04608989b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pi-function', }, ], functionParameter: { @@ -700,7 +686,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/power-%E5%87%BD%E6%95%B0-d3f2908b-56f4-4c3f-895a-07fb519c362a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/power-function', }, ], functionParameter: { @@ -714,7 +700,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/product-%E5%87%BD%E6%95%B0-8e6b5b24-90ee-4650-aeec-80982a0512ce', + url: 'https://support.microsoft.com/zh-tw/excel/functions/product-function', }, ], functionParameter: { @@ -728,7 +714,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/quotient-%E5%87%BD%E6%95%B0-9f7bf099-2a18-4282-8fa4-65290cc99dee', + url: 'https://support.microsoft.com/zh-tw/excel/functions/quotient-function', }, ], functionParameter: { @@ -741,7 +727,7 @@ const locale: typeof enUS = { abstract: '將度轉換為弧度', links: [{ title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/radians-%E5%87%BD%E6%95%B0-ac409508-3d48-45f5-ac02-1497c92de5bf', + url: 'https://support.microsoft.com/zh-tw/excel/functions/radians-function', }], functionParameter: { angle: { name: '角度', detail: '要轉換的角度 (以度數為單位)。' }, @@ -753,7 +739,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rand-%E5%87%BD%E6%95%B0-4cbfa695-8869-4788-8d90-021ea9f5be73', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rand-function', }, ], functionParameter: { @@ -765,7 +751,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/randarray-%E5%87%BD%E6%95%B0-21261e55-3bec-4885-86a6-8b0a47fd4d33', + url: 'https://support.microsoft.com/zh-tw/excel/functions/randarray-function', }, ], functionParameter: { @@ -782,7 +768,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/randbetween-%E5%87%BD%E6%95%B0-4cc7f0d1-87dc-4eb7-987f-a469ab381685', + url: 'https://support.microsoft.com/zh-tw/excel/functions/randbetween-function', }, ], functionParameter: { @@ -796,7 +782,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/roman-%E5%87%BD%E6%95%B0-d6b0b99e-de46-4704-a518-b45a0f8b56f5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/roman-function', }, ], functionParameter: { @@ -810,7 +796,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/round-%E5%87%BD%E6%95%B0-c018c5d8-40fb-4053-90b1-b3e7f61a213c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/round-function', }, ], functionParameter: { @@ -838,7 +824,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rounddown-%E5%87%BD%E6%95%B0-2ec94c73-241f-4b01-8c6f-17e6d7968f53', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rounddown-function', }, ], functionParameter: { @@ -852,7 +838,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/roundup-%E5%87%BD%E6%95%B0-f8bc9b23-e795-47db-8703-db171d0c42a7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/roundup-function', }, ], functionParameter: { @@ -866,7 +852,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sec-%E5%87%BD%E6%95%B0-ff224717-9c87-4170-9b58-d069ced6d5f7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sec-function', }, ], functionParameter: { @@ -879,7 +865,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sech-%E5%87%BD%E6%95%B0-e05a789f-5ff7-4d7f-984a-5edb9b09556f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sech-function', }, ], functionParameter: { @@ -892,7 +878,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/seriessum-%E5%87%BD%E6%95%B0-a3ab25b5-1093-4f5b-b084-96c49087f637', + url: 'https://support.microsoft.com/zh-tw/excel/functions/seriessum-function', }, ], functionParameter: { @@ -908,7 +894,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sequence-%E5%87%BD%E6%95%B0-57467a98-57e0-4817-9f14-2eb78519ca90', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sequence-function', }, ], functionParameter: { @@ -924,7 +910,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sign-%E5%87%BD%E6%95%B0-109c932d-fcdc-4023-91f1-2dd0e916a1d8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sign-function', }, ], functionParameter: { @@ -937,7 +923,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sin-%E5%87%BD%E6%95%B0-cf0e3432-8b9e-483c-bc55-a76651c95602', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sin-function', }, ], functionParameter: { @@ -950,7 +936,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sinh-%E5%87%BD%E6%95%B0-1e4e8b9f-2b65-43fc-ab8a-0a37f4081fa7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sinh-function', }, ], functionParameter: { @@ -963,7 +949,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sqrt-%E5%87%BD%E6%95%B0-654975c2-05c4-4831-9a24-2c65e4040fdf', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sqrt-function', }, ], functionParameter: { @@ -976,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sqrtpi-%E5%87%BD%E6%95%B0-1fb4e63f-9b51-46d6-ad68-b3e7a8b519b4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sqrtpi-function', }, ], functionParameter: { @@ -989,7 +975,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/subtotal-%E5%87%BD%E6%95%B0-7b027003-f060-4ade-9040-e478765b9939', + url: 'https://support.microsoft.com/zh-tw/excel/functions/subtotal-function', }, ], functionParameter: { @@ -1004,7 +990,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sum-%E5%87%BD%E6%95%B0-043e1c7d-7726-4e80-8f32-07b23e057f89', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sum-function', }, ], functionParameter: { @@ -1024,7 +1010,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumif-%E5%87%BD%E6%95%B0-169b8c99-c05c-4483-a712-1697a653039b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumif-function', }, ], functionParameter: { @@ -1048,7 +1034,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumifs-%E5%87%BD%E6%95%B0-c9e748f5-7ea7-455d-9406-611cebce642b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumifs-function', }, ], functionParameter: { @@ -1065,7 +1051,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumproduct-%E5%87%BD%E6%95%B0-16753e75-9f68-4874-94ac-4d2145a2fd2e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumproduct-function', }, ], functionParameter: { @@ -1079,7 +1065,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumsq-%E5%87%BD%E6%95%B0-e3313c02-51cc-4963-aae6-31442d9ec307', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumsq-function', }, ], functionParameter: { @@ -1093,7 +1079,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumx2my2-%E5%87%BD%E6%95%B0-9e599cc5-5399-48e9-a5e0-e37812dfa3e9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumx2my2-function', }, ], functionParameter: { @@ -1107,7 +1093,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumx2py2-%E5%87%BD%E6%95%B0-826b60b4-0aa2-4e5e-81d2-be704d3d786f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumx2py2-function', }, ], functionParameter: { @@ -1121,7 +1107,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/sumxmy2-%E5%87%BD%E6%95%B0-9d144ac1-4d79-43de-b524-e2ecee23b299', + url: 'https://support.microsoft.com/zh-tw/excel/functions/sumxmy2-function', }, ], functionParameter: { @@ -1135,7 +1121,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tan-%E5%87%BD%E6%95%B0-08851a40-179f-4052-b789-d7f699447401', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tan-function', }, ], functionParameter: { @@ -1148,7 +1134,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/tanh-%E5%87%BD%E6%95%B0-017222f0-a0c3-4f69-9787-b3202295dc6c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/tanh-function', }, ], functionParameter: { @@ -1161,7 +1147,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/trunc-%E5%87%BD%E6%95%B0-8b86a64c-3127-43db-ba14-aa5ceb292721', + url: 'https://support.microsoft.com/zh-tw/excel/functions/trunc-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/statistical/ar-SA.ts new file mode 100644 index 0000000000..1ea7b3458f --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/ar-SA.ts @@ -0,0 +1,1701 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'تُرجع متوسط الانحرافات المطلقة لنقاط البيانات من الوسط الخاص بها. تُعد الدالة AVEDEV مقياساً لقابلية التغير في مجموعة بيانات.', + abstract: 'تُرجع متوسط الانحرافات المطلقة لنقاط البيانات من الوسط الخاص بها. تُعد الدالة AVEDEV مقياساً لقابلية التغير في مجموعة بيانات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي تريد الحصول على متوسط الانحرافات المطلقة لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي تريد الحصول على متوسط الانحرافات المطلقة لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + AVERAGE: { + description: 'تُرجع متوسط الوسيطات (الوسط الحسابي). على سبيل المثال، إذا كان النطاق A1:A20 يحتوي على أرقام، فإن الصيغة =AVERAGE(A1:A20) ترجع متوسط هذه الأرقام.', + abstract: 'تُرجع متوسط الوسيطات (الوسط الحسابي). على سبيل المثال، إذا كان النطاق A1:A20 يحتوي على أرقام، فإن الصيغة =AVERAGE(A1:A20) ترجع متوسط هذه الأرقام.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. الرقم الأول أو مرجع الخلية أو النطاق الذي تريد المتوسط له.' }, + number2: { name: 'number2', detail: 'الاختياري. وهي الأرقام أو مراجع الخلايا أو النطاقات الإضافية التي تريد الحصول على المتوسط الخاص بها، وتصل إلى 255 كحد أقصى.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'تحسب الدالة AVERAGE.WEIGHTED المتوسط المرجح لمجموعة من القيم باستخدام القيم والأوزان المقابلة لها.', + abstract: 'تحسب الدالة AVERAGE.WEIGHTED المتوسط المرجح لمجموعة من القيم باستخدام القيم والأوزان المقابلة لها.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=ar', + }, + ], + functionParameter: { + values: { name: 'القيم', detail: 'القيم المطلوب حساب متوسطها. يمكن أن تكون نطاق خلايا أو القيم نفسها.' }, + weights: { name: 'الأوزان', detail: 'قائمة الأوزان المقابلة المطلوب تطبيقها. يمكن أن تكون الأوزان صفراً ولكن لا يجوز أن تكون سالبة، ويجب أن يكون وزن واحد على الأقل موجباً. يجب أن يطابق نطاق الأوزان نطاق القيم في عدد الصفوف والأعمدة.' }, + additionalValues: { name: 'القيم_الإضافية', detail: 'قيم إضافية اختيارية مطلوب حساب متوسطها.' }, + additionalWeights: { name: 'الأوزان_الإضافية', detail: 'أوزان إضافية اختيارية. يجب أن تتبع كل قيمة_إضافية قيمة وزن_إضافي واحدة بالضبط.' }, + }, + }, + AVERAGEA: { + description: 'ترجع متوسط وسيطاتها، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + abstract: 'ترجع متوسط وسيطاتها، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { + name: 'value1', + detail: 'الرقم الأول أو مرجع الخلية أو النطاق الذي تريد حساب متوسطه.', + }, + value2: { + name: 'value2', + detail: 'أرقام أو مراجع خلايا أو نطاقات إضافية تريد حساب متوسطها، بحد أقصى 255.', + }, + }, + }, + AVERAGEIF: { + description: 'ترجع هذه الدالة المتوسط (الوسط الحسابي) لكافة الخلايا الموجودة في نطاق يفي بمعايير معينة.', + abstract: 'ترجع هذه الدالة المتوسط (الوسط الحسابي) لكافة الخلايا الموجودة في نطاق يفي بمعايير معينة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'مطلوب. هي واحدة أو أكثر من الخلايا المراد حساب المتوسط لها، بما في ذلك الأرقام أو الأسماء أو الصفائف أو المراجع التي تحتوي على أرقام.' }, + criteria: { name: 'criteria', detail: 'مطلوب. هي المعايير الموجودة على شكل رقم أو تعبير أو مرجع خلية أو نص لتعريف الخلايا التي سيتم حساب المتوسط لها. على سبيل المثال، يمكن التعبير عن المعايير على أنها 32 أو "32" أو ">32" أو "تفاح" أو B4.' }, + averageRange: { name: 'average_range', detail: 'الاختياري. هي مجموعة الخلايا الفعلية المراد حساب المتوسط لها. وإذا تم حذفها، فيتم استخدام الوسيطة range.' }, + }, + }, + AVERAGEIFS: { + description: 'تُرجع هذه الالة المتوسط (الوسط الحسابي) لكافة الخلايا التي تطابق معايير متعددة.', + abstract: 'تُرجع هذه الالة المتوسط (الوسط الحسابي) لكافة الخلايا التي تطابق معايير متعددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'مطلوب. هي واحدة أو أكثر من الخلايا المراد حساب المتوسط لها، بما في ذلك الأرقام أو الأسماء أو الصفائف أو المراجع التي تحتوي على أرقام.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'إن الوسيطة Criteria_range1 مطلوبة، أما وسائط criteria_range التالية فهي اختيارية. النطاقات من 1 إلى 127 التي يتم فيها تقييم المعايير المقترنة بها.' }, + criteria1: { name: 'criteria1', detail: 'Criteria1 مطلوب، المعايير اللاحقة اختيارية. المعايير من 1 إلى 127 على شكل رقم أو تعبير أو مرجع خلية أو نص لتعريف الخلايا التي سيتم حساب المتوسط لها. على سبيل المثال، يمكن التعبير عن المعايير على أنها 32 أو "32" أو ">32" أو "تفاح" أو B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'إن الوسيطة Criteria_range1 مطلوبة، أما وسائط criteria_range التالية فهي اختيارية. النطاقات من 1 إلى 127 التي يتم فيها تقييم المعايير المقترنة بها.' }, + criteria2: { name: 'criteria2', detail: 'Criteria1 مطلوب، المعايير اللاحقة اختيارية. المعايير من 1 إلى 127 على شكل رقم أو تعبير أو مرجع خلية أو نص لتعريف الخلايا التي سيتم حساب المتوسط لها. على سبيل المثال، يمكن التعبير عن المعايير على أنها 32 أو "32" أو ">32" أو "تفاح" أو B4.' }, + }, + }, + BETA_DIST: { + description: 'يتم بشكلٍ عام استخدام توزيع بيتا لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل فترات اليوم التي يقضيها الأشخاص في مشاهدة التلفزيون.', + abstract: 'يتم بشكلٍ عام استخدام توزيع بيتا لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل فترات اليوم التي يقضيها الأشخاص في مشاهدة التلفزيون.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة بين A وB التي يتم تقييم الدالة عندها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي معلمة التوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. وهي معلمة التوزيع.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. وهي القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة cumulative تساوي TRUE، فإن BETA.DIST تُرجع دالة التوزيع التراكمي، وإذا كانت تساوي FALSE، فإنها تُرجع دالة كثافة الاحتمال.' }, + A: { name: 'A', detail: 'وهي حد أدنى للفاصل الزمني x.' }, + B: { name: 'B', detail: 'اختياري. وهي حد أعلى للفاصل الزمني x.' }, + }, + }, + BETA_INV: { + description: 'إذا كانت probability = BETA.DIST(x,...TRUE)‎، فعندئذٍ تكون BETA.INV(probability,...) = x. يمكن استخدام توزيع بيتا في تخطيط المشاريع لتخطيط مواعيد الانتهاء المحتملة عند تعيين الوقت المتوقع للإنهاء وقابلية التغيير.', + abstract: 'إذا كانت probability = BETA.DIST(x,...TRUE)‎، فعندئذٍ تكون BETA.INV(probability,...) = x. يمكن استخدام توزيع بيتا في تخطيط المشاريع لتخطيط مواعيد الانتهاء المحتملة عند تعيين الوقت المتوقع للإنهاء وقابلية التغيير.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. وهي الاحتمال المقترن بتوزيع بيتا.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي معلمة التوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. وهي معلمة التوزيع.' }, + A: { name: 'A', detail: 'وهي حد أدنى للفاصل الزمني x.' }, + B: { name: 'B', detail: 'اختياري. وهي حد أعلى للفاصل الزمني x.' }, + }, + }, + BINOM_DIST: { + description: 'تُرجع المصطلح الفردي لاحتمال التوزيع ذي الحدين. استخدم BINOM.DIST في المشاكل ذات العدد الثابت من الاختبارات أو التجارب، عندما تكون نتائج أي تجربة هي نجاح أو فشل فقط، وعندما تكون التجارب مستقلة، وعندما يكون احتمال النجاح ثابتاً في كافة مراحل التجربة. على سبيل المثال، بإمكان BINOM.DIST حساب احتمال أن يكون اثنان من المواليد الثلاثة القادمين من الذكور.', + abstract: 'تُرجع المصطلح الفردي لاحتمال التوزيع ذي الحدين. استخدم BINOM.DIST في المشاكل ذات العدد الثابت من الاختبارات أو التجارب، عندما تكون نتائج أي تجربة هي نجاح أو فشل فقط، وعندما تكون التجارب مستقلة، وعندما يكون احتمال النجاح ثابتاً في كافة مراحل التجربة. على سبيل المثال، بإمكان BINOM.DIST حساب احتمال أن يكون اثنان من المواليد الثلاثة القادمين من الذكور.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'مطلوب. وهي عدد مرات النجاح في التجارب.' }, + trials: { name: 'trials', detail: 'مطلوب. وهي عدد التجارب المستقلة.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. وهي احتمال النجاح في كل تجربة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. وهي القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة cumulative تساوي TRUE، فإن BINOM.DIST تُرجع دالة التوزيع التراكمي، وهي الاحتمال بوجود number_s لعدد مرات النجاح على الأكثر، وإذا كانت تساوي FALSE، فإنها تُرجع دالة الاحتمالات غير التراكمية، وهي الاحتمال بوجود number_s لعدد مرات النجاح بالضبط.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'ترجع احتمالية نتيجة محاولة باستخدام توزيع ذي حدين.', + abstract: 'ترجع احتمالية نتيجة محاولة باستخدام توزيع ذي حدين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'مطلوب. وهي عدد التجارب المستقلة. يجب أن يكون أكبر من أو يساوي 0.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. احتمال النجاح في كل تجربة. يجب أن يكون أكبر من أو يساوي 0 وأقل من أو يساوي 1.' }, + numberS: { name: 'number_s', detail: 'مطلوب. وهي عدد مرات النجاح في التجارب. يجب أن يكون أكبر من أو يساوي 0 وأقل من أو يساوي المحاكمات.' }, + numberS2: { name: 'number_s2', detail: 'الاختياري. إذا تم توفيرها، فترجع احتمالية أن يقع عدد التجارب الناجحة بين Number_s number_s2. يجب أن يكون أكبر من أو يساوي Number_s وأقل من أو يساوي المحاكمات.' }, + }, + }, + BINOM_INV: { + description: 'إرجاع أصغر قيمة يكون التوزيع التراكمي ذو الحدين الخاص بها أكبر من قيمة المعيار أو مساوياً لها.', + abstract: 'إرجاع أصغر قيمة يكون التوزيع التراكمي ذو الحدين الخاص بها أكبر من قيمة المعيار أو مساوياً لها.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'مطلوب. وهي عدد تجارب Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. وهي احتمال النجاح في كل تجربة.' }, + alpha: { name: 'alpha', detail: 'مطلوب. وهي قيمة المعيار.' }, + }, + }, + CHISQ_DIST: { + description: 'تُرجع توزيع كاي تربيع.', + abstract: 'تُرجع توزيع كاي تربيع.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تقييم التوزيع عندها.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. وهي القيمة المنطقية التي تحدد تركيبة الدالة. إذا كانت قيمة cumulative تساوي TRUE، فتُرجع CHISQ.DIST دالة التوزيع التراكمي؛ وإذا كانت تساوي FALSE، فإنها تُرجع دالة كثافة الاحتمال.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'يقترن توزيع χ2 باختبار χ2. استخدم اختبار χ2 لمقارنة القيم التي تمت ملاحظتها بالقيم المتوقعة. على سبيل المثال، قد تفترض إحدى التجارب الجينية أن الجيل التالي من النباتات سيحمل مجموعة معينة من الألوان. يمكنك تحديد ما إذا كانت فرضيتك الأصلية صحيحة من خلال مقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة.', + abstract: 'يقترن توزيع χ2 باختبار χ2. استخدم اختبار χ2 لمقارنة القيم التي تمت ملاحظتها بالقيم المتوقعة. على سبيل المثال، قد تفترض إحدى التجارب الجينية أن الجيل التالي من النباتات سيحمل مجموعة معينة من الألوان. يمكنك تحديد ما إذا كانت فرضيتك الأصلية صحيحة من خلال مقارنة النتائج التي تمت ملاحظتها بالنتائج المتوقعة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تقييم التوزيع عندها.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + }, + }, + CHISQ_INV: { + description: 'يتم بشكلٍ عام استخدام توزيع كاي تربيع لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل الفترات التي يقضيها الأشخاص في اليوم في مشاهدة التلفزيون.', + abstract: 'يتم بشكلٍ عام استخدام توزيع كاي تربيع لدراسة التباين في النسبة المئوية لشيء ما عبر عينات، مثل الفترات التي يقضيها الأشخاص في اليوم في مشاهدة التلفزيون.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. وهي احتمال مقترن بتوزيع كاي تربيع.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + }, + }, + CHISQ_INV_RT: { + description: 'تُرجع عكس الاحتمال ذي الطرف الأيمن لتوزيع كاي تربيع.', + abstract: 'تُرجع عكس الاحتمال ذي الطرف الأيمن لتوزيع كاي تربيع.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. وهي احتمال مقترن بتوزيع كاي تربيع.' }, + degFreedom: { name: 'deg_freedom', detail: 'مطلوب. وهي عدد درجات الحرية.' }, + }, + }, + CHISQ_TEST: { + description: 'ترجع اختبار الاستقلالية.', + abstract: 'ترجع اختبار الاستقلالية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'نطاق البيانات الذي يحتوي على الملاحظات المراد اختبارها مقابل القيم المتوقعة.' }, + expectedRange: { name: 'expected_range', detail: 'نطاق البيانات الذي يحتوي على نسبة حاصل ضرب إجماليات الصفوف والأعمدة إلى الإجمالي الكلي.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'يعد فاصل الثقة عبارة عن نطاق من القيم. يوجد وسط العينة x في وسط هذا النطاق الذي يكون عبارة عن x‎ ± CONFIDENCE.NORM. على سبيل المثال، إذا كان x هو وسط العينة لعدد مرات تسليم المنتجات المطلوبة عبر البريد، فسيكون x‎ ± CONFIDENCE.NORM هو نطاق أوساط المحتوى. بالنسبة لأي وسط محتوى μ0 في هذا النطاق، يكون احتمال الحصول على وسط عينة أبعد من μ0 عن x أكبر من alpha؛ وبالنسبة لأي وسط محتوى μ0 غير موجود في هذا النطاق، يكون احتمال الحصول على وسط عينة أبعد من μ0 عن x أقل من alpha. بعبارة أخرى، افترض أننا نستخدم x وstandard_dev وsize لإنشاء اختبار ثنائي الطرف على مستوى الدلالة alpha بفرضية أن وسط المحتوى هو μ0. لن نرفض حينئذٍ هذه الفرضية إذا كان μ0 في فاصل الثقة وسنرفض هذه الفرضية إذا لم يكن μ0 في فاصل الثقة. لا يسمح لنا فاصل الثقة بالاستنتاج بأنه هناك الاحتمال ‎1 – alpha الذي يشير إلى أن الحزمة التالية ستستغرق وقتاً للتسليم معيناً في فاصل الثقة.', + abstract: 'يعد فاصل الثقة عبارة عن نطاق من القيم. يوجد وسط العينة x في وسط هذا النطاق الذي يكون عبارة عن x‎ ± CONFIDENCE.NORM. على سبيل المثال، إذا كان x هو وسط العينة لعدد مرات تسليم المنتجات المطلوبة عبر البريد، فسيكون x‎ ± CONFIDENCE.NORM هو نطاق أوساط المحتوى. بالنسبة لأي وسط محتوى μ0 في هذا النطاق، يكون احتمال الحصول على وسط عينة أبعد من μ0 عن x أكبر من alpha؛ وبالنسبة لأي وسط محتوى μ0 غير موجود في هذا النطاق، يكون احتمال الحصول على وسط عينة أبعد من μ0 عن x أقل من alpha. بعبارة أخرى، افترض أننا نستخدم x وstandard_dev وsize لإنشاء اختبار ثنائي الطرف على مستوى الدلالة alpha بفرضية أن وسط المحتوى هو μ0. لن نرفض حينئذٍ هذه الفرضية إذا كان μ0 في فاصل الثقة وسنرفض هذه الفرضية إذا لم يكن μ0 في فاصل الثقة. لا يسمح لنا فاصل الثقة بالاستنتاج بأنه هناك الاحتمال ‎1 – alpha الذي يشير إلى أن الحزمة التالية ستستغرق وقتاً للتسليم معيناً في فاصل الثقة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'مطلوب. مستوى الدلالة المُستخدم لحساب مستوى الثقة. يساوي مستوى الثقة ‎100*(1 - alpha)%‎، أو بعبارة أخرى، تشير alpha ذات القيمة 0,05 إلى مستوى ثقة بنسبة 95 في المئة.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري للمحتوى الخاص بنطاق البيانات والذي من المفترض أن يكون معروفاً.' }, + size: { name: 'size', detail: 'مطلوب. حجم العينة.' }, + }, + }, + CONFIDENCE_T: { + description: 'إرجاع فاصل الثقة لوسط محتوى باستخدام توزيع t للطالب.', + abstract: 'إرجاع فاصل الثقة لوسط محتوى باستخدام توزيع t للطالب.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'مطلوب. مستوى الدلالة المُستخدم لحساب مستوى الثقة. يساوي مستوى الثقة ‎100*(1 - alpha)%‎، أو بعبارة أخرى، تشير alpha ذات القيمة 0,05 إلى مستوى ثقة بنسبة 95 في المئة.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري للمحتوى الخاص بنطاق البيانات والذي من المفترض أن يكون معروفاً.' }, + size: { name: 'size', detail: 'مطلوب. حجم العينة.' }, + }, + }, + CORREL: { + description: 'ترجع الدالة CORREL معامل الارتباط لنطاقين من الخلايا. استخدم معامل الارتباط لتحديد العلاقة بين خاصيتين. على سبيل المثال، يمكنك فحص العلاقة بين متوسط درجة الحرارة في مكان ما واستخدام مكيفات الهواء.', + abstract: 'ترجع الدالة CORREL معامل الارتباط لنطاقين من الخلايا. استخدم معامل الارتباط لتحديد العلاقة بين خاصيتين. على سبيل المثال، يمكنك فحص العلاقة بين متوسط درجة الحرارة في مكان ما واستخدام مكيفات الهواء.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. نطاق من قيم الخلايا.' }, + array2: { name: 'array2', detail: 'مطلوب. نطاق ثان من قيم الخلايا.' }, + }, + }, + COUNT: { + description: 'تعمل الدالة COUNT على حساب عدد الخلايا التي تحتوي على أرقام وحساب الأرقام ضمن قائمة من الوسيطات. استخدم الدالة COUNT لمعرفة عدد الإدخالات في حقل رقمي ضمن نطاق أو صفيف من الأرقام. على سبيل المثال، يمكنك إدخال الصيغة التالية لحساب عدد الأرقام في النطاق A1:A20: =COUNT(A1:A20) . في هذا المثال، إذا كان هناك خمس خلايا من النطاق تحتوي على أرقام، فسيكون الناتج 5 .', + abstract: 'تعمل الدالة COUNT على حساب عدد الخلايا التي تحتوي على أرقام وحساب الأرقام ضمن قائمة من الوسيطات. استخدم الدالة COUNT لمعرفة عدد الإدخالات في حقل رقمي ضمن نطاق أو صفيف من الأرقام. على سبيل المثال، يمكنك إدخال الصيغة التالية لحساب عدد الأرقام في النطاق A1:A20: =COUNT(A1:A20) . في هذا المثال، إذا كان هناك خمس خلايا من النطاق تحتوي على أرقام، فسيكون الناتج 5 .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'مطلوب. وهي العنصر أو مرجع الخلية أو النطاق الأول الذي تريد حساب الأرقام الموجودة بداخله.' }, + value2: { name: 'value 2', detail: 'الاختياري. وهي العناصر الإضافية أو مراجع الخلايا أو النطاقات التي تريد حساب الأرقام الموجودة بداخلها ويصل عددها إلى 255.' }, + }, + }, + COUNTA: { + description: 'تحسب الدالة COUNTA عدد الخلايا غير الفارغة في نطاق.', + abstract: 'تحسب الدالة COUNTA عدد الخلايا غير الفارغة في نطاق.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { + name: 'value1', + detail: 'الرقم الأول أو مرجع الخلية أو النطاق الذي تريد حساب متوسطه.', + }, + value2: { + name: 'value2', + detail: 'أرقام أو مراجع خلايا أو نطاقات إضافية تريد حساب متوسطها، بحد أقصى 255.', + }, + }, + }, + COUNTBLANK: { + description: 'استخدم الدالة COUNTBLANK ، إحدى الدالات الإحصائية ، لحساب عدد الخلايا الفارغة في نطاق من الخلايا.', + abstract: 'استخدم الدالة COUNTBLANK ، إحدى الدالات الإحصائية ، لحساب عدد الخلايا الفارغة في نطاق من الخلايا.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'مطلوب. وهي النطاق الذي تريد حساب الخلايا الفارغة منه.' }, + }, + }, + COUNTIF: { + description: 'يمكنك استخدام COUNTIF، وهي إحدى الدالات الإحصائية ، لحساب عدد الخلايا التي تفي بمعيار معين؛ على سبيل المثال، لحساب عدد المرات التي تظهر فيها مدينة معينة في قائمة عملاء.', + abstract: 'يمكنك استخدام COUNTIF، وهي إحدى الدالات الإحصائية ، لحساب عدد الخلايا التي تفي بمعيار معين؛ على سبيل المثال، لحساب عدد المرات التي تظهر فيها مدينة معينة في قائمة عملاء.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'مجموعة الخلايا التي تريد حسابها. يمكن أن يحتوي النطاق على أرقام أو صفائف أو نطاق مسمى أو مراجع تحتوي على أرقام. ويتم تجاهل القيم الفارغة والنصية. تعرّف على كيفية تحديد النطاقات في ورقة عمل .' }, + criteria: { name: 'criteria', detail: 'رقم أو تعبير أو مرجع خلية أو سلسلة نصية تحدد الخلايا التي سيتم حساب عددها. على سبيل المثال، يمكنك استخدام رقم مثل 32 أو مقارنة مثل ">32" أو خلية مثل B4 أو كلمة مثل "تفاح". تستخدم COUNTIF معياراً واحداً فقط. لذلك، استخدم COUNTIFS إذا كنت تريد استخدام معايير متعددة.' }, + }, + }, + COUNTIFS: { + description: 'تطبق الدالة COUNTIFS المعايير على الخلايا عبر نطاقات متعددة وتحسب عدد المرات التي يتم فيها استيفاء جميع المعايير.', + abstract: 'تطبق الدالة COUNTIFS المعايير على الخلايا عبر نطاقات متعددة وتحسب عدد المرات التي يتم فيها استيفاء جميع المعايير.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'مطلوب. وتمثل النطاق الأول الذي سيتم فيه تقييم المعايير المقترنة.' }, + criteria1: { name: 'criteria1', detail: 'مطلوب. وهي المعايير الموجودة على شكل رقم أو تعبير أو مرجع خلية أو نص والتي تحدد الخلايا التي سيتم حسابها. على سبيل المثال، يمكن التعبير عن المعايير على أنها 32 أو ">32" أو B4 أو "تفاح" أو "32".' }, + criteriaRange2: { name: 'criteria_range2', detail: 'الاختياري. وهي نطاقات إضافية والمعايير المقترنة بها. يتم السماح بما يصل إلى 127 زوج من النطاقات/المعايير.' }, + criteria2: { name: 'criteria2', detail: 'الاختياري. وهي نطاقات إضافية والمعايير المقترنة بها. يتم السماح بما يصل إلى 127 زوج من النطاقات/المعايير.' }, + }, + }, + COVARIANCE_P: { + description: 'تُرجع التباين المشترك للمحتوى، وهو معدل ضرب الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات. استخدم التباين المشترك لتحديد العلاقة بين مجموعتين من البيانات. على سبيل المثال، يمكنك معرفة ما إذا كانت زيادة الدخل ترتبط بارتفاع مستوى التعليم.', + abstract: 'تُرجع التباين المشترك للمحتوى، وهو معدل ضرب الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات. استخدم التباين المشترك لتحديد العلاقة بين مجموعتين من البيانات. على سبيل المثال، يمكنك معرفة ما إذا كانت زيادة الدخل ترتبط بارتفاع مستوى التعليم.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الأول من الأعداد الصحيحة.' }, + array2: { name: 'array2', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الثاني من الأعداد الصحيحة.' }, + }, + }, + COVARIANCE_S: { + description: 'تُرجع التباين المشترك للعينة، وهو معدل ضرب الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات.', + abstract: 'تُرجع التباين المشترك للعينة، وهو معدل ضرب الانحرافات لكل زوج من نقاط البيانات في مجموعتين من البيانات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الأول من الأعداد الصحيحة.' }, + array2: { name: 'array2', detail: 'مطلوب. تمثل هذه الوسيطة نطاق الخلايا الثاني من الأعداد الصحيحة.' }, + }, + }, + DEVSQ: { + description: 'تُرجع هذه الدالة مجموع مربعات انحرافات نقاط البيانات من وسطها النموذجي.', + abstract: 'تُرجع هذه الدالة مجموع مربعات انحرافات نقاط البيانات من وسطها النموذجي.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب مجموع انحرافاتها المربعة. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب مجموع انحرافاتها المربعة. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + EXPON_DIST: { + description: 'تُرجع هذه الدالة التوزيع الأسي. استخدم الدالة EXPON.DIST لتحديد الوقت بين الأحداث، مثل المدة التي يحتاج إليها صرّاف المصرف الآلي لتسليم النقود. على سبيل المثال، يمكنك استخدام الدالة EXPON.DIST لتحديد احتمال أن تستغرق العملية دقيقة واحدة على الأكثر.', + abstract: 'تُرجع هذه الدالة التوزيع الأسي. استخدم الدالة EXPON.DIST لتحديد الوقت بين الأحداث، مثل المدة التي يحتاج إليها صرّاف المصرف الآلي لتسليم النقود. على سبيل المثال، يمكنك استخدام الدالة EXPON.DIST لتحديد احتمال أن تستغرق العملية دقيقة واحدة على الأكثر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. قيمة الدالة.' }, + lambda: { name: 'lambda', detail: 'مطلوب. قيمة المعلمة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. قيمة منطقية تشير إلى تركيبة الدالة الأسية التي سيتم توفيرها. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع الدالة EXPON.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + F_DIST: { + description: 'إرجاع توزيع الاحتمال F. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك فحص درجات الاختبار للرجال والنساء الذين يدخلون المدرسة الثانوية، وتحديد ما إذا كان التباين في الإناث مختلفا عن ذلك الموجود في الذكور.', + abstract: 'إرجاع توزيع الاحتمال F. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك فحص درجات الاختبار للرجال والنساء الذين يدخلون المدرسة الثانوية، وتحديد ما إذا كان التباين في الإناث مختلفا عن ذلك الموجود في الذكور.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع الدالة F.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + F_DIST_RT: { + description: 'تُرجع توزيع الاحتمال F (ذي الطرف الأيمن) (درجة الاختلاف) لمجموعتين من البيانات. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك معاينة نقاط الاختبار التي حصل عليها شبّان وشابات في امتحان دخول مدرسة ثانوية وتحديد ما إذا كان الفرق بين نقاط الإناث مختلفاً عن الفرق بين نقاط الذكور.', + abstract: 'تُرجع توزيع الاحتمال F (ذي الطرف الأيمن) (درجة الاختلاف) لمجموعتين من البيانات. يمكنك استخدام هذه الدالة لتحديد ما إذا كانت درجات الاختلاف بين مجموعتان من البيانات مختلفة. على سبيل المثال، يمكنك معاينة نقاط الاختبار التي حصل عليها شبّان وشابات في امتحان دخول مدرسة ثانوية وتحديد ما إذا كان الفرق بين نقاط الإناث مختلفاً عن الفرق بين نقاط الذكور.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + }, + }, + F_INV: { + description: 'إرجاع عكس توزيع الاحتمال F. إذا كانت p = F.DIST(x,...)، فإن F.INV(p,...) = x. يمكن استخدام التوزيع F في اختبار F يقارن درجة التغير بين مجموعتين من البيانات. على سبيل المثال، يمكنك تحليل توزيعات الدخل في الولايات المتحدة وكندا لتحديد ما إذا كان في البلدين درجة متشابهة من اختلاف الدخل.', + abstract: 'إرجاع عكس توزيع الاحتمال F. إذا كانت p = F.DIST(x,...)، فإن F.INV(p,...) = x. يمكن استخدام التوزيع F في اختبار F يقارن درجة التغير بين مجموعتين من البيانات. على سبيل المثال، يمكنك تحليل توزيعات الدخل في الولايات المتحدة وكندا لتحديد ما إذا كان في البلدين درجة متشابهة من اختلاف الدخل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. احتمال مقترن بتوزيع F التراكمي.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + }, + }, + F_INV_RT: { + description: 'تُرجع هذه الدالة عكس توزيع الاحتمال F (ذي الطرف الأيمن). إذا كانت قيمة p = F.DIST.RT(x,...)‎، فتكون عندئذٍ قيمة F.INV.RT(p,...) = x. يمكن استخدام التوزيع F في أحد اختبارات F التي تقارن درجة التغير بين مجموعتين من البيانات. على سبيل المثال، يمكنك تحليل توزيعات الدخل في الولايات المتحدة وكندا لتحديد ما إذا كان في البلدين درجة متشابهة من اختلاف الدخل.', + abstract: 'تُرجع هذه الدالة عكس توزيع الاحتمال F (ذي الطرف الأيمن). إذا كانت قيمة p = F.DIST.RT(x,...)‎، فتكون عندئذٍ قيمة F.INV.RT(p,...) = x. يمكن استخدام التوزيع F في أحد اختبارات F التي تقارن درجة التغير بين مجموعتين من البيانات. على سبيل المثال، يمكنك تحليل توزيعات الدخل في الولايات المتحدة وكندا لتحديد ما إذا كان في البلدين درجة متشابهة من اختلاف الدخل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. احتمال مقترن بتوزيع F التراكمي.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'مطلوب. بسط درجات الحرية.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'مطلوب. مقام درجات الحرية.' }, + }, + }, + F_TEST: { + description: 'استخدم هذه الدالة لتحديد وجود تباينات مختلفة بين نموذجين. على سبيل المثال، بالاستناد إلى نقاط اختبار من مدرستين رسمية وخاصة، يمكنك اختبار ما إذا كانت مستويات التباين في نقاط الاختبار مختلفة بين هاتين المدرستين.', + abstract: 'استخدم هذه الدالة لتحديد وجود تباينات مختلفة بين نموذجين. على سبيل المثال، بالاستناد إلى نقاط اختبار من مدرستين رسمية وخاصة، يمكنك اختبار ما إذا كانت مستويات التباين في نقاط الاختبار مختلفة بين هاتين المدرستين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. الصفيف أو نطاق البيانات الأول.' }, + array2: { name: 'array2', detail: 'مطلوب. الصفيف أو نطاق البيانات الثاني.' }, + }, + }, + FISHER: { + description: 'تُرجع هذه الدالة تحويل Fisher عند x. ينتج عن هذا التحويل دالة يتم في العادة توزيعها بدلاً من أن تكون منحرفة. استخدم هذه الدالة لتنفيذ اختبار افتراضي على معامل الارتباط.', + abstract: 'تُرجع هذه الدالة تحويل Fisher عند x. ينتج عن هذا التحويل دالة يتم في العادة توزيعها بدلاً من أن تكون منحرفة. استخدم هذه الدالة لتنفيذ اختبار افتراضي على معامل الارتباط.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. قيمة رقمية تريد تحويلها.' }, + }, + }, + FISHERINV: { + description: 'تُرجع هذه الدالة عكس تحويل Fisher. استخدم هذا التحويل عند تحليل معاملات الارتباطات بين نطاقات أو صفائف من البيانات. إذا كانت y = FISHER(x)‎، فتكون عندئذٍ FISHERINV(y) = x.', + abstract: 'تُرجع هذه الدالة عكس تحويل Fisher. استخدم هذا التحويل عند تحليل معاملات الارتباطات بين نطاقات أو صفائف من البيانات. إذا كانت y = FISHER(x)‎، فتكون عندئذٍ FISHERINV(y) = x.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'مطلوبة. القيمة التي تريد حساب عكس التحويل لها.' }, + }, + }, + FORECAST: { + description: 'حساب قيمة مستقبلية أو التنبؤ بها باستخدام القيم الموجودة. القيمة المستقبلية هي قيمة ص لقيمة x معينة. القيم الموجودة هي قيم س وقيم ص معروفة، ويتم التنبؤ بالقيمة المستقبلية باستخدام الانحدار الخطي. يمكنك استخدام هذه الدالات للتنبؤ بالمبيعات المستقبلية أو متطلبات المخزون أو اتجاهات المستهلكين.', + abstract: 'حساب قيمة مستقبلية أو التنبؤ بها باستخدام القيم الموجودة. القيمة المستقبلية هي قيمة ص لقيمة x معينة. القيم الموجودة هي قيم س وقيم ص معروفة، ويتم التنبؤ بالقيمة المستقبلية باستخدام الانحدار الخطي. يمكنك استخدام هذه الدالات للتنبؤ بالمبيعات المستقبلية أو متطلبات المخزون أو اتجاهات المستهلكين.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'نعم نقطة البيانات التي تريد توقع قيمة لها.' }, + knownYs: { name: 'known_y\'s', detail: 'نعم الصفيف أو نطاق البيانات التابع.' }, + knownXs: { name: 'known_x\'s', detail: 'نعم الصفيف أو نطاق البيانات المستقل.' }, + }, + }, + FORECAST_ETS: { + description: 'تحسب أو تتنبأ بقيمة مستقبلية استناداً إلى قيم تاريخية باستخدام الإصدار AAA من خوارزمية التنعيم الأسي (ETS).', + abstract: 'تحسب أو تتنبأ بقيمة مستقبلية استناداً إلى قيم تاريخية باستخدام الإصدار AAA من خوارزمية التنعيم الأسي (ETS).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'التاريخ المستهدف', detail: 'نقطة البيانات التي تريد توقع قيمة لها.' }, + values: { name: 'القيم', detail: 'القيم التاريخية المستخدمة في التنبؤ.' }, + timeline: { name: 'المخطط الزمني', detail: 'نطاق أو مصفوفة مستقلة من التواريخ أو الأوقات الرقمية ذات خطوة ثابتة.' }, + seasonality: { name: 'الموسمية', detail: 'اختياري. طول النمط الموسمي؛ 1 للاكتشاف التلقائي و0 لعدم وجود موسمية.' }, + dataCompletion: { name: 'إكمال البيانات', detail: 'اختياري. استخدم 1 لاستيفاء النقاط المفقودة أو 0 لاعتبارها صفراً.' }, + aggregation: { name: 'التجميع', detail: 'اختياري. قيمة من 1 إلى 7 تحدد طريقة تجميع الطوابع الزمنية المكررة.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'تُرجع فترة الثقة للقيمة المتوقعة عند نقطة هدف محددة.', + abstract: 'تُرجع فترة الثقة للقيمة المتوقعة عند نقطة هدف محددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'التاريخ المستهدف', detail: 'نقطة البيانات التي تريد توقع قيمة لها.' }, + values: { name: 'القيم', detail: 'القيم التاريخية المستخدمة في التنبؤ.' }, + timeline: { name: 'المخطط الزمني', detail: 'نطاق أو مصفوفة مستقلة من التواريخ أو الأوقات الرقمية ذات خطوة ثابتة.' }, + confidenceLevel: { name: 'مستوى الثقة', detail: 'اختياري. رقم بين 0 و1؛ القيمة الافتراضية 0.95.' }, + seasonality: { name: 'الموسمية', detail: 'اختياري. طول النمط الموسمي؛ 1 للاكتشاف التلقائي و0 لعدم وجود موسمية.' }, + dataCompletion: { name: 'إكمال البيانات', detail: 'اختياري. استخدم 1 لاستيفاء النقاط المفقودة أو 0 لاعتبارها صفراً.' }, + aggregation: { name: 'التجميع', detail: 'اختياري. قيمة من 1 إلى 7 تحدد طريقة تجميع الطوابع الزمنية المكررة.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'تُرجع طول النمط المتكرر الذي يكتشفه Excel لسلسلة زمنية محددة.', + abstract: 'تُرجع طول النمط المتكرر الذي يكتشفه Excel لسلسلة زمنية محددة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'القيم', detail: 'القيم التاريخية المستخدمة في التنبؤ.' }, + timeline: { name: 'المخطط الزمني', detail: 'نطاق أو مصفوفة مستقلة من التواريخ أو الأوقات الرقمية ذات خطوة ثابتة.' }, + dataCompletion: { name: 'إكمال البيانات', detail: 'اختياري. استخدم 1 لاستيفاء النقاط المفقودة أو 0 لاعتبارها صفراً.' }, + aggregation: { name: 'التجميع', detail: 'اختياري. قيمة من 1 إلى 7 تحدد طريقة تجميع الطوابع الزمنية المكررة.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'تُرجع قيمة إحصائية ناتجة عن توقع سلسلة زمنية.', + abstract: 'تُرجع قيمة إحصائية ناتجة عن توقع سلسلة زمنية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'القيم', detail: 'القيم التاريخية المستخدمة في التنبؤ.' }, + timeline: { name: 'المخطط الزمني', detail: 'نطاق أو مصفوفة مستقلة من التواريخ أو الأوقات الرقمية ذات خطوة ثابتة.' }, + statisticType: { name: 'نوع الإحصاء', detail: 'قيمة من 1 إلى 8 تحدد إحصاء التنبؤ المطلوب.' }, + seasonality: { name: 'الموسمية', detail: 'اختياري. طول النمط الموسمي؛ 1 للاكتشاف التلقائي و0 لعدم وجود موسمية.' }, + dataCompletion: { name: 'إكمال البيانات', detail: 'اختياري. استخدم 1 لاستيفاء النقاط المفقودة أو 0 لاعتبارها صفراً.' }, + aggregation: { name: 'التجميع', detail: 'اختياري. قيمة من 1 إلى 7 تحدد طريقة تجميع الطوابع الزمنية المكررة.' }, + }, + }, + FORECAST_LINEAR: { + description: 'حساب قيمة مستقبلية أو التنبؤ بها باستخدام القيم الموجودة. القيمة المستقبلية هي قيمة ص لقيمة x معينة. القيم الموجودة هي قيم س وقيم ص معروفة، ويتم التنبؤ بالقيمة المستقبلية باستخدام الانحدار الخطي. يمكنك استخدام هذه الدالات للتنبؤ بالمبيعات المستقبلية أو متطلبات المخزون أو اتجاهات المستهلكين.', + abstract: 'حساب قيمة مستقبلية أو التنبؤ بها باستخدام القيم الموجودة. القيمة المستقبلية هي قيمة ص لقيمة x معينة. القيم الموجودة هي قيم س وقيم ص معروفة، ويتم التنبؤ بالقيمة المستقبلية باستخدام الانحدار الخطي. يمكنك استخدام هذه الدالات للتنبؤ بالمبيعات المستقبلية أو متطلبات المخزون أو اتجاهات المستهلكين.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'نعم نقطة البيانات التي تريد توقع قيمة لها.' }, + knownYs: { name: 'known_y\'s', detail: 'نعم الصفيف أو نطاق البيانات التابع.' }, + knownXs: { name: 'known_x\'s', detail: 'نعم الصفيف أو نطاق البيانات المستقل.' }, + }, + }, + FREQUENCY: { + description: 'تحسب الدالة تكرار مدى تكرار قيم معينة داخل نطاق من القيم، ثم تُرجع صفيفًا عموديًا من الأرقام. على سبيل المثال، استخدم FREQUENCY لحساب عدد نقاط الاختبار التي تقع ضمن نطاقات من النقاط. ونظراً إلى أن FREQUENCY تُرجع صفيفاً، يجب إدخالها كصيغة صفيف.', + abstract: 'تحسب الدالة تكرار مدى تكرار قيم معينة داخل نطاق من القيم، ثم تُرجع صفيفًا عموديًا من الأرقام. على سبيل المثال، استخدم FREQUENCY لحساب عدد نقاط الاختبار التي تقع ضمن نطاقات من النقاط. ونظراً إلى أن FREQUENCY تُرجع صفيفاً، يجب إدخالها كصيغة صفيف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'مطلوب. صفيف أو مرجع لمجموعة من القيم التي تريد حساب مدى تكرارها. إذا لم تتضمّن الوسيطة data_array أي قيم، فتُرجع الدالة FREQUENCY صفيفاً من الأصفار.' }, + binsArray: { name: 'bins_array', detail: 'مطلوب. صفيف أو مرجع للفواصل التي تريد تجميع القيم ضمنها في data_array. إذا لم تتضمّن الوسيطة bins_array أي قيم، فتُرجع الدالة FREQUENCY عدد العناصر في data_array.' }, + }, + }, + GAMMA: { + description: 'تُرجع هذه الدالة قيمة دالة غاما.', + abstract: 'تُرجع هذه الدالة قيمة دالة غاما.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. تُرجع رقمًا.' }, + }, + }, + GAMMA_DIST: { + description: 'تُرجع توزيع غاما. يمكنك استخدام هذه الدالة لدراسة المتغيرات التي قد تكون ذات توزيع منحرف. يُستخدم توزيع غاما بشكل شائع في تحليل الصفوف.', + abstract: 'تُرجع توزيع غاما. يمكنك استخدام هذه الدالة لدراسة المتغيرات التي قد تكون ذات توزيع منحرف. يُستخدم توزيع غاما بشكل شائع في تحليل الصفوف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تقييم التوزيع عندها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع. إذا كانت beta = 1، فتُرجع الدالة GAMMA.DIST توزيع غاما القياسي.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد تركيبة الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع GAMMA.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + GAMMA_INV: { + description: 'تُرجع هذه الدالة عكس توزيع غاما التراكمي. إذا كانت p = GAMMA.DIST(x,...)‎، فتكون عندئذٍ قيمة GAMMA.INV(p,...) = x. يمكنك استخدام هذه الدالة لدراسة متغير قد يكون التوزيع الخاص به منحرفاً.', + abstract: 'تُرجع هذه الدالة عكس توزيع غاما التراكمي. إذا كانت p = GAMMA.DIST(x,...)‎، فتكون عندئذٍ قيمة GAMMA.INV(p,...) = x. يمكنك استخدام هذه الدالة لدراسة متغير قد يكون التوزيع الخاص به منحرفاً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بتوزيع غاما.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع. إذا كانت beta = 1، فتُرجع GAMMA.INV توزيع غاما القياسي.' }, + }, + }, + GAMMALN: { + description: 'إرجاع اللوغاريتم الطبيعي لدالة غاما، ‎Γ(x)‎.', + abstract: 'إرجاع اللوغاريتم الطبيعي لدالة غاما، ‎Γ(x)‎.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد حساب GAMMALN لها.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'إرجاع اللوغاريتم الطبيعي لدالة غاما، ‎Γ(x)‎.', + abstract: 'إرجاع اللوغاريتم الطبيعي لدالة غاما، ‎Γ(x)‎.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد حساب GAMMALN.PRECISE لها.' }, + }, + }, + GAUSS: { + description: 'تحسب احتمال وقوع عنصر من محتوى عادي قياسي بين الوسط والعدد z من الانحرافات المعيارية عن الوسط.', + abstract: 'تحسب احتمال وقوع عنصر من محتوى عادي قياسي بين الوسط والعدد z من الانحرافات المعيارية عن الوسط.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'مطلوبة. تُرجع رقمًا.' }, + }, + }, + GEOMEAN: { + description: 'تُرجع هذه الدالة الوسط الهندسي لصفيف أو نطاق من البيانات الموجبة. على سبيل المثال، يمكنك استخدام GEOMEAN لحساب معدل النمو المتوسط للفائدة المركبة المذكورة مع المعدلات المتغيرة.', + abstract: 'تُرجع هذه الدالة الوسط الهندسي لصفيف أو نطاق من البيانات الموجبة. على سبيل المثال، يمكنك استخدام GEOMEAN لحساب معدل النمو المتوسط للفائدة المركبة المذكورة مع المعدلات المتغيرة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب الوسط لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب الوسط لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + GROWTH: { + description: 'تحسب هذه الدالة التزايد الأسي المتوقع باستخدام البيانات الموجودة. تُرجع الدالة GROWTH قيم y لسلسة من قيم x الجديدة التي تعينها باستخدام قيم x وقيم y الموجودة. يمكنك أيضاً استخدام دالة ورقة العمل GROWTH لملاءمة منحنى أسي مع قيم x وقيم y الموجودة.', + abstract: 'تحسب هذه الدالة التزايد الأسي المتوقع باستخدام البيانات الموجودة. تُرجع الدالة GROWTH قيم y لسلسة من قيم x الجديدة التي تعينها باستخدام قيم x وقيم y الموجودة. يمكنك أيضاً استخدام دالة ورقة العمل GROWTH لملاءمة منحنى أسي مع قيم x وقيم y الموجودة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. مجموعة قيم y التي تعرفها بالفعل في العلاقة y = b*m^x. إذا كان صفيف قيم known_y\'s موجوداً في عمود مفرد، فيتم عندئذٍ تفسير كل عمود من قيم known_x\'s كمتغير منفصل. إذا كان صفيف قيم known_y\'s موجوداً في صف مفرد، فيتم عندئذٍ تفسير كل صف من قيم known_x\'s كمتغير منفصل. إذا كان أي من الأرقام في known_y 0 أو سالبا، فترجع الدالة GROWTH #NUM! وهي قيمة خطأ.' }, + knownXs: { name: 'known_x\'s', detail: 'الاختياري. مجموعة اختيارية من قيم س التي تعرفها بالفعل في العلاقة y = b*m^x. يمكن لصفيف قيم known_x\'s أن يتضمّن مجموعة أو أكثر من المتغيرات. إذا تم استخدام متغير واحد فقط، فيمكن لقيم known_y\'s وknown_x\'s أن تكون نطاقات من أي شكل، طالما أنها ذات أبعاد متساوية. إذا تم استخدام أكثر من متغير واحد، فيجب أن تكون قيم known_y\'s عبارة عن خط متجه (أي، نطاق بارتفاع صف واحد أو بعرض عمود واحد). إذا تم تجاهل قيم known_x\'s، فسيتم افتراض أنها الصفيف {...,1,2,3} بالحجم نفسه لقيم known_y\'s.' }, + newXs: { name: 'new_x\'s', detail: 'الاختياري. قيم x الجديدة التي تريد أن تقوم الدالة GROWTH بإرجاع قيم y الموافقة لها. يجب أن تتضمن قيم New_x\'s عموداً (أو صفاً) لكل متغير مستقل، تماماً كما هو الحال بالنسبة إلى قيم known_x\'s. وبالتالي، إذا كانت قيم known_y\'s موجودة في عمود واحد، يجب أن يكون عدد الأعمدة في known_x\'s وnew_x\'s متساوياً. وبالتالي، إذا كانت قيم known_y\'s موجودة في صف واحد، فيجب أن يكون عدد الصفوف في known_x\'s وnew_x\'s متساوياً. إذا تم حذف قيم new_x\'s، فسيتم افتراض أنها مماثلة لقيم known_x\'s. إذا تم تجاهل كل من قيم known_x\'s وnew_x\'s، فسيتم افتراض أنها الصفيف {...,1,2,3} بالحجم نفسه لقيم known_y\'s.' }, + constb: { name: 'const', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كان سيتم فرض الثابت b ليساوي 1. إذا كانت قيمة const تساوي TRUE أو إذا تم حذفها، فيتم حساب b بالشكل المعتاد. إذا كانت قيمة const تساوي FALSE، فيتم تعيين b ليساوي 1 ويتم ضبط قيم m للحصول على y = m^x.' }, + }, + }, + HARMEAN: { + description: 'تُرجع هذه الدالة الوسط التوافقي لمجموعة بيانات. إن الوسط التوافقي هو معكوس الوسط الحسابي لمقلوب الأرقام.', + abstract: 'تُرجع هذه الدالة الوسط التوافقي لمجموعة بيانات. إن الوسط التوافقي هو معكوس الوسط الحسابي لمقلوب الأرقام.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب الوسط لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب الوسط لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + HYPGEOM_DIST: { + description: 'تُرجع هذه الدالة توزيع الهندسة الفوقية. تُرجع الدالة HYPGEOM.DIST احتمال عدد معين لمرات النجاح في العينة، بالنسبة إلى حجم العينة وعدد مرات نجاح المحتوى وحجمه. استخدم HYPGEOM.DIST لحل المشاكل التي تتعلق بمحتوى محدود، حيث تكون كل عملية مراقبة عبارة عن نجاح أو فشل، وحيث يتم اختيار كل مجموعة فرعية ذات حجم معيّن باحتمالية متساوية.', + abstract: 'تُرجع هذه الدالة توزيع الهندسة الفوقية. تُرجع الدالة HYPGEOM.DIST احتمال عدد معين لمرات النجاح في العينة، بالنسبة إلى حجم العينة وعدد مرات نجاح المحتوى وحجمه. استخدم HYPGEOM.DIST لحل المشاكل التي تتعلق بمحتوى محدود، حيث تكون كل عملية مراقبة عبارة عن نجاح أو فشل، وحيث يتم اختيار كل مجموعة فرعية ذات حجم معيّن باحتمالية متساوية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'مطلوب. عدد مرات النجاح في العينة.' }, + numberSample: { name: 'number_sample', detail: 'مطلوب. حجم العينة.' }, + populationS: { name: 'population_s', detail: 'مطلوب. عدد مرات النجاح في المحتوى.' }, + numberPop: { name: 'number_pop', detail: 'مطلوب. حجم المحتوى.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع عندئذٍ الدالة HYPGEOM.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة الاحتمالات غير التراكمية.' }, + }, + }, + INTERCEPT: { + description: 'تحسب هذه الدالة النقطة التي يتقاطع عندها خط مع محور ص باستخدام قيم س وقيم ص الموجودة. تستند نقطة التقاطع إلى أقرب خط انحدار مرسوم بواسطة قيم س وقيم ص المعروفة. استخدم الدالة INTERCEPT عندما تريد تحديد قيمة المتغير التابع عندما تكون قيمة المتغير المستقل 0 (صفر). على سبيل المثال، يمكنك استخدام الدالة INTERCEPT لتوقع مقدار المقاومة الكهربائية لمعدن عند 0 درجة مئوية عند أخذ نقاط البيانات في درجة حرارة الغرفة أو أعلى.', + abstract: 'تحسب هذه الدالة النقطة التي يتقاطع عندها خط مع محور ص باستخدام قيم س وقيم ص الموجودة. تستند نقطة التقاطع إلى أقرب خط انحدار مرسوم بواسطة قيم س وقيم ص المعروفة. استخدم الدالة INTERCEPT عندما تريد تحديد قيمة المتغير التابع عندما تكون قيمة المتغير المستقل 0 (صفر). على سبيل المثال، يمكنك استخدام الدالة INTERCEPT لتوقع مقدار المقاومة الكهربائية لمعدن عند 0 درجة مئوية عند أخذ نقاط البيانات في درجة حرارة الغرفة أو أعلى.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. مجموعة المشاهدات أو البيانات التابعة.' }, + knownXs: { name: 'known_x\'s', detail: 'مطلوب. مجموعة المشاهدات أو البيانات المستقلة.' }, + }, + }, + KURT: { + description: 'تُرجع هذه الدالة التفرطح لمجموعة بيانات. يميز التفرطح الذروة النسبية أو التسطح النسبي للتوزيع مقارنةً بالتوزيع العادي. يشير التفرطح الموجب إلى توزيع ذروة نسبي. ويشير التفرطح السالب إلى توزيع تسطح نسبي.', + abstract: 'تُرجع هذه الدالة التفرطح لمجموعة بيانات. يميز التفرطح الذروة النسبية أو التسطح النسبي للتوزيع مقارنةً بالتوزيع العادي. يشير التفرطح الموجب إلى توزيع ذروة نسبي. ويشير التفرطح السالب إلى توزيع تسطح نسبي.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب تفرطحها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي ترغب في حساب تفرطحها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + LARGE: { + description: 'تُرجع هذه الدالة ترتيب القيمة الكبرى في مجموعة بيانات. يمكنك استخدام هذه الدالة لتحديد قيمة استناداً إلى موقعها النسبي. فيمكنك على سبيل المثال استخدام الدالة LARGE لإرجاع أكبر تقدير، أو التقدير الذي يليه، أو التقدير الثالث.', + abstract: 'تُرجع هذه الدالة ترتيب القيمة الكبرى في مجموعة بيانات. يمكنك استخدام هذه الدالة لتحديد قيمة استناداً إلى موقعها النسبي. فيمكنك على سبيل المثال استخدام الدالة LARGE لإرجاع أكبر تقدير، أو التقدير الذي يليه، أو التقدير الثالث.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات الذي تريد ترتيب القيم الكبرى فيه.' }, + k: { name: 'k', detail: 'مطلوب. الموضع (من الأكبر) في الصفيف أو نطاق الخلايا للبيانات التي سيتم إرجاعها.' }, + }, + }, + LINEST: { + description: 'تقوم الدالة LINEST بحساب الإحصاءات لخط باستخدام طريقة "المربعات الصغرى" لحساب خط مستقيم يناسب بياناتك بالشكل الأمثل، ثم تُرجع صفيفاً يصف الخط. يمكنك أيضاً دمج LINEST مع الدالات الأخرى لحساب إحصاءات أنواع أخرى من النماذج الخطية في المعلمات غير المعروفة، بما في ذلك المتسلسلة المتعددة الحدود، واللوغاريتمية، والأسية. ولأن هذه الدالة تقوم بإرجاع صفيف قيم، يجب إدخالها كصيغة صفيف. وتأتي الإرشادات بعد الأمثلة في هذا المقال.', + abstract: 'تقوم الدالة LINEST بحساب الإحصاءات لخط باستخدام طريقة "المربعات الصغرى" لحساب خط مستقيم يناسب بياناتك بالشكل الأمثل، ثم تُرجع صفيفاً يصف الخط. يمكنك أيضاً دمج LINEST مع الدالات الأخرى لحساب إحصاءات أنواع أخرى من النماذج الخطية في المعلمات غير المعروفة، بما في ذلك المتسلسلة المتعددة الحدود، واللوغاريتمية، والأسية. ولأن هذه الدالة تقوم بإرجاع صفيف قيم، يجب إدخالها كصيغة صفيف. وتأتي الإرشادات بعد الأمثلة في هذا المقال.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. مجموعة قيم y التي تعرفها مسبقاً في العلاقة y = mx + b. إذا كان نطاق known_y في عمود واحد، يتم تفسير كل عمود من known_x على أنه متغير منفصل. إذا كان نطاق known_y مضمنا في صف واحد، يتم تفسير كل صف من known_x كمتغير منفصل.' }, + knownXs: { name: 'known_x\'s', detail: 'الاختياري. مجموعة قيم x التي تعرفها مسبقاً في العلاقة y = mx + b. يمكن أن يتضمن نطاق known_x مجموعة واحدة أو أكثر من المتغيرات. إذا تم استخدام متغير واحد فقط، يمكن أن تكون known_y known_x نطاقات من أي شكل، طالما أن لها أبعادا متساوية. إذا تم استخدام أكثر من متغير واحد، يجب أن يكون known_y متجها (أي نطاق بارتفاع صف واحد أو عرض عمود واحد). إذا تم حذف known_x ، فمن المفترض أن يكون الصفيف {1,2,3,...} الذي هو نفس حجم known_y .' }, + constb: { name: 'const', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كان سيتم فرض الثابت b ليساوي 0. إذا كان const TRUE أو تم حذفه، يتم حساب b بشكل طبيعي. إذا كان const هو FALSE، يتم تعيين b يساوي 0 ويتم ضبط قيم m لتناسب y = mx.' }, + stats: { name: 'stats', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كان سيتم إرجاع إحصاءات انحدار إضافية. إذا كانت الإحصائيات TRUE، فترجع الدالة LINEST إحصائيات الانحدار الإضافية؛ نتيجة لذلك، الصفيف الذي تم إرجاعه هو {mn,mn-1,...,m1,b; sen,sen-1,...,se1,seb; r 2,sey ; F,df; ssreg,ssresid} . إذا كانت الإحصائيات FALSE أو تم حذفها، فترجع LINEST معاملات m فقط والثابت b. تكون إحصاءات الانحدار الإضافية كما يلي.' }, + }, + }, + LOGEST: { + description: 'إن معادلة المنحنى هي:', + abstract: 'إن معادلة المنحنى هي:', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. مجموعة قيم y التي تعرفها بالفعل في العلاقة y = b*m^x. إذا كان صفيف قيم known_y\'s موجوداً في عمود مفرد، فيتم عندئذٍ تفسير كل عمود من قيم known_x\'s كمتغير منفصل. إذا كان صفيف قيم known_y\'s موجوداً في صف مفرد، فيتم عندئذٍ تفسير كل صف من قيم known_x\'s كمتغير منفصل.' }, + knownXs: { name: 'known_x\'s', detail: 'الاختياري. مجموعة اختيارية من قيم س التي تعرفها بالفعل في العلاقة y = b*m^x. يمكن لصفيف قيم known_x\'s أن يتضمّن مجموعة أو أكثر من المتغيرات. إذا تم استخدام متغير واحد فقط، فيمكن لقيم known_y\'s وknown_x\'s أن تكون نطاقات من أي شكل، طالما أنها ذات أبعاد متساوية. إذا تم استخدام أكثر من متغير واحد، فيجب أن تكون قيم known_y\'s عبارة عن نطاق خلايا بارتفاع صف واحد أو بعرض عمود واحد (يُعرف أيضاً بالمتجه). إذا تم حذف قيم known_x\'s، فسيتم افتراض أنها الصفيف {...,1,2,3} بالحجم نفسه لقيم known_y\'s.' }, + constb: { name: 'const', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كان سيتم فرض الثابت b ليساوي 1. إذا كانت قيمة const تساوي TRUE أو إذا تم حذفها، فيتم حساب b بالشكل المعتاد. إذا كانت قيمة const تساوي FALSE، فيتم تعيين b ليساوي 1، وتتم ملاءمة m للحصول على y = m^x.' }, + stats: { name: 'stats', detail: 'الاختياري. قيمة منطقية تحدد ما إذا كان سيتم إرجاع إحصاءات انحدار إضافية. إذا كانت قيمة stats تساوي TRUE، فتُرجع LOGEST إحصاءات الانحدار، ونتيجة لذلك، يتم إرجاع الصفيف التالي {mn,mn-1,...,m1,b;sen,sen-1,...,se1,seb;r 2,sey; F,df;ssreg,ssresid}. إذا كانت قيمة stats تساوي FALSE أو إذا كانت محذوفة، فتُرجع LOGEST معاملات m والثابت b فقط.' }, + }, + }, + LOGNORM_DIST: { + description: 'استخدم هذه الدالة لتحليل البيانات التي تم تحويلها لوغاريتمياً.', + abstract: 'استخدم هذه الدالة لتحليل البيانات التي تم تحويلها لوغاريتمياً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + mean: { name: 'mean', detail: 'مطلوب. وسط (ln(x.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري لـ (ln(x.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع الدالة LOGNORM.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها تساوي FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + LOGNORM_INV: { + description: 'تُرجع هذه الدالة عكس التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع (ln(x بشكل طبيعي باستخدام المعلمتين Mean وStandard_dev. إذا كانت p = LOGNORM.DIST(x,...)‎، فتكون عندئذٍ LOGNORM.INV(p,...) = x.', + abstract: 'تُرجع هذه الدالة عكس التوزيع اللوغاريتمي الطبيعي التراكمي لـ x، حيث يتم توزيع (ln(x بشكل طبيعي باستخدام المعلمتين Mean وStandard_dev. إذا كانت p = LOGNORM.DIST(x,...)‎، فتكون عندئذٍ LOGNORM.INV(p,...) = x.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بالتوزيع اللوغاريتمي الطبيعي.' }, + mean: { name: 'mean', detail: 'مطلوب. وسط (ln(x.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. الانحراف المعياري لـ (ln(x.' }, + }, + }, + MARGINOFERROR: { + description: 'تحسب هذه الدالة هامش الخطأ من نطاق قيم ومستوى ثقة.', + abstract: 'تحسب هذه الدالة هامش الخطأ من نطاق قيم ومستوى ثقة.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=ar', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'نطاق القيم المستخدم لحساب هامش الخطأ.' }, + confidence: { name: 'confidence', detail: 'مستوى الثقة المطلوب بين (0 و1).' }, + }, + }, + MAX: { + description: 'ترجع أكبر قيمة في مجموعة قيم.', + abstract: 'ترجع أكبر قيمة في مجموعة قيم.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { + name: 'number1', + detail: 'الرقم الأول أو مرجع الخلية أو النطاق الذي تريد حساب القيمة العظمى منه.', + }, + number2: { + name: 'number2', + detail: 'أرقام أو مراجع خلايا أو نطاقات إضافية لحساب القيمة العظمى منها، بحد أقصى 255.', + }, + }, + }, + MAXA: { + description: 'ترجع أكبر قيمة في قائمة من الوسيطات، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + abstract: 'ترجع أكبر قيمة في قائمة من الوسيطات، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'وسيطة الرقم الأولى التي تريد إيجاد أكبر قيمة لها.' }, + value2: { name: 'value2', detail: 'وسيطات الأرقام من 2 إلى 255 التي تريد إيجاد أكبر قيمة لها.' }, + }, + }, + MAXIFS: { + description: 'ترجع دالة MAXIFS قيمة الحد الأقصى لخلايا محددة بمجموعة معينة من الشروط أو المعايير.', + abstract: 'ترجع دالة MAXIFS قيمة الحد الأقصى لخلايا محددة بمجموعة معينة من الشروط أو المعايير.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'هي نطاق الخلايا الفعلي الذي يتم تحديد الحد الأقصى فيه.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'هي مجموعة الخلايا المطلوب تقييمها باستخدام المعايير.' }, + criteria1: { name: 'criteria1', detail: 'هي معايير بصيغة أرقام أو تعبيرات أو نصوص تحدد الخلايا التي سيتم تقييمها كحد أقصى. تعمل مجموعة المعايير نفسها مع الدالات MINIFS و SUMIFS و AVERAGEIFS .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'هي النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 126 زوجاً من النطاقات/المعايير.' }, + criteria2: { name: 'criteria2', detail: 'هي النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 126 زوجاً من النطاقات/المعايير.' }, + }, + }, + MEDIAN: { + description: 'تُرجع هذه الدالة وسيط الأرقام المحددة. إن الوسيط هو الرقم الذي يتوسط مجموعة من الأرقام.', + abstract: 'تُرجع هذه الدالة وسيط الأرقام المحددة. إن الوسيط هو الرقم الذي يتوسط مجموعة من الأرقام.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الأرقام من 1 إلى 255 التي تريد حساب الوسيط الخاص بها.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الأرقام من 1 إلى 255 التي تريد حساب الوسيط الخاص بها.' }, + }, + }, + MIN: { + description: 'تُرجع هذه الدالة أصغر رقم في مجموعة من القيم.', + abstract: 'تُرجع هذه الدالة أصغر رقم في مجموعة من القيم.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 اختياري، والأرقام اللاحقة اختيارية. الأرقام من 1 إلى 255 التي تريد البحث عن القيمة الدنيا لها.' }, + number2: { name: 'number2', detail: 'Number1 اختياري، والأرقام اللاحقة اختيارية. الأرقام من 1 إلى 255 التي تريد البحث عن القيمة الدنيا لها.' }, + }, + }, + MINA: { + description: 'ترجع أصغر قيمة في قائمة من الوسيطات، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + abstract: 'ترجع أصغر قيمة في قائمة من الوسيطات، بما في ذلك الأرقام والنصوص والقيم المنطقية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'الرقم الأول أو مرجع الخلية أو النطاق الذي تريد حساب القيمة الصغرى منه.' }, + value2: { name: 'value2', detail: 'أرقام أو مراجع خلايا أو نطاقات إضافية لحساب القيمة الصغرى منها، بحد أقصى 255.' }, + }, + }, + MINIFS: { + description: 'ترجع دالة MINIFS قيمة الحد الأدنى لخلايا محددة بمجموعة معينة من الشروط أو المعايير.', + abstract: 'ترجع دالة MINIFS قيمة الحد الأدنى لخلايا محددة بمجموعة معينة من الشروط أو المعايير.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'هي نطاق الخلايا الفعلي الذي يتحدد فيه الحد الأدنى للقيمة.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'هي مجموعة الخلايا المطلوب تقييمها باستخدام المعايير.' }, + criteria1: { name: 'criteria1', detail: 'هي معايير بصيغة أرقام أو تعبيرات أو نصوص تحدد الخلايا التي سيتم تقييمها كحد أدنى. تعمل مجموعة المعايير نفسها مع الدالات MAXIFS و SUMIFS و AVERAGEIFS .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'هي النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 126 زوجاً من النطاقات/المعايير.' }, + criteria2: { name: 'criteria2', detail: 'هي النطاقات الإضافية والمعايير المقترنة بها. يمكنك إدخال ما يصل إلى 126 زوجاً من النطاقات/المعايير.' }, + }, + }, + MODE_MULT: { + description: 'سيؤدي ذلك إلى إرجاع أكثر من نتيجة في حالة وجود أوضاع متعددة. ولأن هذه الدالة تقوم بإرجاع صفيف قيم، يجب إدخالها كصيغة صفيف.', + abstract: 'سيؤدي ذلك إلى إرجاع أكثر من نتيجة في حالة وجود أوضاع متعددة. ولأن هذه الدالة تقوم بإرجاع صفيف قيم، يجب إدخالها كصيغة صفيف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول الذي تريد حساب الوضع الخاص به.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 254 التي تريد حساب الوضع الخاص بها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + MODE_SNGL: { + description: 'تُرجع هذه الدالة القيم الأكثر حدوثاً أو تكراراً، في صفيف أو نطاق من البيانات.', + abstract: 'تُرجع هذه الدالة القيم الأكثر حدوثاً أو تكراراً، في صفيف أو نطاق من البيانات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. الوسيطة الأولى التي تريد حساب الوضع الخاص بها.' }, + number2: { name: 'number2', detail: 'الاختياري. الوسيطات من 2 إلى 254 التي تريد حساب الوضع الخاص بها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + NEGBINOM_DIST: { + description: 'تُرجع هذه الدالة التوزيع السالب ذا الحدين، واحتمال وجود مرات فشل عددها number_f قبل النجاح رقم number_s، مع احتمال probability_s للنجاح.', + abstract: 'تُرجع هذه الدالة التوزيع السالب ذا الحدين، واحتمال وجود مرات فشل عددها number_f قبل النجاح رقم number_s، مع احتمال probability_s للنجاح.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'مطلوب. عدد مرات الفشل.' }, + numberS: { name: 'number_s', detail: 'مطلوب. عتبة محاولات النجاح.' }, + probabilityS: { name: 'probability_s', detail: 'مطلوب. احتمال النجاح.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فإن الدالة NEGBINOM.DIST ترجع دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فإنها ترجع دالة كثافة الاحتمال.' }, + }, + }, + NORM_DIST: { + description: 'تُرجع هذه الدالة التوزيع العادي للوسط والانحراف المعياري المحددين. لهذه الدالة تطبيقات واسعة النطاق في علم الإحصاء، بما في ذلك اختبار الفرضية.', + abstract: 'تُرجع هذه الدالة التوزيع العادي للوسط والانحراف المعياري المحددين. لهذه الدالة تطبيقات واسعة النطاق في علم الإحصاء، بما في ذلك اختبار الفرضية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد حساب التوزيع لها.' }, + mean: { name: 'mean', detail: 'مطلوب. الوسط الحسابي للتوزيع.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. وهي الانحراف المعياري للتوزيع.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت القيمة التراكمية TRUE، NORM. ترجع الدالة DIST دالة التوزيع التراكمي؛ إذا كانت FALSE، فإنها ترجع دالة كثافة الاحتمال.' }, + }, + }, + NORM_INV: { + description: 'تُرجع هذه الدالة عكس التوزيع التراكمي العادي للوسط والانحراف المعياري المحددين.', + abstract: 'تُرجع هذه الدالة عكس التوزيع التراكمي العادي للوسط والانحراف المعياري المحددين.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المطابق للتوزيع العادي.' }, + mean: { name: 'mean', detail: 'مطلوب. الوسط الحسابي للتوزيع.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. وهي الانحراف المعياري للتوزيع.' }, + }, + }, + NORM_S_DIST: { + description: 'The NORM. ترجع الدالة S.DIST في Excel التوزيع العادي القياسي ( على سبيل المثال، يحتوي على وسط صفر وانحراف معياري لأحدها ). يمكنك استخدام هذه الدالة بدلا من استخدام جدول مناطق المنحنى العادية القياسية.', + abstract: 'The NORM. ترجع الدالة S.DIST في Excel التوزيع العادي القياسي ( على سبيل المثال، يحتوي على وسط صفر وانحراف معياري لأحدها ). يمكنك استخدام هذه الدالة بدلا من استخدام جدول مناطق المنحنى العادية القياسية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'مطلوبة. هذه هي القيمة التي تريد التوزيع لها.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. يمكن أن تكون الوسيطة التراكمية إما TRUE أو FALSE . تحدد هذه القيمة المنطقية شكل الدالة. إذا كانت القيمة التراكمية TRUE، فإن NORM. يقوم S.DIST بإرجاع دالة التوزيع التراكمي . إذا كان FALSE، فإنه يرجع دالة الاحتمالات الجماعية .' }, + }, + }, + NORM_S_INV: { + description: 'تُرجع هذه الدالة عكس التوزيع التراكمي القياسي العادي. يحتوي التوزيع على وسط من صفر وانحراف معياري من واحد.', + abstract: 'تُرجع هذه الدالة عكس التوزيع التراكمي القياسي العادي. يحتوي التوزيع على وسط من صفر وانحراف معياري من واحد.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المطابق للتوزيع العادي.' }, + }, + }, + PEARSON: { + description: 'تُرجع هذه الدالة معامل Pearson للارتباط العزومي لحواصل الضرب، r، وهو فهرس غير بعدي يتراوح بين ‎-1.0 و1.0 ضمناً، ويعكس نطاق العلاقة الخطية بين مجموعتين من مجموعات البيانات.', + abstract: 'تُرجع هذه الدالة معامل Pearson للارتباط العزومي لحواصل الضرب، r، وهو فهرس غير بعدي يتراوح بين ‎-1.0 و1.0 ضمناً، ويعكس نطاق العلاقة الخطية بين مجموعتين من مجموعات البيانات.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. مجموعة من القيم المستقلة.' }, + array2: { name: 'array2', detail: 'مطلوب. مجموعة من القيم التابعة.' }, + }, + }, + PERCENTILE_EXC: { + description: 'ترجع المئين k لقيم مجموعة بيانات (باستثناء 0 و1).', + abstract: 'ترجع المئين k لقيم مجموعة بيانات (باستثناء 0 و1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف أو نطاق البيانات الذي يحدد الترتيب النسبي.' }, + k: { name: 'k', detail: 'قيمة المئين في النطاق من 0 إلى 1، باستثناء 0 و1.' }, + }, + }, + PERCENTILE_INC: { + description: 'يمكنك استخدام PERCENTILE. دالة INC لتحديد حد القبول. على سبيل المثال، يمكنك أن تتخذ قراراً باختبار المرشحين الذين سجلوا مجموع نقاط أعلى من القيمة المئوية 90.', + abstract: 'يمكنك استخدام PERCENTILE. دالة INC لتحديد حد القبول. على سبيل المثال، يمكنك أن تتخذ قراراً باختبار المرشحين الذين سجلوا مجموع نقاط أعلى من القيمة المئوية 90.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات الذي يعرِّف حالات النسبية.' }, + k: { name: 'k', detail: 'مطلوب. القيمة المئوية في النطاق من 0 إلى 1، شاملة.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'ترجع الرتبة المئوية لقيمة في مجموعة بيانات (باستثناء 0 و1).', + abstract: 'ترجع الرتبة المئوية لقيمة في مجموعة بيانات (باستثناء 0 و1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'الصفيف أو نطاق البيانات الذي يحدد الترتيب النسبي.' }, + x: { name: 'x', detail: 'القيمة التي تريد معرفة رتبتها.' }, + significance: { name: 'significance', detail: 'قيمة تحدد عدد الأرقام المهمة لقيمة النسبة المئوية المعادة. إذا حُذفت، تستخدم PERCENTRANK.EXC ثلاثة أرقام (0.xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'تُرجع هذه الدالة مرتبة إحدى القيم في مجموعة بيانات كنسبة مئوية (0..1 ضمناً) من مجموعة البيانات.', + abstract: 'تُرجع هذه الدالة مرتبة إحدى القيم في مجموعة بيانات كنسبة مئوية (0..1 ضمناً) من مجموعة البيانات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات الذي يحتوي على القيم الرقمية التي تعرِّف الحالة النسبية.' }, + x: { name: 'x', detail: 'مطلوبة. القيمة التي تريد معرفة مرتبتها.' }, + significance: { name: 'significance', detail: 'الاختياري. قيمة اختيارية تعرّف عدد الأرقام ذات الأهمية لقيمة النسبة المئوية التي تم إرجاعها. في حال حذف هذه القيمة، تستخدم الدالة PERCENTRANK.INC ثلاثة أرقام (0.xxx).' }, + }, + }, + PERMUT: { + description: 'ترجع عدد التباديل لعدد معين من الكائنات.', + abstract: 'ترجع عدد التباديل لعدد معين من الكائنات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'عدد العناصر.' }, + numberChosen: { name: 'number_chosen', detail: 'عدد العناصر في كل تبديل.' }, + }, + }, + PERMUTATIONA: { + description: 'ترجع عدد التباديل لعدد معين من الكائنات، مع التكرار، التي يمكن اختيارها من إجمالي الكائنات.', + abstract: 'ترجع عدد التباديل لعدد معين من الكائنات، مع التكرار، التي يمكن اختيارها من إجمالي الكائنات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'عدد العناصر.' }, + numberChosen: { name: 'number_chosen', detail: 'عدد العناصر في كل تبديل.' }, + }, + }, + PHI: { + description: 'تُرجع هذه الدالة قيمة دالة كثافة التوزيع القياسي العادي.', + abstract: 'تُرجع هذه الدالة قيمة دالة كثافة التوزيع القياسي العادي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. X هو الرقم الذي تريد كثافة التوزيع العادي القياسي له.' }, + }, + }, + POISSON_DIST: { + description: 'تُرجع هذه الدالة توزيع Poisson. يُعتبر التنبؤ بعدد الأحداث خلال فترة زمنية محددة أحد التطبيقات الشائعة لتوزيع Poisson، كالتنبؤ بعدد السيارات التي تصل إلى ساحة تفرض رسم مرور خلال دقيقة واحدة مثلاً.', + abstract: 'تُرجع هذه الدالة توزيع Poisson. يُعتبر التنبؤ بعدد الأحداث خلال فترة زمنية محددة أحد التطبيقات الشائعة لتوزيع Poisson، كالتنبؤ بعدد السيارات التي تصل إلى ساحة تفرض رسم مرور خلال دقيقة واحدة مثلاً.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. عدد الأحداث.' }, + mean: { name: 'mean', detail: 'مطلوب. القيمة الرقمية المتوقعة.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد نموذج توزيع الاحتمال الذي يتم إرجاعه. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فإن الدالة POISSON.DIST ترجع احتمال Poisson التراكمي حيث سيكون عدد الأحداث العشوائية التي تحصل ما بين صفر وx ضمناً؛ وإذا كانت قيمتها FALSE، فإن الدالة Poisson للاحتمالات غير التراكمية ترجع أن عدد الأحداث سيساوي x تماماً.' }, + }, + }, + PROB: { + description: 'تُرجع هذه الدالة احتمال وقوع القيم في نطاق بين حدين. إذا لم يتم توفير الوسيطة upper_limit، فتُرجع هذه الدالة احتمال أن تكون القيم في x_range مساوية للقيم في lower_limit.', + abstract: 'تُرجع هذه الدالة احتمال وقوع القيم في نطاق بين حدين. إذا لم يتم توفير الوسيطة upper_limit، فتُرجع هذه الدالة احتمال أن تكون القيم في x_range مساوية للقيم في lower_limit.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'مطلوب. نطاق قيم x الرقمية التي تقترن بها احتمالات.' }, + probRange: { name: 'prob_range', detail: 'مطلوب. مجموعة احتمالات مقترنة بالقيم في x_range.' }, + lowerLimit: { name: 'lower_limit', detail: 'الاختياري. الحد الأدنى للقيمة التي تريد حساب احتمالها.' }, + upperLimit: { name: 'upper_limit', detail: 'الاختياري. الحد الأعلى الاختياري للقيمة التي تريد حساب احتمالها.' }, + }, + }, + QUARTILE_EXC: { + description: 'إرجاع ربع مجموعة البيانات، استنادا إلى القيم المئوية من 0 إلى 1، حصريا.', + abstract: 'إرجاع ربع مجموعة البيانات، استنادا إلى القيم المئوية من 0 إلى 1، حصريا.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق خلايا القيم الرقمية الذي تريد حساب قيمته الربعية.' }, + quart: { name: 'quart', detail: 'مطلوب. تشير إلى القيمة التي يجب إرجاعها.' }, + }, + }, + QUARTILE_INC: { + description: 'غالباً ما يتم استخدام الأرباع في المبيعات وبيانات الاستطلاعات لتقسيم السكان إلى مجموعات. على سبيل المثال، يمكنك استخدام QUARTILE.INC للبحث عن 25 بالمائة من السكان من ذوي نسبة الدخل الأعلى.', + abstract: 'غالباً ما يتم استخدام الأرباع في المبيعات وبيانات الاستطلاعات لتقسيم السكان إلى مجموعات. على سبيل المثال، يمكنك استخدام QUARTILE.INC للبحث عن 25 بالمائة من السكان من ذوي نسبة الدخل الأعلى.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق خلايا القيم الرقمية الذي تريد حساب قيمته الربعية.' }, + quart: { name: 'quart', detail: 'مطلوب. تشير إلى القيمة التي يجب إرجاعها.' }, + }, + }, + RANK_AVG: { + description: 'إرجاع ترتيب رقم في قائمة أرقام: حجمه بالنسبة إلى القيم الأخرى في القائمة. إذا كانت أكثر من قيمة واحدة لها نفس الترتيب، يتم إرجاع متوسط الرتبة.', + abstract: 'إرجاع ترتيب رقم في قائمة أرقام: حجمه بالنسبة إلى القيم الأخرى في القائمة. إذا كانت أكثر من قيمة واحدة لها نفس الترتيب، يتم إرجاع متوسط الرتبة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد العثور على مرتبته.' }, + ref: { name: 'ref', detail: 'مطلوب. صفيف من قائمة أرقام أو مرجع إليها. يتم تجاهل القيم غير الرقمية في الوسيطة Ref.' }, + order: { name: 'order', detail: 'الاختياري. رقم يحدد كيفية ترتيب الرقم.' }, + }, + }, + RANK_EQ: { + description: 'تُرجع هذه الدالة مرتبة رقم في قائمة من الأرقام. تمثّل مرتبة الرقم حجمه بالنسبة إلى أحجام القيم الأخرى في القائمة؛ عند وجود أكثر من قيمة تحمل المرتبة نفسها، يتم إرجاع متوسط المرتبة.', + abstract: 'تُرجع هذه الدالة مرتبة رقم في قائمة من الأرقام. تمثّل مرتبة الرقم حجمه بالنسبة إلى أحجام القيم الأخرى في القائمة؛ عند وجود أكثر من قيمة تحمل المرتبة نفسها، يتم إرجاع متوسط المرتبة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد العثور على مرتبته.' }, + ref: { name: 'ref', detail: 'مطلوب. صفيف من قائمة أرقام أو مرجع إليها. يتم تجاهل القيم غير الرقمية في المرجع.' }, + order: { name: 'order', detail: 'الاختياري. رقم يحدد كيفية ترتيب الرقم.' }, + }, + }, + RSQ: { + description: 'تُرجع مربع معامل الارتباط العزومي لحواصل الضرب من خلال نقاط البيانات في known_y\'s وknown_x\'s. للحصول على مزيد من المعلومات، انظر الدالة PEARSON‏ . يمكن تفسير قيمة الجذر التربيعي كمعدل التباين في قيم y بالنسبة للتباين في قيم x.', + abstract: 'تُرجع مربع معامل الارتباط العزومي لحواصل الضرب من خلال نقاط البيانات في known_y\'s وknown_x\'s. للحصول على مزيد من المعلومات، انظر الدالة PEARSON‏ . يمكن تفسير قيمة الجذر التربيعي كمعدل التباين في قيم y بالنسبة للتباين في قيم x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. صفيف أو نطاق خلايا لنقاط بيانات رقمية تابعة.' }, + knownXs: { name: 'known_x\'s', detail: 'مطلوب. مجموعة نقاط البيانات المستقلة.' }, + }, + }, + SKEW: { + description: 'تُرجع هذه الدالة تخالف التوزيع. يصف التخالف درجة اللاتماثل لتوزيع حول وسطه. يشير التخالف الموجب إلى توزيع مع طرف غير متماثل يمتد باتجاه المزيد من القيم الموجبة. ويشير التخالف السالب إلى توزيع مع طرف غير متماثل يمتد باتجاه المزيد من القيم السالبة.', + abstract: 'تُرجع هذه الدالة تخالف التوزيع. يصف التخالف درجة اللاتماثل لتوزيع حول وسطه. يشير التخالف الموجب إلى توزيع مع طرف غير متماثل يمتد باتجاه المزيد من القيم الموجبة. ويشير التخالف السالب إلى توزيع مع طرف غير متماثل يمتد باتجاه المزيد من القيم السالبة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي تريد احتساب التخالف لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'Number1 مطلوب، والأرقام اللاحقة اختيارية. الوسيطات من 1 إلى 255 التي تريد احتساب التخالف لها. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + SKEW_P: { + description: 'تُرجع هذه الدالة تخالف توزيع استناداً إلى محتوى: وصف لدرجة اللا تماثل لتوزيع حول وسطه.', + abstract: 'تُرجع هذه الدالة تخالف توزيع استناداً إلى محتوى: وصف لدرجة اللا تماثل لتوزيع حول وسطه.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'الرقم الأول أو مرجع الخلية أو النطاق الذي تريد حساب الالتواء له.' }, + number2: { name: 'number2', detail: 'أرقام أو مراجع خلايا أو نطاقات إضافية تريد حساب الالتواء لها، بحد أقصى 255.' }, + }, + }, + SLOPE: { + description: 'تُرجع هذه الدالة ميل الانحدار الخطي عبر نقاط البيانات في known_y\'s وknown_x\'s. الميل هو المسافة العمودية المقسومة على المسافة الأفقية بين أي نقطتين على الخط، وهو معدل التغيير على طول الانحدار الخطي.', + abstract: 'تُرجع هذه الدالة ميل الانحدار الخطي عبر نقاط البيانات في known_y\'s وknown_x\'s. الميل هو المسافة العمودية المقسومة على المسافة الأفقية بين أي نقطتين على الخط، وهو معدل التغيير على طول الانحدار الخطي.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. صفيف أو نطاق خلايا لنقاط بيانات رقمية تابعة.' }, + knownXs: { name: 'known_x\'s', detail: 'مطلوب. مجموعة نقاط البيانات المستقلة.' }, + }, + }, + SMALL: { + description: 'تُرجع هذه الدالة أصغر قيمة من القيم بالموضع K في مجموعة بيانات. استخدم هذه الدالة لإرجاع القيم بواسطة حالة نسبية محددة في مجموعة البيانات.', + abstract: 'تُرجع هذه الدالة أصغر قيمة من القيم بالموضع K في مجموعة بيانات. استخدم هذه الدالة لإرجاع القيم بواسطة حالة نسبية محددة في مجموعة البيانات.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. صفيف أو نطاق بيانات رقمية تريد تحديد قيمته الصغرى بالموضع K.' }, + k: { name: 'k', detail: 'مطلوب. الموضع (من الأصغر) في الصفيف أو نطاق البيانات الذي يجب إرجاعه.' }, + }, + }, + STANDARDIZE: { + description: 'تُرجع هذه الدالة قيمة مسوّاة من توزيع يتميّز بالوسط والانحراف المعياري.', + abstract: 'تُرجع هذه الدالة قيمة مسوّاة من توزيع يتميّز بالوسط والانحراف المعياري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. وهي القيمة التي تريد تسويتها.' }, + mean: { name: 'mean', detail: 'مطلوب. الوسط الحسابي للتوزيع.' }, + standardDev: { name: 'standard_dev', detail: 'مطلوب. وهي الانحراف المعياري للتوزيع.' }, + }, + }, + STDEV_P: { + description: 'إن الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'إن الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 254 التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + STDEV_S: { + description: 'الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 254 التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + STDEVA: { + description: 'تقدّر هذه الدالة الانحراف المعياري استناداً إلى عينة. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'تقدّر هذه الدالة الانحراف المعياري استناداً إلى عينة. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. القيم من 1 إلى 255 التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + value2: { name: 'value2', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. القيم من 1 إلى 255 التي تطابق عينة من المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + STDEVPA: { + description: 'تحسب هذه الدالة الانحراف المعياري استناداً إلى المحتوى بأكمله المحدد كوسيطات، بما في ذلك النص والقيم المنطقية. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + abstract: 'تحسب هذه الدالة الانحراف المعياري استناداً إلى المحتوى بأكمله المحدد كوسيطات، بما في ذلك النص والقيم المنطقية. الانحراف المعياري هو مقياس مدى بُعد القيم عن القيمة المتوسطة (الوسط).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. القيم من 1 إلى 255 التي تطابق المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + value2: { name: 'value2', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. القيم من 1 إلى 255 التي تطابق المحتوى. يمكنك أيضاً استخدام صفيف مفرد أو مرجع لأحد الصفائف بدلاً من الوسيطات المفصولة بفواصل.' }, + }, + }, + STEYX: { + description: 'تُرجع هذه الدالة الخطأ القياسي لقيمة y المتوقعة لكل قيمة x في خط الانحدار. الخطأ القياسي عبارة عن مقياس لمقدار الخطأ في توقع قيمة y لقيمة x فردية.', + abstract: 'تُرجع هذه الدالة الخطأ القياسي لقيمة y المتوقعة لكل قيمة x في خط الانحدار. الخطأ القياسي عبارة عن مقياس لمقدار الخطأ في توقع قيمة y لقيمة x فردية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مطلوب. صفيف أو نطاق نقاط بيانات تابعة.' }, + knownXs: { name: 'known_x\'s', detail: 'مطلوب. صفيف أو نطاق نقاط بيانات مستقلة.' }, + }, + }, + T_DIST: { + description: 'إرجاع توزيع t للطالب ذي الطرف الأيسر. يتم استخدام توزيع t في الاختبار الفرضي لمجموعات صغيرة من عينات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + abstract: 'إرجاع توزيع t للطالب ذي الطرف الأيسر. يتم استخدام توزيع t في الاختبار الفرضي لمجموعات صغيرة من عينات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة الرقمية التي يتم تقييم التوزيع عندها.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد صحيح يشير إلى عدد درجات الحرية.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. القيمة المنطقية التي تحدد شكل الدالة. إذا كانت قيمة الوسيطة Cumulative تساوي TRUE، فتُرجع الدالة T.DIST دالة التوزيع التراكمي؛ وإذا كانت قيمتها FALSE، فتُرجع دالة كثافة الاحتمال.' }, + }, + }, + T_DIST_2T: { + description: 'ترجع احتمال توزيع t للطالب (ثنائي الطرف).', + abstract: 'ترجع احتمال توزيع t للطالب (ثنائي الطرف).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'القيمة العددية التي تريد تقييم التوزيع عندها.' }, + degFreedom: { name: 'degFreedom', detail: 'عدد صحيح يحدد عدد درجات الحرية.' }, + }, + }, + T_DIST_RT: { + description: 'يتم استخدام توزيع t في الاختبار الفرضي لمجموعات صغيرة من عينات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + abstract: 'يتم استخدام توزيع t في الاختبار الفرضي لمجموعات صغيرة من عينات البيانات. استخدم هذه الدالة بدلاً من جدول القيم الهامة لتوزيع t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة الرقمية التي يتم تقييم التوزيع عندها.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد صحيح يشير إلى عدد درجات الحرية.' }, + }, + }, + T_INV: { + description: 'تُرجع هذه الدالة عكس توزيع t للطالب ذي الطرف الأيسر.', + abstract: 'تُرجع هذه الدالة عكس توزيع t للطالب ذي الطرف الأيسر.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بتوزيع t للطالب.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد درجات الحرية التي تميز التوزيع.' }, + }, + }, + T_INV_2T: { + description: 'إرجاع عكس توزيع t للطالب ثنائي الطرف.', + abstract: 'إرجاع عكس توزيع t للطالب ثنائي الطرف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'مطلوب. الاحتمال المقترن بتوزيع t للطالب.' }, + degFreedom: { name: 'degFreedom', detail: 'مطلوب. عدد درجات الحرية التي تميز التوزيع.' }, + }, + }, + T_TEST: { + description: 'تُرجع هذه الدالة الاحتمال المقترن باختبار t للطالب. استخدم T.TEST لتحديد ما إذا كان من المحتمل وجود عينتين من محتويين مماثلين أساسيين لهما الوسط نفسه.', + abstract: 'تُرجع هذه الدالة الاحتمال المقترن باختبار t للطالب. استخدم T.TEST لتحديد ما إذا كان من المحتمل وجود عينتين من محتويين مماثلين أساسيين لهما الوسط نفسه.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'مطلوب. مجموعة البيانات الأولى.' }, + array2: { name: 'array2', detail: 'مطلوب. مجموعة البيانات الثانية.' }, + tails: { name: 'tails', detail: 'مطلوب. تحدد هذه الوسيطة عدد أطراف التوزيع. إذا كانت قيمة الأطراف = 1، فإن الدالة T.TEST تستخدم التوزيع وحيد الطرف. إذا كانت قيمة الأطراف = 2، فإن الدالة T.TEST تستخدم التوزيع ثنائي الطرف.' }, + type: { name: 'type', detail: 'مطلوب. نوع اختبار t الذي يجب تأديته.' }, + }, + }, + TREND: { + description: 'ترجع الدالة TREND القيم على طول اتجاه خطي. وهو يلائم خطا مستقيما (باستخدام أسلوب المربعات الأقل) مع known_y الصفيف known_x. ترجع الدالة TREND قيم y على طول هذا السطر لصفيف new_x الذي تحدده.', + abstract: 'ترجع الدالة TREND القيم على طول اتجاه خطي. وهو يلائم خطا مستقيما (باستخدام أسلوب المربعات الأقل) مع known_y الصفيف known_x. ترجع الدالة TREND قيم y على طول هذا السطر لصفيف new_x الذي تحدده.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'مجموعة قيم y التي تعرفها بالفعل في العلاقة y = mx + b إذا كان صفيف قيم known_y\'s موجوداً في عمود مفرد، فيتم عندئذٍ تفسير كل عمود من قيم known_x\'s كمتغير منفصل. إذا كان صفيف قيم known_y\'s موجوداً في صف مفرد، فيتم عندئذٍ تفسير كل صف من قيم known_x\'s كمتغير منفصل.' }, + knownXs: { name: 'known_x\'s', detail: 'مجموعة اختيارية من قيم x التي قد تعرفها بالفعل في العلاقة y = mx + b يمكن لصفيف قيم known_x\'s أن يتضمّن مجموعة أو أكثر من المتغيرات. إذا تم استخدام متغير واحد فقط، فيمكن لقيم known_y\'s وknown_x\'s أن تكون نطاقات من أي شكل، طالما أنها ذات أبعاد متساوية. إذا تم استخدام أكثر من متغير واحد، فيجب أن تكون قيم known_y\'s عبارة عن خط متجه (أي، نطاق بارتفاع صف واحد أو بعرض عمود واحد). إذا تم تجاهل قيم known_x\'s، فسيتم افتراض أنها الصفيف {...,1,2,3} بالحجم نفسه لقيم known_y\'s.' }, + newXs: { name: 'new_x\'s', detail: 'قيم x الجديدة التي تريد أن ترجع الدالة TREND قيم y المقابلة لها يجب أن تتضمن قيم New_x\'s عموداً (أو صفاً) لكل متغير مستقل، تماماً مثلما تفعل قيم known_x\'s. وبالتالي، إذا كانت قيم known_y\'s موجودة في عمود واحد، يجب أن يكون عدد الأعمدة في known_x\'s وnew_x\'s متساوياً. إذا كانت قيم known_y\'s موجودة في صف واحد، يجب أن يكون عدد الصفوف في known_x\'s وnew_x\'s متساوياً. إذا تم حذف قيم new_x\'s، فسيتم افتراض أنها مماثلة لقيم known_x\'s. إذا تم تجاهل كل من قيم known_x\'s وnew_x\'s، فسيتم افتراض أنها الصفيف {3،2،1،...} بالحجم نفسه لقيم known_y\'s.' }, + constb: { name: 'const', detail: 'قيمة منطقية تحدد ما إذا كان يجب فرض الثابت b على يساوي 0 إذا كانت قيمة const تساوي TRUE أو إذا تم حذفها، يتم حساب b بالشكل المعتاد. إذا كانت قيمة const تساوي FALSE، يتم تعيين b ليساوي 0 (صفر) ويتم ضبط قيم m للحصول على y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'تُرجع هذه الدالة وسط الجزء الداخلي من مجموعة بيانات. تحسب TRIMMEAN الوسط المأخوذ باستبعاد نسبة مئوية من نقاط البيانات من أطراف عليا وسفلى من مجموعة بيانات. يمكنك استخدام هذه الدالة عندما تريد استبعاد بيانات بعيدة عن تحليلك الخاص.', + abstract: 'تُرجع هذه الدالة وسط الجزء الداخلي من مجموعة بيانات. تحسب TRIMMEAN الوسط المأخوذ باستبعاد نسبة مئوية من نقاط البيانات من أطراف عليا وسفلى من مجموعة بيانات. يمكنك استخدام هذه الدالة عندما تريد استبعاد بيانات بعيدة عن تحليلك الخاص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. نطاق أو صفيف من القيم تريد اقتطاعه ومعرفة معدله.' }, + percent: { name: 'percent', detail: 'مطلوب. العدد الكسري لنقاط البيانات الذي يتم استبعاده من الحسابات. على سبيل المثال، إذا كانت قيمة وسيطة percent = 0.2، يتم اقتطاع 4 نقاط من مجموعة بيانات ذات 20 نقطة (20 × 0.2): 2 من أعلى المجموعة و2 من أسفلها.' }, + }, + }, + VAR_P: { + description: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله (تتجاهل القيم المنطقية والنص في المحتوى).', + abstract: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله (تتجاهل القيم المنطقية والنص في المحتوى).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 254 التي تطابق عينة من المحتوى.' }, + }, + }, + VAR_S: { + description: 'تقدّر هذه الدالة التباين استناداً إلى عينة (تتجاهل القيم المنطقية والنص في العينة).', + abstract: 'تقدّر هذه الدالة التباين استناداً إلى عينة (تتجاهل القيم المنطقية والنص في العينة).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'مطلوب. وسيطة الرقم الأول التي تطابق عينة من المحتوى.' }, + number2: { name: 'number2', detail: 'الاختياري. وسيطات الأرقام من 2 حتى 254 التي تطابق عينة من المحتوى.' }, + }, + }, + VARA: { + description: 'تقوم هذه الدالة بتقدير التباين استناداً إلى عينة.', + abstract: 'تقوم هذه الدالة بتقدير التباين استناداً إلى عينة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. وسيطات القيم من 1 حتى 255 التي تطابق عينة من المحتوى.' }, + value2: { name: 'value2', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. وسيطات القيم من 1 حتى 255 التي تطابق عينة من المحتوى.' }, + }, + }, + VARPA: { + description: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله.', + abstract: 'تحسب هذه الدالة التباين استناداً إلى المحتوى بأكمله.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. وسيطات القيم من 1 حتى 255 التي تطابق محتوى.' }, + value2: { name: 'value2', detail: 'Value1 مطلوب، والقيم اللاحقة اختيارية. وسيطات القيم من 1 حتى 255 التي تطابق محتوى.' }, + }, + }, + WEIBULL_DIST: { + description: 'تُرجع هذه الدالة توزيع Weibull. استخدم هذا التوزيع في تحليل ثبات النظام، كحساب متوسط وقت حدوث فشل في أحد الأجهزة.', + abstract: 'تُرجع هذه الدالة توزيع Weibull. استخدم هذا التوزيع في تحليل ثبات النظام، كحساب متوسط وقت حدوث فشل في أحد الأجهزة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'مطلوبة. القيمة التي يتم تقييم الدالة إليها.' }, + alpha: { name: 'alpha', detail: 'مطلوب. معلمة للتوزيع.' }, + beta: { name: 'beta', detail: 'مطلوب. معلمة للتوزيع.' }, + cumulative: { name: 'cumulative', detail: 'مطلوب. تحدد هذه الوسيطة شكل الدالة.' }, + }, + }, + Z_TEST: { + description: 'تُرجع قيمة الاحتمال أحادية الطرف لاختبار Z.', + abstract: 'تُرجع قيمة الاحتمال أحادية الطرف لاختبار Z.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'مطلوب. الصفيف أو نطاق البيانات لاختبار x بالمقابلة معه.' }, + x: { name: 'x', detail: 'مطلوب. القيمة التي يجب اختبارها.' }, + sigma: { name: 'sigma', detail: 'الاختياري. الانحراف المعياري للمحتوى (معروف). في حالة حذفها، يتم استخدام الانحراف المعياري للعينة.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/statistical/ca-ES.ts index 60c7c5059c..32f0b33f35 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/ca-es/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/ca-es/excel/functions/average-function', }, ], functionParameter: { @@ -52,19 +52,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: 'Troba la mitjana ponderada d\'un conjunt de valors, donats els valors i les ponderacions corresponents.', - abstract: 'Troba la mitjana ponderada d\'un conjunt de valors, donats els valors i les ponderacions corresponents.', + description: 'La funció AVERAGE.WEIGHTED troba la mitjana ponderada d\'un conjunt de valors, tenint en compte els valors i les ponderacions corresponents.', + abstract: 'La funció AVERAGE.WEIGHTED troba la mitjana ponderada d\'un conjunt de valors, tenint en compte els valors i les ponderacions corresponents.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/9084098?hl=ca&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=ca', }, ], functionParameter: { - values: { name: 'valors', detail: 'Els valors per calcular la mitjana.' }, - weights: { name: 'ponderacions', detail: 'La llista de ponderacions corresponents a aplicar.' }, - additionalValues: { name: 'valors_addicionals', detail: 'Altres valors per calcular la mitjana.' }, - additionalWeights: { name: 'ponderacions_addicionals', detail: 'Altres ponderacions a aplicar.' }, + values: { name: 'valors', detail: 'Valors de què es calcula la mitjana. Pot fer referència a un interval de cel·les o pot contenir els valors mateixos.' }, + weights: { name: 'ponderacions', detail: 'Llista de ponderacions corresponent que cal aplicar. Pot fer referència a un interval de cel·les o pot contenir les ponderacions mateixes. Les ponderacions no poden ser negatives, però sí que poden ser zero. Almenys una de les ponderacions ha de ser positiva. Si utilitzeu un interval de cel·les, ha de tenir el mateix nombre de files i de columnes que l\'interval de valors.' }, + additionalValues: { name: 'valors_addicionals', detail: 'Valors extra de què es calcula la mitjana. Els valors addicionals són opcionals.' }, + additionalWeights: { name: 'ponderacions_addicionals', detail: 'Ponderacions extra que cal aplicar. Les ponderacions addicionals són opcionals, però cada valor_addicional ha d\'anar seguit d\'exactament una ponderació_addicional .' }, }, }, AVERAGEA: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/ca-es/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/ca-es/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/ca-es/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/ca-es/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/ca-es/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/ca-es/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/ca-es/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/ca-es/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/ca-es/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/ca-es/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/ca-es/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/ca-es/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/ca-es/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/ca-es/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/ca-es/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/ca-es/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/ca-es/excel/functions/count-function', }, ], functionParameter: { @@ -343,17 +343,17 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/ca-es/excel/functions/counta-function', }, ], functionParameter: { - number1: { + value1: { name: 'valor1', - detail: 'El primer argument que representa els valors que voleu comptar.', + detail: 'El primer nombre, referència de cel·la o rang del qual voleu la mitjana.', }, - number2: { + value2: { name: 'valor2', - detail: 'Arguments addicionals que representen els valors que voleu comptar, fins a un màxim de 255 arguments.', + detail: 'Nombres addicionals, referències de cel·la o rangs dels quals voleu la mitjana, fins a un màxim de 255.', }, }, }, @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/ca-es/excel/functions/countblank-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/ca-es/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/ca-es/excel/functions/countifs-function', }, ], functionParameter: { @@ -406,7 +406,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/ca-es/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -420,7 +420,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ca-es/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -434,7 +434,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/ca-es/excel/functions/devsq-function', }, ], functionParameter: { @@ -448,7 +448,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/ca-es/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -463,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/ca-es/excel/functions/f-dist-function', }, ], functionParameter: { @@ -479,7 +479,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/ca-es/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -494,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/ca-es/excel/functions/f-inv-function', }, ], functionParameter: { @@ -509,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/ca-es/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -524,7 +524,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/ca-es/excel/functions/f-test-function', }, ], functionParameter: { @@ -538,7 +538,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/ca-es/excel/functions/fisher-function', }, ], functionParameter: { @@ -551,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/ca-es/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -564,7 +564,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -579,12 +579,16 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + targetDate: { name: 'Data objectiu', detail: 'El punt de dades per al qual voleu predir un valor.' }, + values: { name: 'Valors', detail: 'Els valors històrics utilitzats per a la previsió.' }, + timeline: { name: 'Cronologia', detail: 'Un interval o una matriu independent de dates o hores numèriques amb un pas constant.' }, + seasonality: { name: 'Estacionalitat', detail: 'Opcional. Longitud estacional; 1 per a detecció automàtica i 0 sense estacionalitat.' }, + dataCompletion: { name: 'Compleció de dades', detail: 'Opcional. Feu servir 1 per interpolar els punts que falten o 0 per tractar-los com a zero.' }, + aggregation: { name: 'Agregació', detail: 'Opcional. Un valor de l’1 al 7 que especifica com agregar marques de temps duplicades.' }, }, }, FORECAST_ETS_CONFINT: { @@ -593,12 +597,17 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + targetDate: { name: 'Data objectiu', detail: 'El punt de dades per al qual voleu predir un valor.' }, + values: { name: 'Valors', detail: 'Els valors històrics utilitzats per a la previsió.' }, + timeline: { name: 'Cronologia', detail: 'Un interval o una matriu independent de dates o hores numèriques amb un pas constant.' }, + confidenceLevel: { name: 'Nivell de confiança', detail: 'Opcional. Un nombre entre 0 i 1; el valor per defecte és 0,95.' }, + seasonality: { name: 'Estacionalitat', detail: 'Opcional. Longitud estacional; 1 per a detecció automàtica i 0 sense estacionalitat.' }, + dataCompletion: { name: 'Compleció de dades', detail: 'Opcional. Feu servir 1 per interpolar els punts que falten o 0 per tractar-los com a zero.' }, + aggregation: { name: 'Agregació', detail: 'Opcional. Un valor de l’1 al 7 que especifica com agregar marques de temps duplicades.' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -607,12 +616,14 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + values: { name: 'Valors', detail: 'Els valors històrics utilitzats per a la previsió.' }, + timeline: { name: 'Cronologia', detail: 'Un interval o una matriu independent de dates o hores numèriques amb un pas constant.' }, + dataCompletion: { name: 'Compleció de dades', detail: 'Opcional. Feu servir 1 per interpolar els punts que falten o 0 per tractar-los com a zero.' }, + aggregation: { name: 'Agregació', detail: 'Opcional. Un valor de l’1 al 7 que especifica com agregar marques de temps duplicades.' }, }, }, FORECAST_ETS_STAT: { @@ -621,12 +632,16 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + values: { name: 'Valors', detail: 'Els valors històrics utilitzats per a la previsió.' }, + timeline: { name: 'Cronologia', detail: 'Un interval o una matriu independent de dates o hores numèriques amb un pas constant.' }, + statisticType: { name: 'Tipus d’estadística', detail: 'Un valor de l’1 al 8 que especifica l’estadística de previsió que cal retornar.' }, + seasonality: { name: 'Estacionalitat', detail: 'Opcional. Longitud estacional; 1 per a detecció automàtica i 0 sense estacionalitat.' }, + dataCompletion: { name: 'Compleció de dades', detail: 'Opcional. Feu servir 1 per interpolar els punts que falten o 0 per tractar-los com a zero.' }, + aggregation: { name: 'Agregació', detail: 'Opcional. Un valor de l’1 al 7 que especifica com agregar marques de temps duplicades.' }, }, }, FORECAST_LINEAR: { @@ -635,7 +650,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ca-es/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -650,7 +665,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/ca-es/excel/functions/frequency-function', }, ], functionParameter: { @@ -664,7 +679,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/ca-es/excel/functions/gamma-function', }, ], functionParameter: { @@ -677,7 +692,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/ca-es/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -693,7 +708,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/ca-es/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -708,7 +723,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/ca-es/excel/functions/gammaln-function', }, ], functionParameter: { @@ -721,7 +736,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/ca-es/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -734,7 +749,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/ca-es/excel/functions/gauss-function', }, ], functionParameter: { @@ -747,7 +762,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/ca-es/excel/functions/geomean-function', }, ], functionParameter: { @@ -761,7 +776,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/ca-es/excel/functions/growth-function', }, ], functionParameter: { @@ -777,7 +792,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/ca-es/excel/functions/harmean-function', }, ], functionParameter: { @@ -791,7 +806,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/ca-es/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -808,7 +823,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/ca-es/excel/functions/intercept-function', }, ], functionParameter: { @@ -822,7 +837,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/ca-es/excel/functions/kurt-function', }, ], functionParameter: { @@ -836,7 +851,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/ca-es/excel/functions/large-function', }, ], functionParameter: { @@ -850,7 +865,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/ca-es/excel/functions/linest-function', }, ], functionParameter: { @@ -866,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/ca-es/excel/functions/logest-function', }, ], functionParameter: { @@ -882,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/ca-es/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -898,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/ca-es/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -908,16 +923,16 @@ const locale: typeof enUS = { }, }, MARGINOFERROR: { - description: 'Calcula el marge d\'error a partir d\'un rang de valors i un nivell de confiança.', - abstract: 'Calcula el marge d\'error a partir d\'un rang de valors i un nivell de confiança.', + description: 'Aquesta funció calcula el marge d\'error a partir d\'un interval de valors i d\'un nivell de confiança.', + abstract: 'Aquesta funció calcula el marge d\'error a partir d\'un interval de valors i d\'un nivell de confiança.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/12487850?hl=ca&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=ca', }, ], functionParameter: { - range: { name: 'rang', detail: 'El rang de valors utilitzat per calcular el marge d\'error.' }, + range: { name: 'rang', detail: 'MARGINOFERROR(A1:C3; 0,99)' }, confidence: { name: 'confiança', detail: 'El nivell de confiança desitjat entre (0, 1).' }, }, }, @@ -927,7 +942,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/ca-es/excel/functions/max-function', }, ], functionParameter: { @@ -947,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/ca-es/excel/functions/maxa-function', }, ], functionParameter: { @@ -961,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/ca-es/excel/functions/maxifs-function', }, ], functionParameter: { @@ -978,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/ca-es/excel/functions/median-function', }, ], functionParameter: { @@ -992,7 +1007,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/ca-es/excel/functions/min-function', }, ], functionParameter: { @@ -1012,7 +1027,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/ca-es/excel/functions/mina-function', }, ], functionParameter: { @@ -1026,7 +1041,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/ca-es/excel/functions/minifs-function', }, ], functionParameter: { @@ -1043,7 +1058,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/ca-es/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1057,7 +1072,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/ca-es/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1071,7 +1086,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/ca-es/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1087,7 +1102,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/ca-es/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1103,7 +1118,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/ca-es/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1118,7 +1133,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/ca-es/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1132,7 +1147,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/ca-es/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1145,7 +1160,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/ca-es/excel/functions/pearson-function', }, ], functionParameter: { @@ -1159,7 +1174,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1173,7 +1188,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1187,7 +1202,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1202,7 +1217,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/ca-es/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1217,7 +1232,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/ca-es/excel/functions/permut-function', }, ], functionParameter: { @@ -1231,7 +1246,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/ca-es/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1245,7 +1260,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/ca-es/excel/functions/phi-function', }, ], functionParameter: { @@ -1258,7 +1273,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/ca-es/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1273,7 +1288,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/ca-es/excel/functions/prob-function', }, ], functionParameter: { @@ -1289,7 +1304,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/ca-es/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1303,7 +1318,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/ca-es/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1317,7 +1332,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/ca-es/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1332,7 +1347,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/ca-es/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1347,12 +1362,12 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/ca-es/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'matriu1', detail: 'La matriu o rang de dades dependent.' }, - array2: { name: 'matriu2', detail: 'La matriu o rang de dades independent.' }, + knownYs: { name: 'conegut_y', detail: 'La matriu o rang de dades dependent.' }, + knownXs: { name: 'conegut_x', detail: 'La matriu o rang de dades independent.' }, }, }, SKEW: { @@ -1361,7 +1376,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/ca-es/excel/functions/skew-function', }, ], functionParameter: { @@ -1375,7 +1390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/ca-es/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1389,7 +1404,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/ca-es/excel/functions/slope-function', }, ], functionParameter: { @@ -1403,7 +1418,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/small-function-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/ca-es/excel/functions/small-function', }, ], functionParameter: { @@ -1417,7 +1432,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/ca-es/excel/functions/standardize-function', }, ], functionParameter: { @@ -1432,7 +1447,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1446,7 +1461,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1460,7 +1475,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1474,7 +1489,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/ca-es/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1488,7 +1503,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/ca-es/excel/functions/steyx-function', }, ], functionParameter: { @@ -1502,7 +1517,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1517,7 +1532,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1531,7 +1546,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1545,7 +1560,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1559,7 +1574,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1573,7 +1588,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-test-function', }, ], functionParameter: { @@ -1589,7 +1604,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/ca-es/excel/functions/trend-function', }, ], functionParameter: { @@ -1605,7 +1620,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/ca-es/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1619,7 +1634,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/ca-es/excel/functions/var-p-function', }, ], functionParameter: { @@ -1633,7 +1648,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/ca-es/excel/functions/var-s-function', }, ], functionParameter: { @@ -1647,7 +1662,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/ca-es/excel/functions/vara-function', }, ], functionParameter: { @@ -1661,7 +1676,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/ca-es/excel/functions/varpa-function', }, ], functionParameter: { @@ -1675,7 +1690,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/ca-es/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1691,7 +1706,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/ca-es/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/de-DE.ts b/packages/sheets-formula/src/locale/function-list/statistical/de-DE.ts new file mode 100644 index 0000000000..930786c138 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/de-DE.ts @@ -0,0 +1,1683 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'Gibt die durchschnittliche absolute Abweichung einer Reihe von Merkmalsausprägungen und ihrem Mittelwert zurück. MITTELABW ist ein Maß für die Streuung innerhalb einer Datengruppe.', + abstract: 'Gibt die durchschnittliche absolute Abweichung einer Reihe von Merkmalsausprägungen und ihrem Mittelwert zurück. MITTELABW ist ein Maß für die Streuung innerhalb einer Datengruppe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Durchschnitt der absoluten Abweichungen verwenden möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Durchschnitt der absoluten Abweichungen verwenden möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + AVERAGE: { + description: 'Gibt den Mittelwert (arithmetisches Mittel) der Argumente zurück. Wenn beispielsweise der Bereich A1:A20 Zahlen enthält, gibt die Formel =MITTELWERT(A1:A20) den Mittelwert dieser Zahlen zurück.', + abstract: 'Gibt den Mittelwert (arithmetisches Mittel) der Argumente zurück. Wenn beispielsweise der Bereich A1:A20 Zahlen enthält, gibt die Formel =MITTELWERT(A1:A20) den Mittelwert dieser Zahlen zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Die erste Zahl, der Zellbezug oder der erste Bereich, für den Sie den Durchschnitt verwenden möchten.' }, + number2: { name: 'number2', detail: 'Optional. Bis zu 255 zusätzliche Zahlen, Zellbezüge oder Bereiche, für die Sie den Mittelwert berechnen möchten.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'Die Funktion AVERAGE.WEIGHTED berechnet den gewichteten Mittelwert einer Wertemenge anhand der Werte und ihrer jeweiligen Gewichtungen.', + abstract: 'Die Funktion AVERAGE.WEIGHTED berechnet den gewichteten Mittelwert einer Wertemenge anhand der Werte und ihrer jeweiligen Gewichtungen.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=de', + }, + ], + functionParameter: { + values: { name: 'Werte', detail: 'Die Werte, deren Mittelwert berechnet werden soll. Dies kann ein Zellbereich oder eine Liste von Werten sein.' }, + weights: { name: 'Gewichtungen', detail: 'Die entsprechende Liste der anzuwendenden Gewichtungen. Gewichtungen dürfen null, aber nicht negativ sein; mindestens eine Gewichtung muss positiv sein. Ein Zellbereich muss dieselbe Anzahl von Zeilen und Spalten wie der Wertebereich haben.' }, + additionalValues: { name: 'zusätzliche_Werte', detail: 'Weitere optionale Werte, deren Mittelwert berechnet werden soll.' }, + additionalWeights: { name: 'zusätzliche_Gewichtungen', detail: 'Weitere optionale Gewichtungen. Auf jeden zusätzlichen_Wert muss genau eine zusätzliche_Gewichtung folgen.' }, + }, + }, + AVERAGEA: { + description: 'Berechnet den Mittelwert (arithmetisches Mittel) der Werte in der Liste der Argumente.', + abstract: 'Berechnet den Mittelwert (arithmetisches Mittel) der Werte in der Liste der Argumente.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Zellen, Zellbereiche oder Werte, für die Sie den Durchschnitt verwenden möchten.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Zellen, Zellbereiche oder Werte, für die Sie den Durchschnitt verwenden möchten.' }, + }, + }, + AVERAGEIF: { + description: 'Gibt den Durchschnittswert (arithmetisches Mittel) für alle Zellen eines Bereichs zurück, die einem angegebenen Kriterium entsprechen.', + abstract: 'Gibt den Durchschnittswert (arithmetisches Mittel) für alle Zellen eines Bereichs zurück, die einem angegebenen Kriterium entsprechen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Erforderlich. Der Bereich der Zellen, für die der Mittelwert berechnet werden soll, einschließlich Zahlen, Namen, Arrays oder Bezügen, die Zahlen enthalten.' }, + criteria: { name: 'criteria', detail: 'Erforderlich. Die Kriterien in Form einer Zahl, eines Ausdrucks, eines Zellbezugs oder eines Texts, mit denen definiert wird, für welche Zellen der Mittelwert berechnet werden soll. Kriterien können beispielsweise als 32, "32", ">32", "Äpfel" oder B4 ausgedrückt werden.' }, + averageRange: { name: 'average_range', detail: 'Optional. Der tatsächliche Bereich der Zellen, für die der Mittelwert berechnet wird. Fehlt diese Argument, wird "Bereich" verwendet.' }, + }, + }, + AVERAGEIFS: { + description: 'Gibt den Durchschnittswert (arithmetisches Mittel) aller Zellen zurück, die mehreren Kriterien entsprechen.', + abstract: 'Gibt den Durchschnittswert (arithmetisches Mittel) aller Zellen zurück, die mehreren Kriterien entsprechen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Erforderlich. Der Bereich der Zellen, für die der Mittelwert berechnet werden soll, einschließlich Zahlen, Namen, Arrays oder Bezügen, die Zahlen enthalten.' }, + criteriaRange1: { name: 'criteria_range1', detail: '"Kriterien_Bereich1" ist erforderlich, weitere Kriterienbereiche sind optional. 1 bis 127 Bereiche, für die die zugeordneten Kriterien ausgewertet werden sollen.' }, + criteria1: { name: 'criteria1', detail: 'Criteria1 ist erforderlich, nachfolgende Kriterien sind optional. 1 bis 127 Kriterien in Form einer Zahl, eines Ausdrucks, eines Zellbezugs oder eines Texts, mit denen definiert wird, für welche Zellen der Mittelwert berechnet werden soll. Kriterien können beispielsweise als 32, "32", ">32", "Äpfel" oder B4 ausgedrückt werden.' }, + criteriaRange2: { name: 'criteria_range2', detail: '"Kriterien_Bereich1" ist erforderlich, weitere Kriterienbereiche sind optional. 1 bis 127 Bereiche, für die die zugeordneten Kriterien ausgewertet werden sollen.' }, + criteria2: { name: 'criteria2', detail: 'Criteria1 ist erforderlich, nachfolgende Kriterien sind optional. 1 bis 127 Kriterien in Form einer Zahl, eines Ausdrucks, eines Zellbezugs oder eines Texts, mit denen definiert wird, für welche Zellen der Mittelwert berechnet werden soll. Kriterien können beispielsweise als 32, "32", ">32", "Äpfel" oder B4 ausgedrückt werden.' }, + }, + }, + BETA_DIST: { + description: 'Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + abstract: 'Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, an dem die Funktion im Intervall zwischen A und B ausgewertet werden soll.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, BETA. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + A: { name: 'A', detail: 'Eine untere Grenze des Intervalls für X.' }, + B: { name: 'B', detail: 'Optional. Eine obere Grenze des Intervalls für X.' }, + }, + }, + BETA_INV: { + description: 'Wenn Wahrscheinlichkeit = BETA.VERT(x;...WAHR) ist, dann ist BETA.INV(Wahrsch;...) = x. Die Betaverteilung kann für eine Projektplanung verwendet werden, um ausgehend von einem erwarteten Endtermin und der Streuung den wahrscheinlichen Endtermin zu modellieren.', + abstract: 'Wenn Wahrscheinlichkeit = BETA.VERT(x;...WAHR) ist, dann ist BETA.INV(Wahrsch;...) = x. Die Betaverteilung kann für eine Projektplanung verwendet werden, um ausgehend von einem erwarteten Endtermin und der Streuung den wahrscheinlichen Endtermin zu modellieren.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Betaverteilung gehörende Wahrscheinlichkeit.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung.' }, + A: { name: 'A', detail: 'Eine untere Grenze des Intervalls für X.' }, + B: { name: 'B', detail: 'Optional. Eine obere Grenze des Intervalls für X.' }, + }, + }, + BINOM_DIST: { + description: 'Gibt Wahrscheinlichkeiten einer binomialverteilten Zufallsvariablen zurück. Verwenden Sie BINOM.VERT bei Problemen mit einer festgelegten Anzahl von Tests oder Versuchen, wenn das Ergebnis jedes einzelnen Versuchs entweder Erfolg oder Misserfolg ist, die einzelnen Versuche voneinander unabhängig sind und die Wahrscheinlichkeit des Erfolgs für alle Versuche konstant ist. Mit BINOM.VERT lässt sich beispielsweise die Wahrscheinlichkeit ermitteln, mit der zwei von drei Neugeborenen männlich sind.', + abstract: 'Gibt Wahrscheinlichkeiten einer binomialverteilten Zufallsvariablen zurück. Verwenden Sie BINOM.VERT bei Problemen mit einer festgelegten Anzahl von Tests oder Versuchen, wenn das Ergebnis jedes einzelnen Versuchs entweder Erfolg oder Misserfolg ist, die einzelnen Versuche voneinander unabhängig sind und die Wahrscheinlichkeit des Erfolgs für alle Versuche konstant ist. Mit BINOM.VERT lässt sich beispielsweise die Wahrscheinlichkeit ermitteln, mit der zwei von drei Neugeborenen männlich sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Erforderlich. Die Anzahl der Erfolge in einer Versuchsreihe.' }, + trials: { name: 'trials', detail: 'Erforderlich. Die Anzahl der voneinander unabhängigen Versuche.' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit eines Erfolgs für jeden Versuch.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, dann BINOM. DIST gibt die kumulierte Verteilungsfunktion zurück, also die Wahrscheinlichkeit, dass es höchstens number_s Erfolge gibt; False gibt die Wahrscheinlichkeits-Massenfunktion zurück, d. h. die Wahrscheinlichkeit, dass es number_s Erfolge gibt.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Gibt die Erfolgswahrscheinlichkeit eines Versuchsergebnisses als Binomialverteilung zurück.', + abstract: 'Gibt die Erfolgswahrscheinlichkeit eines Versuchsergebnisses als Binomialverteilung zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Erforderlich. Die Anzahl von unabhängigen Versuchen. Muss größer gleich 0 sein.' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit eines Erfolgs in jedem Versuch. Muss größer gleich 0 und kleiner gleich 1 sein.' }, + numberS: { name: 'number_s', detail: 'Erforderlich. Die Anzahl von Erfolgen in Versuchen. Muss größer gleich 0 und kleiner gleich "Versuche" sein.' }, + numberS2: { name: 'number_s2', detail: 'Optional. Gibt bei Angabe die Wahrscheinlichkeit zurück, dass die Anzahl der erfolgreichen Testversionen zwischen Number_s und number_s2 liegt. Muss größer oder gleich Number_s und kleiner oder gleich Testversionen sein.' }, + }, + }, + BINOM_INV: { + description: 'Gibt den kleinsten Wert zurück, für den die kumulierten Wahrscheinlichkeiten der Binomialverteilung größer oder gleich einer Grenzwahrscheinlichkeit sind.', + abstract: 'Gibt den kleinsten Wert zurück, für den die kumulierten Wahrscheinlichkeiten der Binomialverteilung größer oder gleich einer Grenzwahrscheinlichkeit sind.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Erforderlich. Die Anzahl der Bernoulliexperimente.' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit eines Erfolgs für jeden Versuch.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Die Grenzwahrscheinlichkeit.' }, + }, + }, + CHISQ_DIST: { + description: 'Gibt die Chi-Quadrat-Verteilung zurück.', + abstract: 'Gibt die Chi-Quadrat-Verteilung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit berechnet werden soll.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, CHISQ. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'Die χ2-Verteilung wird bei einem χ2-Test benötigt. Mit dem χ2-Test lassen sich beobachtete und erwartete Werte miteinander vergleichen. So wird beispielsweise in einem genetischen Experiment die Hypothese aufgestellt, dass die nächste Pflanzengeneration eine bestimmte Farbzusammensetzung aufweist. Durch Vergleich der beobachteten mit den erwarteten Ergebnissen lässt sich die Hypothese validieren.', + abstract: 'Die χ2-Verteilung wird bei einem χ2-Test benötigt. Mit dem χ2-Test lassen sich beobachtete und erwartete Werte miteinander vergleichen. So wird beispielsweise in einem genetischen Experiment die Hypothese aufgestellt, dass die nächste Pflanzengeneration eine bestimmte Farbzusammensetzung aufweist. Durch Vergleich der beobachteten mit den erwarteten Ergebnissen lässt sich die Hypothese validieren.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit berechnet werden soll.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + }, + }, + CHISQ_INV: { + description: 'Gibt die Werte der Verteilungsfunktion einer Chi-Quadrat-verteilten Zufallsvariablen zurück. Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + abstract: 'Gibt die Werte der Verteilungsfunktion einer Chi-Quadrat-verteilten Zufallsvariablen zurück. Die Betaverteilung wird i. d. R. verwendet, um die Streuung bei mehreren Stichproben zu bestimmten Vorgängen zu untersuchen. Beispielsweise kann prozentual ermittelt werden, wie viel Zeit am Tag Personen vor dem Fernsehgerät verbringen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Chi-Quadrat-Verteilung gehörende Wahrscheinlichkeit.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Ist Wahrsch = CHIQU.VERT.RE(x;...) gegeben, dann gilt CHIQU.INV.RE(Wahrsch;...) = x. Mithilfe dieser Funktion lassen sich zum Zweck der Validierung von Hypothesen beobachtete und erwartete Ergebnisse miteinander vergleichen.', + abstract: 'Ist Wahrsch = CHIQU.VERT.RE(x;...) gegeben, dann gilt CHIQU.INV.RE(Wahrsch;...) = x. Mithilfe dieser Funktion lassen sich zum Zweck der Validierung von Hypothesen beobachtete und erwartete Ergebnisse miteinander vergleichen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Chi-Quadrat-Verteilung gehörende Wahrscheinlichkeit.' }, + degFreedom: { name: 'deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade.' }, + }, + }, + CHISQ_TEST: { + description: 'Liefert die Teststatistik eines Unabhängigkeitstests. CHIQU.TEST gibt den Wert der chi-quadrierten (χ2)-Verteilung für die Teststatistik mit den entsprechenden Freiheitsgraden zurück. Mithilfe von χ2-Tests können Sie feststellen, ob in Experimenten die Ergebnisse bestätigt werden, die aufgrund von Hypothesen erwartet wurden.', + abstract: 'Liefert die Teststatistik eines Unabhängigkeitstests. CHIQU.TEST gibt den Wert der chi-quadrierten (χ2)-Verteilung für die Teststatistik mit den entsprechenden Freiheitsgraden zurück. Mithilfe von χ2-Tests können Sie feststellen, ob in Experimenten die Ergebnisse bestätigt werden, die aufgrund von Hypothesen erwartet wurden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Erforderlich. Der Bereich beobachteter Daten, mit dem Sie die erwarteten Werte testen möchten.' }, + expectedRange: { name: 'expected_range', detail: 'Erforderlich. Der Bereich erwarteter Beobachtungen, die sich aus der Division der miteinander multiplizierten Rangsummen und der Gesamtsumme berechnen lassen.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'Das Konfidenzintervall ist ein Wertebereich. Ihr Stichprobenmittelwert x befindet sich in der Mitte dieses Bereichs, und der Bereich ist x ± CONFIDENCE.NORM. Wenn z. B. x der Stichprobenmittelwert der Lieferzeiten für Produkte ist, die per Post bestellt wurden, ± X KONFIDENZ. NORM ist ein Bereich von Bevölkerungsmitteln. Bei jedem Populationsmittel μ0 in diesem Bereich ist die Wahrscheinlichkeit, einen Probenmittelwert zu erhalten, der weiter von μ0 als x liegt, größer als alpha; für jeden Populationsmittelwert μ0, der sich nicht in diesem Bereich befindet, ist die Wahrscheinlichkeit, einen Stichprobenmittelwert zu erhalten, der weiter von μ0 als x liegt, kleiner als alpha. Anders ausgedrückt: Angenommen, wir verwenden x, standard_dev und size, um einen zweiseitigen Test auf Signifikanzebene alpha der Hypothese zu erstellen, dass der Grundgesamtheitsmittel μ0 ist. Dann werden wir diese Hypothese nicht ablehnen, wenn μ0 im Konfidenzintervall liegt, und diese Hypothese wird abgelehnt, wenn μ0 nicht im Konfidenzintervall liegt. Das Konfidenzintervall lässt nicht zu, dass die Wahrscheinlichkeit 1 – Alpha besteht, dass das nächste Paket eine Lieferzeit im Konfidenzintervall nimmt.', + abstract: 'Das Konfidenzintervall ist ein Wertebereich. Ihr Stichprobenmittelwert x befindet sich in der Mitte dieses Bereichs, und der Bereich ist x ± CONFIDENCE.NORM. Wenn z. B. x der Stichprobenmittelwert der Lieferzeiten für Produkte ist, die per Post bestellt wurden, ± X KONFIDENZ. NORM ist ein Bereich von Bevölkerungsmitteln. Bei jedem Populationsmittel μ0 in diesem Bereich ist die Wahrscheinlichkeit, einen Probenmittelwert zu erhalten, der weiter von μ0 als x liegt, größer als alpha; für jeden Populationsmittelwert μ0, der sich nicht in diesem Bereich befindet, ist die Wahrscheinlichkeit, einen Stichprobenmittelwert zu erhalten, der weiter von μ0 als x liegt, kleiner als alpha. Anders ausgedrückt: Angenommen, wir verwenden x, standard_dev und size, um einen zweiseitigen Test auf Signifikanzebene alpha der Hypothese zu erstellen, dass der Grundgesamtheitsmittel μ0 ist. Dann werden wir diese Hypothese nicht ablehnen, wenn μ0 im Konfidenzintervall liegt, und diese Hypothese wird abgelehnt, wenn μ0 nicht im Konfidenzintervall liegt. Das Konfidenzintervall lässt nicht zu, dass die Wahrscheinlichkeit 1 – Alpha besteht, dass das nächste Paket eine Lieferzeit im Konfidenzintervall nimmt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Erforderlich. Die Irrtumswahrscheinlichkeit bei der Berechnung des Konfidenzintervalls. Das Konfidenzintervall ist gleich 100*(1 - Alpha)%, was bedeutet, dass ein Wert für Alpha von 0,05 einem Konfidenzniveau von 95% entspricht.' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die als bekannt angenommene Standardabweichung der Grundgesamtheit.' }, + size: { name: 'size', detail: 'Erforderlich. Der Umfang der Stichprobe.' }, + }, + }, + CONFIDENCE_T: { + description: 'Gibt das Konfidenzintervall für den Erwartungswert einer Zufallsvariablen zurück, wobei der Studentsche T-Test verwendet wird', + abstract: 'Gibt das Konfidenzintervall für den Erwartungswert einer Zufallsvariablen zurück, wobei der Studentsche T-Test verwendet wird', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Erforderlich. Die Irrtumswahrscheinlichkeit bei der Berechnung des Konfidenzintervalls. Das Konfidenzintervall ist gleich 100*(1 - Alpha)%, was bedeutet, dass ein Wert für Alpha von 0,05 einem Konfidenzniveau von 95% entspricht.' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die als bekannt angenommene Standardabweichung der Grundgesamtheit.' }, + size: { name: 'size', detail: 'Erforderlich. Der Umfang der Stichprobe.' }, + }, + }, + CORREL: { + description: 'Die CORREL-Funktion gibt den Korrelationskoeffizient von zwei Zellbereichen zurück. Mithilfe des Korrelationskoeffizienten lässt sich feststellen, ob es eine Beziehung zwischen zwei Eigenschaften gibt. Sie können beispielsweise die Beziehung zwischen der Durchschnittstemperatur eines Orts und dem Einsatz von Klimaanlagen untersuchen.', + abstract: 'Die CORREL-Funktion gibt den Korrelationskoeffizient von zwei Zellbereichen zurück. Mithilfe des Korrelationskoeffizienten lässt sich feststellen, ob es eine Beziehung zwischen zwei Eigenschaften gibt. Sie können beispielsweise die Beziehung zwischen der Durchschnittstemperatur eines Orts und dem Einsatz von Klimaanlagen untersuchen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Ein Zellwertbereich.' }, + array2: { name: 'array2', detail: 'Erforderlich. Ein zweiter Zellwertbereich.' }, + }, + }, + COUNT: { + description: 'Die Funktion ANZAHL zählt die Zellen, die Zahlen enthalten, sowie Zahlen innerhalb der Liste mit Argumenten. Mithilfe der Funktion ANZAHL können Sie die Anzahl der Einträge in einem Zahlenfeld ermitteln, das sich in einem Bereich oder einer Matrix von Zahlen befindet. Sie können beispielsweise die folgende Formel zum Zählen der Zahlen im Bereich A1:A20 eingeben: =ANZAHL(A1:A20) . Wenn in diesem Beispiel fünf der Zellen im Bereich Zahlen enthalten, lautet das Ergebnis 5 .', + abstract: 'Die Funktion ANZAHL zählt die Zellen, die Zahlen enthalten, sowie Zahlen innerhalb der Liste mit Argumenten. Mithilfe der Funktion ANZAHL können Sie die Anzahl der Einträge in einem Zahlenfeld ermitteln, das sich in einem Bereich oder einer Matrix von Zahlen befindet. Sie können beispielsweise die folgende Formel zum Zählen der Zahlen im Bereich A1:A20 eingeben: =ANZAHL(A1:A20) . Wenn in diesem Beispiel fünf der Zellen im Bereich Zahlen enthalten, lautet das Ergebnis 5 .', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Erforderlich. Das erste Element, der Zellbezug oder der Bereich, in dem Zahlen ermittelt werden sollen.' }, + value2: { name: 'value 2', detail: 'Optional. Bis zu 255 zusätzliche Elemente, Zellbezüge oder Bereiche, in denen Zahlen ermittelt werden sollen.' }, + }, + }, + COUNTA: { + description: 'Die FUNKTION COUNTA zählt die Anzahl der Zellen, die in einem Bereich nicht leer sind.', + abstract: 'Die FUNKTION COUNTA zählt die Anzahl der Zellen, die in einem Bereich nicht leer sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Zellen, Zellbereiche oder Werte, für die Sie den Durchschnitt verwenden möchten.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Zellen, Zellbereiche oder Werte, für die Sie den Durchschnitt verwenden möchten.' }, + }, + }, + COUNTBLANK: { + description: 'Verwenden Sie die Funktion COUNTBLANK , eine der Statistischen Funktionen, um die Anzahl leerer Zellen in einem Zellbereich zu zählen.', + abstract: 'Verwenden Sie die Funktion COUNTBLANK , eine der Statistischen Funktionen, um die Anzahl leerer Zellen in einem Zellbereich zu zählen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Erforderlich. Der Bereich, von dem Sie wissen möchten, wie viele seiner Zellen leer sind.' }, + }, + }, + COUNTIF: { + description: 'Verwenden Sie ZÄHLENWENN, eine der statistischen Funktionen , um die Anzahl der Zellen zu zählen, die ein Kriterium erfüllen; beispielsweise, um zu ermitteln, wie oft eine bestimmte Stadt in einer Kundenliste vorkommt.', + abstract: 'Verwenden Sie ZÄHLENWENN, eine der statistischen Funktionen , um die Anzahl der Zellen zu zählen, die ein Kriterium erfüllen; beispielsweise, um zu ermitteln, wie oft eine bestimmte Stadt in einer Kundenliste vorkommt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Die Gruppe von Zellen, die Sie zählen möchten. Bereich kann Zahlen, Arrays, einen benannten Bereich oder Bezüge enthalten, die Zahlen enthalten. Leere Werte und Textwerte werden ignoriert. Informationen zum Markieren von Bereichen auf einem Arbeitsblatt .' }, + criteria: { name: 'criteria', detail: 'Eine Zahl, ein Ausdruck, ein Zellbezug oder eine Textzeichenfolge, durch die bzw. den definiert wird, welche Zellen gezählt werden. Sie können beispielsweise eine Zahl wie 32, einen Vergleich wie ">32", eine Zelle wie B4 oder ein Wort wie "Äpfel" verwenden. Für ZÄHLENWENN kann nur ein einzelnes Suchkriterium angegeben werden. Verwenden Sie ZÄHLENWENNS , wenn Sie mehrere Kriterien angeben möchten.' }, + }, + }, + COUNTIFS: { + description: 'Die FUNKTION ZÄHLENWENNS wendet Kriterien auf Zellen in mehreren Bereichen an und zählt, wie oft alle Kriterien erfüllt sind.', + abstract: 'Die FUNKTION ZÄHLENWENNS wendet Kriterien auf Zellen in mehreren Bereichen an und zählt, wie oft alle Kriterien erfüllt sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Erforderlich. Der erste Bereich, in dem die zugehörigen Kriterien ausgewertet werden sollen.' }, + criteria1: { name: 'criteria1', detail: 'Erforderlich. Die Kriterien in Form einer Zahl, eines Ausdrucks, Zellbezugs oder Texts, mit denen definiert wird, welche Zellen gezählt werden. Kriterien können beispielsweise als 32, ">32", B4, "Äpfel" oder "32" ausgedrückt werden.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Optional. Zusätzliche Bereiche und deren zugehörige Kriterien. Es sind bis zu 127 Bereich/Kriterien-Paare zulässig.' }, + criteria2: { name: 'criteria2', detail: 'Optional. Zusätzliche Bereiche und deren zugehörige Kriterien. Es sind bis zu 127 Bereich/Kriterien-Paare zulässig.' }, + }, + }, + COVARIANCE_P: { + description: 'Gibt die Kovarianz der Grundgesamtheit zurück, den Durchschnitt der Produkte der Abweichungen für jedes Datenpunktpaar in zwei Datasets. Die Kovarianz gibt Auskunft darüber, welcher Zusammenhang zwischen zwei Datengruppen besteht. Beispielsweise können Sie ermitteln, ob ein größeres Einkommen Folge des jeweiligen Ausbindungsgrads ist.', + abstract: 'Gibt die Kovarianz der Grundgesamtheit zurück, den Durchschnitt der Produkte der Abweichungen für jedes Datenpunktpaar in zwei Datasets. Die Kovarianz gibt Auskunft darüber, welcher Zusammenhang zwischen zwei Datengruppen besteht. Beispielsweise können Sie ermitteln, ob ein größeres Einkommen Folge des jeweiligen Ausbindungsgrads ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Der erste Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + array2: { name: 'array2', detail: 'Erforderlich. Der zweite Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + }, + }, + COVARIANCE_S: { + description: 'Gibt die Kovarianz einer Stichprobe zurück, d. h. den Mittelwert der für alle Datenpunktpaare gebildeten Produkte der Abweichungen', + abstract: 'Gibt die Kovarianz einer Stichprobe zurück, d. h. den Mittelwert der für alle Datenpunktpaare gebildeten Produkte der Abweichungen', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Der erste Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + array2: { name: 'array2', detail: 'Erforderlich. Der zweite Zellbereich, dessen Zellen mit ganzen Zahlen belegt sind.' }, + }, + }, + DEVSQ: { + description: 'Gibt die Summe der quadrierten Abweichungen von Datenpunkten von deren Stichprobenmittelwert zurück.', + abstract: 'Gibt die Summe der quadrierten Abweichungen von Datenpunkten von deren Stichprobenmittelwert zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie die Summe der quadratischen Abweichungen berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie die Summe der quadratischen Abweichungen berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + EXPON_DIST: { + description: 'Gibt Wahrscheinlichkeiten einer exponential verteilten Zufallsvariablen zurück. Mithilfe der EXPON.VERT-Funktion lassen sich Zeiträume zwischen Ereignissen modellieren, z. B. wie lange ein Geldautomat für die Ausgabe von Geld benötigt. Beispielsweise können Sie mit EXPON.VERT berechnen, wie wahrscheinlich es ist, dass dieser Vorgang eine Minute dauert.', + abstract: 'Gibt Wahrscheinlichkeiten einer exponential verteilten Zufallsvariablen zurück. Mithilfe der EXPON.VERT-Funktion lassen sich Zeiträume zwischen Ereignissen modellieren, z. B. wie lange ein Geldautomat für die Ausgabe von Geld benötigt. Beispielsweise können Sie mit EXPON.VERT berechnen, wie wahrscheinlich es ist, dass dieser Vorgang eine Minute dauert.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert für die Funktion' }, + lambda: { name: 'lambda', detail: 'Erforderlich. Der übergebene Wert' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der angibt, welche Form der exponentiellen Funktion bereitgestellt werden soll. Wenn kumulativ TRUE ist, EXPON. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + F_DIST: { + description: 'Gibt die F-Wahrscheinlichkeitsverteilung zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Sie können z. B. die Testergebnisse von Männern und Frauen untersuchen, die das Gymnasium betreten, und feststellen, ob sich die Variabilität bei den Frauen von der bei den Männchen unterscheidet.', + abstract: 'Gibt die F-Wahrscheinlichkeitsverteilung zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Sie können z. B. die Testergebnisse von Männern und Frauen untersuchen, die das Gymnasium betreten, und feststellen, ob sich die Variabilität bei den Frauen von der bei den Männchen unterscheidet.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumuliert TRUE ist, gibt F.DIST die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + F_DIST_RT: { + description: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (rechtsseitigen) F-verteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Beispielsweise können Sie die Punktzahlen untersuchen, die Männer und Frauen bei einem Einstellungstest erzielt haben, und ermitteln, ob sich die für die Frauen gefundene Streuung von derjenigen der Männer unterscheidet.', + abstract: 'Gibt Werte der Verteilungsfunktion (1-Alpha) einer (rechtsseitigen) F-verteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie feststellen, ob zwei Datenmengen unterschiedlichen Streuungen unterliegen. Beispielsweise können Sie die Punktzahlen untersuchen, die Männer und Frauen bei einem Einstellungstest erzielt haben, und ermitteln, ob sich die für die Frauen gefundene Streuung von derjenigen der Männer unterscheidet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + }, + }, + F_INV: { + description: 'Gibt Quantile der F-Verteilung zurück. Ist p = F.VERT(x,...), dann ist F.INV(p,...) = x. Die F-Verteilung kann in F-Tests verwendet werden, bei denen die Streuungen zweier Datenmengen ins Verhältnis gesetzt werden. Zum Beispiel können Sie die Verteilung der in den USA und Kanada erzielten Einkommen daraufhin analysieren, ob in den beiden Ländern ähnliche Einkommensverteilungen vorliegen.', + abstract: 'Gibt Quantile der F-Verteilung zurück. Ist p = F.VERT(x,...), dann ist F.INV(p,...) = x. Die F-Verteilung kann in F-Tests verwendet werden, bei denen die Streuungen zweier Datenmengen ins Verhältnis gesetzt werden. Zum Beispiel können Sie die Verteilung der in den USA und Kanada erzielten Einkommen daraufhin analysieren, ob in den beiden Ländern ähnliche Einkommensverteilungen vorliegen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur F-Verteilung gehörige Wahrscheinlichkeit' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + }, + }, + F_INV_RT: { + description: 'Gibt Quantile der (rechtsseitigen) F-Verteilung zurück. Ist p = F.VERT.RE(x;...), dann ist F.INV.RE(p;...) = x. Die F-Verteilung kann in F-Tests verwendet werden, bei denen die Streuungen zweier Datenmengen ins Verhältnis gesetzt werden. Zum Beispiel können Sie die Verteilung der in den USA und Kanada erzielten Einkommen daraufhin analysieren, ob in den beiden Ländern ähnliche Einkommensverteilungen vorliegen.', + abstract: 'Gibt Quantile der (rechtsseitigen) F-Verteilung zurück. Ist p = F.VERT.RE(x;...), dann ist F.INV.RE(p;...) = x. Die F-Verteilung kann in F-Tests verwendet werden, bei denen die Streuungen zweier Datenmengen ins Verhältnis gesetzt werden. Zum Beispiel können Sie die Verteilung der in den USA und Kanada erzielten Einkommen daraufhin analysieren, ob in den beiden Ländern ähnliche Einkommensverteilungen vorliegen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur F-Verteilung gehörige Wahrscheinlichkeit' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Zähler' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade im Nenner' }, + }, + }, + F_TEST: { + description: 'Verwenden Sie diese Funktion, um zu bestimmen, ob zwei Stichproben unterschiedliche Varianzen aufweisen. Mit Testergebnissen von öffentlichen und privaten Schulen können Sie beispielsweise testen, ob diese Schulen unterschiedliche Stufen der Testbewertungsvielfalt aufweisen.', + abstract: 'Verwenden Sie diese Funktion, um zu bestimmen, ob zwei Stichproben unterschiedliche Varianzen aufweisen. Mit Testergebnissen von öffentlichen und privaten Schulen können Sie beispielsweise testen, ob diese Schulen unterschiedliche Stufen der Testbewertungsvielfalt aufweisen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Die erste Matrix oder der erste Wertebereich.' }, + array2: { name: 'array2', detail: 'Erforderlich. Die zweite Matrix oder der zweite Wertebereich.' }, + }, + }, + FISHER: { + description: 'Gibt die Fisher-Transformation für x zurück. Diese Transformation erzeugt eine Funktion, die normalverteilt ist und somit eine Schiefe von ungefähr Null besitzt. Mit dieser Funktion können Sie eine Hypothese bezüglich des Korrelationskoeffizienten prüfen.', + abstract: 'Gibt die Fisher-Transformation für x zurück. Diese Transformation erzeugt eine Funktion, die normalverteilt ist und somit eine Schiefe von ungefähr Null besitzt. Mit dieser Funktion können Sie eine Hypothese bezüglich des Korrelationskoeffizienten prüfen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Ein numerischer Wert, für den Sie die Transformation durchführen möchten.' }, + }, + }, + FISHERINV: { + description: 'Gibt die Umkehrung der Fisher-Transformation zurück. Mithilfe dieser Transformation können Sie die Korrelation zwischen Datenbereichen oder Matrizen untersuchen. Ist y = FISHER(x), dann ist FISHERINV(y) = x.', + abstract: 'Gibt die Umkehrung der Fisher-Transformation zurück. Mithilfe dieser Transformation können Sie die Korrelation zwischen Datenbereichen oder Matrizen untersuchen. Ist y = FISHER(x), dann ist FISHERINV(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Erforderlich. Der Wert, dessen Transformation Sie umkehren möchten' }, + }, + }, + FORECAST: { + description: 'Berechnen oder Vorhersagen eines zukünftigen Werts mithilfe vorhandener Werte. Der Future-Wert ist ein y-Wert für einen bestimmten x-Wert. Die vorhandenen Werte sind bekannte x-Werte und y-Werte, und der zukünftige Wert wird mithilfe der linearen Regression vorhergesagt. Sie können diese Funktionen verwenden, um zukünftige Verkäufe, Bestandsanforderungen oder Verbrauchertrends vorherzusagen.', + abstract: 'Berechnen oder Vorhersagen eines zukünftigen Werts mithilfe vorhandener Werte. Der Future-Wert ist ein y-Wert für einen bestimmten x-Wert. Die vorhandenen Werte sind bekannte x-Werte und y-Werte, und der zukünftige Wert wird mithilfe der linearen Regression vorhergesagt. Sie können diese Funktionen verwenden, um zukünftige Verkäufe, Bestandsanforderungen oder Verbrauchertrends vorherzusagen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Ja Der Datenpunkt, dessen Wert Sie schätzen möchten.' }, + knownYs: { name: 'known_y\'s', detail: 'Ja Eine abhängige Matrix oder ein abhängiger Datenbereich.' }, + knownXs: { name: 'known_x\'s', detail: 'Ja Eine unabhängige Matrix oder ein unabhängiger Datenbereich.' }, + }, + }, + FORECAST_ETS: { + description: 'Berechnet oder prognostiziert einen zukünftigen Wert auf Grundlage vorhandener Werte mithilfe der AAA-Version des Exponential-Smoothing-Algorithmus (ETS).', + abstract: 'Berechnet oder prognostiziert einen zukünftigen Wert auf Grundlage vorhandener Werte mithilfe der AAA-Version des Exponential-Smoothing-Algorithmus (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Zieldatum', detail: 'Der Datenpunkt, für den ein Wert vorhergesagt werden soll.' }, + values: { name: 'Werte', detail: 'Die historischen Werte für die Prognose.' }, + timeline: { name: 'Zeitachse', detail: 'Ein unabhängiger Bereich oder eine Matrix numerischer Datums- oder Zeitwerte mit konstantem Abstand.' }, + seasonality: { name: 'Saisonalität', detail: 'Optional. Saisonlänge; 1 für automatische Erkennung und 0 für keine Saisonalität.' }, + dataCompletion: { name: 'Datenvervollständigung', detail: 'Optional. 1 interpoliert fehlende Punkte, 0 behandelt sie als null.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. Ein Wert von 1 bis 7 legt die Aggregation doppelter Zeitstempel fest.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Gibt ein Konfidenzintervall für den prognostizierten Wert am angegebenen Zieltermin zurück.', + abstract: 'Gibt ein Konfidenzintervall für den prognostizierten Wert am angegebenen Zieltermin zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Zieldatum', detail: 'Der Datenpunkt, für den ein Wert vorhergesagt werden soll.' }, + values: { name: 'Werte', detail: 'Die historischen Werte für die Prognose.' }, + timeline: { name: 'Zeitachse', detail: 'Ein unabhängiger Bereich oder eine Matrix numerischer Datums- oder Zeitwerte mit konstantem Abstand.' }, + confidenceLevel: { name: 'Konfidenzniveau', detail: 'Optional. Eine Zahl zwischen 0 und 1; Standardwert ist 0,95.' }, + seasonality: { name: 'Saisonalität', detail: 'Optional. Saisonlänge; 1 für automatische Erkennung und 0 für keine Saisonalität.' }, + dataCompletion: { name: 'Datenvervollständigung', detail: 'Optional. 1 interpoliert fehlende Punkte, 0 behandelt sie als null.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. Ein Wert von 1 bis 7 legt die Aggregation doppelter Zeitstempel fest.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Gibt die Länge des sich wiederholenden Musters zurück, das Excel für die angegebene Zeitreihe erkennt.', + abstract: 'Gibt die Länge des sich wiederholenden Musters zurück, das Excel für die angegebene Zeitreihe erkennt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Werte', detail: 'Die historischen Werte für die Prognose.' }, + timeline: { name: 'Zeitachse', detail: 'Ein unabhängiger Bereich oder eine Matrix numerischer Datums- oder Zeitwerte mit konstantem Abstand.' }, + dataCompletion: { name: 'Datenvervollständigung', detail: 'Optional. 1 interpoliert fehlende Punkte, 0 behandelt sie als null.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. Ein Wert von 1 bis 7 legt die Aggregation doppelter Zeitstempel fest.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Gibt einen statistischen Wert infolge von Zeitreihenprognosen zurück.', + abstract: 'Gibt einen statistischen Wert infolge von Zeitreihenprognosen zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Werte', detail: 'Die historischen Werte für die Prognose.' }, + timeline: { name: 'Zeitachse', detail: 'Ein unabhängiger Bereich oder eine Matrix numerischer Datums- oder Zeitwerte mit konstantem Abstand.' }, + statisticType: { name: 'Statistiktyp', detail: 'Ein Wert von 1 bis 8 legt die zurückzugebende Prognosestatistik fest.' }, + seasonality: { name: 'Saisonalität', detail: 'Optional. Saisonlänge; 1 für automatische Erkennung und 0 für keine Saisonalität.' }, + dataCompletion: { name: 'Datenvervollständigung', detail: 'Optional. 1 interpoliert fehlende Punkte, 0 behandelt sie als null.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. Ein Wert von 1 bis 7 legt die Aggregation doppelter Zeitstempel fest.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Berechnen oder Vorhersagen eines zukünftigen Werts mithilfe vorhandener Werte. Der Future-Wert ist ein y-Wert für einen bestimmten x-Wert. Die vorhandenen Werte sind bekannte x-Werte und y-Werte, und der zukünftige Wert wird mithilfe der linearen Regression vorhergesagt. Sie können diese Funktionen verwenden, um zukünftige Verkäufe, Bestandsanforderungen oder Verbrauchertrends vorherzusagen.', + abstract: 'Berechnen oder Vorhersagen eines zukünftigen Werts mithilfe vorhandener Werte. Der Future-Wert ist ein y-Wert für einen bestimmten x-Wert. Die vorhandenen Werte sind bekannte x-Werte und y-Werte, und der zukünftige Wert wird mithilfe der linearen Regression vorhergesagt. Sie können diese Funktionen verwenden, um zukünftige Verkäufe, Bestandsanforderungen oder Verbrauchertrends vorherzusagen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Ja Der Datenpunkt, dessen Wert Sie schätzen möchten.' }, + knownYs: { name: 'known_y\'s', detail: 'Ja Eine abhängige Matrix oder ein abhängiger Datenbereich.' }, + knownXs: { name: 'known_x\'s', detail: 'Ja Eine unabhängige Matrix oder ein unabhängiger Datenbereich.' }, + }, + }, + FREQUENCY: { + description: 'Die Funktion HÄUFIGKEIT berechnet, wie oft Werte innerhalb eines Wertebereichs auftreten, und gibt dann ein vertikales Zahlenfeld zurück. Verwenden Sie HÄUFIGKEIT beispielsweise, um die Prüfungsergebnisse innerhalb bestimmter Ergebnisbereiche zu zählen. Da HÄUFIGKEIT eine Matrix zurückgibt, muss die Formel als Matrixformel eingegeben werden.', + abstract: 'Die Funktion HÄUFIGKEIT berechnet, wie oft Werte innerhalb eines Wertebereichs auftreten, und gibt dann ein vertikales Zahlenfeld zurück. Verwenden Sie HÄUFIGKEIT beispielsweise, um die Prüfungsergebnisse innerhalb bestimmter Ergebnisbereiche zu zählen. Da HÄUFIGKEIT eine Matrix zurückgibt, muss die Formel als Matrixformel eingegeben werden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Erforderlich. Entspricht einer Matrix von oder einem Bezug auf eine Wertemenge, deren Häufigkeiten Sie zählen möchten. Enthält "Daten" keine Werte (Zahlen), gibt HÄUFIGKEIT eine mit Nullen belegte Matrix zurück.' }, + binsArray: { name: 'bins_array', detail: 'Erforderlich. Die als Matrix oder Bezug auf einen Zellbereich eingegebenen Intervallgrenzen, nach denen Sie die in "Daten" enthaltenen Werte einordnen möchten. Falls "Klassen" keine Werte enthält, gibt HÄUFIGKEIT die Anzahl der zu "Daten" gehörenden Elemente zurück.' }, + }, + }, + GAMMA: { + description: 'Gibt den Wert der Gammafunktion zurück.', + abstract: 'Gibt den Wert der Gammafunktion zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Gibt eine Zahl zurück.' }, + }, + }, + GAMMA_DIST: { + description: 'Gibt Wahrscheinlichkeiten einer gammaverteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie Variablen untersuchen, die eine schiefe Verteilung besitzen. Die Gammaverteilung wird häufig bei Warteschlangenanalysen verwendet.', + abstract: 'Gibt Wahrscheinlichkeiten einer gammaverteilten Zufallsvariablen zurück. Mit dieser Funktion können Sie Variablen untersuchen, die eine schiefe Verteilung besitzen. Die Gammaverteilung wird häufig bei Warteschlangenanalysen verwendet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Wahrscheinlichkeit berechnet werden soll.' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung. Wenn "Beta" = 1, gibt GAMMA.VERT die Standard-Gammaverteilung zurück.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, GAMMA. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + GAMMA_INV: { + description: 'Gibt Quantile der Gammaverteilung zurück. Gilt p = GAMMA.VERT(x;...), dann gilt GAMMA.INV(p;...) = x. Mit dieser Funktion können Sie eine Variable untersuchen, deren Verteilung eventuell schief ist.', + abstract: 'Gibt Quantile der Gammaverteilung zurück. Gilt p = GAMMA.VERT(x;...), dann gilt GAMMA.INV(p;...) = x. Mit dieser Funktion können Sie eine Variable untersuchen, deren Verteilung eventuell schief ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Gammaverteilung gehörige Wahrscheinlichkeit' }, + alpha: { name: 'alpha', detail: 'Erforderlich. Ein Parameter der Verteilung' }, + beta: { name: 'beta', detail: 'Erforderlich. Ein Parameter der Verteilung. Wenn "Beta" = 1, gibt GAMMA.INV die Standard-Gammaverteilung zurück.' }, + }, + }, + GAMMALN: { + description: 'Gibt den natürlichen Logarithmus der Gammafunktion zurück, Γ(x).', + abstract: 'Gibt den natürlichen Logarithmus der Gammafunktion zurück, Γ(x).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den GAMMALN berechnet werden soll.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Gibt den natürlichen Logarithmus der Gammafunktion zurück, Γ(x).', + abstract: 'Gibt den natürlichen Logarithmus der Gammafunktion zurück, Γ(x).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den GAMMALN.GENAU berechnet werden soll.' }, + }, + }, + GAUSS: { + description: 'Berechnet die Wahrscheinlichkeit, dass ein Element einer Standardgrundgesamtheit zwischen dem Mittelwert und z Standardabweichungen vom Mittelwert liegt.', + abstract: 'Berechnet die Wahrscheinlichkeit, dass ein Element einer Standardgrundgesamtheit zwischen dem Mittelwert und z Standardabweichungen vom Mittelwert liegt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Erforderlich. Gibt eine Zahl zurück.' }, + }, + }, + GEOMEAN: { + description: 'Gibt das geometrische Mittel einer Menge positiver Zahlen zurück. Zum Beispiel können Sie mit GEOMITTEL eine mittlere Wachstumsrate berechnen, wenn für einen Zinseszins variable Zinssätze gegeben sind.', + abstract: 'Gibt das geometrische Mittel einer Menge positiver Zahlen zurück. Zum Beispiel können Sie mit GEOMITTEL eine mittlere Wachstumsrate berechnen, wenn für einen Zinseszins variable Zinssätze gegeben sind.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Mittelwert berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Mittelwert berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + GROWTH: { + description: 'Liefert Werte, die sich aus einem exponentiellen Trend ergeben. VARIATION liefert die y-Werte für eine Reihe neuer x-Werte, die Sie mithilfe vorhandener x- und y-Werte festlegen. Sie können die Arbeitsblattfunktion VARIATION auch verwenden, um eine zu den vorhandenen x- und y-Werten passende Exponentialkurve zu ermitteln.', + abstract: 'Liefert Werte, die sich aus einem exponentiellen Trend ergeben. VARIATION liefert die y-Werte für eine Reihe neuer x-Werte, die Sie mithilfe vorhandener x- und y-Werte festlegen. Sie können die Arbeitsblattfunktion VARIATION auch verwenden, um eine zu den vorhandenen x- und y-Werten passende Exponentialkurve zu ermitteln.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Die y-Werte, die Ihnen aus der jeweiligen Beziehung y = b*m^x bereits bekannt sind Besteht die Matrix Y_Werte aus nur einer Spalte, wird jede Spalte der Matrix X_Werte als eigenständige Variable interpretiert. Besteht die Matrix Y_Werte aus nur einer Zeile, wird jede Zeile der Matrix X_Werte als eigenständige Variable interpretiert. Wenn eine der Zahlen in known_y 0 oder negativ ist, gibt GROWTH die #NUM! zurück.' }, + knownXs: { name: 'known_x\'s', detail: 'Optional. Eine optionale Gruppe von x-Werten, die Ihnen aus der Beziehung y = b*m^x eventuell bereits bekannt sind Die Matrix X_Werte kann eine oder mehrere Gruppen von Variablen umfassen. Wird nur eine Variable verwendet, können Y_Werte und X_Werte Bereiche beliebiger Form sein, solange sie dieselben Dimensionen haben. Werden mehrere Variablen verwendet, muss Y_Werte ein Vektor sein (das heißt ein Bereich, der aus nur einer Zeile oder nur einer Spalte besteht). Fehlt die Matrix X_Werte, wird an ihrer Stelle die Matrix {1.2.3...} angenommen, die genauso viele Elemente wie Y_Werte enthält.' }, + newXs: { name: 'new_x\'s', detail: 'Optional. Die neuen x-Werte, für die die VARIATION-Funktion die zugehörigen y-Werte liefern soll. Analog zu X_Werte muss auch Neue_x_Werte für jede unabhängige Variable eine eigene Spalte (oder Zeile) bereitstellen. Daher müssen die Matrizen X_Werte und Neue_x_Werte gleich viele Spalten haben, wenn Y_Werte sich in einer einzelnen Spalte befindet. Wenn sich Y_Werte in einer einzelnen Zeile befindet, müssen X_Werte und Neue_x_Werte gleich viele Zeilen haben. Fehlt die Matrix Neue_x_Werte, wird angenommen, dass sie mit der Matrix X_Werte identisch ist. Fehlt sowohl die Matrix X_Werte als auch die Matrix Neue_x_Werte, werden diese als die Matrix {1.2.3...} angenommen, die genauso viele Elemente wie die Matrix Y_Werte enthalten.' }, + constb: { name: 'const', detail: 'Optional. Ein Wahrheitswert, der angibt, ob die Konstante b den Wert 1 annehmen soll Ist Konstante mit WAHR belegt oder nicht angegeben, wird b normal berechnet. Ist Konstante mit FALSCH belegt, wird b gleich 1 gesetzt, und der Wert von m wird so angepasst, dass y = m^x gilt.' }, + }, + }, + HARMEAN: { + description: 'Gibt das harmonische Mittel einer Datenmenge zurück. Ein harmonisches Mittel ist der Kehrwert eines aus Kehrwerten berechneten arithmetischen Mittels.', + abstract: 'Gibt das harmonische Mittel einer Datenmenge zurück. Ein harmonisches Mittel ist der Kehrwert eines aus Kehrwerten berechneten arithmetischen Mittels.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Mittelwert berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie den Mittelwert berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Gibt die hypergeometrische Verteilung zurück. HYPGEOM. DIST gibt die Wahrscheinlichkeit einer bestimmten Anzahl von Stichprobenerfolgen unter Berücksichtigung der Stichprobengröße, der Populationserfolge und der Populationsgröße zurück. Verwenden Sie HYPGEOM. DIST für Probleme mit einer endlichen Population, bei der jede Beobachtung entweder ein Erfolg oder ein Fehler ist und jede Teilmenge einer bestimmten Größe mit gleicher Wahrscheinlichkeit ausgewählt wird.', + abstract: 'Gibt die hypergeometrische Verteilung zurück. HYPGEOM. DIST gibt die Wahrscheinlichkeit einer bestimmten Anzahl von Stichprobenerfolgen unter Berücksichtigung der Stichprobengröße, der Populationserfolge und der Populationsgröße zurück. Verwenden Sie HYPGEOM. DIST für Probleme mit einer endlichen Population, bei der jede Beobachtung entweder ein Erfolg oder ein Fehler ist und jede Teilmenge einer bestimmten Größe mit gleicher Wahrscheinlichkeit ausgewählt wird.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Erforderlich. Die Anzahl der in der Stichprobe erzielten Erfolge' }, + numberSample: { name: 'number_sample', detail: 'Erforderlich. Der Umfang (Größe) der Stichprobe' }, + populationS: { name: 'population_s', detail: 'Erforderlich. Die Anzahl der in der Grundgesamtheit möglichen Erfolge' }, + numberPop: { name: 'number_pop', detail: 'Erforderlich. Der Umfang (Größe) der Grundgesamtheit' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, dann HYPGEOM. DIST gibt die kumulierte Verteilungsfunktion zurück. wenn FALSE, wird die Wahrscheinlichkeits-Massenfunktion zurückgegeben.' }, + }, + }, + INTERCEPT: { + description: 'Berechnet den Punkt, an dem eine Linie die y-Achse unter Verwendung vorhandener x-Werte und y-Werte überschneidet. Der Abfangpunkt basiert auf einer Am besten geeigneten Regressionslinie, die durch die bekannten x-Werte und bekannten y-Werte gezeichnet wird. Verwenden Sie die INTERCEPT-Funktion, wenn Sie den Wert der abhängigen Variablen bestimmen möchten, wenn die unabhängige Variable 0 (null) ist. Beispielsweise können Sie die INTERCEPT-Funktion verwenden, um den elektrischen Widerstand eines Metalls bei 0 °C vorherzusagen, wenn Ihre Datenpunkte bei Raumtemperatur und höher erfasst wurden.', + abstract: 'Berechnet den Punkt, an dem eine Linie die y-Achse unter Verwendung vorhandener x-Werte und y-Werte überschneidet. Der Abfangpunkt basiert auf einer Am besten geeigneten Regressionslinie, die durch die bekannten x-Werte und bekannten y-Werte gezeichnet wird. Verwenden Sie die INTERCEPT-Funktion, wenn Sie den Wert der abhängigen Variablen bestimmen möchten, wenn die unabhängige Variable 0 (null) ist. Beispielsweise können Sie die INTERCEPT-Funktion verwenden, um den elektrischen Widerstand eines Metalls bei 0 °C vorherzusagen, wenn Ihre Datenpunkte bei Raumtemperatur und höher erfasst wurden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Die Gruppe der abhängigen Messwerte oder Daten' }, + knownXs: { name: 'known_x\'s', detail: 'Erforderlich. Die Gruppe der unabhängigen Messwerte oder Daten' }, + }, + }, + KURT: { + description: 'Gibt die Kurtosis (Exzess) eines Datasets zurück. Die Kurtosis ist ein Maß für die Wölbung (d.h. wie spitz oder flach) einer Verteilung im Vergleich zu der Normalverteilung. Eine positive Kurtosis weist auf eine relativ schmale, spitze Verteilung hin. Eine negative Kurtosis weist auf eine relativ flache Verteilung hin.', + abstract: 'Gibt die Kurtosis (Exzess) eines Datasets zurück. Die Kurtosis ist ein Maß für die Wölbung (d.h. wie spitz oder flach) einer Verteilung im Vergleich zu der Normalverteilung. Eine positive Kurtosis weist auf eine relativ schmale, spitze Verteilung hin. Eine negative Kurtosis weist auf eine relativ flache Verteilung hin.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie Kurtosis berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie Kurtosis berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + LARGE: { + description: 'Gibt den k-größten Wert eines Datasets zurück. Mit dieser Funktion können Sie eine Zahl auf Basis ihrer relativen Größe ermitteln. Beispielsweise können Sie mit KGRÖSSTE den Punktestand des Erst-, Zweit- oder Drittplatzierten ermitteln.', + abstract: 'Gibt den k-größten Wert eines Datasets zurück. Mit dieser Funktion können Sie eine Zahl auf Basis ihrer relativen Größe ermitteln. Beispielsweise können Sie mit KGRÖSSTE den Punktestand des Erst-, Zweit- oder Drittplatzierten ermitteln.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Die Matrix oder der Datenbereich, deren k-größten Wert Sie bestimmen möchten' }, + k: { name: 'k', detail: 'Erforderlich. Der Rang des Elements einer Matrix oder eines Zellbereichs, dessen Wert zurückgegeben werden soll' }, + }, + }, + LINEST: { + description: 'Die Funktion RGP berechnet die Statistik für eine Linie nach der Methode der kleinsten Quadrate, um eine gerade Linie zu berechnen, die am besten an die Daten angepasst ist, und gibt dann eine Matrix zurück, die die Linie beschreibt. Sie können RGP auch mit anderen Funktionen kombinieren, um die Statistiken für andere Modelltypen zu berechnen, die lineare unbekannte Parameter aufweisen, einschließlich polynomischer, logarithmischer und exponentieller Reihen sowie Potenzen. Da diese Funktion eine Matrix von Werten zurückgibt, muss die Formel als Matrixformel eingegeben werden. Anweisungen dazu sind nach den Beispielen in diesem Artikel angegeben.', + abstract: 'Die Funktion RGP berechnet die Statistik für eine Linie nach der Methode der kleinsten Quadrate, um eine gerade Linie zu berechnen, die am besten an die Daten angepasst ist, und gibt dann eine Matrix zurück, die die Linie beschreibt. Sie können RGP auch mit anderen Funktionen kombinieren, um die Statistiken für andere Modelltypen zu berechnen, die lineare unbekannte Parameter aufweisen, einschließlich polynomischer, logarithmischer und exponentieller Reihen sowie Potenzen. Da diese Funktion eine Matrix von Werten zurückgibt, muss die Formel als Matrixformel eingegeben werden. Anweisungen dazu sind nach den Beispielen in diesem Artikel angegeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Die y-Werte, die Ihnen bereits aus der Beziehung y = mx + b bekannt sind. Wenn sich der Bereich der known_y in einer einzelnen Spalte befindet, wird jede Spalte von known_x als separate Variable interpretiert. Wenn der Bereich der known_y in einer einzelnen Zeile enthalten ist, wird jede Zeile von known_x als separate Variable interpretiert.' }, + knownXs: { name: 'known_x\'s', detail: 'Optional. Die x-Werte, die Ihnen möglicherweise bereits aus der Beziehung y = mx + b bekannt sind. Der Bereich der known_x kann einen oder mehrere Variablensätze enthalten. Wenn nur eine Variable verwendet wird, können known_y und known_x bereiche beliebiger Form sein, sofern sie die gleichen Dimensionen haben. Wenn mehr als eine Variable verwendet wird, muss known_y ein Vektor sein (d. a. ein Bereich mit einer Höhe von einer Zeile oder einer Breite von einer Spalte). Wenn known_x nicht angegeben wird, wird davon ausgegangen, dass es sich um das Array {1,2,3,...} handelt, das die gleiche Größe wie known_y hat .' }, + constb: { name: 'const', detail: 'Optional. Ein Wahrheitswert, der angibt, ob die Konstante b den Wert 0 annehmen soll. Wenn const TRUE ist oder ausgelassen wird, wird b normal berechnet. Wenn const FALSE ist, wird b gleich 0 festgelegt, und die m-Werte werden so angepasst, dass sie y = mx anpassen.' }, + stats: { name: 'stats', detail: 'Optional. Ein Wahrheitswert, der angibt, ob zusätzliche Regressionskenngrößen zurückgegeben werden sollen. Wenn stats den Wert TRUE hat, gibt LINEST die zusätzlichen Regressionsstatistiken zurück. Daher ist das zurückgegebene Array {mn,mn-1,...,m1,b; sen,sen-1,...,se1,seb; r 2,sey ; F,df; ssreg,ssresid} . Wenn stats FALSE ist oder ausgelassen wird, gibt LINEST nur die m-Koeffizienten und die Konstante b zurück. Die folgenden Regressionskenngrößen (-statistiken) können zusätzlich ermittelt werden:' }, + }, + }, + LOGEST: { + description: 'Die Gleichung der Kurve lautet', + abstract: 'Die Gleichung der Kurve lautet', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Die y-Werte, die Ihnen aus der jeweiligen Beziehung y = b*m^x bereits bekannt sind Besteht die Matrix Y_Werte aus nur einer Spalte, wird jede Spalte der Matrix X_Werte als eigenständige Variable interpretiert. Besteht die Matrix Y_Werte aus nur einer Zeile, wird jede Zeile der Matrix X_Werte als eigenständige Variable interpretiert.' }, + knownXs: { name: 'known_x\'s', detail: 'Optional. Eine optionale Gruppe von x-Werten, die Ihnen aus der Beziehung y = b*m^x eventuell bereits bekannt sind Die Matrix X_Werte kann eine oder mehrere Gruppen von Variablen umfassen. Wird nur eine Variable verwendet, können Y_Werte und X_Werte Bereiche beliebiger Form sein, solange sie dieselben Dimensionen haben. Werden mehrere Variablen verwendet, müssen Y_Werte als Zellbereiche vorliegen, wobei sich der Bereich nur über eine Zeile oder eine Spalte erstrecken darf (auch als "Vektor" bezeichnet). Fehlt die Matrix X_Werte, wird an ihrer Stelle die Matrix {1.2.3...} angenommen, die genauso viele Elemente wie Y_Werte enthält.' }, + constb: { name: 'const', detail: 'Optional. Ein Wahrheitswert, der angibt, ob die Konstante b den Wert 1 annehmen soll Ist Konstante mit WAHR belegt oder nicht angegeben, wird b normal berechnet. Ist Konstante mit FALSCH belegt, wird b gleich 1 festgelegt, und die m-Werte werden gemäß y = m^x berechnet.' }, + stats: { name: 'stats', detail: 'Optional. Ein Wahrheitswert, der angibt, ob zusätzliche Regressionskenngrößen ausgegeben werden sollen Ist Stats mit WAHR belegt, gibt RKP diese zusätzlichen Regressionskenngrößen zurück, sodass die zurückgegebene Matrix wie folgt aussieht:{mn.mn-1. ... .m1.b;sen.sen-1. ... .se1.seb;r 2.sey;F.df;ssreg.ssresid}. Ist Stats mit FALSCH belegt oder nicht angegeben, gibt RKP nur die m-Koeffizienten und die Konstante b zurück.' }, + }, + }, + LOGNORM_DIST: { + description: 'Mit dieser Funktion können Sie Daten untersuchen, die logarithmisch transformiert wurden.', + abstract: 'Mit dieser Funktion können Sie Daten untersuchen, die logarithmisch transformiert wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, für den die Funktion ausgewertet werden soll' }, + mean: { name: 'mean', detail: 'Erforderlich. Der Mittelwert der Lognormalverteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Lognormalverteilung' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, LOGNORM. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + LOGNORM_INV: { + description: 'Gibt Quantile der Lognormalverteilung von x zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normal verteilt ist. Ist p = LOGNORM.VERT(x,...), gilt LOGNORM.INV(p,...) = x.', + abstract: 'Gibt Quantile der Lognormalverteilung von x zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normal verteilt ist. Ist p = LOGNORM.VERT(x,...), gilt LOGNORM.INV(p,...) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Lognormalverteilung gehörige Wahrscheinlichkeit' }, + mean: { name: 'mean', detail: 'Erforderlich. Der Mittelwert der Lognormalverteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Lognormalverteilung' }, + }, + }, + MARGINOFERROR: { + description: 'Diese Funktion berechnet die Fehlerspanne aus einem Wertebereich und einem Konfidenzniveau.', + abstract: 'Diese Funktion berechnet die Fehlerspanne aus einem Wertebereich und einem Konfidenzniveau.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=de', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Range – Der Wertebereich, der zur Berechnung der Fehlerspanne verwendet wird.' }, + confidence: { name: 'confidence', detail: 'Confidence – Das gewünschte Konfidenzniveau zwischen 0 und 1.' }, + }, + }, + MAX: { + description: 'Gibt den größten Wert innerhalb einer Argumentliste zurück.', + abstract: 'Gibt den größten Wert innerhalb einer Argumentliste zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Zahlen, für die Sie den Maximalwert finden möchten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Zahlen, für die Sie den Maximalwert finden möchten.' }, + }, + }, + MAXA: { + description: 'Gibt den größten Wert in einer Liste von Argumenten zurück, einschließlich Zahlen, Text und Wahrheitswerten.', + abstract: 'Gibt den größten Wert in einer Liste von Argumenten zurück, einschließlich Zahlen, Text und Wahrheitswerten.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'Wert1', detail: 'Erforderlich. Das erste numerische Argument, dessen größter Wert zurückgegeben werden soll.' }, + value2: { name: 'Wert2', detail: 'Optional. Die numerischen Argumente 2 bis 255, deren größter Wert ermittelt werden soll.' }, + }, + }, + MAXIFS: { + description: 'Die Funktion MAXWENNS gibt den Maximalwert aus Zellen zurück, die mit einem bestimmten Satz Bedingungen oder Kriterien angegeben wurden.', + abstract: 'Die Funktion MAXWENNS gibt den Maximalwert aus Zellen zurück, die mit einem bestimmten Satz Bedingungen oder Kriterien angegeben wurden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'Der tatsächliche Zellenbereich, in dem das Maximum ermittelt wird.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Die Reihe der Zellen, die anhand der Kriterien ausgewertet werden sollen.' }, + criteria1: { name: 'criteria1', detail: 'Sind die Kriterien, die in Form einer Zahl, eines Ausdrucks oder eines Texts festgelegt werden und beschreiben, welche Zellen als Maximum ausgewertet werden. Der gleiche Kriteriensatz kann auch für die Funktionen MINWENNS , SUMMEWENNS und MITTELWERTWENNS verwendet werden.' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 126 Bereich/Kriterien-Paare eingeben.' }, + criteria2: { name: 'criteria2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 126 Bereich/Kriterien-Paare eingeben.' }, + }, + }, + MEDIAN: { + description: 'Gibt den Median der angegebenen Zahlen zurück. Der Median ist die Zahl, die in der Mitte einer Zahlenreihe liegt.', + abstract: 'Gibt den Median der angegebenen Zahlen zurück. Der Median ist die Zahl, die in der Mitte einer Zahlenreihe liegt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Zahlen, deren Median Sie berechnen möchten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Zahlen, deren Median Sie berechnen möchten.' }, + }, + }, + MIN: { + description: 'Gibt den kleinsten Wert innerhalb einer Argumentliste zurück.', + abstract: 'Gibt den kleinsten Wert innerhalb einer Argumentliste zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist optional, nachfolgende Zahlen sind optional. 1 bis 255 Zahlen, aus denen Sie die kleinste Zahl heraussuchen möchten.' }, + number2: { name: 'number2', detail: 'Zahl1 ist optional, nachfolgende Zahlen sind optional. 1 bis 255 Zahlen, aus denen Sie die kleinste Zahl heraussuchen möchten.' }, + }, + }, + MINA: { + description: 'Gibt den kleinsten Wert einer Liste von Argumenten zurück.', + abstract: 'Gibt den kleinsten Wert einer Liste von Argumenten zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, deren kleinster Wert ermittelt werden soll.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, deren kleinster Wert ermittelt werden soll.' }, + }, + }, + MINIFS: { + description: 'Die Funktion MINWENNS gibt den Minimalwert aus Zellen zurück, die mit einem bestimmten Satz Bedingungen oder Kriterien angegeben wurden.', + abstract: 'Die Funktion MINWENNS gibt den Minimalwert aus Zellen zurück, die mit einem bestimmten Satz Bedingungen oder Kriterien angegeben wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'Der tatsächliche Zellenbereich, in dem der Minimalwert ermittelt wird.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Die Reihe der Zellen, die anhand der Kriterien ausgewertet werden sollen.' }, + criteria1: { name: 'criteria1', detail: 'Sind die Kriterien, die in Form einer Zahl, eines Ausdrucks oder eines Texts festgelegt werden und beschreiben, welche Zellen als Minimum ausgewertet werden. Die gleichen Kriterien können auch für die Funktionen MAXWENNS , SUMMEWENNS und MITTELWERTWENNS verwendet werden.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 126 Bereich/Kriterien-Paare eingeben.' }, + criteria2: { name: 'criteria2', detail: 'Zusätzliche Bereiche und zugehörige Kriterien. Sie können bis zu 126 Bereich/Kriterien-Paare eingeben.' }, + }, + }, + MODE_MULT: { + description: 'Gibt es mehrere Modalwerte, werden mehrere Ergebnisse zurückgegeben. Da diese Funktion ein Array von Werten zurückgibt, muss die Formel als Arrayformel eingegeben werden.', + abstract: 'Gibt es mehrere Modalwerte, werden mehrere Ergebnisse zurückgegeben. Da diese Funktion ein Array von Werten zurückgibt, muss die Formel als Arrayformel eingegeben werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, für das der Modalwert (Modus) berechnet werden soll' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 254 numerische Argumente, für die Sie den Modalwert (Modus) berechnen möchten. An Stelle der durch Semikolons getrennten Argumente können Sie auch ein Array oder einen Arraybezug verwenden.' }, + }, + }, + MODE_SNGL: { + description: 'Gibt den häufigsten Wert einer Matrix oder eines Datenbereichs zurück.', + abstract: 'Gibt den häufigsten Wert einer Matrix oder eines Datenbereichs zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste Argument, für das der Modalwert (Modus) berechnet werden soll' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 254 Argumente, für die Sie den Modalwert (Modus) berechnen möchten. An Stelle der durch Semikolons getrennten Argumente können Sie auch ein Array oder einen Arraybezug verwenden.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Gibt Wahrscheinlichkeiten einer negativen, binominal verteilten Zufallsvariablen zurück. NEGBINOM.VERT berechnet, wie wahrscheinlich es ist, dass es "Zahl_Mißerfolge" vor dem durch "Zahl_Erfolge" angegebenen Erfolg gibt, wobei "Erfolgswahrsch" die Wahrscheinlichkeit für den günstigen Ausgang des Experiments ist.', + abstract: 'Gibt Wahrscheinlichkeiten einer negativen, binominal verteilten Zufallsvariablen zurück. NEGBINOM.VERT berechnet, wie wahrscheinlich es ist, dass es "Zahl_Mißerfolge" vor dem durch "Zahl_Erfolge" angegebenen Erfolg gibt, wobei "Erfolgswahrsch" die Wahrscheinlichkeit für den günstigen Ausgang des Experiments ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Erforderlich. Die Zahl der ungünstigen Ereignisse' }, + numberS: { name: 'number_s', detail: 'Erforderlich. Die Zahl der günstigen Ereignisse' }, + probabilityS: { name: 'probability_s', detail: 'Erforderlich. Die Wahrscheinlichkeit für den günstigen Ausgang des Experiments' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, NEGBINOM. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + NORM_DIST: { + description: 'Gibt die Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück. Diese Funktion hat sehr viele Anwendungsgebiete innerhalb der Statistik, so unter anderem auch Testen von Hypothesen.', + abstract: 'Gibt die Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück. Diese Funktion hat sehr viele Anwendungsgebiete innerhalb der Statistik, so unter anderem auch Testen von Hypothesen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert der Verteilung, dessen Wahrscheinlichkeit Sie berechnen möchten' }, + mean: { name: 'mean', detail: 'Erforderlich. Das arithmetische Mittel der Verteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Verteilung' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, NORM. DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + NORM_INV: { + description: 'Gibt Perzentile der Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück.', + abstract: 'Gibt Perzentile der Normalverteilung für den angegebenen Mittelwert und die angegebene Standardabweichung zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Standardnormalverteilung gehörige Wahrscheinlichkeit' }, + mean: { name: 'mean', detail: 'Erforderlich. Das arithmetische Mittel der Verteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Verteilung' }, + }, + }, + NORM_S_DIST: { + description: 'Die NORM. Die S.DIST-Funktion in Excel gibt die Standardnormalverteilung zurück ( d. h., sie hat einen Mittelwert von 0 und eine Standardabweichung von 1 ). Sie können diese Funktion anstelle einer Tabelle mit Standard-Normalkurvenbereichen verwenden.', + abstract: 'Die NORM. Die S.DIST-Funktion in Excel gibt die Standardnormalverteilung zurück ( d. h., sie hat einen Mittelwert von 0 und eine Standardabweichung von 1 ). Sie können diese Funktion anstelle einer Tabelle mit Standard-Normalkurvenbereichen verwenden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Erforderlich. Dies ist der Wert, für den Sie die Verteilung verwenden möchten.' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Das kumulative Argument kann entweder TRUE oder FALSE sein. Dieser logische Wert bestimmt die Form der Funktion. Wenn kumulativ TRUE ist, dann NORM. S.DIST gibt die kumulierte Verteilungsfunktion zurück. Wenn der Wert FALSE ist, wird die Wahrscheinlichkeits-Massenfunktion zurückgegeben.' }, + }, + }, + NORM_S_INV: { + description: 'Gibt Quantile der Standardnormalverteilung zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1.', + abstract: 'Gibt Quantile der Standardnormalverteilung zurück. Die Standardnormalverteilung hat einen Mittelwert von 0 und eine Standardabweichung von 1.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die zur Standardnormalverteilung gehörige Wahrscheinlichkeit' }, + }, + }, + PEARSON: { + description: 'Gibt den Pearsonschen Korrelationskoeffizienten r zurück. Dieser Koeffizient ist ein dimensionsloser Index mit dem Wertebereich -1,0 ≤ r ≤ 1,0 und ein Maß dafür, inwieweit zwischen zwei Datensätzen eine lineare Abhängigkeit besteht.', + abstract: 'Gibt den Pearsonschen Korrelationskoeffizienten r zurück. Dieser Koeffizient ist ein dimensionsloser Index mit dem Wertebereich -1,0 ≤ r ≤ 1,0 und ein Maß dafür, inwieweit zwischen zwei Datensätzen eine lineare Abhängigkeit besteht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Eine Reihe unabhängiger Werte' }, + array2: { name: 'array2', detail: 'Erforderlich. Eine Reihe abhängiger Werte' }, + }, + }, + PERCENTILE_EXC: { + description: 'Gibt das k-te Perzentil der Werte eines Datensatzes zurück (0 und 1 ausgeschlossen).', + abstract: 'Gibt das k-te Perzentil der Werte eines Datensatzes zurück (0 und 1 ausgeschlossen).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'Array', detail: 'Erforderlich. Ein Array oder ein Datenbereich, das bzw. der die relative Lage der Daten beschreibt.' }, + k: { name: 'K', detail: 'Erforderlich. Ein Perzentilwert im Bereich 0 < k < 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Sie können das QUANTIL verwenden. INC-Funktion zum Festlegen eines Akzeptanzschwellenwerts. So könnten Sie beispielsweise entscheiden, dass nur Kandidaten untersucht werden, deren Prüfungsergebnisse oberhalb des 90 %-Quantils liegen.', + abstract: 'Sie können das QUANTIL verwenden. INC-Funktion zum Festlegen eines Akzeptanzschwellenwerts. So könnten Sie beispielsweise entscheiden, dass nur Kandidaten untersucht werden, deren Prüfungsergebnisse oberhalb des 90 %-Quantils liegen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array oder ein Datenbereich, das/der die relative Lage der Daten beschreibt' }, + k: { name: 'k', detail: 'Erforderlich. Der Perzentilwert im Bereich von 0 bis einschließlich 1.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Gibt den prozentualen (0..1 ausschließlich) Rang (Alpha) eines Werts in einem Dataset zurück', + abstract: 'Gibt den prozentualen (0..1 ausschließlich) Rang (Alpha) eines Werts in einem Dataset zurück', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Das Array oder der Bereich numerischer Daten, das/der die relative Lage der Daten beschreibt' }, + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Rang Sie bestimmen möchten' }, + significance: { name: 'significance', detail: 'Optional. Ein Wert, der die Anzahl der Nachkommastellen des zurückgegebenen Quantilsrangs festlegt. Falls nicht angegeben, PERCENTRANK. EXC verwendet drei Ziffern (0.xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Diese Funktion kann dazu verwendet werden, die relative Position zu ermitteln, die ein Wert innerhalb einer Datenmenge einnimmt. So können Sie beispielsweise mithilfe von QUANTILSRANG.INKL ermitteln, welche relative Position das Ergebnis einer Eingangsuntersuchung innerhalb der Ergebnisse aller Untersuchungen einnimmt.', + abstract: 'Diese Funktion kann dazu verwendet werden, die relative Position zu ermitteln, die ein Wert innerhalb einer Datenmenge einnimmt. So können Sie beispielsweise mithilfe von QUANTILSRANG.INKL ermitteln, welche relative Position das Ergebnis einer Eingangsuntersuchung innerhalb der Ergebnisse aller Untersuchungen einnimmt.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Die Matrix oder der Bereich numerischer Daten, die/der die relative Lage der Daten beschreibt' }, + x: { name: 'x', detail: 'Erforderlich. Der Wert, dessen Rang Sie bestimmen möchten' }, + significance: { name: 'significance', detail: 'Optional. Ein Wert, der die Anzahl der Nachkommastellen des zurückgegebenen Quantilsrangs festlegt. Falls nicht angegeben, PERCENTRANK. INC verwendet drei Ziffern (0.xxx).' }, + }, + }, + PERMUT: { + description: 'Gibt die Anzahl der Möglichkeiten zurück, um k Elemente aus einer Menge von n Elementen ohne Zurücklegen zu ziehen. Eine Variation ist eine Menge von Elementen oder Ereignissen, deren interne Anordnung oder Reihenfolge relevant ist. Variationen unterscheiden sich von Kombinationen, für welche die interne Anordnung nicht relevant ist. Verwenden Sie diese Funktion z. B. für die Berechnung von Wahrscheinlichkeiten bei Zahlenlotterien.', + abstract: 'Gibt die Anzahl der Möglichkeiten zurück, um k Elemente aus einer Menge von n Elementen ohne Zurücklegen zu ziehen. Eine Variation ist eine Menge von Elementen oder Ereignissen, deren interne Anordnung oder Reihenfolge relevant ist. Variationen unterscheiden sich von Kombinationen, für welche die interne Anordnung nicht relevant ist. Verwenden Sie diese Funktion z. B. für die Berechnung von Wahrscheinlichkeiten bei Zahlenlotterien.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Anzahl aller Elemente' }, + numberChosen: { name: 'number_chosen', detail: 'Erforderlich. Gibt an, aus wie vielen Elementen jede Variationsmöglichkeit bestehen soll' }, + }, + }, + PERMUTATIONA: { + description: 'Gibt die Anzahl der Permutationen für eine angegebene Anzahl von Objekten zurück (mit Wiederholungen), die aus der Gesamtmenge der Objekte ausgewählt werden können.', + abstract: 'Gibt die Anzahl der Permutationen für eine angegebene Anzahl von Objekten zurück (mit Wiederholungen), die aus der Gesamtmenge der Objekte ausgewählt werden können.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine ganze Zahl zur Angabe der Gesamtzahl von Objekten.' }, + numberChosen: { name: 'number_chosen', detail: 'Erforderlich. Eine ganze Zahl zur Angabe der Anzahl von Objekten in jeder Permutation.' }, + }, + }, + PHI: { + description: 'Gibt den Wert der Dichtefunktion für eine Standardnormalverteilung zurück.', + abstract: 'Gibt den Wert der Dichtefunktion für eine Standardnormalverteilung zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. X ist die Zahl, für die Sie die Dichte der Standardnormalverteilung verwenden möchten.' }, + }, + }, + POISSON_DIST: { + description: 'Gibt Wahrscheinlichkeiten einer poissonverteilten Zufallsvariablen zurück. Eine übliche Anwendung der Poissonverteilung ist die Modellierung der Anzahl der Ereignisse innerhalb eines bestimmten Zeitraumes, beispielsweise die Anzahl der Bankkunden, die innerhalb einer Stunde an einem Geldautomaten eintreffen.', + abstract: 'Gibt Wahrscheinlichkeiten einer poissonverteilten Zufallsvariablen zurück. Eine übliche Anwendung der Poissonverteilung ist die Modellierung der Anzahl der Ereignisse innerhalb eines bestimmten Zeitraumes, beispielsweise die Anzahl der Bankkunden, die innerhalb einer Stunde an einem Geldautomaten eintreffen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Die Zahl der Fälle' }, + mean: { name: 'mean', detail: 'Erforderlich. Der erwartete Zahlenwert' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der zurückgegebenen Wahrscheinlichkeitsverteilung bestimmt. Wenn kumulativ TRUE ist, POISSON. DIST gibt die kumulative Poisson-Wahrscheinlichkeit zurück, dass die Anzahl der zufälligen Ereignisse zwischen null und x einschließlich liegt; False gibt die Poisson-Wahrscheinlichkeits-Massenfunktion zurück, dass die Anzahl der ereignisse genau x ist.' }, + }, + }, + PROB: { + description: 'Gibt die Wahrscheinlichkeit für ein von zwei Werten eingeschlossenes Intervall zurück. Ist das Argument Obergrenze nicht angegeben, berechnet diese Funktion die Wahrscheinlichkeit, dass zu Beob_Werte gehörende Werte gleich dem Wert von Untergrenze sind.', + abstract: 'Gibt die Wahrscheinlichkeit für ein von zwei Werten eingeschlossenes Intervall zurück. Ist das Argument Obergrenze nicht angegeben, berechnet diese Funktion die Wahrscheinlichkeit, dass zu Beob_Werte gehörende Werte gleich dem Wert von Untergrenze sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Erforderlich. Der Bereich von Realisationen der Zufallsvariablen, denen Wahrscheinlichkeiten zugeordnet sind' }, + probRange: { name: 'prob_range', detail: 'Erforderlich. Die Wahrscheinlichkeiten zu den beobachteten Werten' }, + lowerLimit: { name: 'lower_limit', detail: 'Optional. Die untere Grenze der Werte, deren Wahrscheinlichkeit berechnet werden soll' }, + upperLimit: { name: 'upper_limit', detail: 'Optional. Die optionale obere Grenze der Werte, deren Wahrscheinlichkeit berechnet werden soll' }, + }, + }, + QUARTILE_EXC: { + description: 'Gibt das Quartil des Datasets basierend auf Perzentilwerten von 0 bis 1 (exklusiv) zurück.', + abstract: 'Gibt das Quartil des Datasets basierend auf Perzentilwerten von 0 bis 1 (exklusiv) zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Ein Array oder ein Zellbereich numerischer Werte, deren Quartile Sie bestimmen möchten' }, + quart: { name: 'quart', detail: 'Erforderlich. Gibt an, welcher Wert ausgegeben werden soll' }, + }, + }, + QUARTILE_INC: { + description: 'Gibt das Quartil eines Datensatzes zurück (einschließlich 0 und 1).', + abstract: 'Gibt das Quartil eines Datensatzes zurück (einschließlich 0 und 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'Array', detail: 'Erforderlich. Ein Array oder ein Zellbereich numerischer Werte, deren Quartile Sie bestimmen möchten.' }, + quart: { name: 'Quart', detail: 'Erforderlich. Gibt an, welcher Quartilswert ausgegeben werden soll.' }, + }, + }, + RANK_AVG: { + description: 'Gibt den Rang einer Zahl in einer Liste von Zahlen zurück: ihre Größe relativ zu anderen Werten in der Liste. Wenn mehrere Werte denselben Rang aufweisen, wird der durchschnittliche Rang zurückgegeben.', + abstract: 'Gibt den Rang einer Zahl in einer Liste von Zahlen zurück: ihre Größe relativ zu anderen Werten in der Liste. Wenn mehrere Werte denselben Rang aufweisen, wird der durchschnittliche Rang zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, für die der Rang ermittelt werden soll' }, + ref: { name: 'ref', detail: 'Erforderlich. Ein Array von oder ein Bezug auf eine Liste mit Zahlen. Nicht numerische Werte im Bezug werden ignoriert.' }, + order: { name: 'order', detail: 'Optional. Eine Zahl, die angibt, wie der Rang von "Zahl" bestimmt werden soll' }, + }, + }, + RANK_EQ: { + description: 'Gibt den Rang zurück, den eine Zahl innerhalb einer Liste von Zahlen einnimmt. Seine Größe ist relativ zu anderen Werten in der Liste; Wenn mehrere Werte denselben Rang haben, wird der oberste Rang dieser Wertemenge zurückgegeben.', + abstract: 'Gibt den Rang zurück, den eine Zahl innerhalb einer Liste von Zahlen einnimmt. Seine Größe ist relativ zu anderen Werten in der Liste; Wenn mehrere Werte denselben Rang haben, wird der oberste Rang dieser Wertemenge zurückgegeben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, für die der Rang ermittelt werden soll' }, + ref: { name: 'ref', detail: 'Erforderlich. Ein Array von oder ein Bezug auf eine Liste mit Zahlen. Nicht numerische Werte im Bezug werden ignoriert.' }, + order: { name: 'order', detail: 'Optional. Eine Zahl, die angibt, wie der Rang von "Zahl" bestimmt werden soll' }, + }, + }, + RSQ: { + description: 'Gibt das Quadrat des Pearsonschen Korrelationskoeffizienten zurück, entsprechend den in "Y_Werte" und "X_Werte" abgelegten Datenpunkten. Weitere Informationen finden Sie unter PEARSON (Funktion) . Ein r-quadrat-Wert kann als der Anteil der Varianz von Y, der durch die Varianz von X erklärt wird, interpretiert werden.', + abstract: 'Gibt das Quadrat des Pearsonschen Korrelationskoeffizienten zurück, entsprechend den in "Y_Werte" und "X_Werte" abgelegten Datenpunkten. Weitere Informationen finden Sie unter PEARSON (Funktion) . Ein r-quadrat-Wert kann als der Anteil der Varianz von Y, der durch die Varianz von X erklärt wird, interpretiert werden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Eine Matrix oder ein Zellbereich numerisch abhängiger Datenpunkte' }, + knownXs: { name: 'known_x\'s', detail: 'Erforderlich. Eine Reihe unabhängiger Datenpunkte' }, + }, + }, + SKEW: { + description: 'Gibt die Schiefe einer Verteilung zurück. Die Schiefe ist ein Maß für die Asymmetrie einer eingipfligen Häufigkeitsverteilung um ihren Mittelwert. Eine positive Schiefe zeigt eine Verteilung an, deren Gipfel sich tendenziell zu Werten größer dem Mittelwert hin orientiert. Eine negative Schiefe zeigt eine Verteilung an, deren Gipfel sich tendenziell zu Werten kleiner dem Mittelwert hin orientiert.', + abstract: 'Gibt die Schiefe einer Verteilung zurück. Die Schiefe ist ein Maß für die Asymmetrie einer eingipfligen Häufigkeitsverteilung um ihren Mittelwert. Eine positive Schiefe zeigt eine Verteilung an, deren Gipfel sich tendenziell zu Werten größer dem Mittelwert hin orientiert. Eine negative Schiefe zeigt eine Verteilung an, deren Gipfel sich tendenziell zu Werten kleiner dem Mittelwert hin orientiert.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie die Schiefe berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Zahl1 ist erforderlich, nachfolgende Nummern sind optional. 1 bis 255 Argumente, für die Sie die Schiefe berechnen möchten. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + SKEW_P: { + description: 'Gibt die Schiefe einer Verteilung auf der Basis einer Grundgesamtheit zurück: eine Charakterisierung des Asymmetriegrads einer Verteilung um ihren Mittelwert.', + abstract: 'Gibt die Schiefe einer Verteilung auf der Basis einer Grundgesamtheit zurück: eine Charakterisierung des Asymmetriegrads einer Verteilung um ihren Mittelwert.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Die erste Zahl, der erste Zellbezug oder Bereich, für die bzw. den Sie die Schiefe berechnen möchten.' }, + number2: { name: 'number2', detail: 'Weitere Zahlen, Zellbezüge oder Bereiche, für die bzw. den Sie die Schiefe berechnen möchten, bis zu maximal 255.' }, + }, + }, + SLOPE: { + description: 'Gibt die Steigung der Regressionsgeraden zurück, die an die in Y_Werte und X_Werte abgelegten Datenpunkte angepasst ist. Die Steigung entspricht dem Quotienten aus dem jeweiligen vertikalen und dem horizontalen Abstand zweier beliebiger Punkte der Geraden und ist ein Maß für die Änderung entlang der Regressionsgeraden.', + abstract: 'Gibt die Steigung der Regressionsgeraden zurück, die an die in Y_Werte und X_Werte abgelegten Datenpunkte angepasst ist. Die Steigung entspricht dem Quotienten aus dem jeweiligen vertikalen und dem horizontalen Abstand zweier beliebiger Punkte der Geraden und ist ein Maß für die Änderung entlang der Regressionsgeraden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Eine Matrix oder ein Zellbereich numerisch abhängiger Datenpunkte' }, + knownXs: { name: 'known_x\'s', detail: 'Erforderlich. Eine Reihe unabhängiger Datenpunkte' }, + }, + }, + SMALL: { + description: 'Gibt den k-kleinsten Wert einer Datengruppe zurück. Mit dieser Funktion können Sie Werte ermitteln, die innerhalb einer Datenmenge eine bestimmte relative Größe haben.', + abstract: 'Gibt den k-kleinsten Wert einer Datengruppe zurück. Mit dieser Funktion können Sie Werte ermitteln, die innerhalb einer Datenmenge eine bestimmte relative Größe haben.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Eine Matrix oder ein Bereich von numerischen Daten, deren k-kleinsten Wert Sie bestimmen möchten' }, + k: { name: 'k', detail: 'Erforderlich. Der Rang des Elements einer Matrix oder eines Zellbereichs, dessen Wert zurückgegeben werden soll' }, + }, + }, + STANDARDIZE: { + description: 'Gibt den standardisierten Wert einer Verteilung zurück, die durch Mittelwert und Standabwn charakterisiert ist.', + abstract: 'Gibt den standardisierten Wert einer Verteilung zurück, die durch Mittelwert und Standabwn charakterisiert ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der Wert, den Sie standardisieren möchten' }, + mean: { name: 'mean', detail: 'Erforderlich. Das arithmetische Mittel der Verteilung' }, + standardDev: { name: 'standard_dev', detail: 'Erforderlich. Die Standardabweichung der Verteilung' }, + }, + }, + STDEV_P: { + description: 'Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + abstract: 'Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Grundgesamtheit entspricht' }, + number2: { name: 'number2', detail: 'Optional. 1 bis 254 numerische Argumente, die einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + STDEV_S: { + description: 'Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + abstract: 'Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Stichprobe einer Grundgesamtheit entspricht. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 254 numerische Argumente, die einer Stichprobe einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + STDEVA: { + description: 'Schätzt die Standardabweichung ausgehend von einer Stichprobe. Die Standardabweichung ist ein Maß dafür, wie weit die jeweiligen Werte um den Mittelwert (Durchschnitt) streuen.', + abstract: 'Schätzt die Standardabweichung ausgehend von einer Stichprobe. Die Standardabweichung ist ein Maß dafür, wie weit die jeweiligen Werte um den Mittelwert (Durchschnitt) streuen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, die einer Stichprobe einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, die einer Stichprobe einer Grundgesamtheit entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + STDEVPA: { + description: 'Berechnet die Standardabweichung ausgehend von einer als Argumente angegebenen Grundgesamtheit, einschließlich Text und Wahrheitswerte. Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + abstract: 'Berechnet die Standardabweichung ausgehend von einer als Argumente angegebenen Grundgesamtheit, einschließlich Text und Wahrheitswerte. Die Standardabweichung ist ein Maß für die Streuung von Werten bezüglich ihres Mittelwerts (dem Durchschnitt).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, die einer Population entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Werte, die einer Population entsprechen. Anstelle der durch Semikolons voneinander getrennten Argumente können Sie auch eine Matrix oder einen Bezug auf eine Matrix angeben.' }, + }, + }, + STEYX: { + description: 'Gibt den Standardfehler der geschätzten y-Werte für alle x-Werte der Regression zurück. Der Standardfehler ist ein Maß dafür, wie groß der Fehler bei der Prognose (Vorhersage) des zu einem x-Wert gehörenden y-Werts ist.', + abstract: 'Gibt den Standardfehler der geschätzten y-Werte für alle x-Werte der Regression zurück. Der Standardfehler ist ein Maß dafür, wie groß der Fehler bei der Prognose (Vorhersage) des zu einem x-Wert gehörenden y-Werts ist.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Erforderlich. Eine Matrix oder ein Bereich abhängiger Datenpunkte' }, + knownXs: { name: 'known_x\'s', detail: 'Erforderlich. Eine Matrix oder ein Bereich unabhängiger Datenpunkte' }, + }, + }, + T_DIST: { + description: 'Gibt die linksseitige Student-t-Verteilung zurück. Die t-Verteilung wird in der Hypothesenüberprüfung von kleinen Beispieldatasets verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + abstract: 'Gibt die linksseitige Student-t-Verteilung zurück. Die t-Verteilung wird in der Hypothesenüberprüfung von kleinen Beispieldatasets verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der numerische Wert, für den die Verteilung ausgewertet werden soll' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Eine ganze Zahl, mit der die Anzahl der Freiheitsgrade angegeben wird' }, + cumulative: { name: 'cumulative', detail: 'Erforderlich. Ein logischer Wert, der die Form der Funktion bestimmt. Wenn kumulativ TRUE ist, gibt T.DIST die kumulierte Verteilungsfunktion zurück. Wenn FALSE, wird die Wahrscheinlichkeitsdichtefunktion zurückgegeben.' }, + }, + }, + T_DIST_2T: { + description: 'Die (Student) t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + abstract: 'Die (Student) t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der numerische Wert, für den die Verteilung ausgewertet werden soll' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Eine ganze Zahl, mit der die Anzahl der Freiheitsgrade angegeben wird' }, + }, + }, + T_DIST_RT: { + description: 'Die t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + abstract: 'Die t-Verteilung wird für das Testen von Hypothesen bei kleinem Stichprobenumfang verwendet. Verwenden Sie diese Funktion anstelle einer Tabelle mit kritischen Werten für die t-Verteilung.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Erforderlich. Der numerische Wert, für den die Verteilung ausgewertet werden soll' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Eine ganze Zahl, mit der die Anzahl der Freiheitsgrade angegeben wird' }, + }, + }, + T_INV: { + description: 'Gibt die Umkehrfunktion der Wahrscheinlichkeit für die Studentsche t-Verteilung zurück.', + abstract: 'Gibt die Umkehrfunktion der Wahrscheinlichkeit für die Studentsche t-Verteilung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'Wahrscheinlichkeit', detail: 'Erforderlich. Die der Student-t-Verteilung zugeordnete Wahrscheinlichkeit.' }, + degFreedom: { name: 'Deg_freedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade, durch die die Verteilung bestimmt ist.' }, + }, + }, + T_INV_2T: { + description: 'Gibt zweiseitige Quantile der (Student) t-Verteilung zurück.', + abstract: 'Gibt zweiseitige Quantile der (Student) t-Verteilung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Erforderlich. Die der (Student) t-Verteilung zugeordnete Wahrscheinlichkeit' }, + degFreedom: { name: 'degFreedom', detail: 'Erforderlich. Die Anzahl der Freiheitsgrade, durch die die Verteilung bestimmt ist' }, + }, + }, + T_TEST: { + description: 'Gibt die Teststatistik eines Student\'schen t-Tests zurück. Mithilfe von T.TEST können Sie testen, ob zwei Stichproben aus zwei Grundgesamtheiten mit demselben Mittelwert stammen.', + abstract: 'Gibt die Teststatistik eines Student\'schen t-Tests zurück. Mithilfe von T.TEST können Sie testen, ob zwei Stichproben aus zwei Grundgesamtheiten mit demselben Mittelwert stammen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Erforderlich. Das erste Dataset' }, + array2: { name: 'array2', detail: 'Erforderlich. Das zweite Dataset' }, + tails: { name: 'tails', detail: 'Erforderlich. Gibt die Anzahl der Verteilungsfragmente an. Wenn Tails = 1 ist, verwendet T.TEST die einseitige Verteilung. Wenn Tails = 2 ist, verwendet T.TEST die zweiseitige Verteilung.' }, + type: { name: 'type', detail: 'Erforderlich. Der Typ des durchzuführenden t-Tests' }, + }, + }, + TREND: { + description: 'Die TREND-Funktion gibt Werte entlang eines linearen Trends zurück. Es passt eine gerade Linie (mit der Methode der geringsten Quadrate) an die known_y und known_x des Arrays. TREND gibt die y-Werte entlang dieser Zeile für das Array von new_x zurück, das Sie angeben.', + abstract: 'Die TREND-Funktion gibt Werte entlang eines linearen Trends zurück. Es passt eine gerade Linie (mit der Methode der geringsten Quadrate) an die known_y und known_x des Arrays. TREND gibt die y-Werte entlang dieser Zeile für das Array von new_x zurück, das Sie angeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Der Satz von y-Werten, den Sie bereits in der Beziehung y = mx + b kennen Besteht die Matrix Y_Werte aus nur einer Spalte, wird jede Spalte der Matrix X_Werte als eigenständige Variable interpretiert. Besteht die Matrix Y_Werte aus nur einer Zeile, wird jede Zeile der Matrix X_Werte als eigenständige Variable interpretiert.' }, + knownXs: { name: 'known_x\'s', detail: 'Ein optionaler Satz von X-Werten, den Sie möglicherweise bereits in der Beziehung y = mx + b kennen Die Matrix X_Werte kann eine oder mehrere Gruppen von Variablen umfassen. Wird nur eine Variable verwendet, können Y_Werte und X_Werte Bereiche beliebiger Form sein, solange sie dieselben Dimensionen haben. Werden mehrere Variablen verwendet, muss Y_Werte ein Vektor sein (das heißt ein Bereich, der aus nur einer Zeile oder nur einer Spalte besteht). Fehlt die Matrix X_Werte, wird an ihrer Stelle die Matrix {1.2.3...} angenommen, die genauso viele Elemente wie Y_Werte enthält.' }, + newXs: { name: 'new_x\'s', detail: 'Neue x-Werte, für die TREND die entsprechenden y-Werte zurückgeben soll Analog zur Matrix X_Werte muss auch Neue_x_Werte für jede unabhängige Variable eine eigene Spalte (oder Zeile) bereitstellen. Daher müssen die Matrizen X_Werte und Neue_x_Werte gleich viele Spalten haben, wenn Y_Werte sich in einer einzelnen Spalte befindet. Befindet sich Y_Werte in einer einzelnen Zeile, müssen die Matrizen X_Werte und Neue_x_Werte gleich viele Zeilen haben. Fehlt die Matrix Neue_x_Werte, wird angenommen, dass sie mit der Matrix X_Werte identisch ist. Fehlt sowohl die Matrix X_Werte als auch die Matrix Neue_x_Werte, werden diese als die Matrix {1;2;3;...} angenommen, die genauso viele Elemente wie die Matrix Y_Werte enthält.' }, + constb: { name: 'const', detail: 'Ein logischer Wert, der angibt, ob die Konstante b auf 0 festgelegt werden soll. Ist Konstante mit WAHR belegt oder nicht angegeben, wird b normal berechnet. Ist Konstante mit FALSCH belegt, wird b gleich 0 (Null) gesetzt und m so angepasst, dass y = mx gilt.' }, + }, + }, + TRIMMEAN: { + description: 'Gibt den Mittelwert einer Datengruppe zurück, ohne die Randwerte zu berücksichtigen. GESTUTZTMITTEL berechnet den Mittelwert einer Teilmenge der Datenpunkte, die darauf basiert, dass entsprechend des jeweils angegebenen Prozentsatzes die kleinsten und größten Werte der ursprünglichen Datenpunkte ausgeschlossen werden. Diese Funktion können Sie immer dann verwenden, wenn bei der Auswertung keine Daten berücksichtigt werden sollen, die als Ausreißer anzusehen sind.', + abstract: 'Gibt den Mittelwert einer Datengruppe zurück, ohne die Randwerte zu berücksichtigen. GESTUTZTMITTEL berechnet den Mittelwert einer Teilmenge der Datenpunkte, die darauf basiert, dass entsprechend des jeweils angegebenen Prozentsatzes die kleinsten und größten Werte der ursprünglichen Datenpunkte ausgeschlossen werden. Diese Funktion können Sie immer dann verwenden, wenn bei der Auswertung keine Daten berücksichtigt werden sollen, die als Ausreißer anzusehen sind.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Eine Matrix oder Gruppe von Werten, die ohne ihre Ausreißer gemittelt wird.' }, + percent: { name: 'percent', detail: 'Erforderlich. Die Bruchzahl der Datenpunkte, die aus der Berechnung ausgeschlossen werden sollen. Wenn beispielsweise Prozent = 0,2 ist, werden vier Punkte aus einem Dataset von 20 Punkten (20 x 0,2) gekürzt: 2 von oben und 2 vom unteren Rand des Satzes.' }, + }, + }, + VAR_P: { + description: 'Berechnet die Varianz ausgehend von der Grundgesamtheit (logische Werte und Text werden ignoriert).', + abstract: 'Berechnet die Varianz ausgehend von der Grundgesamtheit (logische Werte und Text werden ignoriert).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Grundgesamtheit entspricht' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 254 numerische Argumente, die einer Grundgesamtheit entsprechen' }, + }, + }, + VAR_S: { + description: 'Schätzt die Varianz ausgehend von einer Stichprobe (logische Werte und Text werden in der Stichprobe ignoriert).', + abstract: 'Schätzt die Varianz ausgehend von einer Stichprobe (logische Werte und Text werden in der Stichprobe ignoriert).', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Erforderlich. Das erste numerische Argument, das einer Stichprobe einer Grundgesamtheit entspricht.' }, + number2: { name: 'number2', detail: 'Optional. 2 bis 254 numerische Argumente, die einer Stichprobe einer Grundgesamtheit entsprechen' }, + }, + }, + VARA: { + description: 'Schätzt die Varianz auf der Basis einer Stichprobe.', + abstract: 'Schätzt die Varianz auf der Basis einer Stichprobe.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Wertargumente, die einer Stichprobe einer Grundgesamtheit entsprechen.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Wertargumente, die einer Stichprobe einer Grundgesamtheit entsprechen.' }, + }, + }, + VARPA: { + description: 'Berechnet die Varianz ausgehend von der Grundgesamtheit.', + abstract: 'Berechnet die Varianz ausgehend von der Grundgesamtheit.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Wertargumente, die einer Grundgesamtheit entsprechen.' }, + value2: { name: 'value2', detail: 'Wert1 ist erforderlich, nachfolgende Werte sind optional. 1 bis 255 Wertargumente, die einer Grundgesamtheit entsprechen.' }, + }, + }, + WEIBULL_DIST: { + description: 'Gibt die Weibull-Verteilung zurück.', + abstract: 'Gibt die Weibull-Verteilung zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Der Wert, für den Sie die Verteilung berechnen möchten.' }, + alpha: { name: 'alpha', detail: 'Ein Parameter der Verteilung.' }, + beta: { name: 'beta', detail: 'Ein Parameter der Verteilung.' }, + cumulative: { name: 'cumulative', detail: 'Ein Wahrheitswert, der die Form der Funktion bestimmt. Ist cumulative TRUE, gibt WEIBULL.DIST die kumulative Verteilungsfunktion zurück; ist cumulative FALSE, die Wahrscheinlichkeitsdichtefunktion.' }, + }, + }, + Z_TEST: { + description: 'Beispiele für die Verwendung von G.TEST in einer Formel zur Berechnung eines zweiseitigen Wahrscheinlichkeitswerts finden Sie unten im Abschnitt "Hinweise".', + abstract: 'Beispiele für die Verwendung von G.TEST in einer Formel zur Berechnung eines zweiseitigen Wahrscheinlichkeitswerts finden Sie unten im Abschnitt "Hinweise".', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Erforderlich. Die Matrix (Array) oder der Datenbereich, gegen die/den Sie x testen möchten.' }, + x: { name: 'x', detail: 'Erforderlich. Der zu testende Wert' }, + sigma: { name: 'sigma', detail: 'Optional. Die bekannte Standardabweichung der Grundgesamtheit. Ohne Angabe wird die Beispielstandardabweichung verwendet.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/en-US.ts b/packages/sheets-formula/src/locale/function-list/statistical/en-US.ts index de720f49ba..dc363fcf4e 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/en-us/excel/functions/avedev-function', }, ], functionParameter: { @@ -35,7 +35,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/en-us/excel/functions/average-function', }, ], functionParameter: { @@ -50,19 +50,19 @@ const locale = { }, }, 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.', + description: 'The AVERAGE.WEIGHTED function finds the weighted average of a set of values, given the values and the corresponding weights.', + abstract: 'The AVERAGE.WEIGHTED function 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', + url: 'https://support.google.com/docs/answer/9084098?hl=en', }, ], functionParameter: { - values: { name: 'values', detail: 'The values to be averaged.' }, - weights: { name: 'weights', detail: 'The corresponding list of weights to apply.' }, - additionalValues: { name: 'additional_values', detail: 'Additional values to average.' }, - additionalWeights: { name: 'additional_weights', detail: 'Additional weights to apply.' }, + values: { name: 'values', detail: 'The values to be averaged. May refer to a range of cells, or may contain the values themselves.' }, + weights: { name: 'weights', detail: 'The corresponding list of weights to apply. May refer to a range of cells, or may contain the weights themselves. Weights cannot be negative, though they can be zero. At least one of the weights must be positive. If using a range of cells, that range must have the same number of rows and columns as the range of values.' }, + additionalValues: { name: 'additional_values', detail: 'Additional values to average. Additional values are optional.' }, + additionalWeights: { name: 'additional_weights', detail: 'Additional weights to apply. Additional weights are optional, but each additional_value must be followed by exactly one additional_weight .' }, }, }, AVERAGEA: { @@ -71,7 +71,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/en-us/excel/functions/averagea-function', }, ], functionParameter: { @@ -91,7 +91,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/en-us/excel/functions/averageif-function', }, ], functionParameter: { @@ -106,7 +106,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/en-us/excel/functions/averageifs-function', }, ], functionParameter: { @@ -123,7 +123,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/en-us/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -141,7 +141,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/en-us/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -158,7 +158,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/en-us/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -174,7 +174,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/en-us/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -190,7 +190,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/en-us/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -205,7 +205,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/en-us/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -220,7 +220,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/en-us/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -234,7 +234,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/en-us/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -248,7 +248,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/en-us/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -262,7 +262,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/en-us/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -276,7 +276,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/en-us/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -291,7 +291,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/en-us/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -306,7 +306,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/en-us/excel/functions/correl-function', }, ], functionParameter: { @@ -320,7 +320,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/en-us/excel/functions/count-function', }, ], functionParameter: { @@ -341,17 +341,17 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/en-us/excel/functions/counta-function', }, ], functionParameter: { - number1: { + value1: { name: 'value1', - detail: 'The first argument representing the values that you want to count.', + detail: 'The first number, cell reference, or range for which you want the average.', }, - number2: { + value2: { name: 'value2', - detail: 'Additional arguments representing the values that you want to count, up to a maximum of 255 arguments.', + detail: 'Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255.', }, }, }, @@ -361,7 +361,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/en-us/excel/functions/countblank-function', }, ], functionParameter: { @@ -374,7 +374,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/en-us/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -388,7 +388,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/en-us/excel/functions/countifs-function', }, ], functionParameter: { @@ -404,7 +404,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/en-us/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -418,7 +418,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/en-us/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -432,7 +432,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/en-us/excel/functions/devsq-function', }, ], functionParameter: { @@ -446,7 +446,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/en-us/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -461,7 +461,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/en-us/excel/functions/f-dist-function', }, ], functionParameter: { @@ -477,7 +477,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/en-us/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -492,7 +492,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/en-us/excel/functions/f-inv-function', }, ], functionParameter: { @@ -507,7 +507,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/en-us/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -522,7 +522,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/en-us/excel/functions/f-test-function', }, ], functionParameter: { @@ -536,7 +536,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/en-us/excel/functions/fisher-function', }, ], functionParameter: { @@ -549,7 +549,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/en-us/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -562,7 +562,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -577,12 +577,16 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: 'Target date', detail: 'The data point for which you want to predict a value.' }, + values: { name: 'Values', detail: 'The historical values for which you want to forecast the next points.' }, + timeline: { name: 'Timeline', detail: 'The independent range or array of numeric dates or times with a constant step.' }, + seasonality: { name: 'Seasonality', detail: 'Optional. The seasonal length. Use 1 for automatic detection (default) or 0 for no seasonality.' }, + dataCompletion: { name: 'Data completion', detail: 'Optional. How to handle missing points. Use 1 to interpolate (default) or 0 to treat them as zero.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. A value from 1 through 7 that specifies how to aggregate duplicate time stamps.' }, }, }, FORECAST_ETS_CONFINT: { @@ -591,12 +595,17 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: 'Target date', detail: 'The data point for which you want a confidence interval.' }, + values: { name: 'Values', detail: 'The historical values used for the forecast.' }, + timeline: { name: 'Timeline', detail: 'The independent range or array of numeric dates or times with a constant step.' }, + confidenceLevel: { name: 'Confidence level', detail: 'Optional. A number between 0 and 1 for the confidence level. The default is 0.95.' }, + seasonality: { name: 'Seasonality', detail: 'Optional. The seasonal length. Use 1 for automatic detection (default) or 0 for no seasonality.' }, + dataCompletion: { name: 'Data completion', detail: 'Optional. How to handle missing points. Use 1 to interpolate (default) or 0 to treat them as zero.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. A value from 1 through 7 that specifies how to aggregate duplicate time stamps.' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -605,12 +614,14 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: 'Values', detail: 'The historical values for which you want to detect seasonality.' }, + timeline: { name: 'Timeline', detail: 'The independent range or array of numeric dates or times with a constant step.' }, + dataCompletion: { name: 'Data completion', detail: 'Optional. How to handle missing points. Use 1 to interpolate (default) or 0 to treat them as zero.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. A value from 1 through 7 that specifies how to aggregate duplicate time stamps.' }, }, }, FORECAST_ETS_STAT: { @@ -619,12 +630,16 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: 'Values', detail: 'The historical values used for the forecast.' }, + timeline: { name: 'Timeline', detail: 'The independent range or array of numeric dates or times with a constant step.' }, + statisticType: { name: 'Statistic type', detail: 'A value from 1 through 8 that specifies which forecast statistic to return.' }, + seasonality: { name: 'Seasonality', detail: 'Optional. The seasonal length. Use 1 for automatic detection (default) or 0 for no seasonality.' }, + dataCompletion: { name: 'Data completion', detail: 'Optional. How to handle missing points. Use 1 to interpolate (default) or 0 to treat them as zero.' }, + aggregation: { name: 'Aggregation', detail: 'Optional. A value from 1 through 7 that specifies how to aggregate duplicate time stamps.' }, }, }, FORECAST_LINEAR: { @@ -633,7 +648,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/en-us/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -648,7 +663,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/en-us/excel/functions/frequency-function', }, ], functionParameter: { @@ -662,7 +677,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/en-us/excel/functions/gamma-function', }, ], functionParameter: { @@ -675,7 +690,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/en-us/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -691,7 +706,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/en-us/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -706,7 +721,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/en-us/excel/functions/gammaln-function', }, ], functionParameter: { @@ -719,7 +734,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/en-us/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -732,7 +747,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/en-us/excel/functions/gauss-function', }, ], functionParameter: { @@ -745,7 +760,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/en-us/excel/functions/geomean-function', }, ], functionParameter: { @@ -759,7 +774,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/en-us/excel/functions/growth-function', }, ], functionParameter: { @@ -775,7 +790,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/en-us/excel/functions/harmean-function', }, ], functionParameter: { @@ -789,7 +804,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/en-us/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -806,7 +821,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/en-us/excel/functions/intercept-function', }, ], functionParameter: { @@ -820,7 +835,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/en-us/excel/functions/kurt-function', }, ], functionParameter: { @@ -834,7 +849,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/en-us/excel/functions/large-function', }, ], functionParameter: { @@ -848,7 +863,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/en-us/excel/functions/linest-function', }, ], functionParameter: { @@ -864,7 +879,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/en-us/excel/functions/logest-function', }, ], functionParameter: { @@ -880,7 +895,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/en-us/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -896,7 +911,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/en-us/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -906,17 +921,17 @@ const locale = { }, }, 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.', + description: 'This function calculates the margin of error from a range of values and a confidence level.', + abstract: 'This function 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', + url: 'https://support.google.com/docs/answer/12487850?hl=en', }, ], 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).' }, + range: { name: 'range', detail: 'Range - The range of values used to calculate the margin of error.' }, + confidence: { name: 'confidence', detail: 'Confidence - The desired confidence level between (0, 1).' }, }, }, MAX: { @@ -925,7 +940,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/en-us/excel/functions/max-function', }, ], functionParameter: { @@ -945,7 +960,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/en-us/excel/functions/maxa-function', }, ], functionParameter: { @@ -959,7 +974,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/en-us/excel/functions/maxifs-function', }, ], functionParameter: { @@ -976,7 +991,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/en-us/excel/functions/median-function', }, ], functionParameter: { @@ -990,7 +1005,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/en-us/excel/functions/min-function', }, ], functionParameter: { @@ -1010,7 +1025,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/en-us/excel/functions/mina-function', }, ], functionParameter: { @@ -1024,7 +1039,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/en-us/excel/functions/minifs-function', }, ], functionParameter: { @@ -1041,7 +1056,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/en-us/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1055,7 +1070,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/en-us/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1069,7 +1084,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/en-us/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1085,7 +1100,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/en-us/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1101,7 +1116,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/en-us/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1116,7 +1131,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/en-us/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1130,7 +1145,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/en-us/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1143,7 +1158,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/en-us/excel/functions/pearson-function', }, ], functionParameter: { @@ -1157,7 +1172,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/en-us/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1171,7 +1186,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/en-us/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1185,7 +1200,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/en-us/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1200,7 +1215,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/en-us/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1215,7 +1230,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/en-us/excel/functions/permut-function', }, ], functionParameter: { @@ -1229,7 +1244,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/en-us/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1243,7 +1258,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/en-us/excel/functions/phi-function', }, ], functionParameter: { @@ -1256,7 +1271,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/en-us/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1271,7 +1286,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/en-us/excel/functions/prob-function', }, ], functionParameter: { @@ -1287,7 +1302,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/en-us/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1301,7 +1316,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/en-us/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1315,7 +1330,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/en-us/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1330,7 +1345,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/en-us/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1345,12 +1360,12 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/en-us/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'array1', detail: 'The dependent array or range of data.' }, - array2: { name: 'array2', detail: 'The independent array or range of data.' }, + 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.' }, }, }, SKEW: { @@ -1359,7 +1374,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/en-us/excel/functions/skew-function', }, ], functionParameter: { @@ -1373,7 +1388,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/en-us/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1387,7 +1402,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/en-us/excel/functions/slope-function', }, ], functionParameter: { @@ -1401,7 +1416,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/en-us/excel/functions/small-function', }, ], functionParameter: { @@ -1415,7 +1430,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/en-us/excel/functions/standardize-function', }, ], functionParameter: { @@ -1430,7 +1445,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/en-us/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1444,7 +1459,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/en-us/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1458,7 +1473,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/en-us/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1472,7 +1487,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/en-us/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1486,7 +1501,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/en-us/excel/functions/steyx-function', }, ], functionParameter: { @@ -1500,7 +1515,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/en-us/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1515,7 +1530,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/en-us/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1529,7 +1544,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/en-us/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1543,7 +1558,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/en-us/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1557,7 +1572,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/en-us/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1571,7 +1586,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/en-us/excel/functions/t-test-function', }, ], functionParameter: { @@ -1587,7 +1602,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/en-us/excel/functions/trend-function', }, ], functionParameter: { @@ -1603,7 +1618,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/en-us/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1617,7 +1632,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/en-us/excel/functions/var-p-function', }, ], functionParameter: { @@ -1631,7 +1646,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/en-us/excel/functions/var-s-function', }, ], functionParameter: { @@ -1645,7 +1660,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/en-us/excel/functions/vara-function', }, ], functionParameter: { @@ -1659,7 +1674,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/en-us/excel/functions/varpa-function', }, ], functionParameter: { @@ -1673,7 +1688,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/en-us/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1689,7 +1704,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/en-us/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/es-ES.ts b/packages/sheets-formula/src/locale/function-list/statistical/es-ES.ts index 7df9a54294..eb8d44d431 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/es-es/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/es-es/excel/functions/average-function', }, ], functionParameter: { @@ -52,19 +52,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: 'Encuentra el promedio ponderado de un conjunto de valores, dados los valores y las ponderaciones correspondientes.', - abstract: 'Encuentra el promedio ponderado de un conjunto de valores, dados los valores y las ponderaciones correspondientes.', + description: 'La función AVERAGE.WEIGHTED calcula la media ponderada de un conjunto de valores a partir de dichos valores y sus ponderaciones correspondientes.', + abstract: 'La función AVERAGE.WEIGHTED calcula la media ponderada de un conjunto de valores a partir de dichos valores y sus ponderaciones correspondientes.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/9084098?hl=es&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=es', }, ], functionParameter: { - values: { name: 'valores', detail: 'Los valores para los que se va a calcular el promedio.' }, - weights: { name: 'ponderaciones', detail: 'La lista de ponderaciones correspondientes a aplicar.' }, - additionalValues: { name: 'valores_adicionales', detail: 'Otros valores para los que se va a calcular el promedio.' }, - additionalWeights: { name: 'ponderaciones_adicionales', detail: 'Otras ponderaciones a aplicar.' }, + values: { name: 'valores', detail: 'Valores de los que se va a calcular la media. Puede hacer referencia a un intervalo de celdas o incluir los propios valores.' }, + weights: { name: 'ponderaciones', detail: 'Lista correspondiente de pesos que se van a aplicar. Puede hacer referencia a un intervalo de celdas o incluir los propios pesos. Los pesos no pueden ser negativos, aunque pueden ser cero. Al menos uno de los pesos debe ser positivo. Si se usa un intervalo de celdas, este debe tener el mismo número de filas y columnas que el intervalo de valores.' }, + additionalValues: { name: 'valores_adicionales', detail: 'Otros valores con los que calcular la media. Los valores adicionales son opcionales.' }, + additionalWeights: { name: 'ponderaciones_adicionales', detail: 'Otros pesos que se pueden aplicar. Los pesos adicionales son opcionales, pero cada valor_adicional debe ir seguido exactamente de un peso_adicional .' }, }, }, AVERAGEA: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/es-es/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/es-es/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/es-es/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/es-es/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/es-es/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/es-es/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/es-es/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/es-es/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/es-es/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/es-es/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/es-es/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/es-es/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/es-es/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/es-es/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/es-es/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/es-es/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/es-es/excel/functions/count-function', }, ], functionParameter: { @@ -343,17 +343,17 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/es-es/excel/functions/counta-function', }, ], functionParameter: { - number1: { + value1: { name: 'valor1', - detail: 'El primer argumento que representa los valores que desea contar.', + detail: 'El primer número, referencia de celda o rango para el que desea el promedio.', }, - number2: { + value2: { name: 'valor2', - detail: 'Argumentos adicionales que representan los valores que desea contar, hasta un máximo de 255 argumentos.', + detail: 'Números adicionales, referencias de celda o rangos para los que desea el promedio, hasta un máximo de 255.', }, }, }, @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/es-es/excel/functions/countblank-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/es-es/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/es-es/excel/functions/countifs-function', }, ], functionParameter: { @@ -406,7 +406,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/es-es/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -420,7 +420,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/es-es/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -434,7 +434,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/es-es/excel/functions/devsq-function', }, ], functionParameter: { @@ -448,7 +448,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/es-es/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -463,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/es-es/excel/functions/f-dist-function', }, ], functionParameter: { @@ -479,7 +479,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/es-es/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -494,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/es-es/excel/functions/f-inv-function', }, ], functionParameter: { @@ -509,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/es-es/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -524,7 +524,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/es-es/excel/functions/f-test-function', }, ], functionParameter: { @@ -538,7 +538,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/es-es/excel/functions/fisher-function', }, ], functionParameter: { @@ -551,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/es-es/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -564,7 +564,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -579,12 +579,16 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + targetDate: { name: 'Fecha de destino', detail: 'El punto de datos para el que desea predecir un valor.' }, + values: { name: 'Valores', detail: 'Los valores históricos utilizados para la previsión.' }, + timeline: { name: 'Escala de tiempo', detail: 'Un rango o matriz independiente de fechas u horas numéricas con un paso constante.' }, + seasonality: { name: 'Estacionalidad', detail: 'Opcional. Longitud estacional; 1 para detección automática y 0 sin estacionalidad.' }, + dataCompletion: { name: 'Relleno de datos', detail: 'Opcional. Use 1 para interpolar los puntos que faltan o 0 para tratarlos como cero.' }, + aggregation: { name: 'Agregación', detail: 'Opcional. Un valor de 1 a 7 indica cómo agregar marcas de tiempo duplicadas.' }, }, }, FORECAST_ETS_CONFINT: { @@ -593,12 +597,17 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + targetDate: { name: 'Fecha de destino', detail: 'El punto de datos para el que desea predecir un valor.' }, + values: { name: 'Valores', detail: 'Los valores históricos utilizados para la previsión.' }, + timeline: { name: 'Escala de tiempo', detail: 'Un rango o matriz independiente de fechas u horas numéricas con un paso constante.' }, + confidenceLevel: { name: 'Nivel de confianza', detail: 'Opcional. Un número entre 0 y 1; el valor predeterminado es 0,95.' }, + seasonality: { name: 'Estacionalidad', detail: 'Opcional. Longitud estacional; 1 para detección automática y 0 sin estacionalidad.' }, + dataCompletion: { name: 'Relleno de datos', detail: 'Opcional. Use 1 para interpolar los puntos que faltan o 0 para tratarlos como cero.' }, + aggregation: { name: 'Agregación', detail: 'Opcional. Un valor de 1 a 7 indica cómo agregar marcas de tiempo duplicadas.' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -607,12 +616,14 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + values: { name: 'Valores', detail: 'Los valores históricos utilizados para la previsión.' }, + timeline: { name: 'Escala de tiempo', detail: 'Un rango o matriz independiente de fechas u horas numéricas con un paso constante.' }, + dataCompletion: { name: 'Relleno de datos', detail: 'Opcional. Use 1 para interpolar los puntos que faltan o 0 para tratarlos como cero.' }, + aggregation: { name: 'Agregación', detail: 'Opcional. Un valor de 1 a 7 indica cómo agregar marcas de tiempo duplicadas.' }, }, }, FORECAST_ETS_STAT: { @@ -621,12 +632,16 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + values: { name: 'Valores', detail: 'Los valores históricos utilizados para la previsión.' }, + timeline: { name: 'Escala de tiempo', detail: 'Un rango o matriz independiente de fechas u horas numéricas con un paso constante.' }, + statisticType: { name: 'Tipo de estadística', detail: 'Un valor de 1 a 8 indica la estadística de previsión que se devuelve.' }, + seasonality: { name: 'Estacionalidad', detail: 'Opcional. Longitud estacional; 1 para detección automática y 0 sin estacionalidad.' }, + dataCompletion: { name: 'Relleno de datos', detail: 'Opcional. Use 1 para interpolar los puntos que faltan o 0 para tratarlos como cero.' }, + aggregation: { name: 'Agregación', detail: 'Opcional. Un valor de 1 a 7 indica cómo agregar marcas de tiempo duplicadas.' }, }, }, FORECAST_LINEAR: { @@ -635,7 +650,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/es-es/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -650,7 +665,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/es-es/excel/functions/frequency-function', }, ], functionParameter: { @@ -664,7 +679,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/es-es/excel/functions/gamma-function', }, ], functionParameter: { @@ -677,7 +692,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/es-es/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -693,7 +708,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/es-es/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -708,7 +723,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/es-es/excel/functions/gammaln-function', }, ], functionParameter: { @@ -721,7 +736,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/es-es/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -734,7 +749,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/es-es/excel/functions/gauss-function', }, ], functionParameter: { @@ -747,7 +762,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/es-es/excel/functions/geomean-function', }, ], functionParameter: { @@ -761,7 +776,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/es-es/excel/functions/growth-function', }, ], functionParameter: { @@ -777,7 +792,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/es-es/excel/functions/harmean-function', }, ], functionParameter: { @@ -791,7 +806,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/es-es/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -808,7 +823,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/es-es/excel/functions/intercept-function', }, ], functionParameter: { @@ -822,7 +837,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/es-es/excel/functions/kurt-function', }, ], functionParameter: { @@ -836,7 +851,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/es-es/excel/functions/large-function', }, ], functionParameter: { @@ -850,7 +865,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/es-es/excel/functions/linest-function', }, ], functionParameter: { @@ -866,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/es-es/excel/functions/logest-function', }, ], functionParameter: { @@ -882,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/es-es/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -898,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/es-es/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -908,16 +923,16 @@ const locale: typeof enUS = { }, }, MARGINOFERROR: { - description: 'Calcula el margen de error a partir de un rango de valores y un nivel de confianza.', - abstract: 'Calcula el margen de error a partir de un rango de valores y un nivel de confianza.', + description: 'Esta función calcula el margen de error a partir de un intervalo de valores y un nivel de confianza.', + abstract: 'Esta función calcula el margen de error a partir de un intervalo de valores y un nivel de confianza.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/12487850?hl=es&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=es', }, ], functionParameter: { - range: { name: 'rango', detail: 'El rango de valores utilizado para calcular el margen de error.' }, + range: { name: 'rango', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, confidence: { name: 'confianza', detail: 'El nivel de confianza deseado entre (0, 1).' }, }, }, @@ -927,7 +942,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/es-es/excel/functions/max-function', }, ], functionParameter: { @@ -947,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/es-es/excel/functions/maxa-function', }, ], functionParameter: { @@ -961,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/es-es/excel/functions/maxifs-function', }, ], functionParameter: { @@ -978,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/es-es/excel/functions/median-function', }, ], functionParameter: { @@ -992,7 +1007,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/es-es/excel/functions/min-function', }, ], functionParameter: { @@ -1012,7 +1027,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/es-es/excel/functions/mina-function', }, ], functionParameter: { @@ -1026,7 +1041,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/es-es/excel/functions/minifs-function', }, ], functionParameter: { @@ -1043,7 +1058,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/es-es/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1057,7 +1072,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/es-es/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1071,7 +1086,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/es-es/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1087,7 +1102,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/es-es/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1103,7 +1118,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/es-es/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1118,7 +1133,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/es-es/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1132,7 +1147,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/es-es/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1145,7 +1160,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/es-es/excel/functions/pearson-function', }, ], functionParameter: { @@ -1159,7 +1174,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/es-es/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1173,7 +1188,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/es-es/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1187,7 +1202,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/es-es/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1202,7 +1217,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/es-es/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1217,7 +1232,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/es-es/excel/functions/permut-function', }, ], functionParameter: { @@ -1231,7 +1246,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/es-es/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1245,7 +1260,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/es-es/excel/functions/phi-function', }, ], functionParameter: { @@ -1258,7 +1273,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/es-es/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1273,7 +1288,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/es-es/excel/functions/prob-function', }, ], functionParameter: { @@ -1289,7 +1304,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/es-es/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1303,7 +1318,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/es-es/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1317,7 +1332,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/es-es/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1332,7 +1347,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/es-es/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1347,12 +1362,12 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/es-es/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'matriz1', detail: 'La matriz o rango de datos dependiente.' }, - array2: { name: 'matriz2', detail: 'La matriz o rango de datos independiente.' }, + knownYs: { name: 'conocido_y', detail: 'La matriz o rango de datos dependiente.' }, + knownXs: { name: 'conocido_x', detail: 'La matriz o rango de datos independiente.' }, }, }, SKEW: { @@ -1361,7 +1376,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/es-es/excel/functions/skew-function', }, ], functionParameter: { @@ -1375,7 +1390,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/es-es/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1389,7 +1404,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/es-es/excel/functions/slope-function', }, ], functionParameter: { @@ -1403,7 +1418,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/small-function-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/es-es/excel/functions/small-function', }, ], functionParameter: { @@ -1417,7 +1432,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/es-es/excel/functions/standardize-function', }, ], functionParameter: { @@ -1432,7 +1447,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/es-es/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1446,7 +1461,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/es-es/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1460,7 +1475,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/es-es/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1474,7 +1489,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/es-es/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1488,7 +1503,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/es-es/excel/functions/steyx-function', }, ], functionParameter: { @@ -1502,7 +1517,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/es-es/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1517,7 +1532,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/es-es/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1531,7 +1546,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/es-es/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1545,7 +1560,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/es-es/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1559,7 +1574,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/es-es/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1573,7 +1588,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/es-es/excel/functions/t-test-function', }, ], functionParameter: { @@ -1589,7 +1604,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/es-es/excel/functions/trend-function', }, ], functionParameter: { @@ -1605,7 +1620,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/es-es/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1619,7 +1634,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/es-es/excel/functions/var-p-function', }, ], functionParameter: { @@ -1633,7 +1648,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/es-es/excel/functions/var-s-function', }, ], functionParameter: { @@ -1647,7 +1662,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/es-es/excel/functions/vara-function', }, ], functionParameter: { @@ -1661,7 +1676,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/es-es/excel/functions/varpa-function', }, ], functionParameter: { @@ -1675,7 +1690,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/es-es/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1691,7 +1706,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/es-es/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/statistical/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/statistical/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/statistical/fr-FR.ts index 60a22638e2..66492afdc3 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/fr-FR.ts @@ -14,8 +14,1670 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + AVEDEV: { + description: 'Renvoie la moyenne des écarts absolus des observations par rapport à leur moyenne arithmétique. ECART.MOYEN mesure la dispersion dans un ensemble de données.', + abstract: 'Renvoie la moyenne des écarts absolus des observations par rapport à leur moyenne arithmétique. ECART.MOYEN mesure la dispersion dans un ensemble de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments pour lesquels vous recherchez la moyenne des écarts par rapport à leur moyenne. Vous pouvez également substituer à des arguments séparés par un point-virgule, une matrice unique ou une référence à une matrice.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments pour lesquels vous recherchez la moyenne des écarts par rapport à leur moyenne. Vous pouvez également substituer à des arguments séparés par un point-virgule, une matrice unique ou une référence à une matrice.' }, + }, + }, + AVERAGE: { + description: 'Retourne la moyenne (arithmétique) des arguments. Par exemple, si la plage A1 :A20 contient des nombres, la formule =AVERAGE(A1 :A20) retourne la moyenne de ces nombres.', + abstract: 'Retourne la moyenne (arithmétique) des arguments. Par exemple, si la plage A1 :A20 contient des nombres, la formule =AVERAGE(A1 :A20) retourne la moyenne de ces nombres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier nombre, référence de cellule ou plage pour lequel vous souhaitez obtenir la moyenne.' }, + number2: { name: 'number2', detail: 'Optionnel. Nombres, références de cellules ou plages supplémentaires dont vous voulez obtenir la moyenne (255 maximum).' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'La fonction AVERAGE.WEIGHTED calcule la moyenne pondérée d’un ensemble de valeurs à partir de ces valeurs et de leurs pondérations respectives.', + abstract: 'La fonction AVERAGE.WEIGHTED calcule la moyenne pondérée d’un ensemble de valeurs à partir de ces valeurs et de leurs pondérations respectives.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=fr', + }, + ], + functionParameter: { + values: { name: 'valeurs', detail: 'AVERAGE.WEIGHTED(A1:A2; B1:B2)' }, + weights: { name: 'pondérations', detail: 'AVERAGE.WEIGHTED(A1:A2; B1:B2; C1; C2)' }, + additionalValues: { name: 'valeurs_supplémentaires', detail: 'Valeurs supplémentaires dont calculer la moyenne. Ces valeurs sont facultatives.' }, + additionalWeights: { name: 'pondérations_supplémentaires', detail: 'Pondérations supplémentaires à appliquer. Elles sont facultatives, mais chaque valeur_supplémentaire doit être suivie d’exactement une pondération_supplémentaire.' }, + }, + }, + AVERAGEA: { + description: 'Calcule la moyenne (arithmétique) des valeurs contenues dans la liste des arguments.', + abstract: 'Calcule la moyenne (arithmétique) des valeurs contenues dans la liste des arguments.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 cellules, plages de cellules ou valeurs dont vous voulez calculer la moyenne.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 cellules, plages de cellules ou valeurs dont vous voulez calculer la moyenne.' }, + }, + }, + AVERAGEIF: { + description: 'Renvoie la moyenne (arithmétique) de toutes les cellules d’une plage qui répondent à des critères donnés.', + abstract: 'Renvoie la moyenne (arithmétique) de toutes les cellules d’une plage qui répondent à des critères donnés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obligatoire. Une ou plusieurs cellules dont la moyenne doit être calculée, y compris des nombres ou des noms, des tableaux ou des références qui contiennent des nombres.' }, + criteria: { name: 'criteria', detail: 'Obligatoire. Représente le critère, sous forme de nombre, d’expression, de référence de cellule ou de texte, qui détermine les cellules dont la moyenne est à calculer. Par exemple, les critères peuvent être exprimés sous la forme 32, « 32 », «> 32 », « pommes » ou B4.' }, + averageRange: { name: 'average_range', detail: 'Optionnel. Représente l’ensemble des cellules dont la moyenne est à calculer. Si cet argument est omis, l’argument plage est utilisé.' }, + }, + }, + AVERAGEIFS: { + description: 'Renvoie la moyenne (arithmétique) de toutes les cellules qui répondent à plusieurs critères.', + abstract: 'Renvoie la moyenne (arithmétique) de toutes les cellules qui répondent à plusieurs critères.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Obligatoire. Une ou plusieurs cellules dont la moyenne doit être calculée, y compris des nombres ou des noms, des tableaux ou des références qui contiennent des nombres.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Plage_critères1 est obligatoire, les plages_critères supplémentaires sont facultatives. Représente de 1 à 127 plages dans lesquelles les critères associés sont à évaluer.' }, + criteria1: { name: 'criteria1', detail: 'Criteria1 est obligatoire, les critères suivants sont facultatifs. Représente de 1 à 127 critères, sous forme de nombre, d’expression, de référence de cellule ou de texte, qui déterminent les cellules dont la moyenne doit être calculée. Par exemple, les critères peuvent être exprimés sous la forme 32, « 32 », «> 32 », « pommes » ou B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Plage_critères1 est obligatoire, les plages_critères supplémentaires sont facultatives. Représente de 1 à 127 plages dans lesquelles les critères associés sont à évaluer.' }, + criteria2: { name: 'criteria2', detail: 'Criteria1 est obligatoire, les critères suivants sont facultatifs. Représente de 1 à 127 critères, sous forme de nombre, d’expression, de référence de cellule ou de texte, qui déterminent les cellules dont la moyenne doit être calculée. Par exemple, les critères peuvent être exprimés sous la forme 32, « 32 », «> 32 », « pommes » ou B4.' }, + }, + }, + BETA_DIST: { + description: 'Cette fonction de distribution bêta est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + abstract: 'Cette fonction de distribution bêta est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur comprise entre A et B à laquelle la fonction doit être calculée.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.BETA.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + A: { name: 'A', detail: 'Représente une limite inférieure de l’intervalle des x.' }, + B: { name: 'B', detail: 'Facultatif. Représente une limite supérieure de l’intervalle des x.' }, + }, + }, + BETA_INV: { + description: 'Si probabilité = LOI.BETA.N(x,...VRAI), alors BETA.INVERSE.N(probabilité,...) = x. La distribution bêta peut être utilisée en planification de projets afin de prévoir les dates d’achèvement probables en fonction d’une durée et d’une dispersion prévues.', + abstract: 'Si probabilité = LOI.BETA.N(x,...VRAI), alors BETA.INVERSE.N(probabilité,...) = x. La distribution bêta peut être utilisée en planification de projets afin de prévoir les dates d’achèvement probables en fonction d’une durée et d’une dispersion prévues.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la distribution bêta.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + A: { name: 'A', detail: 'Représente une limite inférieure de l’intervalle des x.' }, + B: { name: 'B', detail: 'Facultatif. Représente une limite supérieure de l’intervalle des x.' }, + }, + }, + BINOM_DIST: { + description: 'Renvoie la probabilité d’une variable aléatoire discrète suivant la loi binomiale. Utilisez la fonction LOI.BINOMIALE.N pour résoudre des problèmes comportant un nombre de tests ou d’essais déterminé, lorsque le résultat des essais ne peut être qu’un succès ou un échec, lorsque les essais sont indépendants, ou lorsque la probabilité de succès est constante au cours des expérimentations. La fonction LOI.BINOMIALE.N peut, par exemple, calculer la probabilité pour que deux des trois enfants à naître soient des garçons.', + abstract: 'Renvoie la probabilité d’une variable aléatoire discrète suivant la loi binomiale. Utilisez la fonction LOI.BINOMIALE.N pour résoudre des problèmes comportant un nombre de tests ou d’essais déterminé, lorsque le résultat des essais ne peut être qu’un succès ou un échec, lorsque les essais sont indépendants, ou lorsque la probabilité de succès est constante au cours des expérimentations. La fonction LOI.BINOMIALE.N peut, par exemple, calculer la probabilité pour que deux des trois enfants à naître soient des garçons.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Obligatoire. Représente le nombre d’essais réussis.' }, + trials: { name: 'trials', detail: 'Obligatoire. Représente le nombre d’essais indépendants.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité de succès de chaque essai.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique qui détermine le mode de calcul de la fonction. Si l’argument cumulative a la valeur VRAI, alors LOI.BINOMIALE.N renvoie la fonction de distribution cumulée qui représente la probabilité qu’il y ait au plus nombre_s succès ; si l’argument cumulative a la valeur FAUX, LOI.BINOMIALE.N renvoie la fonction de probabilité de masse qui représente la probabilité qu’il y ait nombre_s succès.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Renvoie la probabilité d’un résultat d’essai à l’aide d’une distribution binomiale.', + abstract: 'Renvoie la probabilité d’un résultat d’essai à l’aide d’une distribution binomiale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obligatoire. Nombre d’essais indépendants. Doit être supérieur ou égal à 0.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité de succès de chaque essai. Doit être supérieur ou égal à 0 et inférieur ou égal à 1.' }, + numberS: { name: 'number_s', detail: 'Obligatoire. Représente le nombre de succès lors des essais. Doit être supérieur ou égal à 0 et inférieur ou égal à Essais.' }, + numberS2: { name: 'number_s2', detail: 'Optionnel. Si cet argument est fourni, renvoie la probabilité que le nombre d’essais réussis soit compris entre Nombre_succès et nombre_succès2. Doit être supérieur ou égal à Nombre_succès et inférieur ou égal à Essais.' }, + }, + }, + BINOM_INV: { + description: 'Renvoie la plus petite valeur pour laquelle la distribution binomiale cumulée est supérieure ou égale à une valeur de critère.', + abstract: 'Renvoie la plus petite valeur pour laquelle la distribution binomiale cumulée est supérieure ou égale à une valeur de critère.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obligatoire. Représente le nombre d’essais de Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité de succès de chaque essai.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente la valeur de critère.' }, + }, + }, + CHISQ_DIST: { + description: 'Renvoie la distribution du Khi-deux.', + abstract: 'Renvoie la distribution du Khi-deux.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à laquelle vous voulez évaluer la distribution.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.KHIDEUX.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'La distribution χ2 est associée à un test χ2. Utilisez un test χ2 pour comparer les valeurs obtenues aux valeurs prévues. Par exemple, une expérience génétique fait l’hypothèse que la prochaine génération de plantes présentera un ensemble de couleurs donné. En comparant les résultats obtenus aux résultats prévus, vous pouvez déterminer si votre hypothèse de départ était correcte.', + abstract: 'La distribution χ2 est associée à un test χ2. Utilisez un test χ2 pour comparer les valeurs obtenues aux valeurs prévues. Par exemple, une expérience génétique fait l’hypothèse que la prochaine génération de plantes présentera un ensemble de couleurs donné. En comparant les résultats obtenus aux résultats prévus, vous pouvez déterminer si votre hypothèse de départ était correcte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à laquelle vous voulez évaluer la distribution.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + }, + }, + CHISQ_INV: { + description: 'La distribution khi-deux est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + abstract: 'La distribution khi-deux est généralement utilisée pour étudier la variation du pourcentage d’un élément présent dans des échantillonnages, par exemple, la durée quotidienne pendant laquelle les gens regardent la télévision.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution khi-deux.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Si probabilité = LOI.KHIDEUX.DROITE(x,...), alors LOI.KHIDEUX.INVERSE.DROITE(probabilité,...) = x. Utilisez cette fonction pour comparer les résultats obtenus aux résultats prévus afin de déterminer si votre hypothèse de départ était juste.', + abstract: 'Si probabilité = LOI.KHIDEUX.DROITE(x,...), alors LOI.KHIDEUX.INVERSE.DROITE(probabilité,...) = x. Utilisez cette fonction pour comparer les résultats obtenus aux résultats prévus afin de déterminer si votre hypothèse de départ était juste.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution khi-deux.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté.' }, + }, + }, + CHISQ_TEST: { + description: 'Renvoie le test d’indépendance. CHISQ.TEST renvoie la valeur de la distribution khi-deux (χ2) pour la statistique et les degrés de liberté appropriés. Utilisez les tests χ2 pour déterminer si les résultats prévus sont vérifiés par une expérimentation.', + abstract: 'Renvoie le test d’indépendance. CHISQ.TEST renvoie la valeur de la distribution khi-deux (χ2) pour la statistique et les degrés de liberté appropriés. Utilisez les tests χ2 pour déterminer si les résultats prévus sont vérifiés par une expérimentation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Obligatoire. Représente la plage de données contenant les observations à comparer aux valeurs prévues.' }, + expectedRange: { name: 'expected_range', detail: 'Obligatoire. Représente la plage de données contenant le rapport du produit des totaux de ligne et de colonne avec le total général.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'L’intervalle de confiance est une plage de valeurs. Votre moyenne d’échantillonnage, x, se trouve au centre de cette plage, et la plage est x ± INTERVALLE.CONFIANCE.NORMAL. Par exemple, si x est la moyenne d’échantillonnage des délais de livraison des articles commandés par courrier, x ± INTERVALLE.CONFIANCE.NORMAL est une plage de moyennes d’échantillonnage. Pour une moyenne de population au hasard, µ0, dans cette plage, la probabilité d’obtenir une moyenne d’échantillonnage plus éloignée de µ0 que x est plus élevée que alpha ; pour une moyenne de population au hasard, µ0, en dehors de cette plage, la probabilité d’obtenir une moyenne d’échantillonnage plus éloignée de µ0 que x est inférieure à alpha. En d’autres termes, supposons que nous utilisons x, standard_dev et size pour construire un test bilatéral au niveau critique alpha de l’hypothèse selon laquelle la moyenne de population est µ0. Dans ce cas, nous ne rejetterons pas l’hypothèse si µ0 se trouve dans l’intervalle de confiance, mais bien si µ0 ne s’y trouve pas. L’intervalle de confiance ne nous permet pas de déduire qu’il y a une probabilité de 1 – alpha que notre prochain paquet ait un délai de livraison situé dans l’intervalle de confiance.', + abstract: 'L’intervalle de confiance est une plage de valeurs. Votre moyenne d’échantillonnage, x, se trouve au centre de cette plage, et la plage est x ± INTERVALLE.CONFIANCE.NORMAL. Par exemple, si x est la moyenne d’échantillonnage des délais de livraison des articles commandés par courrier, x ± INTERVALLE.CONFIANCE.NORMAL est une plage de moyennes d’échantillonnage. Pour une moyenne de population au hasard, µ0, dans cette plage, la probabilité d’obtenir une moyenne d’échantillonnage plus éloignée de µ0 que x est plus élevée que alpha ; pour une moyenne de population au hasard, µ0, en dehors de cette plage, la probabilité d’obtenir une moyenne d’échantillonnage plus éloignée de µ0 que x est inférieure à alpha. En d’autres termes, supposons que nous utilisons x, standard_dev et size pour construire un test bilatéral au niveau critique alpha de l’hypothèse selon laquelle la moyenne de population est µ0. Dans ce cas, nous ne rejetterons pas l’hypothèse si µ0 se trouve dans l’intervalle de confiance, mais bien si µ0 ne s’y trouve pas. L’intervalle de confiance ne nous permet pas de déduire qu’il y a une probabilité de 1 – alpha que notre prochain paquet ait un délai de livraison situé dans l’intervalle de confiance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obligatoire. Niveau de précision utilisé pour calculer le niveau de confiance. Le niveau de confiance est égal à 100*(1 - alpha) %, ou en d’autres termes, un alpha de 0,05 indique un niveau de confiance de 95 %.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart-type de population pour la plage de données ; cet argument est supposé être connu.' }, + size: { name: 'size', detail: 'Obligatoire. Représente la taille de l’échantillon.' }, + }, + }, + CONFIDENCE_T: { + description: 'Renvoie l’intervalle de confiance pour la moyenne d’une population, à l’aide d’une distribution t de Student.', + abstract: 'Renvoie l’intervalle de confiance pour la moyenne d’une population, à l’aide d’une distribution t de Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obligatoire. Niveau de précision utilisé pour calculer le niveau de confiance. Le niveau de confiance est égal à 100*(1 - alpha) %, ou en d’autres termes, un alpha de 0,05 indique un niveau de confiance de 95 %.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart-type de population pour la plage de données ; cet argument est supposé être connu.' }, + size: { name: 'size', detail: 'Obligatoire. Représente la taille de l’échantillon.' }, + }, + }, + CORREL: { + description: 'Renvoie le coefficient de corrélation entre deux jeux de données.', + abstract: 'Renvoie le coefficient de corrélation entre deux jeux de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Première plage de valeurs de cellules.' }, + array2: { name: 'array2', detail: 'Deuxième plage de valeurs de cellules.' }, + }, + }, + COUNT: { + description: 'La fonction NB compte le nombre de cellules contenant des nombres et les nombres compris dans la liste des arguments. Utilisez la fonction NB pour obtenir le nombre d’entrées numériques dans un champ numérique d’une plage ou d’une matrice de nombres. Vous pouvez, par exemple, entrer la formule suivante pour compter les nombres de la plage A1:A20 : =NB(A1:A20) . Dans cet exemple, si 5 des cellules de la plage contiennent des nombres, le résultat est 5 .', + abstract: 'La fonction NB compte le nombre de cellules contenant des nombres et les nombres compris dans la liste des arguments. Utilisez la fonction NB pour obtenir le nombre d’entrées numériques dans un champ numérique d’une plage ou d’une matrice de nombres. Vous pouvez, par exemple, entrer la formule suivante pour compter les nombres de la plage A1:A20 : =NB(A1:A20) . Dans cet exemple, si 5 des cellules de la plage contiennent des nombres, le résultat est 5 .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Obligatoire. Premier élément, référence de la cellule ou plage dans laquelle vous souhaitez compter les nombres.' }, + value2: { name: 'value 2', detail: 'Optionnel. Jusqu’à 255 éléments supplémentaires, références de cellules ou plages dans lesquelles vous souhaitez compter les nombres.' }, + }, + }, + COUNTA: { + description: 'La fonction COUNTA compte le nombre de cellules qui ne sont pas vides dans une plage.', + abstract: 'La fonction COUNTA compte le nombre de cellules qui ne sont pas vides dans une plage.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 cellules, plages de cellules ou valeurs dont vous voulez calculer la moyenne.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 cellules, plages de cellules ou valeurs dont vous voulez calculer la moyenne.' }, + }, + }, + COUNTBLANK: { + description: 'Utilisez la fonction COUNTBLANK , l’une des fonctions statistiques , pour compter le nombre de cellules vides dans une plage de cellules.', + abstract: 'Utilisez la fonction COUNTBLANK , l’une des fonctions statistiques , pour compter le nombre de cellules vides dans une plage de cellules.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obligatoire. Représente la plage dans laquelle vous voulez compter les cellules vides.' }, + }, + }, + COUNTIF: { + description: 'NB.SI, l’une des fonctions Statistiques , permet de compter le nombre de cellules qui répondent à un critère ; par exemple, pour compter le nombre de fois où le nom d’une ville apparaît dans une liste de clients.', + abstract: 'NB.SI, l’une des fonctions Statistiques , permet de compter le nombre de cellules qui répondent à un critère ; par exemple, pour compter le nombre de fois où le nom d’une ville apparaît dans une liste de clients.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Le groupe de cellules à compter. La plage peut contenir des nombres, des tableaux, une plage nommée ou des références qui contiennent des nombres. Les valeurs vides et textuelles sont ignorées. Découvrez comment sélectionner des plages dans une feuille de calcul .' }, + criteria: { name: 'criteria', detail: 'Nombre, expression, référence de cellule ou chaîne de texte qui détermine les cellules à compter. Par exemple, vous pouvez utiliser un nombre comme 32, une comparaison comme «> 32 », une cellule comme B4 ou un mot comme « pommes ». NB.SI utilise un seul critère. Utilisez NB.SI.ENS Si vous voulez utiliser plusieurs critères.' }, + }, + }, + COUNTIFS: { + description: 'La fonction COUNTIFS applique des critères à des cellules sur plusieurs plages et compte le nombre de fois où tous les critères sont remplis.', + abstract: 'La fonction COUNTIFS applique des critères à des cellules sur plusieurs plages et compte le nombre de fois où tous les critères sont remplis.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Obligatoire. La première plage dans laquelle évaluer les critères associés.' }, + criteria1: { name: 'criteria1', detail: 'Obligatoire. Critères, sous forme de nombre, d’expression, de référence de cellule ou de texte, qui déterminent les cellules à compter. Par exemple, les critères peuvent être exprimés sous la forme 32, «> 32 », B4, « pommes » ou « 32 ».' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Optionnel. Plages supplémentaires et leurs critères associés. Jusqu’à 127 paires plage/critères sont autorisées.' }, + criteria2: { name: 'criteria2', detail: 'Optionnel. Plages supplémentaires et leurs critères associés. Jusqu’à 127 paires plage/critères sont autorisées.' }, + }, + }, + COVARIANCE_P: { + description: 'Renvoie la covariance de population, moyenne des produits des écarts pour chaque paire de points de données dans deux jeux de données. Utilisez la covariance pour déterminer la relation entre deux jeux de données. Par exemple, vous pouvez examiner si des revenus plus élevés correspondent à un meilleur niveau d’éducation.', + abstract: 'Renvoie la covariance de population, moyenne des produits des écarts pour chaque paire de points de données dans deux jeux de données. Utilisez la covariance pour déterminer la relation entre deux jeux de données. Par exemple, vous pouvez examiner si des revenus plus élevés correspondent à un meilleur niveau d’éducation.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première plage de cellules de nombres entiers.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde plage de cellules de nombres entiers.' }, + }, + }, + COVARIANCE_S: { + description: 'Renvoie la covariance d’échantillon, moyenne des produits des écarts pour chaque paire de points de deux jeux de données.', + abstract: 'Renvoie la covariance d’échantillon, moyenne des produits des écarts pour chaque paire de points de deux jeux de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première plage de cellules de nombres entiers.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde plage de cellules de nombres entiers.' }, + }, + }, + DEVSQ: { + description: 'Renvoie la somme des carrés des écarts entre les points de données et leur moyenne échantillonnée.', + abstract: 'Renvoie la somme des carrés des écarts entre les points de données et leur moyenne échantillonnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments pour lesquels vous voulez calculer la somme des carrés des écarts. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments pour lesquels vous voulez calculer la somme des carrés des écarts. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + EXPON_DIST: { + description: 'Renvoie la distribution exponentielle. Utilisez la fonction LOI.EXPONENTIELLE.N pour prévoir la durée séparant des événements, tel le temps mis par un distributeur automatique bancaire pour délivrer de l’argent. Par exemple, vous pouvez utiliser LOI.EXPONENTIELLE.N pour calculer la probabilité que l’opération dure moins d’une minute.', + abstract: 'Renvoie la distribution exponentielle. Utilisez la fonction LOI.EXPONENTIELLE.N pour prévoir la durée séparant des événements, tel le temps mis par un distributeur automatique bancaire pour délivrer de l’argent. Par exemple, vous pouvez utiliser LOI.EXPONENTIELLE.N pour calculer la probabilité que l’opération dure moins d’une minute.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur de la fonction.' }, + lambda: { name: 'lambda', detail: 'Obligatoire. Représente la valeur du paramètre.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Valeur logique qui indique la forme de la fonction exponentielle à fournir. Si cumulative a la valeur TRUE, EXPON. DIST retourne la fonction de distribution cumulée ; si la valeur est FALSE, elle retourne la fonction de densité de probabilité.' }, + }, + }, + F_DIST: { + description: 'Renvoie la distribution de probabilité F.', + abstract: 'Renvoie la distribution de probabilité F.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valeur à laquelle évaluer la fonction.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Degrés de liberté du numérateur.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Degrés de liberté du dénominateur.' }, + cumulative: { name: 'cumulative', detail: 'Valeur logique qui détermine la forme de la fonction. Si cumulative vaut TRUE, F.DIST renvoie la fonction de distribution cumulée ; sinon, la fonction de densité de probabilité.' }, + }, + }, + F_DIST_RT: { + description: 'Renvoie la distribution de probabilité F unilatérale à droite.', + abstract: 'Renvoie la distribution de probabilité F unilatérale à droite.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valeur à laquelle évaluer la fonction.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Degrés de liberté du numérateur.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Degrés de liberté du dénominateur.' }, + }, + }, + F_INV: { + description: 'Renvoie l’inverse de la distribution de probabilité F.', + abstract: 'Renvoie l’inverse de la distribution de probabilité F.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Probabilité associée à la distribution F cumulée.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Degrés de liberté du numérateur.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Degrés de liberté du dénominateur.' }, + }, + }, + F_INV_RT: { + description: 'Renvoie l’inverse de la distribution de probabilité F unilatérale à droite.', + abstract: 'Renvoie l’inverse de la distribution de probabilité F unilatérale à droite.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Probabilité associée à la distribution F cumulée.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Degrés de liberté du numérateur.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Degrés de liberté du dénominateur.' }, + }, + }, + F_TEST: { + description: 'Renvoie le résultat d’un test F.', + abstract: 'Renvoie le résultat d’un test F.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Premier tableau ou première plage de données.' }, + array2: { name: 'array2', detail: 'Deuxième tableau ou deuxième plage de données.' }, + }, + }, + FISHER: { + description: 'Renvoie la transformation de Fisher.', + abstract: 'Renvoie la transformation de Fisher.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valeur numérique dont vous souhaitez obtenir la transformation.' }, + }, + }, + FISHERINV: { + description: 'Renvoie l’inverse de la transformation de Fisher. Utilisez cette transformation pour analyser des corrélations entre plages ou matrices de données. Si y = FISHER(x), alors FISHER.INVERSE(y) = x.', + abstract: 'Renvoie l’inverse de la transformation de Fisher. Utilisez cette transformation pour analyser des corrélations entre plages ou matrices de données. Si y = FISHER(x), alors FISHER.INVERSE(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Obligatoire. Représente la valeur pour laquelle vous voulez réaliser l’inverse de la transformation.' }, + }, + }, + FORECAST: { + description: 'Calculer ou prédire une valeur future à l’aide de valeurs existantes. La valeur future est une valeur y pour une valeur x donnée. Les valeurs existantes sont des valeurs x et y connues, et la valeur future est prédite à l’aide de la régression linéaire. Vous pouvez utiliser ces fonctions pour prédire les ventes futures, les besoins en stock ou les tendances des consommateurs.', + abstract: 'Calculer ou prédire une valeur future à l’aide de valeurs existantes. La valeur future est une valeur y pour une valeur x donnée. Les valeurs existantes sont des valeurs x et y connues, et la valeur future est prédite à l’aide de la régression linéaire. Vous pouvez utiliser ces fonctions pour prédire les ventes futures, les besoins en stock ou les tendances des consommateurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'oui Représente le point de données dont vous voulez prévoir la valeur.' }, + knownYs: { name: 'known_y\'s', detail: 'oui Représente la matrice ou la plage de données dépendante.' }, + knownXs: { name: 'known_x\'s', detail: 'oui Représente la matrice ou la plage de données indépendante.' }, + }, + }, + FORECAST_ETS: { + description: 'Calcule ou prédit une valeur future à partir de valeurs existantes à l’aide de la version AAA de l’algorithme de lissage exponentiel (ETS).', + abstract: 'Calcule ou prédit une valeur future à partir de valeurs existantes à l’aide de la version AAA de l’algorithme de lissage exponentiel (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Date cible', detail: 'Le point de données pour lequel vous souhaitez prévoir une valeur.' }, + values: { name: 'Valeurs', detail: 'Les valeurs historiques utilisées pour la prévision.' }, + timeline: { name: 'Chronologie', detail: 'Une plage ou matrice indépendante de dates ou heures numériques avec un pas constant.' }, + seasonality: { name: 'Caractère saisonnier', detail: 'Facultatif. Longueur saisonnière ; 1 pour la détection automatique et 0 sans saisonnalité.' }, + dataCompletion: { name: 'Saisie semi-automatique', detail: 'Facultatif. Utilisez 1 pour interpoler les points manquants ou 0 pour les traiter comme zéro.' }, + aggregation: { name: 'Agrégation', detail: 'Facultatif. Une valeur de 1 à 7 indique comment agréger les horodatages en double.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Renvoie l’intervalle de confiance d’une valeur prévisionnelle à la date cible spécifiée.', + abstract: 'Renvoie l’intervalle de confiance d’une valeur prévisionnelle à la date cible spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Date cible', detail: 'Le point de données pour lequel vous souhaitez prévoir une valeur.' }, + values: { name: 'Valeurs', detail: 'Les valeurs historiques utilisées pour la prévision.' }, + timeline: { name: 'Chronologie', detail: 'Une plage ou matrice indépendante de dates ou heures numériques avec un pas constant.' }, + confidenceLevel: { name: 'Niveau de confiance', detail: 'Facultatif. Un nombre compris entre 0 et 1 ; la valeur par défaut est 0,95.' }, + seasonality: { name: 'Caractère saisonnier', detail: 'Facultatif. Longueur saisonnière ; 1 pour la détection automatique et 0 sans saisonnalité.' }, + dataCompletion: { name: 'Saisie semi-automatique', detail: 'Facultatif. Utilisez 1 pour interpoler les points manquants ou 0 pour les traiter comme zéro.' }, + aggregation: { name: 'Agrégation', detail: 'Facultatif. Une valeur de 1 à 7 indique comment agréger les horodatages en double.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Renvoie la longueur du modèle répétitif détecté par Excel pour la série chronologique spécifiée.', + abstract: 'Renvoie la longueur du modèle répétitif détecté par Excel pour la série chronologique spécifiée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Valeurs', detail: 'Les valeurs historiques utilisées pour la prévision.' }, + timeline: { name: 'Chronologie', detail: 'Une plage ou matrice indépendante de dates ou heures numériques avec un pas constant.' }, + dataCompletion: { name: 'Saisie semi-automatique', detail: 'Facultatif. Utilisez 1 pour interpoler les points manquants ou 0 pour les traiter comme zéro.' }, + aggregation: { name: 'Agrégation', detail: 'Facultatif. Une valeur de 1 à 7 indique comment agréger les horodatages en double.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Renvoie une valeur statistique résultant de la prévision d’une série chronologique.', + abstract: 'Renvoie une valeur statistique résultant de la prévision d’une série chronologique.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Valeurs', detail: 'Les valeurs historiques utilisées pour la prévision.' }, + timeline: { name: 'Chronologie', detail: 'Une plage ou matrice indépendante de dates ou heures numériques avec un pas constant.' }, + statisticType: { name: 'Type de statistique', detail: 'Une valeur de 1 à 8 indique la statistique de prévision à renvoyer.' }, + seasonality: { name: 'Caractère saisonnier', detail: 'Facultatif. Longueur saisonnière ; 1 pour la détection automatique et 0 sans saisonnalité.' }, + dataCompletion: { name: 'Saisie semi-automatique', detail: 'Facultatif. Utilisez 1 pour interpoler les points manquants ou 0 pour les traiter comme zéro.' }, + aggregation: { name: 'Agrégation', detail: 'Facultatif. Une valeur de 1 à 7 indique comment agréger les horodatages en double.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Calculer ou prédire une valeur future à l’aide de valeurs existantes. La valeur future est une valeur y pour une valeur x donnée. Les valeurs existantes sont des valeurs x et y connues, et la valeur future est prédite à l’aide de la régression linéaire. Vous pouvez utiliser ces fonctions pour prédire les ventes futures, les besoins en stock ou les tendances des consommateurs.', + abstract: 'Calculer ou prédire une valeur future à l’aide de valeurs existantes. La valeur future est une valeur y pour une valeur x donnée. Les valeurs existantes sont des valeurs x et y connues, et la valeur future est prédite à l’aide de la régression linéaire. Vous pouvez utiliser ces fonctions pour prédire les ventes futures, les besoins en stock ou les tendances des consommateurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'oui Représente le point de données dont vous voulez prévoir la valeur.' }, + knownYs: { name: 'known_y\'s', detail: 'oui Représente la matrice ou la plage de données dépendante.' }, + knownXs: { name: 'known_x\'s', detail: 'oui Représente la matrice ou la plage de données indépendante.' }, + }, + }, + FREQUENCY: { + description: 'La fonction FREQUENCE calcule la fréquence à laquelle les valeurs se produisent dans une plage de valeurs, puis retourne un tableau vertical de nombres. Par exemple, utilisez la fonction FREQUENCE pour déterminer combien de résultats d’un test entrent dans une plage de résultats donnée. Dans la mesure où la fonction FREQUENCE renvoie une matrice, elle doit être tapée sous forme de formule matricielle.', + abstract: 'La fonction FREQUENCE calcule la fréquence à laquelle les valeurs se produisent dans une plage de valeurs, puis retourne un tableau vertical de nombres. Par exemple, utilisez la fonction FREQUENCE pour déterminer combien de résultats d’un test entrent dans une plage de résultats donnée. Dans la mesure où la fonction FREQUENCE renvoie une matrice, elle doit être tapée sous forme de formule matricielle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Obligatoire. Représente une matrice de valeurs ou une référence au jeu de valeurs dont vous souhaitez calculer les fréquences. Si l’argument tableau_données ne contient aucune valeur, la fonction FREQUENCE renvoie une matrice de zéros.' }, + binsArray: { name: 'bins_array', detail: 'Obligatoire. Représente une matrice d’intervalles ou une référence aux intervalles dans lesquels vous voulez regrouper les valeurs de l’argument tableau_données. Si l’argument matrice_intervalles ne contient aucune valeur, la fonction FREQUENCE renvoie le nombre d’éléments contenu dans l’argument tableau_données.' }, + }, + }, + GAMMA: { + description: 'Renvoyer la valeur de fonction gamma.', + abstract: 'Renvoyer la valeur de fonction gamma.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Renvoie un nombre.' }, + }, + }, + GAMMA_DIST: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Gamma. Vous pouvez utiliser cette fonction pour étudier des variables dont la distribution est susceptible d’être asymétrique. La loi gamma est couramment utilisée dans l’étude de files d’attente.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Gamma. Vous pouvez utiliser cette fonction pour étudier des variables dont la distribution est susceptible d’être asymétrique. La loi gamma est couramment utilisée dans l’étude de files d’attente.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à laquelle vous voulez évaluer la distribution.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution. Si bêta = 1, LOI.GAMMA.N renvoie la loi Gamma standard.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.GAMMA.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + }, + }, + GAMMA_INV: { + description: 'Renvoie l’inverse de la distribution cumulée suivant une loi Gamma. Si l’argument p = LOI.GAMMA.N(x;...), la fonction LOI.GAMMA.INVERSE.N(p;...) = x. Vous pouvez utiliser cette fonction pour étudier une variable dont la distribution est susceptible d’être asymétrique.', + abstract: 'Renvoie l’inverse de la distribution cumulée suivant une loi Gamma. Si l’argument p = LOI.GAMMA.N(x;...), la fonction LOI.GAMMA.INVERSE.N(p;...) = x. Vous pouvez utiliser cette fonction pour étudier une variable dont la distribution est susceptible d’être asymétrique.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la loi Gamma.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution. Si bêta = 1, LOI.GAMMA.INVERSE.N renvoie la loi Gamma standard.' }, + }, + }, + GAMMALN: { + description: 'Renvoie le logarithme népérien de la fonction Gamma.', + abstract: 'Renvoie le logarithme népérien de la fonction Gamma.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur pour laquelle vous souhaitez calculer LNGAMMA.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Renvoie le logarithme népérien de la fonction Gamma.', + abstract: 'Renvoie le logarithme népérien de la fonction Gamma.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur pour laquelle vous souhaitez calculer LNGAMMA.PRECIS.' }, + }, + }, + GAUSS: { + description: 'Calcule la probabilité qu’un membre d’une population normale standard se situe entre la moyenne et les z déviations standard par rapport à la moyenne.', + abstract: 'Calcule la probabilité qu’un membre d’une population normale standard se situe entre la moyenne et les z déviations standard par rapport à la moyenne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obligatoire. Renvoie un nombre.' }, + }, + }, + GEOMEAN: { + description: 'Renvoie la moyenne géométrique d’une matrice ou d’une plage de données positives. Par exemple, vous pouvez utiliser la fonction MOYENNE.GEOMETRIQUE pour calculer un taux de croissance moyen à partir d’un intérêt composé à taux variables.', + abstract: 'Renvoie la moyenne géométrique d’une matrice ou d’une plage de données positives. Par exemple, vous pouvez utiliser la fonction MOYENNE.GEOMETRIQUE pour calculer un taux de croissance moyen à partir d’un intérêt composé à taux variables.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer la moyenne. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer la moyenne. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + GROWTH: { + description: 'Calcule la croissance exponentielle prévue à partir des données existantes. La fonction CROISSANCE renvoie les valeurs y pour une série de nouvelles valeurs x que vous spécifiez, en utilisant des valeurs x et y existantes. Vous pouvez également utiliser la fonction de feuille de calcul CROISSANCE afin d’ajuster une courbe exponentielle à des valeurs x et y existantes.', + abstract: 'Calcule la croissance exponentielle prévue à partir des données existantes. La fonction CROISSANCE renvoie les valeurs y pour une série de nouvelles valeurs x que vous spécifiez, en utilisant des valeurs x et y existantes. Vous pouvez également utiliser la fonction de feuille de calcul CROISSANCE afin d’ajuster une courbe exponentielle à des valeurs x et y existantes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente la série des valeurs y déjà connues dans l’équation y = b*m^x. Si la matrice définie par l’argument y_connus occupe une seule colonne, chaque colonne de l’argument x_connus est interprétée comme étant une variable distincte. Si la matrice définie par l’argument y_connus occupe une seule ligne, chaque ligne de l’argument x_connus est interprétée comme étant une variable distincte. Si l’un des nombres de known_y est 0 ou négatif, GROWTH renvoie la #NUM ! #VALEUR!.' }, + knownXs: { name: 'known_x\'s', detail: 'Optionnel. Représente une série facultative de valeurs x, éventuellement déjà connues dans la relation y = b*m^x. L’argument x_connus peut contenir une ou plusieurs séries de variables. Si vous utilisez une seule variable, les arguments y_connus et x_connus peuvent être des plages de forme différente, à condition qu’elles aient la même dimension. Si vous utilisez plusieurs variables, l’argument y_connus doit être un vecteur (en d’autres termes, une plage comportant une seule ligne ou une seule colonne). Si l’argument x_connus est omis, il est supposé égal à la matrice {1.2.3....}, de même ordre que l’argument y_connus.' }, + newXs: { name: 'new_x\'s', detail: 'Optionnel. Représente la nouvelle série de variables x pour lesquelles vous voulez que CROISSANCE renvoie les valeurs y correspondantes. L’argument x_nouveaux doit comporter une colonne (ou une ligne) pour chaque variable indépendante, comme c’est le cas pour l’argument x_connus. Par conséquent, si l’argument y_connus occupe une seule colonne, les arguments x_connus et x_nouveaux doivent avoir le même nombre de colonnes. Si l’argument y_connus occupe une seule ligne, les arguments x_connus et x_nouveaux doivent avoir le même nombre de lignes. Si l’argument x_nouveaux est omis, l’argument par défaut est l’argument x_connus. Si les arguments x_connus et x_nouveaux sont omis, les matrices par défaut sont {1.2.3....}, de même ordre que l’argument y_connus.' }, + constb: { name: 'const', detail: 'Optionnel. Représente une valeur logique précisant si la constante b doit être égale à 1. Si l’argument constante est VRAI ou omis, la constante b est calculée normalement. Si l’argument constante est FAUX, b est égal à 1 et les valeurs m sont ajustées de façon à ce que y = m^x.' }, + }, + }, + HARMEAN: { + description: 'Renvoie la moyenne harmonique d’une série de données. La moyenne harmonique est l’inverse de la moyenne arithmétique des inverses des observations.', + abstract: 'Renvoie la moyenne harmonique d’une série de données. La moyenne harmonique est l’inverse de la moyenne arithmétique des inverses des observations.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer la moyenne. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer la moyenne. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Renvoie la loi hypergéométrique. La fonction LOI.HYPERGEOMETRIQUE.N renvoie la probabilité d’obtenir un nombre donné de tirages « succès » sur un échantillon, connaissant la taille de l’échantillon, le nombre de succès de la population et sa taille. Utilisez la fonction LOI.HYPERGEOMETRIQUE.N dans des problèmes supposant une population déterminée, dans lesquels chaque observation est soit un succès, soit un échec et où chaque sous-ensemble d’une taille donnée est constitué avec la même vraisemblance.', + abstract: 'Renvoie la loi hypergéométrique. La fonction LOI.HYPERGEOMETRIQUE.N renvoie la probabilité d’obtenir un nombre donné de tirages « succès » sur un échantillon, connaissant la taille de l’échantillon, le nombre de succès de la population et sa taille. Utilisez la fonction LOI.HYPERGEOMETRIQUE.N dans des problèmes supposant une population déterminée, dans lesquels chaque observation est soit un succès, soit un échec et où chaque sous-ensemble d’une taille donnée est constitué avec la même vraisemblance.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Obligatoire. Représente le nombre de succès de l’échantillon.' }, + numberSample: { name: 'number_sample', detail: 'Obligatoire. Représente la taille de l’échantillon.' }, + populationS: { name: 'population_s', detail: 'Obligatoire. Représente le nombre de succès de la population.' }, + numberPop: { name: 'number_pop', detail: 'Obligatoire. Représente la taille de la population.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.HYPERGEOMETRIQUE.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de probabilité de masse.' }, + }, + }, + INTERCEPT: { + description: 'Calcule le point auquel une droite doit couper l’axe des ordonnées en utilisant les valeurs x et y existantes. L’ordonnée à l’origine est déterminée en traçant une droite de régression linéaire qui passe par les valeurs x et y connues. Utilisez la fonction ORDONNEE.ORIGINE pour déterminer la valeur de la variable dépendante lorsque la variable indépendante est égale à 0 (zéro). Par exemple, vous pouvez utiliser la fonction ORDONNEE.ORIGINE pour prévoir la résistance électrique d’un métal à 0°C lorsque vos points de données ont été établis à des températures égales et supérieures à la température ambiante.', + abstract: 'Calcule le point auquel une droite doit couper l’axe des ordonnées en utilisant les valeurs x et y existantes. L’ordonnée à l’origine est déterminée en traçant une droite de régression linéaire qui passe par les valeurs x et y connues. Utilisez la fonction ORDONNEE.ORIGINE pour déterminer la valeur de la variable dépendante lorsque la variable indépendante est égale à 0 (zéro). Par exemple, vous pouvez utiliser la fonction ORDONNEE.ORIGINE pour prévoir la résistance électrique d’un métal à 0°C lorsque vos points de données ont été établis à des températures égales et supérieures à la température ambiante.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente la série dépendante d’observations ou de données.' }, + knownXs: { name: 'known_x\'s', detail: 'Obligatoire. Représente la série indépendante d’observations ou de données.' }, + }, + }, + KURT: { + description: 'Retourne le kurtosis d’un jeu de données. Kurtosis caractérise le pic relatif ou planness d’une distribution par rapport à la distribution normale. Le kurtosis positif indique une distribution relativement maximale. Le kurtosis négatif indique une distribution relativement plate.', + abstract: 'Retourne le kurtosis d’un jeu de données. Kurtosis caractérise le pic relatif ou planness d’une distribution par rapport à la distribution normale. Le kurtosis positif indique une distribution relativement maximale. Le kurtosis négatif indique une distribution relativement plate.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer le kurtosis. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Il s’agit des 1 à 255 arguments dont vous souhaitez calculer le kurtosis. Vous pouvez aussi utiliser une matrice ou une référence à une matrice, plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + LARGE: { + description: 'Renvoie la k-ième plus grande valeur d’une série de données. Vous pouvez utiliser cette fonction pour sélectionner une valeur en fonction de son rang. Ainsi, vous pouvez utiliser la fonction GRANDE.VALEUR pour renvoyer le résultat le plus élevé, le deuxième résultat ou le troisième.', + abstract: 'Renvoie la k-ième plus grande valeur d’une série de données. Vous pouvez utiliser cette fonction pour sélectionner une valeur en fonction de son rang. Ainsi, vous pouvez utiliser la fonction GRANDE.VALEUR pour renvoyer le résultat le plus élevé, le deuxième résultat ou le troisième.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données dans laquelle vous recherchez la k-ième plus grande valeur.' }, + k: { name: 'k', detail: 'Obligatoire. Représente, dans la matrice ou la plage de cellules, la position de la valeur à renvoyer, déterminée à partir de la valeur la plus grande.' }, + }, + }, + LINEST: { + description: 'La fonction DROITEREG calcule les statistiques d’une droite par la méthode des moindres carrés afin de calculer une droite s’ajustant au plus près de vos données, puis renvoie une matrice qui décrit cette droite. Vous pouvez également combiner la fonction DROITEREG avec d’autres fonctions pour calculer les statistiques d’autres types de modèles linéaires dans les paramètres inconnus, y compris polynomial, logarithmique, exponentiel et série de puissances. Dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle. Vous trouverez des instructions sous les exemples proposés dans cet article.', + abstract: 'La fonction DROITEREG calcule les statistiques d’une droite par la méthode des moindres carrés afin de calculer une droite s’ajustant au plus près de vos données, puis renvoie une matrice qui décrit cette droite. Vous pouvez également combiner la fonction DROITEREG avec d’autres fonctions pour calculer les statistiques d’autres types de modèles linéaires dans les paramètres inconnus, y compris polynomial, logarithmique, exponentiel et série de puissances. Dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle. Vous trouverez des instructions sous les exemples proposés dans cet article.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Série des valeurs y déjà connues par la relation y = mx + b. Si la plage de known_y se trouve dans une seule colonne, chaque colonne de known_x est interprétée comme une variable distincte. Si la plage de known_y est contenue dans une seule ligne, chaque ligne de known_x est interprétée comme une variable distincte.' }, + knownXs: { name: 'known_x\'s', detail: 'Optionnel. Série de valeurs x éventuellement déjà connues par la relation y = mx + b. La plage de known_x peut inclure un ou plusieurs ensembles de variables. Si une seule variable est utilisée, les known_y et known_x peuvent être des plages de n’importe quelle forme, tant qu’elles ont des dimensions égales. Si plusieurs variables sont utilisées, known_y doit être un vecteur (autrement dit, une plage avec une hauteur d’une ligne ou une largeur d’une colonne). Si known_x est omis, il est supposé être le tableau {1,2,3,...} qui a la même taille que known_y .' }, + constb: { name: 'const', detail: 'Optionnel. Valeur logique précisant si la constante b doit être forcée à 0. Si const est TRUE ou omis, b est calculé normalement. Si const a la valeur FALSE, b est défini sur 0 et les valeurs m sont ajustées pour ajuster y = mx.' }, + stats: { name: 'stats', detail: 'Optionnel. Représente une valeur logique indiquant si d’autres statistiques de régression doivent être renvoyées. Si les statistiques ont la valeur TRUE, LINEST retourne les statistiques de régression supplémentaires ; par conséquent, le tableau retourné est {mn,mn-1,...,m1,b ; sen,sen-1,...,se1,seb ; r 2,sey ; F,df ; ssreg,ssresid} . Si les statistiques ont la valeur FALSE ou sont omises , LINEST retourne uniquement les coefficients m et la constante b. Les statistiques de régression supplémentaires sont les suivantes :' }, + }, + }, + LOGEST: { + description: 'L’équation de la courbe est la suivante :', + abstract: 'L’équation de la courbe est la suivante :', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente la série des valeurs y déjà connues dans l’équation y = b*m^x. Si la matrice définie par l’argument y_connus occupe une seule colonne, chaque colonne de l’argument x_connus est interprétée comme étant une variable distincte. Si la matrice définie par l’argument y_connus occupe une seule ligne, chaque ligne de l’argument x_connus est interprétée comme étant une variable distincte.' }, + knownXs: { name: 'known_x\'s', detail: 'Optionnel. Représente une série facultative de valeurs x, éventuellement déjà connues dans la relation y = b*m^x. L’argument x_connus peut contenir une ou plusieurs séries de variables. Si une seule variable est utilisée, y_connus et x_connus peuvent prendre différentes formes, à condition d’avoir la même dimension. Si plusieurs variables sont utilisées, y_connus doit être une plage de cellules dont la hauteur est une seule ligne ou la largeur, une seule colonne (également connu sous le nom de vecteur). Si l’argument x_connus est omis, il est supposé égal à la matrice {1.2.3....}, de même ordre que l’argument y_connus.' }, + constb: { name: 'const', detail: 'Optionnel. Représente une valeur logique précisant si la constante b doit être égale à 1. Si l’argument constante est VRAI ou omis, la constante b est calculée normalement. Si constante est FAUX, b se voit attribuer la valeur 1 et les valeurs m sont ajustées pour que y = m^x.' }, + stats: { name: 'stats', detail: 'Optionnel. Représente une valeur logique indiquant si d’autres statistiques de régression doivent être renvoyées. Si statistiques est VRAI, LOGREG renvoie les statistiques de régression supplémentaires, sous la forme d’une matrice {mn.mn-1.....m1.b;sen.sen-1.....se1.seb;r 2.sey; F.df;ssreg.ssresid}. Si statistiques est FAUX ou omis, LOGREG renvoie uniquement les coefficients m et la constante b.' }, + }, + }, + LOGNORM_DIST: { + description: 'Renvoie la distribution de x suivant une loi lognormale, où ln(x) est normalement distribué à l’aide des paramètres moyenne et écart_type.', + abstract: 'Renvoie la distribution de x suivant une loi lognormale, où ln(x) est normalement distribué à l’aide des paramètres moyenne et écart_type.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente l’espérance mathématique de ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de ln(x).' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.LOGNORMALE.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + }, + }, + LOGNORM_INV: { + description: 'Renvoie l’inverse de la fonction de distribution de x suivant la loi lognormale cumulée, où ln(x) est normalement distribué avec les paramètres espérance et écart_type. Si p = LOI.LOGNORMALE.N(x,...), alors LOI.LOGNORMALE.INVERSE.N(p,...) = x.', + abstract: 'Renvoie l’inverse de la fonction de distribution de x suivant la loi lognormale cumulée, où ln(x) est normalement distribué avec les paramètres espérance et écart_type. Si p = LOI.LOGNORMALE.N(x,...), alors LOI.LOGNORMALE.INVERSE.N(p,...) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité associée à la distribution lognormale.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente l’espérance mathématique de ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de ln(x).' }, + }, + }, + MARGINOFERROR: { + description: 'Cette fonction calcule la marge d\'erreur à partir d\'une plage de valeurs et d\'un niveau de confiance.', + abstract: 'Cette fonction calcule la marge d\'erreur à partir d\'une plage de valeurs et d\'un niveau de confiance.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=fr', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, + confidence: { name: 'confidence', detail: 'Confidence – Niveau de confiance souhaité entre 0 et 1.' }, + }, + }, + MAX: { + description: 'Renvoie le plus grand nombre de la série de valeurs.', + abstract: 'Renvoie le plus grand nombre de la série de valeurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres parmi lesquels vous souhaitez trouver la valeur la plus grande.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres parmi lesquels vous souhaitez trouver la valeur la plus grande.' }, + }, + }, + MAXA: { + description: 'Renvoie la plus grande valeur contenue dans une liste d’arguments.', + abstract: 'Renvoie la plus grande valeur contenue dans une liste d’arguments.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Obligatoire. Le premier argument numérique pour lequel vous voulez rechercher la plus grande valeur.' }, + value2: { name: 'value2', detail: 'Optionnel. Représente les arguments numériques 2 à 255 parmi lesquels vous voulez rechercher la plus grande valeur.' }, + }, + }, + MAXIFS: { + description: 'La fonction MAX.SI.ENS renvoie la valeur maximale parmi les cellules spécifiées par un ensemble de conditions ou critères.', + abstract: 'La fonction MAX.SI.ENS renvoie la valeur maximale parmi les cellules spécifiées par un ensemble de conditions ou critères.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'La plage de cellules réelle dans laquelle la valeur maximale sera déterminée.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Est l’ensemble des cellules à comparer au critère.' }, + criteria1: { name: 'criteria1', detail: 'Représente le critère sous la forme d’un nombre, d’une expression ou d’un texte qui définit quelles cellules seront évaluées comme valeur maximale. Le même jeu de critères est valable pour les fonctions MIN.SI.ENS , SOMME.SI.ENS et MOYENNE.SI.ENS .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Plages supplémentaires et leurs critères associés. Vous pouvez entrer jusqu’à 126 paires plage/critères.' }, + criteria2: { name: 'criteria2', detail: 'Plages supplémentaires et leurs critères associés. Vous pouvez entrer jusqu’à 126 paires plage/critères.' }, + }, + }, + MEDIAN: { + description: 'Renvoie la valeur médiane des nombres. La médiane est la valeur qui se trouve au centre d’un ensemble de nombres.', + abstract: 'Renvoie la valeur médiane des nombres. La médiane est la valeur qui se trouve au centre d’un ensemble de nombres.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres dont vous souhaitez obtenir la médiane.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres dont vous souhaitez obtenir la médiane.' }, + }, + }, + MIN: { + description: 'Renvoie le plus petit nombre de la série de valeurs.', + abstract: 'Renvoie le plus petit nombre de la série de valeurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est facultatif, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres parmi lesquels vous souhaitez trouver la valeur minimale.' }, + number2: { name: 'number2', detail: 'Number1 est facultatif, les numéros suivants sont facultatifs. Ils représentent les 1 à 255 nombres parmi lesquels vous souhaitez trouver la valeur minimale.' }, + }, + }, + MINA: { + description: 'Renvoie la plus petite valeur contenue dans une liste d’arguments.', + abstract: 'Renvoie la plus petite valeur contenue dans une liste d’arguments.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 des valeurs parmi lesquelles vous voulez rechercher la plus petite.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Il s’agit des 1 à 255 des valeurs parmi lesquelles vous voulez rechercher la plus petite.' }, + }, + }, + MINIFS: { + description: 'La fonction MIN.SI.ENS renvoie la valeur minimale parmi les cellules spécifiées par un ensemble de conditions ou critères.', + abstract: 'La fonction MIN.SI.ENS renvoie la valeur minimale parmi les cellules spécifiées par un ensemble de conditions ou critères.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'La plage de cellules réelle dans laquelle la valeur minimale sera déterminée.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Est l’ensemble des cellules à comparer au critère.' }, + criteria1: { name: 'criteria1', detail: 'Représente le critère sous la forme d’un nombre, d’une expression ou d’un texte qui définit quelles cellules seront évaluées comme valeur minimale. Le même jeu de critères est valable pour les fonctions MAX.SI.ENS , SOMME.SI.ENS et MOYENNE.SI.ENS .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Plages supplémentaires et leurs critères associés. Vous pouvez entrer jusqu’à 126 paires plage/critères.' }, + criteria2: { name: 'criteria2', detail: 'Plages supplémentaires et leurs critères associés. Vous pouvez entrer jusqu’à 126 paires plage/critères.' }, + }, + }, + MODE_MULT: { + description: 'En présence de plusieurs modes, plusieurs résultats seront renvoyés. Dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle.', + abstract: 'En présence de plusieurs modes, plusieurs résultats seront renvoyés. Dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Représente le premier argument numérique pour lequel vous souhaitez calculer le mode.' }, + number2: { name: 'number2', detail: 'Optionnel. Représente les arguments numériques 2 à 254 dont vous souhaitez déterminer le mode. Vous pouvez également utiliser une matrice unique ou une référence à une matrice, au lieu d’arguments séparés par des points-virgules.' }, + }, + }, + MODE_SNGL: { + description: 'Renvoie la valeur la plus fréquente ou la plus répétitive dans une matrice ou une plage de données.', + abstract: 'Renvoie la valeur la plus fréquente ou la plus répétitive dans une matrice ou une plage de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Représente le premier argument pour lequel vous souhaitez calculer le mode.' }, + number2: { name: 'number2', detail: 'Optionnel. Représente les arguments 2 à 254 dont vous souhaitez déterminer le mode. Vous pouvez également utiliser une matrice unique ou une référence à une matrice, au lieu d’arguments séparés par des points-virgules.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Renvoie la probabilité d’une variable aléatoire discrète suivant une loi binomiale négative, la probabilité d’obtenir un nombre d’échecs égal à l’argument nombre_échecs avant de parvenir au succès dont le rang est donné par l’argument nombre_succès, avec la probabilité probabilité_succès d’un succès.', + abstract: 'Renvoie la probabilité d’une variable aléatoire discrète suivant une loi binomiale négative, la probabilité d’obtenir un nombre d’échecs égal à l’argument nombre_échecs avant de parvenir au succès dont le rang est donné par l’argument nombre_succès, avec la probabilité probabilité_succès d’un succès.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Obligatoire. Représente le nombre d’échecs.' }, + numberS: { name: 'number_s', detail: 'Obligatoire. Représente le nombre de succès à obtenir.' }, + probabilityS: { name: 'probability_s', detail: 'Obligatoire. Représente la probabilité d’obtenir un succès.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si l’argument cumulative est VRAI, la fonction LOI.BINOMIALE.NEG.N renvoie la fonction de distribution cumulée ; si l’argument cumulative est FAUX, la fonction renvoie la fonction de densité de probabilité.' }, + }, + }, + NORM_DIST: { + description: 'Renvoie la distribution normale pour la moyenne et l’écart type spécifiés. Cette fonction a de nombreuses applications en statistique, y compris dans les tests d’hypothèse.', + abstract: 'Renvoie la distribution normale pour la moyenne et l’écart type spécifiés. Cette fonction a de nombreuses applications en statistique, y compris dans les tests d’hypothèse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur dont vous recherchez la distribution.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la moyenne arithmétique de la distribution.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de la distribution.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Représente une valeur logique déterminant le mode de calcul de la fonction : cumulatif ou non. Si cumulative a la valeur TRUE, NORM. DIST retourne la fonction de distribution cumulée ; si la valeur est FALSE, elle retourne la fonction de densité de probabilité.' }, + }, + }, + NORM_INV: { + description: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale pour la moyenne et l’écart type spécifiés.', + abstract: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale pour la moyenne et l’écart type spécifiés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité correspondant à la distribution normale.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la moyenne arithmétique de la distribution.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de la distribution.' }, + }, + }, + NORM_S_DIST: { + description: 'Renvoie la distribution normale cumulative standard.', + abstract: 'Renvoie la distribution normale cumulative standard.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Valeur dont vous souhaitez obtenir la distribution.' }, + cumulative: { name: 'cumulative', detail: 'Valeur logique qui détermine la forme de la fonction. Si cumulative vaut TRUE, NORM.DIST renvoie la fonction de distribution cumulée ; sinon, la fonction de densité de probabilité.' }, + }, + }, + NORM_S_INV: { + description: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à zéro et un écart type égal à 1.', + abstract: 'Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale standard (ou centrée réduite). Cette distribution a une moyenne égale à zéro et un écart type égal à 1.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente une probabilité correspondant à la distribution normale.' }, + }, + }, + PEARSON: { + description: 'Renvoie le coefficient de corrélation d’échantillonnage de Pearson r, un indice dont la valeur varie entre -1,0 et 1,0 inclus qui reflète le degré de linéarité entre deux séries de données.', + abstract: 'Renvoie le coefficient de corrélation d’échantillonnage de Pearson r, un indice dont la valeur varie entre -1,0 et 1,0 inclus qui reflète le degré de linéarité entre deux séries de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente un jeu de valeurs indépendantes.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente un jeu de valeurs dépendantes.' }, + }, + }, + PERCENTILE_EXC: { + description: 'CENTILE. La fonction EXC retourne le k-ième centile des valeurs d’une plage, où k est dans la plage 0..1, exclusive.', + abstract: 'CENTILE. La fonction EXC retourne le k-ième centile des valeurs d’une plage, où k est dans la plage 0..1, exclusive.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données définissant l’étendue relative.' }, + k: { name: 'k', detail: 'Obligatoire. Valeur de centile dans la plage 0 < k < 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Retourne le k-ième centile des valeurs d’une plage, où k est compris dans la plage comprise entre 0 et 1.', + abstract: 'Retourne le k-ième centile des valeurs d’une plage, où k est compris dans la plage comprise entre 0 et 1.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données définissant l’étendue relative.' }, + k: { name: 'k', detail: 'Obligatoire. Valeur de centile comprise entre 0 et 1, inclus.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Renvoie le rang d’une valeur d’un jeu de données sous forme de pourcentage (0..1, exclus).', + abstract: 'Renvoie le rang d’une valeur d’un jeu de données sous forme de pourcentage (0..1, exclus).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données de valeurs numériques définissant l’étendue relative.' }, + x: { name: 'x', detail: 'Obligatoire. Représente la valeur dont vous voulez connaître le rang.' }, + significance: { name: 'significance', detail: 'Optionnel. Représente une valeur indiquant le nombre de décimales du pourcentage renvoyé. Si cet argument est omis, la fonction RANG.POURCENTAGE.EXCLURE conserve trois décimales (0,xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Renvoie le rang d’une valeur d’un jeu de données sous forme de pourcentage (0..1, inclus).', + abstract: 'Renvoie le rang d’une valeur d’un jeu de données sous forme de pourcentage (0..1, inclus).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données de valeurs numériques définissant l’étendue relative.' }, + x: { name: 'x', detail: 'Obligatoire. Représente la valeur dont vous voulez connaître le rang.' }, + significance: { name: 'significance', detail: 'Optionnel. Représente une valeur indiquant le nombre de décimales du pourcentage renvoyé. Si cet argument est omis, la fonction RANG.POURCENTAGE.INCLURE conserve trois décimales (0,xxx).' }, + }, + }, + PERMUT: { + description: 'Renvoie le nombre de permutations pour un nombre donné d’objets pouvant être sélectionnés à partir d’un nombre d’objets déterminé par l’argument nombre. Une permutation est un ensemble ou un sous-ensemble d’objets ou d’événements ordonnés de façon précise et significative. En cela, les permutations diffèrent des combinaisons pour lesquelles l’ordre des éléments n’est pas significatif. Utilisez cette fonction dans les calculs de probabilité de type loterie.', + abstract: 'Renvoie le nombre de permutations pour un nombre donné d’objets pouvant être sélectionnés à partir d’un nombre d’objets déterminé par l’argument nombre. Une permutation est un ensemble ou un sous-ensemble d’objets ou d’événements ordonnés de façon précise et significative. En cela, les permutations diffèrent des combinaisons pour lesquelles l’ordre des éléments n’est pas significatif. Utilisez cette fonction dans les calculs de probabilité de type loterie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre entier correspondant au nombre d’objets.' }, + numberChosen: { name: 'number_chosen', detail: 'Obligatoire. Représente un nombre entier correspondant au nombre d’objets dans chaque permutation.' }, + }, + }, + PERMUTATIONA: { + description: 'Renvoie le nombre de permutations pour un nombre d’objets donné (avec répétitions) pouvant être sélectionnés à partir du nombre total d’objets.', + abstract: 'Renvoie le nombre de permutations pour un nombre d’objets donné (avec répétitions) pouvant être sélectionnés à partir du nombre total d’objets.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Nombre entier correspondant au nombre total d’objets.' }, + numberChosen: { name: 'number_chosen', detail: 'Obligatoire. Nombre entier correspondant au nombre d’objets dans chaque permutation.' }, + }, + }, + PHI: { + description: 'Renvoie la valeur de la fonction de densité pour une distribution normale standard.', + abstract: 'Renvoie la valeur de la fonction de densité pour une distribution normale standard.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. X est le nombre pour lequel vous souhaitez obtenir la densité pour une distribution normale standard.' }, + }, + }, + POISSON_DIST: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi de Poisson. Une application courante de la loi de Poisson est la prédiction du nombre d’événements susceptibles de se produire sur une période de temps déterminée, par exemple, le nombre de voitures qui se présentent à un poste de péage en l’espace d’une minute.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi de Poisson. Une application courante de la loi de Poisson est la prédiction du nombre d’événements susceptibles de se produire sur une période de temps déterminée, par exemple, le nombre de voitures qui se présentent à un poste de péage en l’espace d’une minute.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente le nombre d’événements.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la valeur numérique attendue.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Valeur logique qui détermine la forme de la distribution de probabilité retournée. Si cumulative a la valeur TRUE, POISSON. DIST retourne la probabilité cumulée de Poisson que le nombre d’événements aléatoires se produisant soit compris entre zéro et x inclus ; si la valeur est FALSE, elle renvoie la fonction de masse de probabilité de Poisson qui indique que le nombre d’événements qui se produisent sera exactement x.' }, + }, + }, + PROB: { + description: 'Renvoie la probabilité que des valeurs d’une plage soient comprises entre deux limites. Si l’argument limite_sup n’est pas fourni, la fonction renvoie la probabilité que les valeurs de l’argument plage_x soient égales à limite_inf.', + abstract: 'Renvoie la probabilité que des valeurs d’une plage soient comprises entre deux limites. Si l’argument limite_sup n’est pas fourni, la fonction renvoie la probabilité que les valeurs de l’argument plage_x soient égales à limite_inf.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Obligatoire. Représente la plage des valeurs numériques de x auxquelles sont associées des probabilités.' }, + probRange: { name: 'prob_range', detail: 'Obligatoire. Représente une série de probabilités associée aux valeurs de plage_x.' }, + lowerLimit: { name: 'lower_limit', detail: 'Optionnel. Représente la limite inférieure de la valeur pour laquelle vous recherchez une probabilité.' }, + upperLimit: { name: 'upper_limit', detail: 'Optionnel. Représente la limite supérieure facultative de la valeur pour laquelle vous recherchez une probabilité.' }, + }, + }, + QUARTILE_EXC: { + description: 'Retourne le quartile du jeu de données, basé sur des valeurs de centile comprises entre 0 et 1, exclusif.', + abstract: 'Retourne le quartile du jeu de données, basé sur des valeurs de centile comprises entre 0 et 1, exclusif.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de cellules de valeurs numériques pour laquelle vous recherchez la valeur du quartile.' }, + quart: { name: 'quart', detail: 'Obligatoire. Indique quelle valeur renvoyer.' }, + }, + }, + QUARTILE_INC: { + description: 'Les quartiles sont souvent utilisés pour les données relatives aux ventes et aux enquêtes afin de séparer les populations en groupes. Ainsi, vous pouvez utiliser la fonction QUARTILE.INCLURE pour déterminer les vingt-cinq pour cent de revenus les plus élevés d’une population.', + abstract: 'Les quartiles sont souvent utilisés pour les données relatives aux ventes et aux enquêtes afin de séparer les populations en groupes. Ainsi, vous pouvez utiliser la fonction QUARTILE.INCLURE pour déterminer les vingt-cinq pour cent de revenus les plus élevés d’une population.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de cellules de valeurs numériques pour laquelle vous recherchez la valeur du quartile.' }, + quart: { name: 'quart', detail: 'Obligatoire. Indique quelle valeur renvoyer.' }, + }, + }, + RANK_AVG: { + description: 'Retourne le rang d’un nombre dans une liste de nombres : sa taille par rapport aux autres valeurs de la liste. Si plusieurs valeurs ont le même rang, le classement moyen est retourné.', + abstract: 'Retourne le rang d’un nombre dans une liste de nombres : sa taille par rapport aux autres valeurs de la liste. Si plusieurs valeurs ont le même rang, le classement moyen est retourné.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre dont vous voulez connaître le rang.' }, + ref: { name: 'ref', detail: 'Obligatoire. Représente une matrice ou une référence à une liste de nombres. Les valeurs non numériques dans référence sont ignorées.' }, + order: { name: 'order', detail: 'Optionnel. Représente un numéro qui spécifie comment déterminer le rang de l’argument nombre.' }, + }, + }, + RANK_EQ: { + description: 'Renvoie le rang d’un nombre dans une liste de nombres. Sa taille est exprimée par rapport aux autres valeurs de la liste ; si deux valeurs, ou plus, possèdent le même rang, le rang supérieur de cet ensemble de valeurs est renvoyé.', + abstract: 'Renvoie le rang d’un nombre dans une liste de nombres. Sa taille est exprimée par rapport aux autres valeurs de la liste ; si deux valeurs, ou plus, possèdent le même rang, le rang supérieur de cet ensemble de valeurs est renvoyé.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre dont vous voulez connaître le rang.' }, + ref: { name: 'ref', detail: 'Obligatoire. Représente une matrice ou une référence à une liste de nombres. Les valeurs non numériques dans référence sont ignorées.' }, + order: { name: 'order', detail: 'Optionnel. Représente un numéro qui spécifie comment déterminer le rang de l’argument nombre.' }, + }, + }, + RSQ: { + description: 'Renvoie la valeur du coefficient de détermination R^2 d’une régression linéaire ajustée aux observations contenues dans les arguments y_connus et x_connus. Pour plus d’informations, voir la Fonction PEARSON . Le coefficient de détermination peut être interprété comme la proportion de la variance de y imputable à la variance de x.', + abstract: 'Renvoie la valeur du coefficient de détermination R^2 d’une régression linéaire ajustée aux observations contenues dans les arguments y_connus et x_connus. Pour plus d’informations, voir la Fonction PEARSON . Le coefficient de détermination peut être interprété comme la proportion de la variance de y imputable à la variance de x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente une matrice ou une plage de cellules d’observations dépendantes.' }, + knownXs: { name: 'known_x\'s', detail: 'Obligatoire. Représente l’ensemble des observations indépendantes.' }, + }, + }, + SKEW: { + description: 'Renvoie l’asymétrie d’une distribution. Cette fonction caractérise le degré d’asymétrie d’une distribution par rapport à sa moyenne. Une asymétrie positive indique une distribution unilatérale décalée vers les valeurs les plus positives. Une asymétrie négative indique une distribution unilatérale décalée vers les valeurs les plus négatives.', + abstract: 'Renvoie l’asymétrie d’une distribution. Cette fonction caractérise le degré d’asymétrie d’une distribution par rapport à sa moyenne. Une asymétrie positive indique une distribution unilatérale décalée vers les valeurs les plus positives. Une asymétrie négative indique une distribution unilatérale décalée vers les valeurs les plus négatives.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Représentent les 1 à 255 arguments dont vous souhaitez déterminer l’asymétrie. Vous pouvez également utiliser une matrice unique ou une référence à une matrice, au lieu d’arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Number1 est obligatoire, les numéros suivants sont facultatifs. Représentent les 1 à 255 arguments dont vous souhaitez déterminer l’asymétrie. Vous pouvez également utiliser une matrice unique ou une référence à une matrice, au lieu d’arguments séparés par des points-virgules.' }, + }, + }, + SKEW_P: { + description: 'Renvoie l’asymétrie d’une distribution en fonction d’une population : la caractérisation du degré d’asymétrie d’une distribution par rapport à sa moyenne.', + abstract: 'Renvoie l’asymétrie d’une distribution en fonction d’une population : la caractérisation du degré d’asymétrie d’une distribution par rapport à sa moyenne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Premier nombre, référence de cellule ou plage dont vous souhaitez obtenir l’asymétrie.' }, + number2: { name: 'number2', detail: 'Nombres, références de cellules ou plages supplémentaires dont vous souhaitez obtenir l’asymétrie, jusqu’à 255 au maximum.' }, + }, + }, + SLOPE: { + description: 'Renvoie la pente d’une droite de régression linéaire à l’aide de données sur les points d’abscisse et d’ordonnée connus. La pente est la distance verticale divisée par la distance horizontale séparant deux points d’une ligne ; elle exprime le taux de changement le long de la droite de régression.', + abstract: 'Renvoie la pente d’une droite de régression linéaire à l’aide de données sur les points d’abscisse et d’ordonnée connus. La pente est la distance verticale divisée par la distance horizontale séparant deux points d’une ligne ; elle exprime le taux de changement le long de la droite de régression.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente une matrice ou une plage de cellules d’observations dépendantes.' }, + knownXs: { name: 'known_x\'s', detail: 'Obligatoire. Représente l’ensemble des observations indépendantes.' }, + }, + }, + SMALL: { + description: 'Renvoie la k-ième plus petite valeur d’une série de données. Utilisez cette fonction pour renvoyer des valeurs avec une position relative particulière à l’intérieur d’une série de données.', + abstract: 'Renvoie la k-ième plus petite valeur d’une série de données. Utilisez cette fonction pour renvoyer des valeurs avec une position relative particulière à l’intérieur d’une série de données.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente une matrice ou une plage de données numériques dans laquelle vous recherchez la k-ième plus petite valeur.' }, + k: { name: 'k', detail: 'Obligatoire. Représente, dans la matrice ou la plage, le rang de la donnée à renvoyer, déterminé à partir de la valeur la plus petite.' }, + }, + }, + STANDARDIZE: { + description: 'Renvoie une valeur centrée réduite d’une distribution caractérisée par les arguments moyenne et écart_type.', + abstract: 'Renvoie une valeur centrée réduite d’une distribution caractérisée par les arguments moyenne et écart_type.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à centrer et à réduire.' }, + mean: { name: 'mean', detail: 'Obligatoire. Représente la moyenne arithmétique de la distribution.' }, + standardDev: { name: 'standard_dev', detail: 'Obligatoire. Représente l’écart type de la distribution.' }, + }, + }, + STDEV_P: { + description: 'L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + abstract: 'L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à une population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 254 correspondant à une population entière. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + STDEV_S: { + description: 'L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + abstract: 'L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à un échantillon de population. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 254 correspondant à un échantillon de population. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + STDEVA: { + description: 'Estime l’écart type à partir d’un échantillon, y compris les nombres, le texte et les valeurs logiques.', + abstract: 'Estime l’écart type à partir d’un échantillon, y compris les nombres, le texte et les valeurs logiques.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Premier argument de valeur correspondant à un échantillon d’une population. Vous pouvez aussi utiliser un seul tableau ou une référence à un tableau au lieu d’arguments séparés par des virgules.' }, + value2: { name: 'value2', detail: 'Arguments de valeur 2 à 254 correspondant à un échantillon d’une population. Vous pouvez aussi utiliser un seul tableau ou une référence à un tableau au lieu d’arguments séparés par des virgules.' }, + }, + }, + STDEVPA: { + description: 'Calcule l’écart type d’une population en prenant en compte toute la population et en utilisant les arguments spécifiés, y compris le texte et les valeurs logiques. L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + abstract: 'Calcule l’écart type d’une population en prenant en compte toute la population et en utilisant les arguments spécifiés, y compris le texte et les valeurs logiques. L’écart type mesure la dispersion des valeurs par rapport à la moyenne (valeur moyenne).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent 1 à 255 valeurs correspondant à une population. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent 1 à 255 valeurs correspondant à une population. Vous pouvez aussi utiliser une matrice ou une référence à une matrice plutôt que des arguments séparés par des points-virgules.' }, + }, + }, + STEYX: { + description: 'Renvoie l’erreur-type de la valeur y prévue pour chaque x de la régression. L’erreur type est une mesure du degré d’erreur dans la prévision de y à partir d’une valeur individuelle x.', + abstract: 'Renvoie l’erreur-type de la valeur y prévue pour chaque x de la régression. L’erreur type est une mesure du degré d’erreur dans la prévision de y à partir d’une valeur individuelle x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obligatoire. Représente une matrice ou une plage d’observations dépendantes.' }, + knownXs: { name: 'known_x\'s', detail: 'Obligatoire. Représente une matrice ou une plage d’observations indépendantes.' }, + }, + }, + T_DIST: { + description: 'Renvoie la probabilité de la distribution t de Student.', + abstract: 'Renvoie la probabilité de la distribution t de Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valeur numérique à laquelle évaluer la distribution.' }, + degFreedom: { name: 'degFreedom', detail: 'Entier indiquant le nombre de degrés de liberté.' }, + cumulative: { name: 'cumulative', detail: 'Valeur logique qui détermine la forme de la fonction. Si cumulative vaut TRUE, T.DIST renvoie la fonction de distribution cumulée ; sinon, la fonction de densité de probabilité.' }, + }, + }, + T_DIST_2T: { + description: 'Renvoie la probabilité de la distribution t de Student bilatérale.', + abstract: 'Renvoie la probabilité de la distribution t de Student bilatérale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valeur numérique à laquelle évaluer la distribution.' }, + degFreedom: { name: 'degFreedom', detail: 'Entier indiquant le nombre de degrés de liberté.' }, + }, + }, + T_DIST_RT: { + description: 'Renvoie la probabilité de la distribution t de Student unilatérale à droite.', + abstract: 'Renvoie la probabilité de la distribution t de Student unilatérale à droite.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la valeur numérique à laquelle la distribution doit être évaluée.' }, + degFreedom: { name: 'degFreedom', detail: 'Obligatoire. Représente un nombre entier indiquant le nombre de degrés de liberté.' }, + }, + }, + T_INV: { + description: 'Renvoie l’inverse de la probabilité de la distribution t de Student.', + abstract: 'Renvoie l’inverse de la probabilité de la distribution t de Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la loi T de Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté utilisés pour caractériser la distribution.' }, + }, + }, + T_INV_2T: { + description: 'Renvoie l’inverse de la probabilité de la distribution t de Student bilatérale.', + abstract: 'Renvoie l’inverse de la probabilité de la distribution t de Student bilatérale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obligatoire. Représente la probabilité associée à la loi T de Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Obligatoire. Représente le nombre de degrés de liberté utilisés pour caractériser la distribution.' }, + }, + }, + T_TEST: { + description: 'Renvoie la probabilité associée à un test t de Student.', + abstract: 'Renvoie la probabilité associée à un test t de Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obligatoire. Représente la première série de données.' }, + array2: { name: 'array2', detail: 'Obligatoire. Représente la seconde série de données.' }, + tails: { name: 'tails', detail: 'Obligatoire. Indique le type de distribution à renvoyer : unilatérale ou bilatérale. Si uni/bilatéral = 1, T.TEST utilise la distribution unilatérale; si uni/bilatéral = 2, il utilise la distribution bilatérale.' }, + type: { name: 'type', detail: 'Obligatoire. Représente le type de test T à effectuer.' }, + }, + }, + TREND: { + description: 'La fonction TREND retourne des valeurs le long d’une tendance linéaire. Il ajuste une ligne droite (à l’aide de la méthode des moindres carrés) aux known_y et known_x du tableau. TREND retourne les valeurs y le long de cette ligne pour le tableau de new_x que vous spécifiez.', + abstract: 'La fonction TREND retourne des valeurs le long d’une tendance linéaire. Il ajuste une ligne droite (à l’aide de la méthode des moindres carrés) aux known_y et known_x du tableau. TREND retourne les valeurs y le long de cette ligne pour le tableau de new_x que vous spécifiez.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Ensemble de valeurs y que vous connaissez déjà dans la relation y = mx + b Si la matrice définie par l’argument y_connus occupe une seule colonne, chaque colonne de l’argument x_connus est interprétée comme étant une variable distincte. Si la matrice définie par l’argument y_connus occupe une seule ligne, chaque ligne de l’argument x_connus est interprétée comme étant une variable distincte.' }, + knownXs: { name: 'known_x\'s', detail: 'Ensemble facultatif de valeurs x que vous connaissez peut-être déjà dans la relation y = mx + b L’argument x_connus peut contenir une ou plusieurs séries de variables. Si vous utilisez une seule variable, les arguments y_connus et x_connus peuvent être des plages de forme différente, à condition qu’elles aient la même dimension. Si vous utilisez plusieurs variables, l’argument y_connus doit être un vecteur (en d’autres termes, une plage comportant une seule ligne ou une seule colonne). Si l’argument x_connus est omis, il est supposé égal à la matrice {1.2.3....}, de même ordre que l’argument y_connus.' }, + newXs: { name: 'new_x\'s', detail: 'Nouvelles valeurs x pour lesquelles vous souhaitez que TREND retourne les valeurs y correspondantes L’argument x_nouveaux doit comporter une colonne (ou une ligne) pour chaque variable indépendante, comme c’est le cas pour l’argument x_connus. Par conséquent, si l’argument y_connus occupe une seule colonne, les arguments x_connus et x_nouveaux doivent avoir le même nombre de colonnes. Si l’argument y_connus occupe une seule ligne, les arguments x_connus et x_nouveaux doivent avoir le même nombre de lignes. Si l’argument x_nouveaux est omis, l’argument par défaut est l’argument x_connus. Si les deux arguments x_connus et x_nouveaux sont omis, les matrices par défaut sont la matrice {1.2.3....}, de même ordre que l’argument y_connus.' }, + constb: { name: 'const', detail: 'Valeur logique spécifiant s’il faut forcer la constante b à être égale à 0 Si l’argument constante est VRAI ou omis, la constante b est calculée normalement. Si l’argument constante est FAUX, b est égal à 0 (zéro) et les valeurs m sont ajustées de façon à ce que y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'Renvoie la moyenne de l’intérieur d’une série de données. La fonction MOYENNE.REDUITE calcule la moyenne d’une série de données après avoir éliminé un pourcentage d’observations aux extrémités inférieure et supérieure de la distribution. Vous pouvez utiliser cette fonction lorsque vous voulez exclure de votre analyse les observations extrêmes.', + abstract: 'Renvoie la moyenne de l’intérieur d’une série de données. La fonction MOYENNE.REDUITE calcule la moyenne d’une série de données après avoir éliminé un pourcentage d’observations aux extrémités inférieure et supérieure de la distribution. Vous pouvez utiliser cette fonction lorsque vous voulez exclure de votre analyse les observations extrêmes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de valeurs à réduire et sur laquelle calculer la moyenne.' }, + percent: { name: 'percent', detail: 'Obligatoire. Représente le nombre fractionnaire d’observations à exclure du calcul. Par exemple, si l’argument pourcentage est égal à 0,2 et que la série de données contient 20 observations, 4 d’entre elles seront éliminées (20 x 0,2), 2 au début et 2 à la fin de la série.' }, + }, + }, + VAR_P: { + description: 'Calcule la variance d’après la population entière, en ignorant les valeurs logiques et le texte de la population.', + abstract: 'Calcule la variance d’après la population entière.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à une population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 254 correspondant à une population entière.' }, + }, + }, + VAR_S: { + description: 'Estime la variance à partir d’un échantillon, en ignorant les valeurs logiques et le texte de l’échantillon.', + abstract: 'Estime la variance à partir d’un échantillon.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obligatoire. Premier argument numérique correspondant à un échantillon de population.' }, + number2: { name: 'number2', detail: 'Optionnel. Arguments numériques 2 à 254 correspondant à un échantillon de population.' }, + }, + }, + VARA: { + description: 'Calcule la variance sur la base d’un échantillon.', + abstract: 'Calcule la variance sur la base d’un échantillon.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent les 1 à 255 arguments de valeurs correspondant à l’échantillon de la population.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent les 1 à 255 arguments de valeurs correspondant à l’échantillon de la population.' }, + }, + }, + VARPA: { + description: 'Calcule la variance sur la base de l’ensemble de la population.', + abstract: 'Calcule la variance sur la base de l’ensemble de la population.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent les 1 à 255 arguments de valeurs correspondant à une population.' }, + value2: { name: 'value2', detail: 'Value1 est obligatoire, les valeurs suivantes sont facultatives. Représentent les 1 à 255 arguments de valeurs correspondant à une population.' }, + }, + }, + WEIBULL_DIST: { + description: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Weibull. Utilisez cette distribution dans une analyse de fiabilité telle que le calcul du temps moyen de fonctionnement sans panne d’un appareil.', + abstract: 'Renvoie la probabilité d’une variable aléatoire suivant une loi Weibull. Utilisez cette distribution dans une analyse de fiabilité telle que le calcul du temps moyen de fonctionnement sans panne d’un appareil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obligatoire. Représente la variable avec laquelle la fonction doit être calculée.' }, + alpha: { name: 'alpha', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + beta: { name: 'beta', detail: 'Obligatoire. Représente un paramètre de la distribution.' }, + cumulative: { name: 'cumulative', detail: 'Obligatoire. Détermine la forme de la fonction.' }, + }, + }, + Z_TEST: { + description: 'Pour plus d’informations sur l’utilisation de Z.TEST dans une formule pour calculer une valeur de probabilité bilatérale, voir la section « Notes » ci-dessous.', + abstract: 'Pour plus d’informations sur l’utilisation de Z.TEST dans une formule pour calculer une valeur de probabilité bilatérale, voir la section « Notes » ci-dessous.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obligatoire. Représente la matrice ou la plage de données par rapport à laquelle tester x.' }, + x: { name: 'x', detail: 'Obligatoire. Représente la valeur à tester.' }, + sigma: { name: 'sigma', detail: 'Optionnel. Représente l’écart type (connu) de la population. Si l’argument est omis, la valeur de l’argument par défaut est l’écart type de l’échantillon.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/id-ID.ts b/packages/sheets-formula/src/locale/function-list/statistical/id-ID.ts new file mode 100644 index 0000000000..e81cdd27a2 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/id-ID.ts @@ -0,0 +1,1683 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'Mengembalikan rata-rata simpangan mutlak titik data dari nilai rata-ratanya. AVEDEV adalah ukuran variabilitas dalam sekumpulan data.', + abstract: 'Mengembalikan rata-rata simpangan mutlak titik data dari nilai rata-ratanya. AVEDEV adalah ukuran variabilitas dalam sekumpulan data.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 yang ingin Anda dapatkan rata-rata simpangan mutlaknya. Anda juga dapat menggunakan array tunggal atau referensi ke array daripada argumen-argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 yang ingin Anda dapatkan rata-rata simpangan mutlaknya. Anda juga dapat menggunakan array tunggal atau referensi ke array daripada argumen-argumen yang dipisahkan oleh koma.' }, + }, + }, + AVERAGE: { + description: 'Mengembalikan rata-rata (rata-rata aritmetika) argumen. Misalnya, jika rentang A1:A20 berisi angka, rumus =AVERAGE(A1:A20) mengembalikan rata-rata angka tersebut.', + abstract: 'Mengembalikan rata-rata (rata-rata aritmetika) argumen. Misalnya, jika rentang A1:A20 berisi angka, rumus =AVERAGE(A1:A20) mengembalikan rata-rata angka tersebut.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Angka pertama, referensi sel, atau rentang yang anda inginkan rata-ratanya.' }, + number2: { name: 'number2', detail: 'Opsional. Angka tambahan, referensi sel, atau rentang yang Anda inginkan rata-ratanya, hingga maksimum 255.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'Fungsi AVERAGE.WEIGHTED menghitung rata-rata tertimbang dari sekumpulan nilai menggunakan nilai dan bobotnya masing-masing.', + abstract: 'Fungsi AVERAGE.WEIGHTED menghitung rata-rata tertimbang dari sekumpulan nilai menggunakan nilai dan bobotnya masing-masing.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=id', + }, + ], + functionParameter: { + values: { name: 'nilai', detail: 'Nilai yang akan dihitung rata-ratanya. Dapat berupa rentang sel atau nilai itu sendiri.' }, + weights: { name: 'bobot', detail: 'Daftar bobot terkait yang akan diterapkan. Bobot boleh nol tetapi tidak boleh negatif, dan setidaknya satu bobot harus positif. Rentang bobot harus memiliki jumlah baris dan kolom yang sama dengan rentang nilai.' }, + additionalValues: { name: 'nilai_tambahan', detail: 'Nilai tambahan opsional yang akan dihitung rata-ratanya.' }, + additionalWeights: { name: 'bobot_tambahan', detail: 'Bobot tambahan opsional. Setiap nilai_tambahan harus diikuti tepat satu bobot_tambahan.' }, + }, + }, + AVERAGEA: { + description: 'Menghitung rata-rata (rata-rata aritmatika) dari nilai-nilai di daftar argumen.', + abstract: 'Menghitung rata-rata (rata-rata aritmatika) dari nilai-nilai di daftar argumen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Sel 1 hingga 255, rentang sel, atau nilai yang ingin Anda ketahui rata-ratanya.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Sel 1 hingga 255, rentang sel, atau nilai yang ingin Anda ketahui rata-ratanya.' }, + }, + }, + AVERAGEIF: { + description: 'Mengembalikan nilai rata-rata (nilai rata-rata aritmatika) dari semua sel dalam range yang memenuhi kriteria.', + abstract: 'Mengembalikan nilai rata-rata (nilai rata-rata aritmatika) dari semua sel dalam range yang memenuhi kriteria.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Diperlukan. Satu atau beberapa sel yang akan dihitung rata-ratanya, termasuk angka atau nama, array, atau referensi yang berisi angka.' }, + criteria: { name: 'criteria', detail: 'Diperlukan. Kriteria dalam bentuk angka, ekspresi, referensi sel, atau teks menentukan sel mana yang akan dihitung rata-ratanya. Misalnya, kriteria dapat dinyatakan sebagai 32, "32", ">32", "apel", atau B4.' }, + averageRange: { name: 'average_range', detail: 'Opsional. Kumpulan sel sesungguhnya yang akan dihitung rata-ratanya. Jika dikosongkan, maka range digunakan.' }, + }, + }, + AVERAGEIFS: { + description: 'Mengembalikan rata-rata (rata-rata aritmatika) untuk semua sel yang memenuhi beberapa kriteria.', + abstract: 'Mengembalikan rata-rata (rata-rata aritmatika) untuk semua sel yang memenuhi beberapa kriteria.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Diperlukan. Satu atau beberapa sel yang akan dihitung rata-ratanya, termasuk angka atau nama, array, atau referensi yang berisi angka.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Criteria_range1 diperlukan, criteria_range berikutnya opsional. 1 hingga 127 rentang yang digunakan untuk mengevaluasi kriteria terkait.' }, + criteria1: { name: 'criteria1', detail: 'Criteria1 diperlukan, kriteria berikutnya bersifat opsional. 1 hingga 127 kriteria dalam bentuk angka, ekspresi, referensi sel, atau teks yang menentukan sel yang akan dihitung rata-ratanya. Misalnya, kriteria dapat dinyatakan sebagai 32, "32", ">32", "apel", atau B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Criteria_range1 diperlukan, criteria_range berikutnya opsional. 1 hingga 127 rentang yang digunakan untuk mengevaluasi kriteria terkait.' }, + criteria2: { name: 'criteria2', detail: 'Criteria1 diperlukan, kriteria berikutnya bersifat opsional. 1 hingga 127 kriteria dalam bentuk angka, ekspresi, referensi sel, atau teks yang menentukan sel yang akan dihitung rata-ratanya. Misalnya, kriteria dapat dinyatakan sebagai 32, "32", ">32", "apel", atau B4.' }, + }, + }, + BETA_DIST: { + description: 'Distribusi beta umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + abstract: 'Distribusi beta umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai antara A dan B untuk mengevaluasi fungsi' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter distribusi.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika secara kumulatif adalah TRUE, BETA.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kepadatan probabilitas.' }, + A: { name: 'A', detail: 'Batas bawah pada interval x.' }, + B: { name: 'B', detail: 'Opsional. Batas atas pada interval x.' }, + }, + }, + BETA_INV: { + description: 'Jika probabilitas = BETA.DIST(x,...TRUE), maka BETA.INV(probability,...) = x. Distribusi beta dapat digunakan dalam perencanaan proyek untuk membuat model waktu penyelesaian yang mungkin dengan waktu penyelesaian yang diharapkan dan variabilitas.', + abstract: 'Jika probabilitas = BETA.DIST(x,...TRUE), maka BETA.INV(probability,...) = x. Distribusi beta dapat digunakan dalam perencanaan proyek untuk membuat model waktu penyelesaian yang mungkin dengan waktu penyelesaian yang diharapkan dan variabilitas.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi beta.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi.' }, + A: { name: 'A', detail: 'Batas bawah pada interval x.' }, + B: { name: 'B', detail: 'Opsional. Batas atas pada interval x.' }, + }, + }, + BINOM_DIST: { + description: 'Mengembalikan probabilitas distribusi binomial individual. Gunakan BINOM.DIST dalam soal dengan angka uji atau percobaan tetap, ketika hasil percobaan hanya berhasil atau gagal, ketika percobaan bersifat independen, dan ketika probabilitas keberhasilan adalah konstan selama eksperimen tersebut. Misalnya, BINOM.DIST dapat menghitung probabilitas bahwa dua dari tiga bayi yang lahir berikutnya adalah laki-laki.', + abstract: 'Mengembalikan probabilitas distribusi binomial individual. Gunakan BINOM.DIST dalam soal dengan angka uji atau percobaan tetap, ketika hasil percobaan hanya berhasil atau gagal, ketika percobaan bersifat independen, dan ketika probabilitas keberhasilan adalah konstan selama eksperimen tersebut. Misalnya, BINOM.DIST dapat menghitung probabilitas bahwa dua dari tiga bayi yang lahir berikutnya adalah laki-laki.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Diperlukan. Jumlah keberhasilan dalam percobaan.' }, + trials: { name: 'trials', detail: 'Diperlukan. Jumlah percobaan independen.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan pada setiap percobaan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika cumulative adalah TRUE, maka BINOM.DIST mengembalikan fungsi distribusi kumulatif, yakni probabilitas bahwa terdapat sebagian besar keberhasilan number_s; jika FALSE, mengembalikan fungsi massa probabilitas, yakni probabilitas bahwa terdapat number_s keberhasilan.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Mengembalikan probabilitas hasil percobaan menggunakan distribusi binomial.', + abstract: 'Mengembalikan probabilitas hasil percobaan menggunakan distribusi binomial.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Diperlukan. Jumlah percobaan independen. Harus lebih besar dari atau sama dengan 0.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan di setiap percobaan. Harus lebih besar dari atau sama dengan 0 dan kurang dari atau sama dengan 1.' }, + numberS: { name: 'number_s', detail: 'Diperlukan. Jumlah keberhasilan dalam percobaan. Harus lebih besar dari atau sama dengan 0 dan kurang dari atau sama dengan Percobaan.' }, + numberS2: { name: 'number_s2', detail: 'Opsional. Jika ada, mengembalikan probabilitas jumlah percobaan yang berhasil dalam rentang antara Number_s dan number_s2. Harus lebih besar dari atau sama dengan Number_s dan kurang dari atau sama dengan Trials.' }, + }, + }, + BINOM_INV: { + description: 'Mengembalikan nilai terkecil di mana distribusi binomial kumulatifnya lebih besar dari atau sama dengan nilai kriteria.', + abstract: 'Mengembalikan nilai terkecil di mana distribusi binomial kumulatifnya lebih besar dari atau sama dengan nilai kriteria.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Diperlukan. Jumlah percobaan Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan pada setiap percobaan.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Nilai kriteria.' }, + }, + }, + CHISQ_DIST: { + description: 'Mengembalikan distribusi khi-kuadrat.', + abstract: 'Mengembalikan distribusi khi-kuadrat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika secara kumulatif adalah TRUE, CHISQ.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'Distribusi χ2 dikaitkan dengan uji χ2. Gunakan uji χ2 untuk membandingkan nilai yang diamati dan yang diharapkan. Misalnya, eksperimen genetik mungkin membuat hipotesis bahwa generasi tumbuhan berikutnya akan menunjukkan kumpulan warna tertentu. Dengan membandingkan hasil yang diamati dengan hasil yang diharapkan, Anda dapat memutuskan apakah hipotesis awal Anda valid.', + abstract: 'Distribusi χ2 dikaitkan dengan uji χ2. Gunakan uji χ2 untuk membandingkan nilai yang diamati dan yang diharapkan. Misalnya, eksperimen genetik mungkin membuat hipotesis bahwa generasi tumbuhan berikutnya akan menunjukkan kumpulan warna tertentu. Dengan membandingkan hasil yang diamati dengan hasil yang diharapkan, Anda dapat memutuskan apakah hipotesis awal Anda valid.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + }, + }, + CHISQ_INV: { + description: 'Distribusi khi-kuadrat umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + abstract: 'Distribusi khi-kuadrat umumnya digunakan untuk mengkaji variasi dalam persentase sesuatu lintas sampel, seperti pecahan hari yang dihabiskan orang untuk menonton televisi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi khi-kuadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Jika probabilitas = CHISQ.DIST.RT(x,...), maka CHISQ.INV.RT(probabilitas,...) = x. Gunakan fungsi ini untuk membandingkan hasil yang diamati dengan hasil yang diharapkan untuk memutuskan apakah hipotesis awal Anda valid.', + abstract: 'Jika probabilitas = CHISQ.DIST.RT(x,...), maka CHISQ.INV.RT(probabilitas,...) = x. Gunakan fungsi ini untuk membandingkan hasil yang diamati dengan hasil yang diharapkan untuk memutuskan apakah hipotesis awal Anda valid.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi khi-kuadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Diperlukan. Angka derajat kebebasan.' }, + }, + }, + CHISQ_TEST: { + description: 'Mengembalikan uji untuk independensi. CHISQ.TEST mengembalikan nilai dari distribusi khi kuadrat (χ2) untuk statistik dan derajat kebebasan yang tepat. Anda dapat menggunakan uji χ2 untuk menentukan apakah hasil yang dihipotesis diverifikasi oleh eksperimen.', + abstract: 'Mengembalikan uji untuk independensi. CHISQ.TEST mengembalikan nilai dari distribusi khi kuadrat (χ2) untuk statistik dan derajat kebebasan yang tepat. Anda dapat menggunakan uji χ2 untuk menentukan apakah hasil yang dihipotesis diverifikasi oleh eksperimen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Diperlukan. Rentang data yang berisi observasi untuk menguji nilai-nilai yang diharapkan.' }, + expectedRange: { name: 'expected_range', detail: 'Diperlukan. Rentang data yang berisi rasio produk dari total baris dan total kolom dengan total keseluruhan.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'Interval kepercayaan adalah suatu rentang nilai. Rata-rata sampel Anda, x, berada di tengah rentang ini dan rentangnya x ± CONFIDENCE.NORM. Misalnya, jika x adalah rata-rata sampel waktu pengiriman untuk produk yang dipesan melalui email, x ± CONFIDENCE. NORM adalah rentang sarana populasi. Untuk rata-rata populasi, μ0, dalam rentang ini, probabilitas memperoleh rata-rata sampel yang lebih jauh dari μ0 daripada x adalah lebih besar dari alpha; untuk rata-rata populasi, μ0, bukan dalam rentang ini, probabilitas memperoleh rata-rata sampel yang lebih jauh dari μ0 daripada x adalah kurang dari alpha. Dengan kata lain, asumsikan bahwa kita menggunakan x, standard_dev, dan size untuk membuat uji dua arah pada alpha tingkat signifikansi hipotesis bahwa rata-rata populasi adalah μ0. Maka kita tidak akan menolak hipotesis jika μ0 berada dalam interval kepercayaan tersebut dan akan menolak hipotesis itu jika μ0 tidak dalam interval kepercayaan tersebut. Interval kepercayaan membuat kita tidak dapat menyimpulkan bahwa terdapat probabilitas 1 – alpha bahwa paket berikutnya akan memerlukan waktu pengiriman yang berada dalam interval kepercayaan.', + abstract: 'Interval kepercayaan adalah suatu rentang nilai. Rata-rata sampel Anda, x, berada di tengah rentang ini dan rentangnya x ± CONFIDENCE.NORM. Misalnya, jika x adalah rata-rata sampel waktu pengiriman untuk produk yang dipesan melalui email, x ± CONFIDENCE. NORM adalah rentang sarana populasi. Untuk rata-rata populasi, μ0, dalam rentang ini, probabilitas memperoleh rata-rata sampel yang lebih jauh dari μ0 daripada x adalah lebih besar dari alpha; untuk rata-rata populasi, μ0, bukan dalam rentang ini, probabilitas memperoleh rata-rata sampel yang lebih jauh dari μ0 daripada x adalah kurang dari alpha. Dengan kata lain, asumsikan bahwa kita menggunakan x, standard_dev, dan size untuk membuat uji dua arah pada alpha tingkat signifikansi hipotesis bahwa rata-rata populasi adalah μ0. Maka kita tidak akan menolak hipotesis jika μ0 berada dalam interval kepercayaan tersebut dan akan menolak hipotesis itu jika μ0 tidak dalam interval kepercayaan tersebut. Interval kepercayaan membuat kita tidak dapat menyimpulkan bahwa terdapat probabilitas 1 – alpha bahwa paket berikutnya akan memerlukan waktu pengiriman yang berada dalam interval kepercayaan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Diperlukan. Tingkat signifikansi yang digunakan untuk menghitung tingkat kepercayaan. Tingkat kepercayaan sama dengan 100*(1 - alpha)%, atau dengan kata lain, alpha dari 0,05 menunjukkan tingkat kepercayaan 95 persen.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku populasi untuk rentang data tersebut dan diasumsikan telah diketahui.' }, + size: { name: 'size', detail: 'Diperlukan. Ukuran sampel.' }, + }, + }, + CONFIDENCE_T: { + description: 'Mengembalikan interval kepercayaan untuk rata-rata populasi, menggunakan distribusi t Student.', + abstract: 'Mengembalikan interval kepercayaan untuk rata-rata populasi, menggunakan distribusi t Student.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Diperlukan. Tingkat signifikansi yang digunakan untuk menghitung tingkat kepercayaan. Tingkat kepercayaan sama dengan 100*(1 - alpha)%, atau dengan kata lain, alpha dari 0,05 menunjukkan tingkat kepercayaan 95 persen.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku populasi untuk rentang data tersebut dan diasumsikan telah diketahui.' }, + size: { name: 'size', detail: 'Diperlukan. Ukuran sampel.' }, + }, + }, + CORREL: { + description: 'Fungsi CORREL mengembalikan koefisien korlasi dari dua rentang sel. Gunakan koefisien korelasi untuk menetapkan hubungan antara dua properti. Misalnya, Anda bisa memeriksa hubungan antara suhu rata-rata suatu lokasi dan penggunaan AC.', + abstract: 'Fungsi CORREL mengembalikan koefisien korlasi dari dua rentang sel. Gunakan koefisien korelasi untuk menetapkan hubungan antara dua properti. Misalnya, Anda bisa memeriksa hubungan antara suhu rata-rata suatu lokasi dan penggunaan AC.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Rentang nilai sel.' }, + array2: { name: 'array2', detail: 'Diperlukan. Rentang nilai sel kedua.' }, + }, + }, + COUNT: { + description: 'Fungsi COUNT menghitung jumlah sel yang berisi angka, dan menghitung angka dalam daftar argumen. Gunakan fungsi COUNT untuk mendapatkan jumlah entri di bidang angka yang ada dalam rentang atau larik angka. Misalnya, Anda bisa memasukkan rumus berikut untuk menghitung angka dalam rentang A1:A20: =COUNT(A1:A20) . Dalam contoh ini, jika ada lima sel dalam rentang berisikan angka, hasilnya adalah 5 .', + abstract: 'Fungsi COUNT menghitung jumlah sel yang berisi angka, dan menghitung angka dalam daftar argumen. Gunakan fungsi COUNT untuk mendapatkan jumlah entri di bidang angka yang ada dalam rentang atau larik angka. Misalnya, Anda bisa memasukkan rumus berikut untuk menghitung angka dalam rentang A1:A20: =COUNT(A1:A20) . Dalam contoh ini, jika ada lima sel dalam rentang berisikan angka, hasilnya adalah 5 .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Diperlukan. Item pertama, referensi sel, atau rentang yang ingin Anda hitung angkanya.' }, + value2: { name: 'value 2', detail: 'Opsional. Hingga 255 item tambahan, referensi sel, atau rentang yang ingin Anda hitung angkanya.' }, + }, + }, + COUNTA: { + description: 'Fungsi COUNTA menghitung jumlah sel yang tidak kosong dalam rentang.', + abstract: 'Fungsi COUNTA menghitung jumlah sel yang tidak kosong dalam rentang.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Sel 1 hingga 255, rentang sel, atau nilai yang ingin Anda ketahui rata-ratanya.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Sel 1 hingga 255, rentang sel, atau nilai yang ingin Anda ketahui rata-ratanya.' }, + }, + }, + COUNTBLANK: { + description: 'Gunakan fungsi COUNTBLANK , salah satu fungsi Statistik , untuk menghitung jumlah sel kosong dalam rentang sel.', + abstract: 'Gunakan fungsi COUNTBLANK , salah satu fungsi Statistik , untuk menghitung jumlah sel kosong dalam rentang sel.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Diperlukan. Rentang yang ingin Anda hitung sel kosongnya.' }, + }, + }, + COUNTIF: { + description: 'Gunakan COUNTIF, salah satu fungsi statistik , untuk menghitung jumlah sel yang memenuhi kriteria; misalnya, untuk menghitung berapa kali kota tertentu muncul dalam daftar pelanggan.', + abstract: 'Gunakan COUNTIF, salah satu fungsi statistik , untuk menghitung jumlah sel yang memenuhi kriteria; misalnya, untuk menghitung berapa kali kota tertentu muncul dalam daftar pelanggan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Kelompok sel yang ingin Anda hitung. Rentang bisa berisi angka, array, rentang bernama, atau referensi yang berisi angka. Nilai kosong dan nilai teks diabaikan. Pelajari cara memilih rentang di lembar kerja .' }, + criteria: { name: 'criteria', detail: 'Angka, ekspresi, referensi sel, atau string teks yang menentukan sel yang akan dihitung. Misalnya, Anda dapat menggunakan angka seperti 32, perbandingan seperti ">32", sel seperti B4, atau kata seperti "apel". COUNTIF hanya menggunakan kriteria tunggal. Gunakan COUNTIFS jika Anda ingin menggunakan beberapa kriteria.' }, + }, + }, + COUNTIFS: { + description: 'Fungsi COUNTIFS menerapkan kriteria untuk sel di beberapa rentang dan menghitung berapa kali semua kriteria terpenuhi.', + abstract: 'Fungsi COUNTIFS menerapkan kriteria untuk sel di beberapa rentang dan menghitung berapa kali semua kriteria terpenuhi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Diperlukan. Rentang pertama untuk mengevaluasi kriteria yang terkait.' }, + criteria1: { name: 'criteria1', detail: 'Diperlukan. Kriteria dalam bentuk angka, ekspresi, referensi sel, atau teks yang menentukan sel mana yang akan dihitung. Misalnya, kriteria dapat dinyatakan sebagai 32, ">32", B4, "apel", atau "32".' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Opsional. Rentang tambahan dan kriteria yang terkait. Hingga 127 pasangan rentang/kriteria yang diperbolehkan.' }, + criteria2: { name: 'criteria2', detail: 'Opsional. Rentang tambahan dan kriteria yang terkait. Hingga 127 pasangan rentang/kriteria yang diperbolehkan.' }, + }, + }, + COVARIANCE_P: { + description: 'Mengembalikan kovarians populasi, rata-rata produk deviasi untuk masing-masing pasangan titik data dalam dua set data. Gunakan kovarians untuk menentukan hubungan antara dua set data. Misalnya, Anda dapat memeriksa apakah pendapatan yang lebih besar menyertai tingkat pendidikan yang lebih tinggi.', + abstract: 'Mengembalikan kovarians populasi, rata-rata produk deviasi untuk masing-masing pasangan titik data dalam dua set data. Gunakan kovarians untuk menentukan hubungan antara dua set data. Misalnya, Anda dapat memeriksa apakah pendapatan yang lebih besar menyertai tingkat pendidikan yang lebih tinggi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Rentang sel pertama bilangan bulat.' }, + array2: { name: 'array2', detail: 'Diperlukan. Rentang sel kedua bilangan bulat.' }, + }, + }, + COVARIANCE_S: { + description: 'Mengembalikan kovarians sampel, rata-rata hasil kali simpangan untuk setiap pasangan titik data dalam dua set data.', + abstract: 'Mengembalikan kovarians sampel, rata-rata hasil kali simpangan untuk setiap pasangan titik data dalam dua set data.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Rentang sel pertama bilangan bulat.' }, + array2: { name: 'array2', detail: 'Diperlukan. Rentang sel kedua bilangan bulat.' }, + }, + }, + DEVSQ: { + description: 'Mengembalikan jumlah kuadrat simpangan titik data dari nilai tengah sampelnya.', + abstract: 'Mengembalikan jumlah kuadrat simpangan titik data dari nilai tengah sampelnya.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 tempat Anda ingin menghitung jumlah simpangan kuadrat. Anda juga dapat menggunakan array tunggal atau referensi ke array daripada argumen-argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 tempat Anda ingin menghitung jumlah simpangan kuadrat. Anda juga dapat menggunakan array tunggal atau referensi ke array daripada argumen-argumen yang dipisahkan oleh koma.' }, + }, + }, + EXPON_DIST: { + description: 'Mengembalikan distribusi eksponensial. Gunakan EXPON.DIST untuk membuat model waktu antara peristiwa, seperti berapa lama waktu yang diperlukan anjungan tunai mandiri (ATM) untuk mengeluarkan uang tunai. Misalnya, Anda dapat menggunakan EXPON.DIST untuk menetapkan probabilitas bahwa proses itu memerlukan paling lama 1 menit.', + abstract: 'Mengembalikan distribusi eksponensial. Gunakan EXPON.DIST untuk membuat model waktu antara peristiwa, seperti berapa lama waktu yang diperlukan anjungan tunai mandiri (ATM) untuk mengeluarkan uang tunai. Misalnya, Anda dapat menggunakan EXPON.DIST untuk menetapkan probabilitas bahwa proses itu memerlukan paling lama 1 menit.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai fungsi.' }, + lambda: { name: 'lambda', detail: 'Diperlukan. Nilai parameter.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menunjukkan formulir fungsi eksponensial mana yang akan diberikan. Jika secara kumulatif adalah TRUE, EXPON.DIST akan mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + F_DIST: { + description: 'Mengembalikan distribusi probabilitas F. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda dapat memeriksa nilai ujian pria dan wanita yang memasuki sekolah menengah, dan menentukan apakah varianabilitas pada wanita berbeda dari yang ditemukan pada laki-laki.', + abstract: 'Mengembalikan distribusi probabilitas F. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda dapat memeriksa nilai ujian pria dan wanita yang memasuki sekolah menengah, dan menentukan apakah varianabilitas pada wanita berbeda dari yang ditemukan pada laki-laki.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika cumulative adalah TRUE, F.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + F_DIST_RT: { + description: 'Mengembalikan distribusi probabilitas F (arah kanan) (derajat keragaman) untuk dua unit data. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda bisa memeriksa nilai ujian laki-laki dan perempuan yang masuk sekolah menengah dan menentukan apakah keragaman pada nilai perempuan berbeda dari yang ditemukan pada laki-laki.', + abstract: 'Mengembalikan distribusi probabilitas F (arah kanan) (derajat keragaman) untuk dua unit data. Anda dapat menggunakan fungsi ini untuk menentukan apakah dua unit data memiliki derajat keragaman berbeda. Misalnya, Anda bisa memeriksa nilai ujian laki-laki dan perempuan yang masuk sekolah menengah dan menentukan apakah keragaman pada nilai perempuan berbeda dari yang ditemukan pada laki-laki.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + }, + }, + F_INV: { + description: 'Mengembalikan inversi distribusi probabilitas F. Jika p = F.DIST(x,...), maka F.INV(p,...) = x. Distribusi F dapat digunakan dalam uji F yang membandingkan derajat keragaman dalam dua unit data. Misalnya, Anda dapat menganalisis distribusi pendapatan di Amerika Serikat dan Kanada untuk menentukan apakah dua negara tersebut memiliki derajat keragaman pendapatan yang mirip.', + abstract: 'Mengembalikan inversi distribusi probabilitas F. Jika p = F.DIST(x,...), maka F.INV(p,...) = x. Distribusi F dapat digunakan dalam uji F yang membandingkan derajat keragaman dalam dua unit data. Misalnya, Anda dapat menganalisis distribusi pendapatan di Amerika Serikat dan Kanada untuk menentukan apakah dua negara tersebut memiliki derajat keragaman pendapatan yang mirip.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi kumulatif F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + }, + }, + F_INV_RT: { + description: 'Mengembalikan inversi distribusi probabilitas F (arah kanan). Jika p = F.DIST.RT(x,...), maka F.INV.RT(p,...) = x. Distribusi F dapat digunakan dalam uji F yang membandingkan derajat keragaman dalam dua unit data. Misalnya, Anda dapat menganalisis distribusi pendapatan di Amerika Serikat dan Kanada untuk menentukan apakah dua negara tersebut memiliki derajat keragaman pendapatan yang mirip.', + abstract: 'Mengembalikan inversi distribusi probabilitas F (arah kanan). Jika p = F.DIST.RT(x,...), maka F.INV.RT(p,...) = x. Distribusi F dapat digunakan dalam uji F yang membandingkan derajat keragaman dalam dua unit data. Misalnya, Anda dapat menganalisis distribusi pendapatan di Amerika Serikat dan Kanada untuk menentukan apakah dua negara tersebut memiliki derajat keragaman pendapatan yang mirip.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas yang dikaitkan dengan distribusi kumulatif F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Diperlukan. Derajat kebebasan pembilang' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Diperlukan. Derajat kebebasan penyebut.' }, + }, + }, + F_TEST: { + description: 'Gunakan fungsi ini untuk menentukan apakah kedua sampel memiliki varians yang berbeda. Misalnya, dengan adanya nilai ujian dari sekolah negeri dan swasta, Anda dapat menguji apakah sekolah-sekolah tersebut memiliki tingkat nilai ujian yang berbeda.', + abstract: 'Gunakan fungsi ini untuk menentukan apakah kedua sampel memiliki varians yang berbeda. Misalnya, dengan adanya nilai ujian dari sekolah negeri dan swasta, Anda dapat menguji apakah sekolah-sekolah tersebut memiliki tingkat nilai ujian yang berbeda.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Array atau rentang data pertama.' }, + array2: { name: 'array2', detail: 'Diperlukan. Array atau rentang data kedua.' }, + }, + }, + FISHER: { + description: 'Mengembalikan transformasi Fisher pada x. Transformasi ini mengembalikan fungsi yang didistribusikan secara normal dan tidak condong. Gunakan fungsi ini untuk melakukan pengujian hipotesis pada koefisien korelasi.', + abstract: 'Mengembalikan transformasi Fisher pada x. Transformasi ini mengembalikan fungsi yang didistribusikan secara normal dan tidak condong. Gunakan fungsi ini untuk melakukan pengujian hipotesis pada koefisien korelasi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai numerik yang Anda inginkan untuk transformasi.' }, + }, + }, + FISHERINV: { + description: 'Mengembalikan inversi dari transformasi Fisher. Gunakan transformasi ini saat menganalisis korelasi antara rentang atau array data. Jika y = FISHER(x), maka FISHERINV(y) = x.', + abstract: 'Mengembalikan inversi dari transformasi Fisher. Gunakan transformasi ini saat menganalisis korelasi antara rentang atau array data. Jika y = FISHER(x), maka FISHERINV(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Diperlukan. Nilai yang ingin Anda gunakan untuk melakukan inversi dari transformasi tersebut.' }, + }, + }, + FORECAST: { + description: 'Hitung, atau prediksi, nilai masa mendatang dengan menggunakan nilai yang sudah ada. Nilai masa depan adalah nilai y untuk nilai x tertentu. Nilai yang sudah ada adalah nilai x dan nilai y yang diketahui, dan nilai masa depan diprediksi dengan menggunakan regresi linear. Anda dapat menggunakan fungsi ini untuk memprediksi tren penjualan, persediaan, atau tren konsumen di masa mendatang.', + abstract: 'Hitung, atau prediksi, nilai masa mendatang dengan menggunakan nilai yang sudah ada. Nilai masa depan adalah nilai y untuk nilai x tertentu. Nilai yang sudah ada adalah nilai x dan nilai y yang diketahui, dan nilai masa depan diprediksi dengan menggunakan regresi linear. Anda dapat menggunakan fungsi ini untuk memprediksi tren penjualan, persediaan, atau tren konsumen di masa mendatang.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'ya Poin data yang ingin Anda prediksikan nilainya.' }, + knownYs: { name: 'known_y\'s', detail: 'ya Array atau rentang data terikat.' }, + knownXs: { name: 'known_x\'s', detail: 'ya Array atau rentang data bebas.' }, + }, + }, + FORECAST_ETS: { + description: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + abstract: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Tanggal target', detail: 'Titik data yang nilainya ingin diprediksi.' }, + values: { name: 'Nilai', detail: 'Nilai historis yang digunakan untuk prakiraan.' }, + timeline: { name: 'Garis waktu', detail: 'Rentang atau array independen berisi tanggal atau waktu numerik dengan langkah konstan.' }, + seasonality: { name: 'Musiman', detail: 'Opsional. Panjang musim; 1 untuk deteksi otomatis dan 0 untuk tanpa musim.' }, + dataCompletion: { name: 'Penyelesaian data', detail: 'Opsional. Gunakan 1 untuk interpolasi titik yang hilang atau 0 untuk menganggapnya nol.' }, + aggregation: { name: 'Agregasi', detail: 'Opsional. Nilai 1 sampai 7 menentukan cara mengagregasi cap waktu duplikat.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + abstract: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Tanggal target', detail: 'Titik data yang nilainya ingin diprediksi.' }, + values: { name: 'Nilai', detail: 'Nilai historis yang digunakan untuk prakiraan.' }, + timeline: { name: 'Garis waktu', detail: 'Rentang atau array independen berisi tanggal atau waktu numerik dengan langkah konstan.' }, + confidenceLevel: { name: 'Tingkat keyakinan', detail: 'Opsional. Angka antara 0 dan 1; default-nya 0,95.' }, + seasonality: { name: 'Musiman', detail: 'Opsional. Panjang musim; 1 untuk deteksi otomatis dan 0 untuk tanpa musim.' }, + dataCompletion: { name: 'Penyelesaian data', detail: 'Opsional. Gunakan 1 untuk interpolasi titik yang hilang atau 0 untuk menganggapnya nol.' }, + aggregation: { name: 'Agregasi', detail: 'Opsional. Nilai 1 sampai 7 menentukan cara mengagregasi cap waktu duplikat.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + abstract: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Nilai', detail: 'Nilai historis yang digunakan untuk prakiraan.' }, + timeline: { name: 'Garis waktu', detail: 'Rentang atau array independen berisi tanggal atau waktu numerik dengan langkah konstan.' }, + dataCompletion: { name: 'Penyelesaian data', detail: 'Opsional. Gunakan 1 untuk interpolasi titik yang hilang atau 0 untuk menganggapnya nol.' }, + aggregation: { name: 'Agregasi', detail: 'Opsional. Nilai 1 sampai 7 menentukan cara mengagregasi cap waktu duplikat.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + abstract: 'Anda selalu dapat bertanya kepada pakar dalam Komunitas Teknologi Excel atau mendapatkan dukungan di Komunitas .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Nilai', detail: 'Nilai historis yang digunakan untuk prakiraan.' }, + timeline: { name: 'Garis waktu', detail: 'Rentang atau array independen berisi tanggal atau waktu numerik dengan langkah konstan.' }, + statisticType: { name: 'Jenis statistik', detail: 'Nilai 1 sampai 8 menentukan statistik prakiraan yang dikembalikan.' }, + seasonality: { name: 'Musiman', detail: 'Opsional. Panjang musim; 1 untuk deteksi otomatis dan 0 untuk tanpa musim.' }, + dataCompletion: { name: 'Penyelesaian data', detail: 'Opsional. Gunakan 1 untuk interpolasi titik yang hilang atau 0 untuk menganggapnya nol.' }, + aggregation: { name: 'Agregasi', detail: 'Opsional. Nilai 1 sampai 7 menentukan cara mengagregasi cap waktu duplikat.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Hitung, atau prediksi, nilai masa mendatang dengan menggunakan nilai yang sudah ada. Nilai masa depan adalah nilai y untuk nilai x tertentu. Nilai yang sudah ada adalah nilai x dan nilai y yang diketahui, dan nilai masa depan diprediksi dengan menggunakan regresi linear. Anda dapat menggunakan fungsi ini untuk memprediksi tren penjualan, persediaan, atau tren konsumen di masa mendatang.', + abstract: 'Hitung, atau prediksi, nilai masa mendatang dengan menggunakan nilai yang sudah ada. Nilai masa depan adalah nilai y untuk nilai x tertentu. Nilai yang sudah ada adalah nilai x dan nilai y yang diketahui, dan nilai masa depan diprediksi dengan menggunakan regresi linear. Anda dapat menggunakan fungsi ini untuk memprediksi tren penjualan, persediaan, atau tren konsumen di masa mendatang.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'ya Poin data yang ingin Anda prediksikan nilainya.' }, + knownYs: { name: 'known_y\'s', detail: 'ya Array atau rentang data terikat.' }, + knownXs: { name: 'known_x\'s', detail: 'ya Array atau rentang data bebas.' }, + }, + }, + FREQUENCY: { + description: 'Fungsi FREQUENCY menghitung frekuensi kemunculan nilai dalam rentang nilai, lalu mengembalikan array vertikal angka. Misalnya, gunakan FREQUENCY untuk menghitung jumlah skor ujian dalam rentang skor. Karena FREQUENCY mengembalikan array, maka harus dimasukkan sebagai rumus array.', + abstract: 'Fungsi FREQUENCY menghitung frekuensi kemunculan nilai dalam rentang nilai, lalu mengembalikan array vertikal angka. Misalnya, gunakan FREQUENCY untuk menghitung jumlah skor ujian dalam rentang skor. Karena FREQUENCY mengembalikan array, maka harus dimasukkan sebagai rumus array.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Diperlukan. Array atau referensi ke sekumpulan nilai yang ingin dihitung frekuensinya. Jika data_array tidak berisi nilai, FREQUENCY mengembalikan array nol.' }, + binsArray: { name: 'bins_array', detail: 'Diperlukan. Array atau referensi ke interval untuk mengelompokkan nilai dalam data_array. Jika bins_array tidak berisi nilai, FREQUENCY mengembalikan jumlah elemen dalam data_array.' }, + }, + }, + GAMMA: { + description: 'Mengembalikan nilai fungsi gamma.', + abstract: 'Mengembalikan nilai fungsi gamma.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Mengembalikan angka.' }, + }, + }, + GAMMA_DIST: { + description: 'Mengembalikan distribusi gamma. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang mungkin memiliki distribusi condong. Distribusi gamma biasa digunakan dalam analisis antrian.', + abstract: 'Mengembalikan distribusi gamma. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang mungkin memiliki distribusi condong. Distribusi gamma biasa digunakan dalam analisis antrian.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk mengevaluasi distribusi.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi. Jika beta = 1, GAMMA.DIST mengembalikan distribusi gamma standar.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, GAMMA.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, fungsi mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + GAMMA_INV: { + description: 'Mengembalikan inversi dari distribusi kumulatif gamma. Jika p = GAMMA.DIST(x,...), maka GAMMA.INV(p,...) = x. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang distribusinya mungkin condong.', + abstract: 'Mengembalikan inversi dari distribusi kumulatif gamma. Jika p = GAMMA.DIST(x,...), maka GAMMA.INV(p,...) = x. Anda dapat menggunakan fungsi ini untuk mempelajari variabel yang distribusinya mungkin condong.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas terkait dengan distribusi gamma.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter terhadap distribusi. Jika beta = 1, GAMMA.INV mengembalikan distribusi gamma standar.' }, + }, + }, + GAMMALN: { + description: 'Mengembalikan logaritma natural fungsi gamma, Γ(x).', + abstract: 'Mengembalikan logaritma natural fungsi gamma, Γ(x).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk menghitung GAMMALN.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Mengembalikan logaritma natural fungsi gamma, Γ(x).', + abstract: 'Mengembalikan logaritma natural fungsi gamma, Γ(x).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin digunakan untuk menghitung GAMMALN.PRECISE.' }, + }, + }, + GAUSS: { + description: 'Menghitung probabilitas bahwa anggota populasi normal standar akan masuk di antara rata-rata dan z simpangan baku dari rata-rata.', + abstract: 'Menghitung probabilitas bahwa anggota populasi normal standar akan masuk di antara rata-rata dan z simpangan baku dari rata-rata.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Diperlukan. Mengembalikan angka.' }, + }, + }, + GEOMEAN: { + description: 'Mengembalikan rata-rata geometrik sebuah array atau rentang data positif. Misalnya, Anda dapat menggunakan GEOMEAN untuk menghitung rata-rata angka pertumbuhan dari campuran bunga dengan angka variabel.', + abstract: 'Mengembalikan rata-rata geometrik sebuah array atau rentang data positif. Misalnya, Anda dapat menggunakan GEOMEAN untuk menghitung rata-rata angka pertumbuhan dari campuran bunga dengan angka variabel.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 sampai 255 argumen sebagai tujuan menghitung rata-rata. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 sampai 255 argumen sebagai tujuan menghitung rata-rata. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + }, + }, + GROWTH: { + description: 'Menghitung prediksi pertumbuhan eksponensial menggunakan data yang ada. GROWTH mengembalikan nilai-y untuk serangkaian nilai-x baru yang Anda tentukan menggunakan nilai-x dan nilai-y yang ada. Anda juga dapat menggunakan fungsi lembar kerja GROWTH untuk menyesuaikan kurva eksponensial dengan nilai-x dan nilai-y yang ada.', + abstract: 'Menghitung prediksi pertumbuhan eksponensial menggunakan data yang ada. GROWTH mengembalikan nilai-y untuk serangkaian nilai-x baru yang Anda tentukan menggunakan nilai-x dan nilai-y yang ada. Anda juga dapat menggunakan fungsi lembar kerja GROWTH untuk menyesuaikan kurva eksponensial dengan nilai-x dan nilai-y yang ada.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Set nilai-y sudah Anda ketahui dalam hubungan y = b*m^x. Jika array known_y\'s berada dalam kolom tunggal, maka setiap kolom known_x\'s diinterpretasikan sebagai variabel terpisah. Jika array known_y\'s berada dalam baris tunggal, maka setiap baris known_x\'s diinterpretasikan sebagai variabel terpisah. Jika salah satu angka dalam known_y adalah 0 atau negatif, GROWTH mengembalikan #NUM! nilai kesalahan.' }, + knownXs: { name: 'known_x\'s', detail: 'Opsional. Set nilai-x opsional mungkin sudah Anda ketahui di hubungan y = b*m^x. Array known_x\'s dapat mencakup satu atau lebih kumpulan variabel. Jika hanya satu variabel yang digunakan, known_y\'s dan known_x\'s bisa berupa rentang dalam bentuk apa pun, selama memiliki dimensi yang sama. Jika lebih dari satu variabel yang digunakan, known_y\'s harus berupa vektor (yaitu, rentang dengan tinggi satu baris atau lebar satu kolom). Jika known_x\'s dihilangkan, maka diasumsikan sebagai array {1,2,3,...} yang berukuran sama dengan known_y\'s.' }, + newXs: { name: 'new_x\'s', detail: 'Opsional. Adalah nilai-x baru yang akan diisi dengan nilai-y terkait yang dikembalikan GROWTH. New_x\'s harus mencakup satu kolom (atau baris) untuk setiap variabel independen, seperti halnya known_x\'s. Jadi, jika known_y\'s berada di satu kolom, known_x\'s dan new_x\'s harus memiliki jumlah kolom yang sama. Jika known_y\'s berada di satu baris, known_x\'s dan new_x\'s harus memiliki jumlah baris yang sama. Jika new_x\'s dihilangkan, maka dianggap sama dengan known_x\'s. Jika known_x\'s dan new_x\'s dihilangkan, maka dianggap array {1,2,3,...} yang berukuran sama dengan known_y\'s.' }, + constb: { name: 'const', detail: 'Opsional. Nilai logika yang menentukan perlunya mendorong konstanta b agar sama dengan 1. Jika const TRUE atau dihilangkan, b dihitung secara normal. Jika const FALSE, b disetel sama dengan 1 dan nilai-m disesuaikan sehingga y = m^x.' }, + }, + }, + HARMEAN: { + description: 'Mengembalikan rata-rata harmonik kumpulan data. Rata-rata harmonik adalah resiprokal dari rata-rata aritmatika resiprokal.', + abstract: 'Mengembalikan rata-rata harmonik kumpulan data. Rata-rata harmonik adalah resiprokal dari rata-rata aritmatika resiprokal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 sampai 255 argumen sebagai tujuan menghitung rata-rata. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 sampai 255 argumen sebagai tujuan menghitung rata-rata. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Mengembalikan distribusi hipergeometrik. HYPGEOM.DIST mengembalikan probabilitas sejumlah sampel keberhasilan tertentu, ukuran sampel tertentu, keberhasilan populasi, dan ukuran populasi. Gunakan HYPGEOM.DIST untuk masalah-masalah dengan populasi terbatas, di mana setiap observasi bisa berhasil atau gagal, dan di mana setiap subkumpulan dari ukuran tertentu dipilih dengan kemungkinan yang sama.', + abstract: 'Mengembalikan distribusi hipergeometrik. HYPGEOM.DIST mengembalikan probabilitas sejumlah sampel keberhasilan tertentu, ukuran sampel tertentu, keberhasilan populasi, dan ukuran populasi. Gunakan HYPGEOM.DIST untuk masalah-masalah dengan populasi terbatas, di mana setiap observasi bisa berhasil atau gagal, dan di mana setiap subkumpulan dari ukuran tertentu dipilih dengan kemungkinan yang sama.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Diperlukan. Jumlah keberhasilan di dalam sampel.' }, + numberSample: { name: 'number_sample', detail: 'Diperlukan. Ukuran sampel.' }, + populationS: { name: 'population_s', detail: 'Diperlukan. Jumlah keberhasilan di dalam populasi.' }, + numberPop: { name: 'number_pop', detail: 'Diperlukan. Ukuran populasi.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, maka HYPGEOM.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, maka HYPGEOM.DIST mengembalikan fungsi massa probabilitas.' }, + }, + }, + INTERCEPT: { + description: 'Menghitung titik tempat sebuah garis akan mengiris sumbu y dengan menggunakan nilai x dan nilai y. Titik potong didasarkan pada garis regresi paling pas yang diplot melalui nilai x dan nilai y yang diketahui. Gunakan fungsi INTERCEPT ketika Anda ingin menentukan nilai variabel tidak bebas saat variabel bebasnya 0 (nol). Misalnya, Anda dapat menggunakan fungsi INTERCEPT untuk memprakirakan resistansi listrik logam pada suhu 0°C ketika titik-titik data Anda diambil pada suhu ruangan dan lebih tinggi lagi.', + abstract: 'Menghitung titik tempat sebuah garis akan mengiris sumbu y dengan menggunakan nilai x dan nilai y. Titik potong didasarkan pada garis regresi paling pas yang diplot melalui nilai x dan nilai y yang diketahui. Gunakan fungsi INTERCEPT ketika Anda ingin menentukan nilai variabel tidak bebas saat variabel bebasnya 0 (nol). Misalnya, Anda dapat menggunakan fungsi INTERCEPT untuk memprakirakan resistansi listrik logam pada suhu 0°C ketika titik-titik data Anda diambil pada suhu ruangan dan lebih tinggi lagi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Unit observasi atau data tidak bebas.' }, + knownXs: { name: 'known_x\'s', detail: 'Diperlukan. Unit observasi atau data bebas.' }, + }, + }, + KURT: { + description: 'Mengembalikan kurtosis dari satu unit data. Kurtosis mencirikan keruncingan atau kedataran relatif sebuah distribusi dibandingkan dengan distribusi normal. Kurtosis positif menandakan distribusi yang relatif runcing. Kurtosis negatif menandakan distribusi yang relatif datar.', + abstract: 'Mengembalikan kurtosis dari satu unit data. Kurtosis mencirikan keruncingan atau kedataran relatif sebuah distribusi dibandingkan dengan distribusi normal. Kurtosis positif menandakan distribusi yang relatif runcing. Kurtosis negatif menandakan distribusi yang relatif datar.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 yang ingin Anda pakai untuk menghitung kurtosis. Anda juga dapat menggunakan array tunggal atau referensi ke sebuah array dan bukannya beberapa argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Argumen 1 sampai 255 yang ingin Anda pakai untuk menghitung kurtosis. Anda juga dapat menggunakan array tunggal atau referensi ke sebuah array dan bukannya beberapa argumen yang dipisahkan oleh koma.' }, + }, + }, + LARGE: { + description: 'Mengembalikan nilai ke-k paling besar dalam sekumpulan data. Anda dapat menggunakan fungsi ini untuk memilih nilai berdasarkan posisi relatifnya. Misalnya, Anda dapat menggunakan LARGE untuk mengembalikan skor yang paling tinggi, kedua atau ketiga.', + abstract: 'Mengembalikan nilai ke-k paling besar dalam sekumpulan data. Anda dapat menggunakan fungsi ini untuk memilih nilai berdasarkan posisi relatifnya. Misalnya, Anda dapat menggunakan LARGE untuk mengembalikan skor yang paling tinggi, kedua atau ketiga.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang ingin Anda tentukan nilai terbesar ke-k-nya.' }, + k: { name: 'k', detail: 'Diperlukan. Posisi (dari yang paling besar) dalam array atau rentang sel data untuk dikembalikan.' }, + }, + }, + LINEST: { + description: 'Fungsi LINEST menghitung statistik untuk sebuah garis dengan menggunakan metode "kuadrat terkecil" untuk menghitung garis lurus yang paling cocok dengan data Anda, dan kemudian mengembalikan array yang menguraikan garis tersebut. Anda juga dapat mengombinasikan LINEST dengan fungsi-fungsi lainnya untuk menghitung statistik untuk tipe model lain yang linear dalam parameter yang tidak diketahui, termasuk polinomial, logaritmik, eksponensial, dan serangkaian pangkat. Karena fungsi ini mengembalikan sebuah array nilai, maka harus dimasukkan sebagai rumus array. Petunjuk mengikuti contoh-contoh dalam artikel ini.', + abstract: 'Fungsi LINEST menghitung statistik untuk sebuah garis dengan menggunakan metode "kuadrat terkecil" untuk menghitung garis lurus yang paling cocok dengan data Anda, dan kemudian mengembalikan array yang menguraikan garis tersebut. Anda juga dapat mengombinasikan LINEST dengan fungsi-fungsi lainnya untuk menghitung statistik untuk tipe model lain yang linear dalam parameter yang tidak diketahui, termasuk polinomial, logaritmik, eksponensial, dan serangkaian pangkat. Karena fungsi ini mengembalikan sebuah array nilai, maka harus dimasukkan sebagai rumus array. Petunjuk mengikuti contoh-contoh dalam artikel ini.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Serangkaian nilai y yang sudah Anda ketahui dalam hubungan y = mx + b. Jika rentang known_y berada dalam satu kolom, setiap kolom known_x diinterpretasikan sebagai variabel terpisah. Jika rentang known_y dimuat dalam satu baris, setiap baris known_x diinterpretasikan sebagai variabel terpisah.' }, + knownXs: { name: 'known_x\'s', detail: 'Opsional. Serangkaian nilai x yang mungkin sudah Anda ketahui dalam hubungan y = mx + b. Rentang known_x dapat menyertakan satu atau beberapa kumpulan variabel. Jika hanya satu variabel yang digunakan, known_y dan known_x dapat berupa rentang bentuk apa pun, selama mereka memiliki dimensi yang sama. Jika lebih dari satu variabel digunakan, known_y harus vektor (yaitu, rentang dengan tinggi satu baris atau lebar satu kolom). Jika known_x dihilangkan , maka diasumsikan sebagai array {1,2,3,...} yang berukuran sama dengan known_y .' }, + constb: { name: 'const', detail: 'Opsional. Nilai logika yang menentukan perlunya mendorong konstanta b agar sama dengan 0. Jika const TRUE atau dihilangkan, b dihitung secara normal. Jika const FALSE, b diatur sama dengan 0 dan nilai m disesuaikan agar pas dengan y = mx.' }, + stats: { name: 'stats', detail: 'Opsional. Nilai logika yang menentukan apakah akan mengembalikan regresi statistik tambahan. Jika stats TRUE, LINEST mengembalikan statistik regresi tambahan; sebagai hasilnya, array yang dikembalikan adalah {mn,mn-1,...,m1,b; sen,sen-1,...,se1,seb; r 2,sey ; F,df; ssreg,ssresid} . Jika stats FALSE atau dihilangkan, LINEST hanya mengembalikan koefisien m dan konstanta b. Regresi statistik tambahannya adalah sebagai berikut.' }, + }, + }, + LOGEST: { + description: 'Persamaan untuk kurva adalah:', + abstract: 'Persamaan untuk kurva adalah:', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Set nilai-y sudah Anda ketahui dalam hubungan y = b*m^x. Jika array known_y\'s berada dalam kolom tunggal, maka setiap kolom known_x\'s diinterpretasikan sebagai variabel terpisah. Jika array known_y\'s berada dalam baris tunggal, maka setiap baris known_x\'s diinterpretasikan sebagai variabel terpisah.' }, + knownXs: { name: 'known_x\'s', detail: 'Opsional. Set nilai-x opsional mungkin sudah Anda ketahui di hubungan y = b*m^x. Array known_x\'s dapat mencakup satu atau lebih kumpulan variabel. Jika hanya satu variabel yang digunakan, maka known_y\'s dan known_x\'s dapat berupa rentang berbentuk apa saja, selama memiliki dimensi yang sama. Jika lebih dari satu variabel yang digunakan, maka known_y\'s harus berupa rentang sel dengan tinggi satu baris atau lebar satu kolom (yang juga disebut vektor). Jika known_x\'s dikosongkan, maka diasumsikan sebagai array {1,2,3,...} yang memiliki ukuran sama dengan known_y\'s.' }, + constb: { name: 'const', detail: 'Opsional. Nilai logika yang menentukan perlunya mendorong konstanta b agar sama dengan 1. Jika const TRUE atau dihilangkan, b dihitung secara normal. Jika const FALSE, maka b diatur agar sama dengan 1, dan nilai m disesuaikan agar pas dengan y = m^x.' }, + stats: { name: 'stats', detail: 'Opsional. Nilai logika yang menentukan apakah akan mengembalikan regresi statistik tambahan. Jika stats TRUE, maka LOGEST mengembalikan statistik regresi tambahan, jadi array yang dikembalikan adalah {mn,mn-1,...,m1,b;sen,sen-1,...,se1,seb;r 2,sey; F,df;ssreg,ssresid}. Jika stats FALSE atau dikosongkan, maka LOGEST hanya mengembalikan koefisien m dan konstanta b.' }, + }, + }, + LOGNORM_DIST: { + description: 'Gunakan fungsi ini untuk menganalisis data yang telah ditransformasi secara logaritmik.', + abstract: 'Gunakan fungsi ini untuk menganalisis data yang telah ditransformasi secara logaritmik.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata dari ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku dari ln(x).' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, maka LOGNORM.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, maka LOGNORM.DIST mengembalikan fungsi probabilitas densitas.' }, + }, + }, + LOGNORM_INV: { + description: 'Mengembalikan inversi dari fungsi distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter Mean dan Standard_dev. Jika p = LOGNORM.DIST(x,...) maka LOGNORM.INV(p,...) = x.', + abstract: 'Mengembalikan inversi dari fungsi distribusi kumulatif lognormal x, di mana ln(x) normalnya didistribusikan dengan parameter Mean dan Standard_dev. Jika p = LOGNORM.DIST(x,...) maka LOGNORM.INV(p,...) = x.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi lognormal.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata dari ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku dari ln(x).' }, + }, + }, + MARGINOFERROR: { + description: 'Fungsi ini menghitung margin galat dari rentang nilai dan tingkat keyakinan.', + abstract: 'Fungsi ini menghitung margin galat dari rentang nilai dan tingkat keyakinan.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=id', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Rentang nilai yang digunakan untuk menghitung margin galat.' }, + confidence: { name: 'confidence', detail: 'Tingkat keyakinan yang diinginkan antara 0 dan 1.' }, + }, + }, + MAX: { + description: 'Mengembalikan nilai terbesar dalam sekumpulan nilai.', + abstract: 'Mengembalikan nilai terbesar dalam sekumpulan nilai.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Bilangan 1 sampai 255 yang ingin Anda cari nilai maksimumnya.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Bilangan 1 sampai 255 yang ingin Anda cari nilai maksimumnya.' }, + }, + }, + MAXA: { + description: 'Mengembalikan nilai terbesar dalam daftar argumen.', + abstract: 'Mengembalikan nilai terbesar dalam daftar argumen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Diperlukan. Angka 1 sampai 255 yang ingin Anda cari nilai terbesarnya.' }, + value2: { name: 'value2', detail: 'Opsional. Jumlah argumen 2 sampai 255 yang ingin Anda cari nilai terbesarnya.' }, + }, + }, + MAXIFS: { + description: 'Fungsi MAXIFS mengembalikan nilai maksimal di antara sel yang ditentukan oleh kumpulan persyaratan atau kriteria tertentu.', + abstract: 'Fungsi MAXIFS mengembalikan nilai maksimal di antara sel yang ditentukan oleh kumpulan persyaratan atau kriteria tertentu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'Rentang sel aktual tempat nilai maksimum akan ditentukan.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Adalah kumpulan sel yang akan dievaluasi dengan kriteria.' }, + criteria1: { name: 'criteria1', detail: 'Adalah kriteria dalam bentuk angka, ekspresi, atau teks yang menentukan sel mana yang akan dievaluasi sebagai kondisi maksimum. Kumpulan kriteria yang sama dapat digunakan dengan fungsi MINIFS , SUMIFS , dan AVERAGEIFS .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 126 pasang rentang/kriteria.' }, + criteria2: { name: 'criteria2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 126 pasang rentang/kriteria.' }, + }, + }, + MEDIAN: { + description: 'Mengembalikan median dari angka tertentu. Median adalah angka yang berada di tengah serangkaian angka.', + abstract: 'Mengembalikan median dari angka tertentu. Median adalah angka yang berada di tengah serangkaian angka.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Angka dari 1 sampai 255 yang Anda inginkan mediannya.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. Angka dari 1 sampai 255 yang Anda inginkan mediannya.' }, + }, + }, + MIN: { + description: 'Mengembalikan angka terkecil dalam serangkaian nilai.', + abstract: 'Mengembalikan angka terkecil dalam serangkaian nilai.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 bersifat opsional, angka berikutnya bersifat opsional. Angka 1 sampai 255 yang ingin Anda cari nilai minimumnya.' }, + number2: { name: 'number2', detail: 'Number1 bersifat opsional, angka berikutnya bersifat opsional. Angka 1 sampai 255 yang ingin Anda cari nilai minimumnya.' }, + }, + }, + MINA: { + description: 'Mengembalikan nilai terkecil dalam daftar argumen.', + abstract: 'Mengembalikan nilai terkecil dalam daftar argumen.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Angka 1 sampai 255 yang ingin Anda cari nilai minimumnya.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Angka 1 sampai 255 yang ingin Anda cari nilai minimumnya.' }, + }, + }, + MINIFS: { + description: 'Fungsi MINIFS mengembalikan nilai minimal di antara sel yang ditentukan oleh kumpulan persyaratan atau kriteria tertentu.', + abstract: 'Fungsi MINIFS mengembalikan nilai minimal di antara sel yang ditentukan oleh kumpulan persyaratan atau kriteria tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'Rentang sel aktual tempat nilai minimum akan ditentukan.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Adalah kumpulan sel yang akan dievaluasi dengan kriteria.' }, + criteria1: { name: 'criteria1', detail: 'Adalah kriteria dalam bentuk angka, ekspresi, atau teks yang menentukan sel mana yang akan dievaluasi sebagai kondisi minimum. Kumpulan kriteria yang sama dapat digunakan dengan fungsi MAXIFS , SUMIFS , dan AVERAGEIFS .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 126 pasang rentang/kriteria.' }, + criteria2: { name: 'criteria2', detail: 'Rentang tambahan dan kriteria yang terkait. Anda bisa memasukkan hingga 126 pasang rentang/kriteria.' }, + }, + }, + MODE_MULT: { + description: 'Ini akan mengembalikan lebih dari satu hasil jika ada beberapa modus. Karena fungsi ini mengembalikan array nilai, maka harus dimasukkan sebagai rumus array.', + abstract: 'Ini akan mengembalikan lebih dari satu hasil jika ada beberapa modus. Karena fungsi ini mengembalikan array nilai, maka harus dimasukkan sebagai rumus array.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang ingin Anda hitung modusnya.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 254 yang ingin Anda hitung modusnya. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + MODE_SNGL: { + description: 'Mengembalikan nilai yang paling sering berulang, atau repetitif, dalam array atau rentang data.', + abstract: 'Mengembalikan nilai yang paling sering berulang, atau repetitif, dalam array atau rentang data.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen pertama yang ingin Anda hitung modusnya.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen 2 sampai 254 yang ingin Anda hitung modusnya. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Mengembalikan distribusi binomial negatif, probabilitasnya adalah akan ada kegagalan Number_f sebelum keberhasilan Number_s-th, dengan probabilitas keberhasilan Probability_s.', + abstract: 'Mengembalikan distribusi binomial negatif, probabilitasnya adalah akan ada kegagalan Number_f sebelum keberhasilan Number_s-th, dengan probabilitas keberhasilan Probability_s.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Diperlukan. Jumlah kegagalan.' }, + numberS: { name: 'number_s', detail: 'Diperlukan. Jumlah ambang batas keberhasilan.' }, + probabilityS: { name: 'probability_s', detail: 'Diperlukan. Probabilitas keberhasilan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, maka NEGBINOM.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, maka NEGBINOM.DIST mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + NORM_DIST: { + description: 'Mengembalikan distribusi normal untuk rata-rata dan simpangan baku tertentu. Penerapan fungsi ini dalam statistik luas sekali, termasuk pengujian hipotesis.', + abstract: 'Mengembalikan distribusi normal untuk rata-rata dan simpangan baku tertentu. Penerapan fungsi ini dalam statistik luas sekali, termasuk pengujian hipotesis.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang Anda inginkan distribusinya.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata aritmetika distribusi.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku distribusi.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif TRUE, MAKA NORM. DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, maka mengembalikan fungsi kerapatan probabilitas.' }, + }, + }, + NORM_INV: { + description: 'Mengembalikan inversi distribusi kumulatif normal untuk rata-rata dan simpangan baku tertentu.', + abstract: 'Mengembalikan inversi distribusi kumulatif normal untuk rata-rata dan simpangan baku tertentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi normal.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata aritmetika distribusi.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku distribusi.' }, + }, + }, + NORM_S_DIST: { + description: 'The NORM. Fungsi S.DIST di Excel mengembalikan distribusi normal standar ( misalnya, memiliki rata-rata nol dan simpangan baku satu ). Anda dapat menggunakan fungsi ini sebagai ganti menggunakan tabel area kurva normal standar.', + abstract: 'The NORM. Fungsi S.DIST di Excel mengembalikan distribusi normal standar ( misalnya, memiliki rata-rata nol dan simpangan baku satu ). Anda dapat menggunakan fungsi ini sebagai ganti menggunakan tabel area kurva normal standar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Diperlukan. Ini adalah nilai yang Anda inginkan distribusinya.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Argumen kumulatif bisa berupa TRUE atau FALSE . Nilai logika ini menentukan bentuk fungsi. Jika kumulatif TRUE maka NORM. S.DIST mengembalikan fungsi distribusi kumulatif . Jika FALSE, maka mengembalikan fungsi massa probabilitas .' }, + }, + }, + NORM_S_INV: { + description: 'Mengembalikan inversi dari distribusi kumulatif normal standar. Distribusi memiliki rata-rata nol dan simpangan baku dari satu.', + abstract: 'Mengembalikan inversi dari distribusi kumulatif normal standar. Distribusi memiliki rata-rata nol dan simpangan baku dari satu.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Sebuah probabilitas yang dikaitkan dengan distribusi normal.' }, + }, + }, + PEARSON: { + description: 'Mengembalikan koefisien korelasi momen-produk Pearson, r, indeks tak berdimensi -1,0 sampai 1,0 inklusif dan mencerminkan jauhnya hubungan linear antara kedua rangkaian data.', + abstract: 'Mengembalikan koefisien korelasi momen-produk Pearson, r, indeks tak berdimensi -1,0 sampai 1,0 inklusif dan mencerminkan jauhnya hubungan linear antara kedua rangkaian data.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Satu set nilai independen.' }, + array2: { name: 'array2', detail: 'Diperlukan. Satu set nilai dependen' }, + }, + }, + PERCENTILE_EXC: { + description: 'The PERCENTILE. Fungsi EXC mengembalikan persentil k-th dari nilai dalam rentang, di mana k berada dalam rentang 0..1, tidak termasuk 0..1.', + abstract: 'The PERCENTILE. Fungsi EXC mengembalikan persentil k-th dari nilai dalam rentang, di mana k berada dalam rentang 0..1, tidak termasuk 0..1.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang menentukan posisi relatif.' }, + k: { name: 'k', detail: 'Diperlukan. Nilai persentil dalam rentang 0 < k < 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Mengembalikan persentil k-th dari nilai dalam rentang, di mana k berada dalam rentang 0 sampai 1, inklusif.', + abstract: 'Mengembalikan persentil k-th dari nilai dalam rentang, di mana k berada dalam rentang 0 sampai 1, inklusif.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang menentukan posisi relatif.' }, + k: { name: 'k', detail: 'Diperlukan. Nilai persentil dalam rentang 0 sampai 1, inklusif.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Mengembalikan peringkat sebuah nilai dalam sekelompok data sebagai persentase sekelompok data (0..1, tidak termasuk 0 dan 1).', + abstract: 'Mengembalikan peringkat sebuah nilai dalam sekelompok data sebagai persentase sekelompok data (0..1, tidak termasuk 0 dan 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data dengan nilai numerik yang menjabarkan posisi relatifnya.' }, + x: { name: 'x', detail: 'Diperlukan. Angka yang ingin Anda cari peringkatnya.' }, + significance: { name: 'significance', detail: 'Opsional. Nilai yang menentukan jumlah digit signifikan untuk nilai persentase yang dikembalikan. Jika dihilangkan, maka PERCENTRANK. EXC menggunakan tiga digit (0.xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Mengembalikan peringkat persentase suatu nilai dalam set data (termasuk 0 dan 1).', + abstract: 'Mengembalikan peringkat persentase suatu nilai dalam set data (termasuk 0 dan 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array atau rentang data yang menentukan kedudukan relatif.' }, + x: { name: 'x', detail: 'Nilai yang peringkatnya ingin diketahui.' }, + significance: { name: 'significance', detail: 'Nilai yang menentukan jumlah digit signifikan untuk nilai persentase yang dikembalikan. Jika dihilangkan, PERCENTRANK.INC menggunakan tiga digit (0.xxx).' }, + }, + }, + PERMUT: { + description: 'Mengembalikan jumlah permutasi untuk sejumlah objek tertentu yang bisa dipilih dari jumlah objek. Permutasi adalah sekelompok atau sub-kelompok objek atau peristiwa di mana urutan internal penting. Permutasi berbeda dari kombinasi, yang urutan internalnya tidak penting. Gunakan fungsi ini untuk perhitungan probabilitas dengan gaya lotre.', + abstract: 'Mengembalikan jumlah permutasi untuk sejumlah objek tertentu yang bisa dipilih dari jumlah objek. Permutasi adalah sekelompok atau sub-kelompok objek atau peristiwa di mana urutan internal penting. Permutasi berbeda dari kombinasi, yang urutan internalnya tidak penting. Gunakan fungsi ini untuk perhitungan probabilitas dengan gaya lotre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sebuah bilangan bulat yang menerangkan jumlah objek.' }, + numberChosen: { name: 'number_chosen', detail: 'Diperlukan. Sebuah bilangan bulat yang menerangkan jumlah objek dalam masing-masing permutasi.' }, + }, + }, + PERMUTATIONA: { + description: 'Mengembalikan jumlah permutasi untuk sejumlah objek (dengan perulangan) yang bisa dipilih dari objek total.', + abstract: 'Mengembalikan jumlah permutasi untuk sejumlah objek (dengan perulangan) yang bisa dipilih dari objek total.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Sebuah bilangan bulat yang menerangkan total jumlah objek.' }, + numberChosen: { name: 'number_chosen', detail: 'Diperlukan. Sebuah bilangan bulat yang menerangkan jumlah objek dalam masing-masing permutasi.' }, + }, + }, + PHI: { + description: 'Mengembalikan nilai fungsi kerapatan untuk distribusi normal standar.', + abstract: 'Mengembalikan nilai fungsi kerapatan untuk distribusi normal standar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. X adalah angka kerapatan distribusi normal standar yang Anda inginkan.' }, + }, + }, + POISSON_DIST: { + description: 'Mengembalikan distribusi Poisson. Aplikasi umum distribusi Poisson adalah meramalkan sejumlah kejadian selama waktu tertentu, seperti jumlah mobil yang datang di sebuah gerbang tol dalam 1 menit.', + abstract: 'Mengembalikan distribusi Poisson. Aplikasi umum distribusi Poisson adalah meramalkan sejumlah kejadian selama waktu tertentu, seperti jumlah mobil yang datang di sebuah gerbang tol dalam 1 menit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Jumlah peristiwa.' }, + mean: { name: 'mean', detail: 'Diperlukan. Nilai numerik yang diinginkan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan bentuk distribusi probabilitas yang dikembalikan. Jika kumulatif TRUE, maka POISSON.DIST mengembalikan probabilitas kumulatif Poisson bahwa sejumlah kejadian acak akan terjadi antara nol dan x inklusif; jika FALSE, maka mengembalikan fungsi massa probabilitas Poisson bahwa peristiwa yang terjadi akan tepat sejumlah x.' }, + }, + }, + PROB: { + description: 'Mengembalikan probabilitas sehingga nilai-nilai dalam rentang berada di antara dua batas. Jika upper_limit tidak diberikan, maka mengembalikan probabilitas sehingga nilai-nilai dalam x_range sama dengan lower_limit.', + abstract: 'Mengembalikan probabilitas sehingga nilai-nilai dalam rentang berada di antara dua batas. Jika upper_limit tidak diberikan, maka mengembalikan probabilitas sehingga nilai-nilai dalam x_range sama dengan lower_limit.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Diperlukan. Rentang nilai numerik x yang memiliki kaitan dengan probabilitas.' }, + probRange: { name: 'prob_range', detail: 'Diperlukan. Serangkaian probabilitas yang dikaitkan dengan nilai-nilai dalam x_range.' }, + lowerLimit: { name: 'lower_limit', detail: 'Opsional. Batas bawah pada nilai yang Anda inginkan probabilitasnya.' }, + upperLimit: { name: 'upper_limit', detail: 'Opsional. Batas atas nilai yang Anda inginkan probabilitasnya.' }, + }, + }, + QUARTILE_EXC: { + description: 'Mengembalikan kuartil rangkaian data, berdasarkan nilai persentil dari 0 sampai 1, tidak termasuk 0 sampai 1.', + abstract: 'Mengembalikan kuartil rangkaian data, berdasarkan nilai persentil dari 0 sampai 1, tidak termasuk 0 sampai 1.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang sel nilai numerik yang ingin Anda cari nilai kuartilnya.' }, + quart: { name: 'quart', detail: 'Diperlukan. Menunjukkan nilai mana yang harus dikembalikan.' }, + }, + }, + QUARTILE_INC: { + description: 'Kuartil sering digunakan dalam data penjualan dan survei untuk membagi populasi ke dalam berbagai kelompok. Sebagai contoh, Anda dapat menggunakan QUARTILE.INC untuk menemukan 25 persen dari pendapatan tertinggi dalam satu populasi.', + abstract: 'Kuartil sering digunakan dalam data penjualan dan survei untuk membagi populasi ke dalam berbagai kelompok. Sebagai contoh, Anda dapat menggunakan QUARTILE.INC untuk menemukan 25 persen dari pendapatan tertinggi dalam satu populasi.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang sel nilai numerik yang ingin Anda cari nilai kuartilnya.' }, + quart: { name: 'quart', detail: 'Diperlukan. Menunjukkan nilai mana yang harus dikembalikan.' }, + }, + }, + RANK_AVG: { + description: 'Mengembalikan peringkat angka dalam daftar angka: ukurannya relatif terhadap nilai lain dalam daftar. Jika lebih dari satu nilai memiliki peringkat yang sama, peringkat rata-rata akan dikembalikan.', + abstract: 'Mengembalikan peringkat angka dalam daftar angka: ukurannya relatif terhadap nilai lain dalam daftar. Jika lebih dari satu nilai memiliki peringkat yang sama, peringkat rata-rata akan dikembalikan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang peringkatnya ingin Anda temukan.' }, + ref: { name: 'ref', detail: 'Diperlukan. Sebuah array dari, atau referensi ke, daftar angka. Nilai nonnumerik di Ref diabaikan.' }, + order: { name: 'order', detail: 'Opsional. Angka yang menentukan cara menetapkan peringkat.' }, + }, + }, + RANK_EQ: { + description: 'Mengembalikan peringkat sebuah angka dalam daftar angka.', + abstract: 'Mengembalikan peringkat sebuah angka dalam daftar angka.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angka yang peringkatnya ingin ditemukan.' }, + ref: { name: 'ref', detail: 'Referensi ke daftar angka. Nilai nonnumerik dalam ref diabaikan.' }, + order: { name: 'order', detail: 'Angka yang menentukan cara memberi peringkat pada number. Jika 0 atau dihilangkan, urutannya menurun; nilai selain nol menggunakan urutan menaik.' }, + }, + }, + RSQ: { + description: 'Mengembalikan kuadrat dari koefisien korelasi momen produk Pearson melalui titik data di known_y\'s dan known_x\'s. Untuk informasi selengkapnya, lihat fungsi PEARSON . Nilai r-kuadrat bisa diinterpretasikan sebagai proporsi dari varians di y yang disebabkan oleh varians di x.', + abstract: 'Mengembalikan kuadrat dari koefisien korelasi momen produk Pearson melalui titik data di known_y\'s dan known_x\'s. Untuk informasi selengkapnya, lihat fungsi PEARSON . Nilai r-kuadrat bisa diinterpretasikan sebagai proporsi dari varians di y yang disebabkan oleh varians di x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Array atau rentang sel dari titik data yang bergantung pada angka.' }, + knownXs: { name: 'known_x\'s', detail: 'Diperlukan. Kumpulan titik data independen.' }, + }, + }, + SKEW: { + description: 'Mengembalikan nilai kecondongan distribusi. Kecondongan mencirikan derajat asimetris dari distribusi di sekitar nilai rata-ratanya. Kecondongan positif menunjukkan distribusi dengan arah asimetris yang meluas menuju nilai yang lebih positif. Kecondongan negatif menunjukkan distribusi dengan arah asimetris yang meluas menuju nilai yang lebih negatif.', + abstract: 'Mengembalikan nilai kecondongan distribusi. Kecondongan mencirikan derajat asimetris dari distribusi di sekitar nilai rata-ratanya. Kecondongan positif menunjukkan distribusi dengan arah asimetris yang meluas menuju nilai yang lebih positif. Kecondongan negatif menunjukkan distribusi dengan arah asimetris yang meluas menuju nilai yang lebih negatif.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 hingga 255 argumen yang ingin dihitung nilai kecondongannya. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Number1 diperlukan, angka berikutnya bersifat opsional. 1 hingga 255 argumen yang ingin dihitung nilai kecondongannya. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + }, + }, + SKEW_P: { + description: 'Mengembalikan kemencengan distribusi berdasarkan populasi.', + abstract: 'Mengembalikan kemencengan distribusi berdasarkan populasi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Angka, referensi sel, atau rentang pertama yang kemencengannya ingin dihitung.' }, + number2: { name: 'number2', detail: 'Angka, referensi sel, atau rentang tambahan yang kemencengannya ingin dihitung, hingga maksimum 255.' }, + }, + }, + SLOPE: { + description: 'Mengembalikan kemiringan garis regresi linear melalui titik data dalam known_y\'s dan known_x\'s. Kemiringan adalah jarak vertikal dibagi dengan jarak horizontal di antara dua titik pada garis, yang merupakan tingkat perubahan di sepanjang garis regresi.', + abstract: 'Mengembalikan kemiringan garis regresi linear melalui titik data dalam known_y\'s dan known_x\'s. Kemiringan adalah jarak vertikal dibagi dengan jarak horizontal di antara dua titik pada garis, yang merupakan tingkat perubahan di sepanjang garis regresi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Diperlukan. Array atau rentang sel dari titik data yang bergantung pada angka.' }, + knownXs: { name: 'known_x\'s', detail: 'Diperlukan. Kumpulan titik data independen.' }, + }, + }, + SMALL: { + description: 'Mengembalikan nilai k-th yang paling kecil dalam rangkaian data. Gunakan fungsi ini untuk mengembalikan nilai dengan posisi relatif tertentu dalam kumpulan data.', + abstract: 'Mengembalikan nilai k-th yang paling kecil dalam rangkaian data. Gunakan fungsi ini untuk mengembalikan nilai dengan posisi relatif tertentu dalam kumpulan data.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data angka yang ingin Anda dapatkan nilai k-th yang paling kecil di dalamnya.' }, + k: { name: 'k', detail: 'Diperlukan. Posisi (dari yang paling kecil) di dalam array atau rentang data yang ingin dikembalikan.' }, + }, + }, + STANDARDIZE: { + description: 'Mengembalikan nilai yang dinormalkan dari suatu distribusi yang dikarakterisasi oleh rata-rata dan simpangan baku.', + abstract: 'Mengembalikan nilai yang dinormalkan dari suatu distribusi yang dikarakterisasi oleh rata-rata dan simpangan baku.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai yang ingin Anda normalkan.' }, + mean: { name: 'mean', detail: 'Diperlukan. Rata-rata aritmetika distribusi.' }, + standardDev: { name: 'standard_dev', detail: 'Diperlukan. Simpangan baku distribusi.' }, + }, + }, + STDEV_P: { + description: 'Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + abstract: 'Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang bersesuaian dengan populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 254 yang berkaitan dengan populasi. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + STDEV_S: { + description: 'Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + abstract: 'Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang berkaitan dengan sampel populasi. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 254 yang berkaitan dengan sampel populasi. Anda juga bisa menggunakan array tunggal atau array referensi ketimbang argumen yang dipisahkan oleh koma.' }, + }, + }, + STDEVA: { + description: 'Memperkirakan simpangan baku berdasarkan satu sampel. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + abstract: 'Memperkirakan simpangan baku berdasarkan satu sampel. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-rata (nilai tengahnya).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai 1 sampai 255 berhubungan dengan sampel populasi. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai 1 sampai 255 berhubungan dengan sampel populasi. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + }, + }, + STDEVPA: { + description: 'Menghitung simpangan baku berdasarkan seluruh populasi yang diberikan sebagai argumen, termasuk teks dan nilai logika. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-ratanya.', + abstract: 'Menghitung simpangan baku berdasarkan seluruh populasi yang diberikan sebagai argumen, termasuk teks dan nilai logika. Simpangan baku adalah pengukuran seberapa lebar suatu nilai tersebar dari nilai rata-ratanya.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai 1 sampai 255 berhubungan dengan population. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai 1 sampai 255 berhubungan dengan population. Anda juga bisa menggunakan array tunggal atau array referensi daripada argumen yang dipisahkan oleh koma.' }, + }, + }, + STEYX: { + description: 'Mengembalikan galat standar nilai y yang diprediksi untuk setiap x dalam regresi.', + abstract: 'Mengembalikan galat standar nilai y yang diprediksi untuk setiap x dalam regresi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: "known_y's", detail: 'Array atau rentang data dependen.' }, + knownXs: { name: "known_x's", detail: 'Array atau rentang data independen.' }, + }, + }, + T_DIST: { + description: 'Mengembalikan distribusi-t arah kiri Student. Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + abstract: 'Mengembalikan distribusi-t arah kiri Student. Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai numerik yang ingin digunakan untuk mengevaluasi distribusi' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Bilangan bulat yang menunjukkan angka derajat kebebasan.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Nilai logika yang menentukan formulir fungsi. Jika kumulatif adalah TRUE, T.DIST mengembalikan fungsi distribusi kumulatif; jika FALSE, mengembalikan fungsi kepadatan probabilitas.' }, + }, + }, + T_DIST_2T: { + description: 'Distribusi-t Student digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + abstract: 'Distribusi-t Student digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai numerik yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Bilangan bulat yang menunjukkan angka derajat kebebasan.' }, + }, + }, + T_DIST_RT: { + description: 'Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + abstract: 'Distribusi-t digunakan dalam pengujian hipotesis kumpulan data sampel kecil. Gunakan fungsi ini di tabel nilai kritis untuk distribusi-t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai numerik yang ingin digunakan untuk mengevaluasi distribusi.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Bilangan bulat yang menunjukkan angka derajat kebebasan.' }, + }, + }, + T_INV: { + description: 'Mengembalikan inversi arah kiri dari distribusi-t Student.', + abstract: 'Mengembalikan inversi arah kiri dari distribusi-t Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas terkait dengan distribusi-t Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Jumlah derajat kebebasan yang digunakan untuk mencirikan distribusi.' }, + }, + }, + T_INV_2T: { + description: 'Mengembalikan inversi dua arah dari distribusi-t Student.', + abstract: 'Mengembalikan inversi dua arah dari distribusi-t Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Diperlukan. Probabilitas terkait dengan distribusi-t Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Diperlukan. Jumlah derajat kebebasan yang digunakan untuk mencirikan distribusi.' }, + }, + }, + T_TEST: { + description: 'Mengembalikan probabilitas terkait Uji-t Siswa. Gunakan T.TEST untuk menentukan apakah dua sampel berasal dari dua populasi yang mendasari yang sama di mana nilai tengahnya sama.', + abstract: 'Mengembalikan probabilitas terkait Uji-t Siswa. Gunakan T.TEST untuk menentukan apakah dua sampel berasal dari dua populasi yang mendasari yang sama di mana nilai tengahnya sama.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Diperlukan. Kumpulan data pertama.' }, + array2: { name: 'array2', detail: 'Diperlukan. Kumpulan data kedua.' }, + tails: { name: 'tails', detail: 'Diperlukan. Menentukan jumlah ekor distribusi. Jika ekor = 1, T.TEST menggunakan distribusi satu ekor. Jika ekor = 2, T.TEST menggunakan distribusi dua ekor.' }, + type: { name: 'type', detail: 'Diperlukan. Tipe Uji-t yang dilakukan.' }, + }, + }, + TREND: { + description: 'Fungsi TREND mengembalikan nilai di sepanjang tren linear. Ini pas dengan garis lurus (menggunakan metode kuadrat paling sedikit) ke array known_y dan known_x. TREND mengembalikan nilai y di sepanjang baris tersebut untuk array new_x yang Anda tentukan.', + abstract: 'Fungsi TREND mengembalikan nilai di sepanjang tren linear. Ini pas dengan garis lurus (menggunakan metode kuadrat paling sedikit) ke array known_y dan known_x. TREND mengembalikan nilai y di sepanjang baris tersebut untuk array new_x yang Anda tentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Kumpulan nilai y yang sudah Anda ketahui dalam hubungan y = mx + b Jika array known_y\'s berada dalam kolom tunggal, maka setiap kolom known_x\'s diinterpretasikan sebagai variabel terpisah. Jika array known_y\'s berada dalam baris tunggal, maka setiap baris known_x\'s diinterpretasikan sebagai variabel terpisah.' }, + knownXs: { name: 'known_x\'s', detail: 'Sekumpulan nilai x opsional yang mungkin sudah Anda ketahui dalam hubungan y = mx + b Array known_x\'s dapat mencakup satu atau lebih kumpulan variabel. Jika hanya satu variabel yang digunakan, known_y\'s dan known_x\'s bisa berupa rentang dalam bentuk apa pun, selama memiliki dimensi yang sama. Jika lebih dari satu variabel yang digunakan, known_y\'s harus berupa vektor (yaitu, rentang dengan tinggi satu baris atau lebar satu kolom). Jika known_x\'s dihilangkan, maka diasumsikan sebagai array {1,2,3,...} yang berukuran sama dengan known_y\'s.' }, + newXs: { name: 'new_x\'s', detail: 'Nilai-x baru yang ingin Anda gunakan untuk mengembalikan nilai-y yang terkait New_x\'s harus mencakup satu kolom (atau baris) untuk setiap variabel independen, seperti halnya known_x\'s. Jadi, jika known_y\'s berada di satu kolom, known_x\'s dan new_x\'s harus memiliki jumlah kolom yang sama. Jika known_y\'s berada di satu baris, known_x\'s dan new_x\'s harus memiliki jumlah baris yang sama. Jika Anda menghilangkan new_x\'s, akan diasumsikan sama dengan known_x\'s. Jika Anda menghilangkan kedua known_x\'s dan new_x\'s, akan dianggap sebagai array {1,2,3,...} yang berukuran sama dengan known_y\'s.' }, + constb: { name: 'const', detail: 'Nilai logika yang menentukan apakah memaksa konstanta b sama dengan 0 Jika const TRUE atau dihilangkan, b dihitung secara normal. Jika const FALSE, b diatur sama dengan 0 (nol) dan nilai-m disesuaikan sehingga y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'Mengembalikan rata-rata dari bagian dalam dari rangkaian data. TRIMMEAN menghitung rata-rata yang diambil dengan mengecualikan persentase titik data dari arah atas dan bawah suatu rangkaian data. Anda bisa menggunakan fungsi ini saat Anda ingin mengecualikan data terluar dari analisis Anda.', + abstract: 'Mengembalikan rata-rata dari bagian dalam dari rangkaian data. TRIMMEAN menghitung rata-rata yang diambil dengan mengecualikan persentase titik data dari arah atas dan bawah suatu rangkaian data. Anda bisa menggunakan fungsi ini saat Anda ingin mengecualikan data terluar dari analisis Anda.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang nilai yang akan dipangkas dan dihitung rata-ratanya.' }, + percent: { name: 'percent', detail: 'Diperlukan. Jumlah pecahan titik data yang akan dikecualikan dari perhitungan. Sebagai contoh, jika persen = 0,2, 4 titik dipangkas dari rangkaian data 20 titik (20 x 0,2): 2 dari atas dan 2 dari bawah rangkaian data tersebut.' }, + }, + }, + VAR_P: { + description: 'Menghitung varians berdasarkan seluruh populasi (mengabaikan nilai logika dan teks dalam populasi).', + abstract: 'Menghitung varians berdasarkan seluruh populasi (mengabaikan nilai logika dan teks dalam populasi).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang bersesuaian dengan populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 254 terkait dengan satu populasi.' }, + }, + }, + VAR_S: { + description: 'Memperkirakan varians berdasarkan satu sampel (mengabaikan nilai logika dan teks dalam sampel).', + abstract: 'Memperkirakan varians berdasarkan satu sampel (mengabaikan nilai logika dan teks dalam sampel).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Diperlukan. Argumen angka pertama yang berkaitan dengan sampel populasi.' }, + number2: { name: 'number2', detail: 'Opsional. Argumen angka 2 sampai 254 yang berkaitan dengan sampel populasi.' }, + }, + }, + VARA: { + description: 'Memperkirakan varians berdasarkan satu sampel.', + abstract: 'Memperkirakan varians berdasarkan satu sampel.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Argumen nilai 1 sampai 255 terkait dengan satu sampel populasi.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Argumen nilai 1 sampai 255 terkait dengan satu sampel populasi.' }, + }, + }, + VARPA: { + description: 'Menghitung varians berdasarkan populasi keseluruhan.', + abstract: 'Menghitung varians berdasarkan populasi keseluruhan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai argumen 1 sampai 255 terkait dengan satu sampel populasi.' }, + value2: { name: 'value2', detail: 'Value1 diperlukan, nilai berikutnya opsional. Nilai argumen 1 sampai 255 terkait dengan satu sampel populasi.' }, + }, + }, + WEIBULL_DIST: { + description: 'Mengembalikan distribusi Weilbull. Gunakan distribusi ini dalam analisis keandalan, misalnya menghitung waktu rata-rata perangkat hingga gagal.', + abstract: 'Mengembalikan distribusi Weilbull. Gunakan distribusi ini dalam analisis keandalan, misalnya menghitung waktu rata-rata perangkat hingga gagal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Diperlukan. Nilai untuk mengevaluasi fungsi.' }, + alpha: { name: 'alpha', detail: 'Diperlukan. Parameter untuk distribusi.' }, + beta: { name: 'beta', detail: 'Diperlukan. Parameter untuk distribusi.' }, + cumulative: { name: 'cumulative', detail: 'Diperlukan. Menentukan format fungsi.' }, + }, + }, + Z_TEST: { + description: 'Untuk melihat bagaimana Z.TEST dapat digunakan dalam rumus untuk menghitung nilai probabilitas dua-arah, lihat bagian Keterangan di bawah.', + abstract: 'Untuk melihat bagaimana Z.TEST dapat digunakan dalam rumus untuk menghitung nilai probabilitas dua-arah, lihat bagian Keterangan di bawah.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Diperlukan. Array atau rentang data yang akan digunakan untuk menguji x.' }, + x: { name: 'x', detail: 'Diperlukan. Nilai untuk menguji.' }, + sigma: { name: 'sigma', detail: 'Opsional. Simpangan baku populasi (yang diketahui). Jika dihilangkan, maka simpangan baku sampel yang digunakan.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/it-IT.ts b/packages/sheets-formula/src/locale/function-list/statistical/it-IT.ts new file mode 100644 index 0000000000..d1dd7392cf --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/it-IT.ts @@ -0,0 +1,1683 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'Restituisce la media delle deviazioni assolute dei valori rispetto alla loro media. MEDIA.DEV è una misura della variabilità in un set di dati.', + abstract: 'Restituisce la media delle deviazioni assolute dei valori rispetto alla loro media. MEDIA.DEV è una misura della variabilità in un set di dati.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare la media delle deviazioni assolute. Anziché argomenti separati da punti e virgola, è possibile utilizzare una matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare la media delle deviazioni assolute. Anziché argomenti separati da punti e virgola, è possibile utilizzare una matrice o un riferimento a una matrice.' }, + }, + }, + AVERAGE: { + description: 'Restituisce la media aritmetica degli argomenti. Ad esempio, se l\'intervallo A1:A20 contiene numeri, la formula =MEDIA(A1:A20) restituisce la media di tali numeri.', + abstract: 'Restituisce la media aritmetica degli argomenti. Ad esempio, se l\'intervallo A1:A20 contiene numeri, la formula =MEDIA(A1:A20) restituisce la media di tali numeri.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo numero, riferimento di cella o intervallo di cui si desidera calcolare la media.' }, + number2: { name: 'number2', detail: 'Opzionale. Altri numeri, riferimenti di cella o intervalli di cui si vuole calcolare la media, fino a un massimo di 255.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'La funzione AVERAGE.WEIGHTED calcola la media ponderata di un insieme di valori usando i valori e i rispettivi pesi.', + abstract: 'La funzione AVERAGE.WEIGHTED calcola la media ponderata di un insieme di valori usando i valori e i rispettivi pesi.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=it', + }, + ], + functionParameter: { + values: { name: 'valori', detail: 'I valori di cui calcolare la media. Possono essere un intervallo di celle o i valori stessi.' }, + weights: { name: 'pesi', detail: 'L’elenco dei pesi corrispondenti da applicare. I pesi possono essere zero ma non negativi e almeno uno deve essere positivo. L’intervallo dei pesi deve avere lo stesso numero di righe e colonne dell’intervallo dei valori.' }, + additionalValues: { name: 'valori_aggiuntivi', detail: 'Valori aggiuntivi facoltativi di cui calcolare la media.' }, + additionalWeights: { name: 'pesi_aggiuntivi', detail: 'Pesi aggiuntivi facoltativi. Ogni valore_aggiuntivo deve essere seguito da un solo peso_aggiuntivo.' }, + }, + }, + AVERAGEA: { + description: 'Restituisce la media aritmetica dei valori nell\'elenco di argomenti.', + abstract: 'Restituisce la media aritmetica dei valori nell\'elenco di argomenti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 celle, intervalli di celle o valori di cui si desidera calcolare la media.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 celle, intervalli di celle o valori di cui si desidera calcolare la media.' }, + }, + }, + AVERAGEIF: { + description: 'Restituisce la media aritmetica di tutte le celle di un intervallo che soddisfano un criterio specificato.', + abstract: 'Restituisce la media aritmetica di tutte le celle di un intervallo che soddisfano un criterio specificato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obbligatorio. Una o più celle, di cui calcolare la media, compresi numeri o nomi, matrici o riferimenti che contengono numeri.' }, + criteria: { name: 'criteria', detail: 'Obbligatorio. Criteri in forma di numeri, espressioni, riferimenti di cella o testo che determinano le celle di cui verrà calcolata la media. Ad esempio, i criteri possono essere espressi come 32, "32", ">32", "mele" o B4.' }, + averageRange: { name: 'average_range', detail: 'Opzionale. Insieme effettivo di celle di cui calcolare la media. Se omesso, viene usato il valore intervallo.' }, + }, + }, + AVERAGEIFS: { + description: 'Restituisce la media aritmetica di tutte le celle che soddisfano più criteri.', + abstract: 'Restituisce la media aritmetica di tutte le celle che soddisfano più criteri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Obbligatorio. Una o più celle, di cui calcolare la media, compresi numeri o nomi, matrici o riferimenti che contengono numeri.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Intervallo1_criteri è obbligatorio, mentre gli intervalli criteri successivi sono facoltativi. Indica da 1 a 127 intervalli in cui valutare i criteri associati.' }, + criteria1: { name: 'criteria1', detail: 'Criteri1 è obbligatorio, i criteri successivi sono facoltativi. Indica da 1 a 127 criteri in forma di numeri, espressioni, riferimenti di cella o testo che determinano le celle di cui verrà calcolata la media. Ad esempio, i criteri possono essere espressi come 32, "32", ">32", "mele" o B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Intervallo1_criteri è obbligatorio, mentre gli intervalli criteri successivi sono facoltativi. Indica da 1 a 127 intervalli in cui valutare i criteri associati.' }, + criteria2: { name: 'criteria2', detail: 'Criteri1 è obbligatorio, i criteri successivi sono facoltativi. Indica da 1 a 127 criteri in forma di numeri, espressioni, riferimenti di cella o testo che determinano le celle di cui verrà calcolata la media. Ad esempio, i criteri possono essere espressi come 32, "32", ">32", "mele" o B4.' }, + }, + }, + BETA_DIST: { + description: 'La distribuzione beta viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + abstract: 'La distribuzione beta viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore compreso tra A e B in cui calcolare la funzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro della distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro della distribuzione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.BETA.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + A: { name: 'A', detail: 'Optional. Valore per l\'estremo inferiore dell\'intervallo di x.' }, + B: { name: 'B', detail: 'Facoltativo. Valore per l\'estremo superiore dell\'intervallo di x.' }, + }, + }, + BETA_INV: { + description: 'Se probabilità = DISTRIB.BETA.N(x;...VERO), si avrà INV.BETA.N(probabilità;...) = x. Dati un tempo di durata e una variabilità previsti, la distribuzione beta può essere utilizzata nella pianificazione di progetti per calcolare i tempi di durata probabili.', + abstract: 'Se probabilità = DISTRIB.BETA.N(x;...VERO), si avrà INV.BETA.N(probabilità;...) = x. Dati un tempo di durata e una variabilità previsti, la distribuzione beta può essere utilizzata nella pianificazione di progetti per calcolare i tempi di durata probabili.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione beta.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro della distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro della distribuzione.' }, + A: { name: 'A', detail: 'Optional. Valore per l\'estremo inferiore dell\'intervallo di x.' }, + B: { name: 'B', detail: 'Facoltativo. Valore per l\'estremo superiore dell\'intervallo di x.' }, + }, + }, + BINOM_DIST: { + description: 'Restituisce la distribuzione binomiale per il termine individuale. Utilizzare la funzione DISTRIB.BINOM.N per risolvere problemi con un numero fisso di verifiche o di prove, quando i risultati di una prova qualsiasi sono solo positivi o negativi, quando le prove sono indipendenti e quando la probabilità di successo è costante nel corso di tutto l\'esperimento. La funzione DISTRIB.BINOM.N può calcolare ad esempio la probabilità che due neonati su tre siano maschi.', + abstract: 'Restituisce la distribuzione binomiale per il termine individuale. Utilizzare la funzione DISTRIB.BINOM.N per risolvere problemi con un numero fisso di verifiche o di prove, quando i risultati di una prova qualsiasi sono solo positivi o negativi, quando le prove sono indipendenti e quando la probabilità di successo è costante nel corso di tutto l\'esperimento. La funzione DISTRIB.BINOM.N può calcolare ad esempio la probabilità che due neonati su tre siano maschi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Obbligatorio. Numero di successi in prove.' }, + trials: { name: 'trials', detail: 'Obbligatorio. Numero di prove indipendenti.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di successo per ogni prova.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, si tratta di BINOM. DISTRIB.N restituisce la funzione distribuzione cumulativa, ovvero la probabilità che ci siano al massimo number_s successi; se è FALSO, restituirà la funzione massa di probabilità, ovvero la probabilità che siano presenti number_s successi.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Restituisce la probabilità del risultato di una prova usando la distribuzione binomiale.', + abstract: 'Restituisce la probabilità del risultato di una prova usando la distribuzione binomiale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obbligatorio. Numero di prove indipendenti. Deve essere maggiore o uguale a 0.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di successo per ogni prova. Deve essere maggiore o uguale a 0 e minore o uguale a 1.' }, + numberS: { name: 'number_s', detail: 'Obbligatorio. Numero di successi nelle prove. Deve essere maggiore o uguale a 0 e minore o uguale all\'argomento prove.' }, + numberS2: { name: 'number_s2', detail: 'Opzionale. Se lo si specifica, restituisce la probabilità che il numero di prove riuscite sia compreso tra num_successi e numero_s2. Deve essere maggiore o uguale all\'argomento num_successi e minore o uguale all\'argomento prove.' }, + }, + }, + BINOM_INV: { + description: 'Restituisce il più piccolo valore per il quale la distribuzione cumulativa binomiale risulta maggiore o uguale a un valore di criterio.', + abstract: 'Restituisce il più piccolo valore per il quale la distribuzione cumulativa binomiale risulta maggiore o uguale a un valore di criterio.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obbligatorio. Numero delle prove di Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di successo per ogni prova.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Valore di criterio.' }, + }, + }, + CHISQ_DIST: { + description: 'Restituisce la distribuzione del chi quadrato.', + abstract: 'Restituisce la distribuzione del chi quadrato.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui si desidera calcolare la distribuzione.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.CHI.QUAD restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'La distribuzione χ2 è associata al test χ2. Utilizzare il test χ2 per confrontare i valori osservati con i valori previsti. Ad esempio, sulla base di un esperimento genetico si potrebbe ipotizzare che la gamma di colori della prossima generazione di piante sarà diversa da quella attuale. Confrontando i risultati osservati con quelli previsti, sarà possibile stabilire la validità dell\'ipotesi formulata in origine.', + abstract: 'La distribuzione χ2 è associata al test χ2. Utilizzare il test χ2 per confrontare i valori osservati con i valori previsti. Ad esempio, sulla base di un esperimento genetico si potrebbe ipotizzare che la gamma di colori della prossima generazione di piante sarà diversa da quella attuale. Confrontando i risultati osservati con quelli previsti, sarà possibile stabilire la validità dell\'ipotesi formulata in origine.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui si desidera calcolare la distribuzione.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + }, + }, + CHISQ_INV: { + description: 'La distribuzione del chi quadrato viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + abstract: 'La distribuzione del chi quadrato viene generalmente utilizzata per lo studio su campioni delle variazioni percentuali di un elemento o di una situazione qualsiasi, quale ad esempio il numero di ore che si trascorrono quotidianamente davanti al televisore.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione del chi quadrato.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Se probabilità = DISTRIB.CHI.QUAD.DS(x;...), verrà restituito INV.CHI.QUAD.DS(probabilità;...) = x. Utilizzare questa funzione per confrontare i risultati osservati con quelli previsti per stabilire se l\'ipotesi formulata in origine è valida.', + abstract: 'Se probabilità = DISTRIB.CHI.QUAD.DS(x;...), verrà restituito INV.CHI.QUAD.DS(probabilità;...) = x. Utilizzare questa funzione per confrontare i risultati osservati con quelli previsti per stabilire se l\'ipotesi formulata in origine è valida.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione del chi quadrato.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obbligatorio. Numero di gradi di libertà.' }, + }, + }, + CHISQ_TEST: { + description: 'Restituisce il test per l\'indipendenza. La funzione TEST.CHI.QUAD restituisce il valore dalla distribuzione del chi quadrato (χ2) per un dato statistico e i gradi di libertà appropriati. È possibile utilizzare i test χ2 per stabilire se i risultati previsti vengono confermati mediante un esperimento.', + abstract: 'Restituisce il test per l\'indipendenza. La funzione TEST.CHI.QUAD restituisce il valore dalla distribuzione del chi quadrato (χ2) per un dato statistico e i gradi di libertà appropriati. È possibile utilizzare i test χ2 per stabilire se i risultati previsti vengono confermati mediante un esperimento.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Obbligatorio. Intervallo di dati che contiene le osservazioni da confrontare con i valori previsti.' }, + expectedRange: { name: 'expected_range', detail: 'Obbligatorio. Intervallo di dati che contiene la proporzione del prodotto dei totali di riga e di colonna per il totale complessivo.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'L\'intervallo di confidenza è un intervallo di valori x ± CONFIDENZA.NORM in cui x è la media campione al centro dell\'intervallo. Se ad esempio x è la media campione dei tempi di recapito per i prodotti ordinati tramite posta, x ± CONFIDENZA.NORM è un intervallo di medie della popolazione. Per qualsiasi media della popolazione μ0 compresa in questo intervallo, la probabilità di ottenere una media campione che si discosta maggiormente da μ0 che da x è maggiore di alfa. Per qualsiasi media della popolazione μ0 non compresa in questo intervallo, la probabilità di ottenere una media campione che si discosta maggiormente da μ0 che da x è minore di alfa. In altre parole, si supponga di utilizzare x, dev_standard, dimens per creare un test a due code al livello di significatività alfa dell\'ipotesi secondo cui la media della popolazione è μ0. Tale ipotesi non verrà quindi rifiutata se μ0 è compreso nell\'intervallo di confidenza, mentre verrà respinta se μ0 non è compreso nell\'intervallo di confidenza. L\'intervallo di confidenza non consente di dedurre che esiste una probabilità 1 – alfa che il pacchetto successivo richiederà un tempo di recapito compreso nell\'intervallo di confidenza.', + abstract: 'L\'intervallo di confidenza è un intervallo di valori x ± CONFIDENZA.NORM in cui x è la media campione al centro dell\'intervallo. Se ad esempio x è la media campione dei tempi di recapito per i prodotti ordinati tramite posta, x ± CONFIDENZA.NORM è un intervallo di medie della popolazione. Per qualsiasi media della popolazione μ0 compresa in questo intervallo, la probabilità di ottenere una media campione che si discosta maggiormente da μ0 che da x è maggiore di alfa. Per qualsiasi media della popolazione μ0 non compresa in questo intervallo, la probabilità di ottenere una media campione che si discosta maggiormente da μ0 che da x è minore di alfa. In altre parole, si supponga di utilizzare x, dev_standard, dimens per creare un test a due code al livello di significatività alfa dell\'ipotesi secondo cui la media della popolazione è μ0. Tale ipotesi non verrà quindi rifiutata se μ0 è compreso nell\'intervallo di confidenza, mentre verrà respinta se μ0 non è compreso nell\'intervallo di confidenza. L\'intervallo di confidenza non consente di dedurre che esiste una probabilità 1 – alfa che il pacchetto successivo richiederà un tempo di recapito compreso nell\'intervallo di confidenza.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obbligatorio. Livello di significatività utilizzato per calcolare il livello di confidenza. Il livello di probabilità è uguale a 100*(1 - alfa)% o, in altre parole, un valore alfa di 0,05 indica un livello di probabilità del 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della popolazione per l\'intervallo di dati e si presuppone che sia nota.' }, + size: { name: 'size', detail: 'Obbligatorio. Dimensione del campione.' }, + }, + }, + CONFIDENCE_T: { + description: 'Restituisce l\'intervallo di confidenza per una media di popolazione utilizzando una distribuzione t di Student.', + abstract: 'Restituisce l\'intervallo di confidenza per una media di popolazione utilizzando una distribuzione t di Student.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obbligatorio. Livello di significatività utilizzato per calcolare il livello di confidenza. Il livello di probabilità è uguale a 100*(1 - alfa)% o, in altre parole, un valore alfa di 0,05 indica un livello di probabilità del 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della popolazione per l\'intervallo di dati e si presuppone che sia nota.' }, + size: { name: 'size', detail: 'Obbligatorio. Dimensione del campione.' }, + }, + }, + CORREL: { + description: 'La funzione CORRELAZIONE restituisce il coefficiente di correlazione di due intervalli di celle. Utilizzare il coefficiente di correlazione per stabilire la relazione tra due proprietà. È possibile ad esempio esaminare la relazione tra la temperatura media di un ambiente e l\'utilizzo di condizionatori d\'aria.', + abstract: 'La funzione CORRELAZIONE restituisce il coefficiente di correlazione di due intervalli di celle. Utilizzare il coefficiente di correlazione per stabilire la relazione tra due proprietà. È possibile ad esempio esaminare la relazione tra la temperatura media di un ambiente e l\'utilizzo di condizionatori d\'aria.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Un intervallo di valori di cella.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Secondo intervallo di valori delle celle.' }, + }, + }, + COUNT: { + description: 'La funzione CONTA.NUMERI conta il numero di celle che contengono numeri e i numeri all\'interno dell\'elenco di argomenti. Usare la funzione CONTA.NUMERI per determinare il numero di voci di un campo numerico contenuto in un intervallo o in una matrice di numeri. È ad esempio possibile immettere la formula seguente per contare i numeri nell\'intervallo A1:A20: =CONTA.NUMERI(A1:A20) . In questo esempio, se cinque celle dell\'intervallo contengono numeri, il risultato è 5 .', + abstract: 'La funzione CONTA.NUMERI conta il numero di celle che contengono numeri e i numeri all\'interno dell\'elenco di argomenti. Usare la funzione CONTA.NUMERI per determinare il numero di voci di un campo numerico contenuto in un intervallo o in una matrice di numeri. È ad esempio possibile immettere la formula seguente per contare i numeri nell\'intervallo A1:A20: =CONTA.NUMERI(A1:A20) . In questo esempio, se cinque celle dell\'intervallo contengono numeri, il risultato è 5 .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Obbligatorio. Primo elemento, riferimento di cella o intervallo in cui si desidera contare i numeri.' }, + value2: { name: 'value 2', detail: 'Opzionale. Fino a 255 elementi, riferimenti di cella o intervalli aggiuntivi in cui contare i numeri.' }, + }, + }, + COUNTA: { + description: 'La funzione CONTA.VALORI conta il numero di celle non vuote in un intervallo.', + abstract: 'La funzione CONTA.VALORI conta il numero di celle non vuote in un intervallo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 celle, intervalli di celle o valori di cui si desidera calcolare la media.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 celle, intervalli di celle o valori di cui si desidera calcolare la media.' }, + }, + }, + COUNTBLANK: { + description: 'Usare la funzione CONTA.VUOTE , una delle funzioni statistiche , per contare il numero di celle vuote in un intervallo di celle.', + abstract: 'Usare la funzione CONTA.VUOTE , una delle funzioni statistiche , per contare il numero di celle vuote in un intervallo di celle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obbligatorio. Intervallo a partire dal quale si desidera contare le celle vuote.' }, + }, + }, + COUNTIF: { + description: 'Usare CONTA.SE, una delle funzioni statistiche , per contare il numero di celle che soddisfano un determinato criterio, ad esempio per contare il numero di volte in cui una particolare città compare in un elenco clienti.', + abstract: 'Usare CONTA.SE, una delle funzioni statistiche , per contare il numero di celle che soddisfano un determinato criterio, ad esempio per contare il numero di volte in cui una particolare città compare in un elenco clienti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Il gruppo di celle da contare. L\'intervallo può contenere numeri, matrici, un intervallo denominato o riferimenti che contengono numeri. Le celle vuote e i valori di testo vengono ignorati. Informazioni su come selezionare intervalli in un foglio di lavoro .' }, + criteria: { name: 'criteria', detail: 'Numero, espressione, riferimento di cella o stringa di testo che determina quali celle verranno contate. Ad esempio, è possibile usare un numero come 32, un confronto come ">32", una cella come B4 o una parola come "mele". CONTA.SE usa un solo criterio. Se si vogliono usare più criteri, usare CONTA.PIÙ.SE .' }, + }, + }, + COUNTIFS: { + description: 'La funzione CONTA.PIÙ.SE applica criteri alle celle di più intervalli e conta il numero di volte in cui tutti i criteri vengono soddisfatti.', + abstract: 'La funzione CONTA.PIÙ.SE applica criteri alle celle di più intervalli e conta il numero di volte in cui tutti i criteri vengono soddisfatti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Obbligatorio. Primo intervallo in cui valutare i criteri associati.' }, + criteria1: { name: 'criteria1', detail: 'Obbligatorio. Criteri in forma di numero, espressione, riferimento di cella o testo che determinano quali celle verranno contate. Ad esempio, i criteri possono essere espressi come 32, ">32", B4, "mele" o "32".' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Opzionale. Ulteriori intervalli e criteri associati. È consentito un massimo di 127 coppie intervallo/criteri.' }, + criteria2: { name: 'criteria2', detail: 'Opzionale. Ulteriori intervalli e criteri associati. È consentito un massimo di 127 coppie intervallo/criteri.' }, + }, + }, + COVARIANCE_P: { + description: 'Restituisce la covarianza della popolazione, vale a dire la media dei prodotti delle deviazioni di ciascuna coppia di dati in due set di dati. La covarianza consente di determinare la relazione che sussiste tra due set di dati. È possibile ad esempio stabilire se a un reddito superiore corrispondano livelli di istruzione superiori.', + abstract: 'Restituisce la covarianza della popolazione, vale a dire la media dei prodotti delle deviazioni di ciascuna coppia di dati in due set di dati. La covarianza consente di determinare la relazione che sussiste tra due set di dati. È possibile ad esempio stabilire se a un reddito superiore corrispondano livelli di istruzione superiori.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Primo intervallo di celle costituito da interi.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Secondo intervallo di celle costituito da interi.' }, + }, + }, + COVARIANCE_S: { + description: 'Restituisce la covarianza del campione, ovvero la media dei prodotti delle deviazioni di ogni coppia di coordinate in due set di dati.', + abstract: 'Restituisce la covarianza del campione, ovvero la media dei prodotti delle deviazioni di ogni coppia di coordinate in due set di dati.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Primo intervallo di celle costituito da interi.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Secondo intervallo di celle costituito da interi.' }, + }, + }, + DEVSQ: { + description: 'Restituisce la somma dei quadrati delle deviazioni dei dati dalla relativa media campione.', + abstract: 'Restituisce la somma dei quadrati delle deviazioni dei dati dalla relativa media campione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare la somma delle deviazioni quadrate. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare la somma delle deviazioni quadrate. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + }, + }, + EXPON_DIST: { + description: 'Restituisce la distribuzione esponenziale. Utilizzare la funzione DISTRIB.EXP.N per calcolare il tempo che intercorre tra due eventi, quale il tempo impiegato da uno sportello automatico per fornire la somma in contanti richiesta. È possibile ad esempio utilizzare questa funzione per determinare la probabilità che questa operazione richieda al massimo un minuto.', + abstract: 'Restituisce la distribuzione esponenziale. Utilizzare la funzione DISTRIB.EXP.N per calcolare il tempo che intercorre tra due eventi, quale il tempo impiegato da uno sportello automatico per fornire la somma in contanti richiesta. È possibile ad esempio utilizzare questa funzione per determinare la probabilità che questa operazione richieda al massimo un minuto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore della funzione.' }, + lambda: { name: 'lambda', detail: 'Obbligatorio. Valore del parametro.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che indica la forma della funzione esponenziale. Se cumulativo è VERO, DISTRIB.EXP.N restituirà la funzione distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + F_DIST: { + description: 'Restituisce la distribuzione di probabilità F. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. Ad esempio, è possibile esaminare i punteggi dei test per l\'ingresso di uomini e donne al liceo e determinare se la variabilità delle donne è diversa da quella riscontrata nei maschi.', + abstract: 'Restituisce la distribuzione di probabilità F. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. Ad esempio, è possibile esaminare i punteggi dei test per l\'ingresso di uomini e donne al liceo e determinare se la variabilità delle donne è diversa da quella riscontrata nei maschi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIBF restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + F_DIST_RT: { + description: 'Restituisce la distribuzione di probabilità F (coda destra) (grado di diversità) per due set di dati. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. È possibile ad esempio esaminare i punteggi dei test per l\'ammissione all\'università assegnati a studentesse e a studenti e stabilire se esistono differenze di variabilità tra il gruppo femminile e quello maschile.', + abstract: 'Restituisce la distribuzione di probabilità F (coda destra) (grado di diversità) per due set di dati. È possibile utilizzare questa funzione per determinare se due set di dati presentano gradi di diversità differenti. È possibile ad esempio esaminare i punteggi dei test per l\'ammissione all\'università assegnati a studentesse e a studenti e stabilire se esistono differenze di variabilità tra il gruppo femminile e quello maschile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + }, + }, + F_INV: { + description: 'Restituisce l\'inversa della distribuzione di probabilità F. Se p = DISTRIB.F.N(x,...), inV.F(p,...) = x. La distribuzione F può essere usata in un test F che confronta il grado di variabilità di due set di dati. È possibile ad esempio analizzare la distribuzione del reddito in Italia e in Francia per stabilire se i due paesi hanno un grado di diversità di reddito simile.', + abstract: 'Restituisce l\'inversa della distribuzione di probabilità F. Se p = DISTRIB.F.N(x,...), inV.F(p,...) = x. La distribuzione F può essere usata in un test F che confronta il grado di variabilità di due set di dati. È possibile ad esempio analizzare la distribuzione del reddito in Italia e in Francia per stabilire se i due paesi hanno un grado di diversità di reddito simile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + }, + }, + F_INV_RT: { + description: 'Restituisce l\'inversa della distribuzione di probabilità F (coda destra). Se p = DISTRIB.F.DS(x;...), si avrà INV.F.DS(p;...) = x. La distribuzione F può essere usata in un test F che confronta il grado di variabilità di due set di dati. È possibile ad esempio analizzare la distribuzione del reddito in Italia e in Francia per stabilire se i due paesi hanno un grado di diversità di reddito simile.', + abstract: 'Restituisce l\'inversa della distribuzione di probabilità F (coda destra). Se p = DISTRIB.F.DS(x;...), si avrà INV.F.DS(p;...) = x. La distribuzione F può essere usata in un test F che confronta il grado di variabilità di due set di dati. È possibile ad esempio analizzare la distribuzione del reddito in Italia e in Francia per stabilire se i due paesi hanno un grado di diversità di reddito simile.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obbligatorio. Gradi di libertà al numeratore.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obbligatorio. Gradi di libertà al denominatore.' }, + }, + }, + F_TEST: { + description: 'Utilizzare questa funzione per determinare se due campioni hanno varianze diverse. Ad esempio, sulla base dei punteggi di un test effettuato in scuole pubbliche e private, è possibile verificare se la diversità dei punteggi del test di queste scuole si estende su più livelli.', + abstract: 'Utilizzare questa funzione per determinare se due campioni hanno varianze diverse. Ad esempio, sulla base dei punteggi di un test effettuato in scuole pubbliche e private, è possibile verificare se la diversità dei punteggi del test di queste scuole si estende su più livelli.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Prima matrice o primo intervallo di dati.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Seconda matrice o secondo intervallo di dati.' }, + }, + }, + FISHER: { + description: 'Restituisce la trasformazione di Fisher a x. Questa trasformazione genera una funzione caratterizzata da una distribuzione più uniforme che asimmetrica. Utilizzare questa funzione per eseguire una verifica di ipotesi sul coefficiente di correlazione.', + abstract: 'Restituisce la trasformazione di Fisher a x. Questa trasformazione genera una funzione caratterizzata da una distribuzione più uniforme che asimmetrica. Utilizzare questa funzione per eseguire una verifica di ipotesi sul coefficiente di correlazione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore numerico per il quale si desidera eseguire la trasformazione.' }, + }, + }, + FISHERINV: { + description: 'Restituisce l\'inversa della trasformazione di Fisher. Utilizzare questa trasformazione durante l\'analisi delle correlazioni tra intervalli o matrici di dati. Se y = FISHER(x), si avrà INV.FISHER(y) = x.', + abstract: 'Restituisce l\'inversa della trasformazione di Fisher. Utilizzare questa trasformazione durante l\'analisi delle correlazioni tra intervalli o matrici di dati. Se y = FISHER(x), si avrà INV.FISHER(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Obbligatorio. Valore per il quale si desidera eseguire l\'inversa della trasformazione.' }, + }, + }, + FORECAST: { + description: 'Calcolare o prevedere un valore futuro usando valori esistenti. Il valore futuro è un valore y per un valore x specificato. I valori esistenti sono valori x e y noti e il valore futuro viene previsto usando la regressione lineare. È possibile usare queste funzioni per prevedere le vendite future, i requisiti di inventario o le tendenze dei consumatori.', + abstract: 'Calcolare o prevedere un valore futuro usando valori esistenti. Il valore futuro è un valore y per un valore x specificato. I valori esistenti sono valori x e y noti e il valore futuro viene previsto usando la regressione lineare. È possibile usare queste funzioni per prevedere le vendite future, i requisiti di inventario o le tendenze dei consumatori.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'sì Coordinata di cui si desidera prevedere un valore.' }, + knownYs: { name: 'known_y\'s', detail: 'sì Matrice o intervallo di dati dipendente.' }, + knownXs: { name: 'known_x\'s', detail: 'sì Matrice o intervallo di dati indipendente.' }, + }, + }, + FORECAST_ETS: { + description: 'Prevede un valore futuro in base ai valori esistenti usando una versione AAA dell\'algoritmo di livellamento esponenziale ETS.', + abstract: 'Prevede un valore futuro in base ai valori esistenti usando una versione AAA dell\'algoritmo di livellamento esponenziale ETS.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data obiettivo', detail: 'Il punto dati per il quale prevedere un valore.' }, + values: { name: 'Valori', detail: 'I valori cronologici usati per la previsione.' }, + timeline: { name: 'Sequenza temporale', detail: 'Un intervallo o una matrice indipendente di date o ore numeriche con passo costante.' }, + seasonality: { name: 'Stagionalità', detail: 'Facoltativo. Lunghezza stagionale; 1 per il rilevamento automatico e 0 senza stagionalità.' }, + dataCompletion: { name: 'Completamento dati', detail: 'Facoltativo. Usare 1 per interpolare i punti mancanti o 0 per considerarli zero.' }, + aggregation: { name: 'Aggregazione', detail: 'Facoltativo. Un valore da 1 a 7 specifica come aggregare timestamp duplicati.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Restituisce l\'intervallo di confidenza per un valore futuro previsto usando una versione AAA dell\'algoritmo ETS.', + abstract: 'Restituisce l\'intervallo di confidenza per un valore futuro previsto usando una versione AAA dell\'algoritmo ETS.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data obiettivo', detail: 'Il punto dati per il quale prevedere un valore.' }, + values: { name: 'Valori', detail: 'I valori cronologici usati per la previsione.' }, + timeline: { name: 'Sequenza temporale', detail: 'Un intervallo o una matrice indipendente di date o ore numeriche con passo costante.' }, + confidenceLevel: { name: 'Livello di confidenza', detail: 'Facoltativo. Un numero tra 0 e 1; il valore predefinito è 0,95.' }, + seasonality: { name: 'Stagionalità', detail: 'Facoltativo. Lunghezza stagionale; 1 per il rilevamento automatico e 0 senza stagionalità.' }, + dataCompletion: { name: 'Completamento dati', detail: 'Facoltativo. Usare 1 per interpolare i punti mancanti o 0 per considerarli zero.' }, + aggregation: { name: 'Aggregazione', detail: 'Facoltativo. Un valore da 1 a 7 specifica come aggregare timestamp duplicati.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Restituisce la durata del modello stagionale rilevato dall\'algoritmo ETS.', + abstract: 'Restituisce la durata del modello stagionale rilevato dall\'algoritmo ETS.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Valori', detail: 'I valori cronologici usati per la previsione.' }, + timeline: { name: 'Sequenza temporale', detail: 'Un intervallo o una matrice indipendente di date o ore numeriche con passo costante.' }, + dataCompletion: { name: 'Completamento dati', detail: 'Facoltativo. Usare 1 per interpolare i punti mancanti o 0 per considerarli zero.' }, + aggregation: { name: 'Aggregazione', detail: 'Facoltativo. Un valore da 1 a 7 specifica come aggregare timestamp duplicati.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Restituisce un valore statistico risultante dalla previsione di serie temporali usando una versione AAA dell\'algoritmo ETS.', + abstract: 'Restituisce un valore statistico risultante dalla previsione di serie temporali usando una versione AAA dell\'algoritmo ETS.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Valori', detail: 'I valori cronologici usati per la previsione.' }, + timeline: { name: 'Sequenza temporale', detail: 'Un intervallo o una matrice indipendente di date o ore numeriche con passo costante.' }, + statisticType: { name: 'Tipo di statistica', detail: 'Un valore da 1 a 8 specifica la statistica di previsione da restituire.' }, + seasonality: { name: 'Stagionalità', detail: 'Facoltativo. Lunghezza stagionale; 1 per il rilevamento automatico e 0 senza stagionalità.' }, + dataCompletion: { name: 'Completamento dati', detail: 'Facoltativo. Usare 1 per interpolare i punti mancanti o 0 per considerarli zero.' }, + aggregation: { name: 'Aggregazione', detail: 'Facoltativo. Un valore da 1 a 7 specifica come aggregare timestamp duplicati.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Calcolare o prevedere un valore futuro usando valori esistenti. Il valore futuro è un valore y per un valore x specificato. I valori esistenti sono valori x e y noti e il valore futuro viene previsto usando la regressione lineare. È possibile usare queste funzioni per prevedere le vendite future, i requisiti di inventario o le tendenze dei consumatori.', + abstract: 'Calcolare o prevedere un valore futuro usando valori esistenti. Il valore futuro è un valore y per un valore x specificato. I valori esistenti sono valori x e y noti e il valore futuro viene previsto usando la regressione lineare. È possibile usare queste funzioni per prevedere le vendite future, i requisiti di inventario o le tendenze dei consumatori.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'sì Coordinata di cui si desidera prevedere un valore.' }, + knownYs: { name: 'known_y\'s', detail: 'sì Matrice o intervallo di dati dipendente.' }, + knownXs: { name: 'known_x\'s', detail: 'sì Matrice o intervallo di dati indipendente.' }, + }, + }, + FREQUENCY: { + description: 'La funzione FREQUENZA calcola la frequenza con cui i valori si verificano all\'interno di un intervallo di valori e quindi restituisce una matrice verticale di numeri. È ad esempio possibile usare FREQUENZA per contare il numero di test che ottengono un punteggio compreso in un dato intervallo. Dal momento che FREQUENZA restituisce una matrice, deve essere immessa come formula in forma di matrice.', + abstract: 'La funzione FREQUENZA calcola la frequenza con cui i valori si verificano all\'interno di un intervallo di valori e quindi restituisce una matrice verticale di numeri. È ad esempio possibile usare FREQUENZA per contare il numero di test che ottengono un punteggio compreso in un dato intervallo. Dal momento che FREQUENZA restituisce una matrice, deve essere immessa come formula in forma di matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Obbligatorio. Matrice o riferimento a un insieme di valori di cui si desidera calcolare la frequenza. Se matrice_dati non contiene alcun valore, FREQUENZA restituirà una matrice di zeri.' }, + binsArray: { name: 'bins_array', detail: 'Obbligatorio. Matrice o riferimento agli intervalli in cui si desidera raggruppare i valori contenuti in matrice_dati. Se matrice_classi non contiene alcun valore, FREQUENZA restituirà il numero degli elementi contenuti in matrice_dati.' }, + }, + }, + GAMMA: { + description: 'Restituisce il valore di funzione GAMMA.', + abstract: 'Restituisce il valore di funzione GAMMA.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Restituisce un numero.' }, + }, + }, + GAMMA_DIST: { + description: 'Restituisce la distribuzione gamma. È possibile utilizzare questa funzione per studiare le variabili che potrebbero avere una distribuzione asimmetrica. La distribuzione gamma viene in genere utilizzata nell\'analisi delle code.', + abstract: 'Restituisce la distribuzione gamma. È possibile utilizzare questa funzione per studiare le variabili che potrebbero avere una distribuzione asimmetrica. La distribuzione gamma viene in genere utilizzata nell\'analisi delle code.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui si desidera calcolare la distribuzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione. Se beta = 1, DISTRIB.GAMMA.N restituirà la distribuzione gamma standard.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.GAMMA.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + GAMMA_INV: { + description: 'Restituisce l\'inversa della distribuzione cumulativa gamma. Se p = DISTRIB.GAMMA.N(x;...), si avrà INV.GAMMA.N(p;...) = x. È possibile usare questa funzione per studiare una variabile la cui distribuzione potrebbe essere asimmetrica.', + abstract: 'Restituisce l\'inversa della distribuzione cumulativa gamma. Se p = DISTRIB.GAMMA.N(x;...), si avrà INV.GAMMA.N(p;...) = x. È possibile usare questa funzione per studiare una variabile la cui distribuzione potrebbe essere asimmetrica.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità associata alla distribuzione gamma.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione. Se beta = 1, INV.GAMMA.N restituirà la distribuzione gamma standard.' }, + }, + }, + GAMMALN: { + description: 'Restituisce il logaritmo naturale di una funzione gamma, Γ(x).', + abstract: 'Restituisce il logaritmo naturale di una funzione gamma, Γ(x).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore per il quale si desidera calcolare LN.GAMMA.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Restituisce il logaritmo naturale di una funzione gamma, Γ(x).', + abstract: 'Restituisce il logaritmo naturale di una funzione gamma, Γ(x).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore per il quale si desidera calcolare LN.GAMMA.PRECISA.' }, + }, + }, + GAUSS: { + description: 'Calcola la probabilità che un membro di una popolazione normale standard sia compreso tra la deviazione media e la deviazione standard z rispetto alla media.', + abstract: 'Calcola la probabilità che un membro di una popolazione normale standard sia compreso tra la deviazione media e la deviazione standard z rispetto alla media.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obbligatorio. Restituisce un numero.' }, + }, + }, + GEOMEAN: { + description: 'Restituisce la media geometrica di una matrice o di un intervallo di dati positivi. È possibile, ad esempio, utilizzare la funzione MEDIA.GEOMETRICA per calcolare il tasso di crescita media in base a un interesse composto con tassi variabili.', + abstract: 'Restituisce la media geometrica di una matrice o di un intervallo di dati positivi. È possibile, ad esempio, utilizzare la funzione MEDIA.GEOMETRICA per calcolare il tasso di crescita media in base a un interesse composto con tassi variabili.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare il valore medio. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare il valore medio. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + }, + }, + GROWTH: { + description: 'Calcola la crescita esponenziale prevista in base ai dati esistenti. CRESCITA restituisce i valori y corrispondenti a una serie di valori x nuovi, specificati in base a valori x e y esistenti. È inoltre possibile utilizzare la funzione del foglio di lavoro CRESCITA per adattare una curva esponenziale a valori x e y esistenti.', + abstract: 'Calcola la crescita esponenziale prevista in base ai dati esistenti. CRESCITA restituisce i valori y corrispondenti a una serie di valori x nuovi, specificati in base a valori x e y esistenti. È inoltre possibile utilizzare la funzione del foglio di lavoro CRESCITA per adattare una curva esponenziale a valori x e y esistenti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obbligatorio. Insieme dei valori y già noti dalla relazione y = b*m^x. Se la matrice y_nota è in una singola colonna, ogni colonna di x_nota verrà interpretata come una variabile distinta. Se la matrice y_nota è in una singola riga, ogni riga di x_nota verrà interpretata come una variabile distinta. Se uno dei numeri in known_y è 0 o negativo, CRESCITA restituirà il #NUM! .' }, + knownXs: { name: 'known_x\'s', detail: 'Opzionale. Insieme facoltativo di valori x che possono essere già noti dalla relazione y = b*m^x. La matrice x_nota può comprendere uno o più insiemi di variabili. Se viene utilizzata una sola variabile, y_note e x_note potranno essere intervalli di forma qualsiasi, purché con dimensioni uguali. Se vengono utilizzate più variabili, y_note dovrà essere un vettore, ovvero un intervallo con altezza di una riga o larghezza di una colonna. Se x_note è omesso, verrà considerato uguale alla matrice {1;2;3;...} che ha le stesse dimensioni di y_note.' }, + newXs: { name: 'new_x\'s', detail: 'Opzionale. Nuovi valori x per i quali CRESCITA restituirà i valori y corrispondenti. Analogamente a x_nota, nuova_x deve includere una colonna (o una riga) per ciascuna variabile indipendente. Di conseguenza, se Y_nota è in una singola colonna, X_nota e Nuova_x dovrebbero avere lo stesso numero di colonne. Se y_nota è in una singola riga, x_nota e nuova_x dovrebbero avere lo stesso numero di righe. Se nuova_x è omesso, verrà considerato uguale a x_nota. Se entrambi x_nota e nuova_x sono omessi, verranno considerati uguali alla matrice {1;2;3;...} che ha le stesse dimensioni di y_nota.' }, + constb: { name: 'const', detail: 'Opzionale. Valore logico che specifica se la costante b deve essere uguale a 1. Se cost è VERO o è omesso, b verrà calcolata secondo la normale procedura. Se cost è FALSO, b verrà impostata a 1 e i valori m verranno corretti in modo che y = m^x.' }, + }, + }, + HARMEAN: { + description: 'Restituisce la media armonica di un set di dati. La media armonica è il reciproco della media aritmetica dei reciproci.', + abstract: 'Restituisce la media armonica di un set di dati. La media armonica è il reciproco della media aritmetica dei reciproci.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare il valore medio. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 argomenti di cui si desidera calcolare il valore medio. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una matrice o un riferimento a una matrice.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Restituisce la distribuzione ipergeometrica. DISTRIB.IPERGEOM.N restituisce la probabilità di un dato numero di successi campione in base alla dimensione del campione, ai successi e alla dimensione della popolazione. Usare la funzione DISTRIB.IPERGEOM.N per risolvere i problemi con una popolazione limitata, dove ciascuna osservazione può essere tanto un successo quanto un insuccesso e dove ciascun sottoinsieme di una data dimensione viene scelto con uguale probabilità.', + abstract: 'Restituisce la distribuzione ipergeometrica. DISTRIB.IPERGEOM.N restituisce la probabilità di un dato numero di successi campione in base alla dimensione del campione, ai successi e alla dimensione della popolazione. Usare la funzione DISTRIB.IPERGEOM.N per risolvere i problemi con una popolazione limitata, dove ciascuna osservazione può essere tanto un successo quanto un insuccesso e dove ciascun sottoinsieme di una data dimensione viene scelto con uguale probabilità.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Obbligatorio. Numero di successi nel campione.' }, + numberSample: { name: 'number_sample', detail: 'Obbligatorio. Dimensione del campione.' }, + populationS: { name: 'population_s', detail: 'Obbligatorio. Numero di successi nella popolazione.' }, + numberPop: { name: 'number_pop', detail: 'Obbligatorio. Dimensione della popolazione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.IPERGEOM.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione massa di probabilità.' }, + }, + }, + INTERCEPT: { + description: 'Calcola il punto in cui una retta interseca l\'asse y utilizzando i valori x e y esistenti. Tale punto è basato su una retta di regressione lineare ottimale tracciata attraverso i valori x_nota e y_nota. Utilizzare la funzione INTERCETTA per determinare il valore della variabile dipendente nel caso in cui la variabile indipendente sia uguale a 0 (zero). Ad esempio, è possibile utilizzare la funzione INTERCETTA per stimare la resistenza elettrica di un metallo alla temperatura di 0° C nel caso in cui i dati disponibili siano stati rilevati a temperature ambiente e a temperature superiori.', + abstract: 'Calcola il punto in cui una retta interseca l\'asse y utilizzando i valori x e y esistenti. Tale punto è basato su una retta di regressione lineare ottimale tracciata attraverso i valori x_nota e y_nota. Utilizzare la funzione INTERCETTA per determinare il valore della variabile dipendente nel caso in cui la variabile indipendente sia uguale a 0 (zero). Ad esempio, è possibile utilizzare la funzione INTERCETTA per stimare la resistenza elettrica di un metallo alla temperatura di 0° C nel caso in cui i dati disponibili siano stati rilevati a temperature ambiente e a temperature superiori.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obbligatorio. Insieme dipendente di osservazioni o di dati.' }, + knownXs: { name: 'known_x\'s', detail: 'Obbligatorio. Insieme indipendente di osservazioni o dati.' }, + }, + }, + KURT: { + description: 'Restituisce la curtosi di un set di dati.', + abstract: 'Restituisce la curtosi di un set di dati.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Primo numero, riferimento di cella o intervallo di cui si desidera calcolare la curtosi.' }, + number2: { name: 'number2', detail: 'Numeri, riferimenti di cella o intervalli aggiuntivi di cui si desidera calcolare la curtosi, fino a un massimo di 255.' }, + }, + }, + LARGE: { + description: 'Restituisce il k-esimo valore più grande in un set di dati. È possibile usare questa funzione per selezionare un valore in base alla sua condizione relativa. Ad esempio, è possibile usare GRANDE per restituire il punteggio più alto, secondo o terzo posto.', + abstract: 'Restituisce il k-esimo valore più grande in un set di dati. È possibile usare questa funzione per selezionare un valore in base alla sua condizione relativa. Ad esempio, è possibile usare GRANDE per restituire il punteggio più alto, secondo o terzo posto.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati di cui si desidera determinare il k-esimo valore più grande.' }, + k: { name: 'k', detail: 'Obbligatorio. Posizione, partendo dal valore più grande, nella matrice o nell\'intervallo di celle dei dati da restituire.' }, + }, + }, + LINEST: { + description: 'La funzione REGR.LIN calcola le statistiche per una linea utilizzando il metodo dei minimi quadrati per calcolare la retta che meglio rappresenta i dati e restituisce una matrice che descrive la retta. È inoltre possibile combinare REGR.LIN con altre funzioni per calcolare le statistiche per altri tipi di modelli con parametri sconosciuti lineari, come le serie polinomiali, logaritmiche, esponenziali e di potenze. Dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come formula in forma di matrice. Le istruzioni sono riportate dopo gli esempi di questo articolo.', + abstract: 'La funzione REGR.LIN calcola le statistiche per una linea utilizzando il metodo dei minimi quadrati per calcolare la retta che meglio rappresenta i dati e restituisce una matrice che descrive la retta. È inoltre possibile combinare REGR.LIN con altre funzioni per calcolare le statistiche per altri tipi di modelli con parametri sconosciuti lineari, come le serie polinomiali, logaritmiche, esponenziali e di potenze. Dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come formula in forma di matrice. Le istruzioni sono riportate dopo gli esempi di questo articolo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obbligatorio. Insieme dei valori y già noti nella relazione y = mx + b. Se l\'intervallo di known_y si trova in una singola colonna, ogni colonna di known_x viene interpretata come una variabile distinta. Se l\'intervallo di known_y è contenuto in una singola riga, ogni riga di known_x viene interpretata come una variabile distinta.' }, + knownXs: { name: 'known_x\'s', detail: 'Opzionale. Insieme dei valori x che possono essere già noti nella relazione y = mx + b. L\'intervallo di known_x può includere uno o più set di variabili. Se viene usata una sola variabile, known_y e known_x possono essere intervalli di qualsiasi forma, purché abbiano dimensioni uguali. Se vengono utilizzate più variabili, known_y deve essere un vettore, ovvero un intervallo con altezza di una riga o larghezza di una colonna. Se known_x\'s viene omesso, verrà considerato uguale alla matrice {1,2,3,...} che ha le stesse dimensioni di known_y .' }, + constb: { name: 'const', detail: 'Opzionale. Valore logico che specifica se la costante b deve essere uguale a 0. Se cost è VERO o è omesso, b verrà calcolata normalmente. Se cost è FALSO, b verrà impostata su 0 e i valori m verranno adattati a y = mx.' }, + stats: { name: 'stats', detail: 'Opzionale. Valore logico che specifica se restituire statistiche aggiuntive di regressione. Se stat è VERO, REGR.LIN restituirà le statistiche aggiuntive di regressione; di conseguenza, la matrice restituita è {mn,mn-1,...,m1,b; sen,sen-1,...,se1,seb; r 2 , sey; F;gdl; ssreg,ssresid} . Se stat è FALSO o è omesso, REGR.LIN restituirà solo i coefficienti m e la costante b. Le statistiche aggiuntive di regressione sono le seguenti:' }, + }, + }, + LOGEST: { + description: 'L\'equazione della curva è:', + abstract: 'L\'equazione della curva è:', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obbligatorio. Insieme dei valori y già noti dalla relazione y = b*m^x. Se la matrice y_nota è in una singola colonna, ogni colonna di x_nota verrà interpretata come una variabile distinta. Se la matrice y_note è in una singola riga, ogni riga di x_note verrà interpretata come una variabile distinta.' }, + knownXs: { name: 'known_x\'s', detail: 'Opzionale. Insieme facoltativo di valori x che possono essere già noti dalla relazione y = b*m^x. La matrice x_nota può comprendere uno o più insiemi di variabili. Se viene utilizzata una sola variabile, y_nota e x_nota potranno essere intervalli di forma qualsiasi, purché con dimensioni uguali. Se vengono utilizzate più variabili, y_nota dovrà essere un intervallo di celle con altezza di una riga o larghezza di una colonna, denominato anche vettore. Se x_nota è omesso, verrà considerato uguale alla matrice {1;2;3;...} che ha le stesse dimensioni di y_nota.' }, + constb: { name: 'const', detail: 'Opzionale. Valore logico che specifica se la costante b deve essere uguale a 1. Se cost è VERO o è omesso, b verrà calcolata secondo la normale procedura. Se cost è FALSO, b verrà impostata a 1 e i valori m verranno corretti in modo che y = m^x.' }, + stats: { name: 'stats', detail: 'Opzionale. Valore logico che specifica se restituire statistiche aggiuntive di regressione. Se stat è VERO, REGR.LOG restituirà le statistiche aggiuntive di regressione. Di conseguenza, la matrice restituita sarà {mn;mn-1;...;m1;b\\sn;sn-1;...;s1;sb\\r 2;sy\\ F;gdl\\sqreg;sqres}. Se stat è FALSO o è omesso, REGR.LOG restituirà solo i coefficienti m e la costante b.' }, + }, + }, + LOGNORM_DIST: { + description: 'Utilizzare questa funzione per analizzare i dati che sono stati trasformati in logaritmi.', + abstract: 'Utilizzare questa funzione per analizzare i dati che sono stati trasformati in logaritmi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media di ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard di ln(x).' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.LOGNORM.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + LOGNORM_INV: { + description: 'Restituisce l\'inversa della distribuzione lognormale cumulativa.', + abstract: 'Restituisce l\'inversa della distribuzione lognormale cumulativa.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Probabilità corrispondente alla distribuzione lognormale.' }, + mean: { name: 'mean', detail: 'Media aritmetica della distribuzione.' }, + standardDev: { name: 'standard_dev', detail: 'Deviazione standard della distribuzione.' }, + }, + }, + MARGINOFERROR: { + description: 'Questa funzione calcola il margine di errore da un intervallo di valori e da un livello di confidenza.', + abstract: 'Questa funzione calcola il margine di errore da un intervallo di valori e da un livello di confidenza.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=it', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Intervallo di valori usato per calcolare il margine di errore.' }, + confidence: { name: 'confidence', detail: 'Livello di confidenza desiderato compreso tra 0 e 1.' }, + }, + }, + MAX: { + description: 'Restituisce il valore maggiore di un insieme di valori.', + abstract: 'Restituisce il valore maggiore di un insieme di valori.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 numeri tra cui si desidera individuare il valore massimo.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 numeri tra cui si desidera individuare il valore massimo.' }, + }, + }, + MAXA: { + description: 'Restituisce il valore più grande di un elenco di argomenti.', + abstract: 'Restituisce il valore più grande di un elenco di argomenti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Obbligatorio. Il primo argomento numerico di quelli tra cui si desidera individuare il più grande.' }, + value2: { name: 'value2', detail: 'Opzionale. Argomenti numerici da 2 a 255 tra cui si desidera individuare il più grande.' }, + }, + }, + MAXIFS: { + description: 'La funzione MAX.PIÙ.SE restituisce il valore massimo tra le celle specificate da un dato set di condizioni o criteri.', + abstract: 'La funzione MAX.PIÙ.SE restituisce il valore massimo tra le celle specificate da un dato set di condizioni o criteri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'L\'intervallo effettivo di celle in cui verrà determinato il valore massimo.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Il set di celle da valutare con i criteri.' }, + criteria1: { name: 'criteria1', detail: 'I criteri sotto forma di numero, espressione o testo che definiscono quali celle valutare come massimo. Lo stesso set di criteri è supportato per le funzioni MIN.PIÙ.SE , SOMMA.PIÙ.SE e MEDIA.PIÙ.SE .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Altri intervalli e criteri associati. È possibile immettere fino a 126 coppie di intervalli/criteri.' }, + criteria2: { name: 'criteria2', detail: 'Altri intervalli e criteri associati. È possibile immettere fino a 126 coppie di intervalli/criteri.' }, + }, + }, + MEDIAN: { + description: 'Restituisce la mediana dei numeri specificati. La mediana è il numero che occupa la posizione centrale di un insieme di numeri.', + abstract: 'Restituisce la mediana dei numeri specificati. La mediana è il numero che occupa la posizione centrale di un insieme di numeri.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 numeri per cui si desidera calcolare il valore mediano.' }, + number2: { name: 'number2', detail: 'Num1 è obbligatorio, i numeri successivi sono facoltativi. Da 1 a 255 numeri per cui si desidera calcolare il valore mediano.' }, + }, + }, + MIN: { + description: 'Restituisce il numero più piccolo di un insieme di valori.', + abstract: 'Restituisce il numero più piccolo di un insieme di valori.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Num1 è facoltativo, i numeri successivi sono facoltativi. Da 1 a 255 numeri tra cui si desidera individuare il valore minimo.' }, + number2: { name: 'number2', detail: 'Num1 è facoltativo, i numeri successivi sono facoltativi. Da 1 a 255 numeri tra cui si desidera individuare il valore minimo.' }, + }, + }, + MINA: { + description: 'Restituisce il valore più piccolo di un elenco di argomenti.', + abstract: 'Restituisce il valore più piccolo di un elenco di argomenti.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 valori tra cui si desidera individuare il più piccolo.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 valori tra cui si desidera individuare il più piccolo.' }, + }, + }, + MINIFS: { + description: 'La funzione MIN.PIÙ.SE restituisce il valore minimo tra le celle specificate da un dato set di condizioni o criteri.', + abstract: 'La funzione MIN.PIÙ.SE restituisce il valore minimo tra le celle specificate da un dato set di condizioni o criteri.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'L\'intervallo effettivo di celle in cui verrà determinato il valore minimo.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Il set di celle da valutare con i criteri.' }, + criteria1: { name: 'criteria1', detail: 'I criteri sotto forma di numero, espressione o testo che definiscono quali celle valutare come minimo. Lo stesso set di criteri è supportato per le funzioni MAX.PIÙ.SE , SOMMA.PIÙ.SE e MEDIA.PIÙ.SE .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Altri intervalli e criteri associati. È possibile immettere fino a 126 coppie di intervalli/criteri.' }, + criteria2: { name: 'criteria2', detail: 'Altri intervalli e criteri associati. È possibile immettere fino a 126 coppie di intervalli/criteri.' }, + }, + }, + MODE_MULT: { + description: 'Se sono presenti più mode, verranno restituiti più risultati. Dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come una formula della matrice.', + abstract: 'Se sono presenti più mode, verranno restituiti più risultati. Dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come una formula della matrice.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico di cui si desidera calcolare la moda.' }, + number2: { name: 'number2', detail: 'Opzionale. Argomenti numerici da 2 a 254 di cui si desidera calcolare la moda. È inoltre possibile utilizzare un\'unica matrice o un riferimento a una matrice anziché argomenti separati da punti e virgola.' }, + }, + }, + MODE_SNGL: { + description: 'Restituisce il valore più ricorrente o ripetitivo di una matrice o di un intervallo di dati.', + abstract: 'Restituisce il valore più ricorrente o ripetitivo di una matrice o di un intervallo di dati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento di cui si desidera calcolare la moda.' }, + number2: { name: 'number2', detail: 'Opzionale. Argomenti da 2 a 254 di cui si desidera calcolare la moda. È inoltre possibile utilizzare un\'unica matrice o un riferimento a una matrice anziché argomenti separati da punti e virgola.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Restituisce la distribuzione binomiale negativa, la probabilità che un numero di insuccessi pari a Num_insuccessi si verifichi prima del successo Num_successi, data la probabilità di successo Probabilità_s.', + abstract: 'Restituisce la distribuzione binomiale negativa, la probabilità che un numero di insuccessi pari a Num_insuccessi si verifichi prima del successo Num_successi, data la probabilità di successo Probabilità_s.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Obbligatorio. Numero degli insuccessi.' }, + numberS: { name: 'number_s', detail: 'Obbligatorio. Numero di soglia per i successi.' }, + probabilityS: { name: 'probability_s', detail: 'Obbligatorio. Probabilità di ottenere un successo.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.BINOM.NEG.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + NORM_DIST: { + description: 'Restituisce la distribuzione normale per la media e la distribuzione standard specificate. Questa funzione ha una vasta gamma di applicazioni in statistica, inclusa la verifica di ipotesi.', + abstract: 'Restituisce la distribuzione normale per la media e la distribuzione standard specificate. Questa funzione ha una vasta gamma di applicazioni in statistica, inclusa la verifica di ipotesi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore per il quale si vuole calcolare la distribuzione.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media aritmetica della distribuzione.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della distribuzione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, NORM. DISTRIB.N restituisce la funzione di distribuzione cumulativa; se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + NORM_INV: { + description: 'Restituisce l\'inversa della distribuzione normale cumulativa per la media e la deviazione standard specificate.', + abstract: 'Restituisce l\'inversa della distribuzione normale cumulativa per la media e la deviazione standard specificate.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità corrispondente alla distribuzione normale.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media aritmetica della distribuzione.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della distribuzione.' }, + }, + }, + NORM_S_DIST: { + description: 'La funzione NORM. La funzione DISTRIB.S.N di Excel restituisce la distribuzione normale standard , ovvero ha una media uguale a zero e una deviazione standard di uno . È possibile usare questa funzione al posto di una tabella delle aree della curva normale standard.', + abstract: 'La funzione NORM. La funzione DISTRIB.S.N di Excel restituisce la distribuzione normale standard , ovvero ha una media uguale a zero e una deviazione standard di uno . È possibile usare questa funzione al posto di una tabella delle aree della curva normale standard.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obbligatorio. Questo è il valore per il quale si desidera la distribuzione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. L\'argomento cumulativo può essere VERO o FALSO . Questo valore logico determina la forma della funzione. Se cumulativo è VERO, la funzione NORM. DISTRIB.S.N restituisce la funzione di distribuzione cumulativa . Se è FALSO, restituirà la funzione massa di probabilità .' }, + }, + }, + NORM_S_INV: { + description: 'Restituisce l\'inversa della distribuzione normale standard cumulativa. La distribuzione ha una media uguale a zero e una deviazione standard uguale a uno.', + abstract: 'Restituisce l\'inversa della distribuzione normale standard cumulativa. La distribuzione ha una media uguale a zero e una deviazione standard uguale a uno.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obbligatorio. Probabilità corrispondente alla distribuzione normale.' }, + }, + }, + PEARSON: { + description: 'Restituisce il coefficiente di correlazione del momento prodotto di Pearson, r, un indice adimensionale compreso tra -1 e 1 inclusi che riflette l\'estensione di una relazione lineare tra due set di dati.', + abstract: 'Restituisce il coefficiente di correlazione del momento prodotto di Pearson, r, un indice adimensionale compreso tra -1 e 1 inclusi che riflette l\'estensione di una relazione lineare tra due set di dati.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obbligatorio. Insieme di valori indipendenti.' }, + array2: { name: 'array2', detail: 'Obbligatorio. Insieme di valori dipendenti.' }, + }, + }, + PERCENTILE_EXC: { + description: 'The PERCENTILE. La funzione ESC restituisce il k-esimo dato percentile dei valori in un intervallo, dove k si trova nell\'intervallo 0..1, valore esclusivo.', + abstract: 'The PERCENTILE. La funzione ESC restituisce il k-esimo dato percentile dei valori in un intervallo, dove k si trova nell\'intervallo 0..1, valore esclusivo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati che definisce la condizione relativa.' }, + k: { name: 'k', detail: 'Obbligatorio. Valore percentile nell\'intervallo 0 < k < 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Restituisce il k-esimo dato percentile dei valori in un intervallo, dove k è compreso nell\'intervallo da 0 a 1, inclusi.', + abstract: 'Restituisce il k-esimo dato percentile dei valori in un intervallo, dove k è compreso nell\'intervallo da 0 a 1, inclusi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati che definisce la condizione relativa.' }, + k: { name: 'k', detail: 'Obbligatorio. Valore percentile nell\'intervallo compreso tra 0 e 1 inclusi.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Restituisce il rango di un valore in un set di dati come percentuale (0..1, estremi esclusi) del set di dati.', + abstract: 'Restituisce il rango di un valore in un set di dati come percentuale (0..1, estremi esclusi) del set di dati.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati con valori numerici che definisce la condizione relativa.' }, + x: { name: 'x', detail: 'Obbligatorio. Valore del quale si desidera conoscere il rango.' }, + significance: { name: 'significance', detail: 'Opzionale. Valore che identifica il numero di cifre significative per la percentuale restituita. Se questo argomento viene omesso, ESC.PERCENT.RANGO utilizzerà tre cifre (0,xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Questa funzione può essere utilizzata per calcolare la condizione relativa di un valore in un set di dati. È ad esempio possibile utilizzare INC.PERCENT.RANGO per calcolare la condizione di un punteggio di un test attitudinale rispetto a tutti gli altri punteggi dello stesso test.', + abstract: 'Questa funzione può essere utilizzata per calcolare la condizione relativa di un valore in un set di dati. È ad esempio possibile utilizzare INC.PERCENT.RANGO per calcolare la condizione di un punteggio di un test attitudinale rispetto a tutti gli altri punteggi dello stesso test.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati con valori numerici che definisce la condizione relativa.' }, + x: { name: 'x', detail: 'Obbligatorio. Valore del quale si desidera conoscere il rango.' }, + significance: { name: 'significance', detail: 'Opzionale. Valore che identifica il numero di cifre significative per la percentuale restituita. Se questo argomento viene omesso, INC.PERCENT.RANGO utilizzerà tre cifre (0,xxx).' }, + }, + }, + PERMUT: { + description: 'Restituisce il numero delle permutazioni per un numero assegnato di oggetti che è possibile selezionare da oggetti numerici. Una permutazione è un qualsiasi insieme o sottoinsieme di oggetti o eventi il cui ordine interno sia significativo. Le permutazioni sono diverse dalle combinazioni il cui ordine interno non è significativo. Utilizzare questa funzione per i calcoli delle probabilità, tipo quelli che si eseguono per le lotterie.', + abstract: 'Restituisce il numero delle permutazioni per un numero assegnato di oggetti che è possibile selezionare da oggetti numerici. Una permutazione è un qualsiasi insieme o sottoinsieme di oggetti o eventi il cui ordine interno sia significativo. Le permutazioni sono diverse dalle combinazioni il cui ordine interno non è significativo. Utilizzare questa funzione per i calcoli delle probabilità, tipo quelli che si eseguono per le lotterie.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Intero che descrive il numero di oggetti.' }, + numberChosen: { name: 'number_chosen', detail: 'Obbligatorio. Intero che descrive il numero di oggetti per ogni permutazione.' }, + }, + }, + PERMUTATIONA: { + description: 'Restituisce il numero delle permutazioni per un dato numero di oggetti (con ripetizioni) che possono essere selezionati dagli oggetti totali.', + abstract: 'Restituisce il numero delle permutazioni per un dato numero di oggetti (con ripetizioni) che possono essere selezionati dagli oggetti totali.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Intero che descrive il numero totale di oggetti.' }, + numberChosen: { name: 'number_chosen', detail: 'Obbligatorio. Intero che descrive il numero di oggetti in ogni permutazione.' }, + }, + }, + PHI: { + description: 'Restituisce il valore della funzione densità per una distribuzione normale standard.', + abstract: 'Restituisce il valore della funzione densità per una distribuzione normale standard.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. X è il numero per cui si vuole la densità della distribuzione normale standard.' }, + }, + }, + POISSON_DIST: { + description: 'Restituisce la distribuzione di probabilità di Poisson. La distribuzione di Poisson viene in genere applicata per la previsione del numero di eventi in un arco di tempo specifico, come il numero di automobili che transitano per un casello autostradale in 1 minuto.', + abstract: 'Restituisce la distribuzione di probabilità di Poisson. La distribuzione di Poisson viene in genere applicata per la previsione del numero di eventi in un arco di tempo specifico, come il numero di automobili che transitano per un casello autostradale in 1 minuto.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Numero degli eventi.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Valore numerico previsto.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma della distribuzione di probabilità restituita. Se cumulativo è VERO, POISSON. DISTRIB.N restituisce la probabilità cumulativa di Poisson che il numero di eventi casuali sia compreso tra zero e x inclusi; se è FALSO, restituirà la funzione massa di probabilità di Poisson che il numero di eventi che si verificano sarà esattamente x.' }, + }, + }, + PROB: { + description: 'Restituisce la probabilità che dei valori in un intervallo siano compresi tra due limiti. Se limite_sup è omesso, la funzione restituirà la probabilità che i valori in int_x siano uguali a limite_inf.', + abstract: 'Restituisce la probabilità che dei valori in un intervallo siano compresi tra due limiti. Se limite_sup è omesso, la funzione restituirà la probabilità che i valori in int_x siano uguali a limite_inf.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Obbligatorio. Intervallo dei valori numerici per x a cui sono associate delle probabilità.' }, + probRange: { name: 'prob_range', detail: 'Obbligatorio. Insieme delle probabilità associate ai valori di int_x.' }, + lowerLimit: { name: 'lower_limit', detail: 'Opzionale. Limite inferiore del valore per il quale si desidera calcolare la probabilità.' }, + upperLimit: { name: 'upper_limit', detail: 'Opzionale. Limite superiore del valore per il quale si desidera calcolare la probabilità.' }, + }, + }, + QUARTILE_EXC: { + description: 'Restituisce il quartile del set di dati, in base ai valori percentili compresi tra 0 e 1, esclusi.', + abstract: 'Restituisce il quartile del set di dati, in base ai valori percentili compresi tra 0 e 1, esclusi.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di celle di valori numerici per cui si desidera calcolare il valore quartile.' }, + quart: { name: 'quart', detail: 'Obbligatorio. Indica il valore da restituire.' }, + }, + }, + QUARTILE_INC: { + description: 'I quartili vengono spesso utilizzati nelle indagini di mercato e nei dati statistici per suddividere le popolazioni in gruppi. Ad esempio, è possibile utilizzare INC.QUARTILE per trovare il 25% dei redditi più elevati in una popolazione.', + abstract: 'I quartili vengono spesso utilizzati nelle indagini di mercato e nei dati statistici per suddividere le popolazioni in gruppi. Ad esempio, è possibile utilizzare INC.QUARTILE per trovare il 25% dei redditi più elevati in una popolazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di celle di valori numerici per cui si desidera calcolare il valore quartile.' }, + quart: { name: 'quart', detail: 'Obbligatorio. Valore da restituire.' }, + }, + }, + RANK_AVG: { + description: 'Restituisce il rango di un numero in un elenco di numeri, ovvero la sua dimensione rispetto agli altri valori dell\'elenco. Se più valori hanno lo stesso rango, viene restituito il rango medio.', + abstract: 'Restituisce il rango di un numero in un elenco di numeri, ovvero la sua dimensione rispetto agli altri valori dell\'elenco. Se più valori hanno lo stesso rango, viene restituito il rango medio.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero di cui si desidera trovare il rango.' }, + ref: { name: 'ref', detail: 'Obbligatorio. Matrice di numeri o riferimento a un elenco di numeri. I valori in Rif che non sono di tipo numerico vengono ignorati.' }, + order: { name: 'order', detail: 'Opzionale. Numero che specifica come classificare num.' }, + }, + }, + RANK_EQ: { + description: 'Restituisce il rango di un numero in un elenco di numeri.', + abstract: 'Restituisce il rango di un numero in un elenco di numeri.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Numero di cui si desidera trovare il rango.' }, + ref: { name: 'ref', detail: 'Riferimento a un elenco di numeri. I valori non numerici in ref vengono ignorati.' }, + order: { name: 'order', detail: 'Numero che specifica come classificare number. Se è 0 o omesso, viene usato un ordine decrescente; qualsiasi valore diverso da zero usa l\'ordine crescente.' }, + }, + }, + RSQ: { + description: 'Restituisce il quadrato del coefficiente di correlazione del momento prodotto di Pearson.', + abstract: 'Restituisce il quadrato del coefficiente di correlazione del momento prodotto di Pearson.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: "known_y's", detail: 'Matrice o intervallo di dati dipendente.' }, + knownXs: { name: "known_x's", detail: 'Matrice o intervallo di dati indipendente.' }, + }, + }, + SKEW: { + description: 'Restituisce l\'asimmetria di una distribuzione.', + abstract: 'Restituisce l\'asimmetria di una distribuzione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Primo numero, riferimento di cella o intervallo di cui si desidera calcolare l\'asimmetria.' }, + number2: { name: 'number2', detail: 'Numeri, riferimenti di cella o intervalli aggiuntivi di cui si desidera calcolare l\'asimmetria, fino a un massimo di 255.' }, + }, + }, + SKEW_P: { + description: 'Restituisce l\'asimmetria di una distribuzione in base a un\'intera popolazione.', + abstract: 'Restituisce l\'asimmetria di una distribuzione in base a un\'intera popolazione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Primo numero, riferimento di cella o intervallo di cui si desidera calcolare l\'asimmetria.' }, + number2: { name: 'number2', detail: 'Numeri, riferimenti di cella o intervalli aggiuntivi di cui si desidera calcolare l\'asimmetria, fino a un massimo di 255.' }, + }, + }, + SLOPE: { + description: 'Restituisce la pendenza della retta di regressione lineare.', + abstract: 'Restituisce la pendenza della retta di regressione lineare.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: "known_y's", detail: 'Matrice o intervallo di dati dipendente.' }, + knownXs: { name: "known_x's", detail: 'Matrice o intervallo di dati indipendente.' }, + }, + }, + SMALL: { + description: 'Restituisce il k-esimo valore più piccolo di un set di dati. Utilizzare questa funzione per restituire i valori con una particolare condizione relativa in un set di dati.', + abstract: 'Restituisce il k-esimo valore più piccolo di un set di dati. Utilizzare questa funzione per restituire i valori con una particolare condizione relativa in un set di dati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati numerici di cui si desidera determinare il k-esimo valore più piccolo.' }, + k: { name: 'k', detail: 'Obbligatorio. Posizione del valore da restituire, partendo dal più piccolo, nella matrice o nell\'intervallo.' }, + }, + }, + STANDARDIZE: { + description: 'Restituisce un valore normalizzato da una distribuzione caratterizzata da media e dev_standard.', + abstract: 'Restituisce un valore normalizzato da una distribuzione caratterizzata da media e dev_standard.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore che si desidera normalizzare.' }, + mean: { name: 'mean', detail: 'Obbligatorio. Media aritmetica della distribuzione.' }, + standardDev: { name: 'standard_dev', detail: 'Obbligatorio. Deviazione standard della distribuzione.' }, + }, + }, + STDEV_P: { + description: 'La deviazione standard è una misura che indica quanto i valori si discostino dal valore medio (la media).', + abstract: 'La deviazione standard è una misura che indica quanto i valori si discostino dal valore medio (la media).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a una popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 2 a 254 argomenti numerici corrispondenti a una popolazione. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + }, + }, + STDEV_S: { + description: 'La deviazione standard è una misura che indica quanto si discostano i valori dal valore medio, ovvero la media.', + abstract: 'La deviazione standard è una misura che indica quanto si discostano i valori dal valore medio, ovvero la media.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a un campione di popolazione. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 2 a 254 argomenti numerici corrispondenti a un campione di popolazione. Anziché argomenti separati da punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + }, + }, + STDEVA: { + description: 'Stima la deviazione standard in base a un campione, includendo numeri, testo e valori logici.', + abstract: 'Stima la deviazione standard in base a un campione, includendo numeri, testo e valori logici.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Primo argomento valore corrispondente a un campione di popolazione. In alternativa agli argomenti separati da virgole, è possibile usare una singola matrice o un riferimento a una matrice.' }, + value2: { name: 'value2', detail: 'Argomenti valore da 2 a 254 corrispondenti a un campione di popolazione. In alternativa, è possibile usare una singola matrice o un riferimento a una matrice.' }, + }, + }, + STDEVPA: { + description: 'Restituisce la deviazione standard sulla base dell\'intera popolazione specificata sotto forma di argomenti, compresi il testo e i valori logici. La deviazione standard è una misura che indica quanto i valori si discostano dal valore medio, ovvero dalla media.', + abstract: 'Restituisce la deviazione standard sulla base dell\'intera popolazione specificata sotto forma di argomenti, compresi il testo e i valori logici. La deviazione standard è una misura che indica quanto i valori si discostano dal valore medio, ovvero dalla media.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 valori corrispondenti a una popolazione. Anziché argomenti separati dal punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 valori corrispondenti a una popolazione. Anziché argomenti separati dal punti e virgola, è inoltre possibile utilizzare una singola matrice o un riferimento a una matrice.' }, + }, + }, + STEYX: { + description: 'Restituisce l\'errore standard del valore y previsto per ogni valore x nella regressione.', + abstract: 'Restituisce l\'errore standard del valore y previsto per ogni valore x nella regressione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: "known_y's", detail: 'Matrice o intervallo di dati dipendente.' }, + knownXs: { name: "known_x's", detail: 'Matrice o intervallo di dati indipendente.' }, + }, + }, + T_DIST: { + description: 'Restituisce la distribuzione t a una coda sinistra di Student. La distribuzione t viene utilizzata nelle verifiche di ipotesi su piccoli set di dati presi come campione. Utilizzare questa funzione al posto di una tabella di valori critici per il calcolo della distribuzione t.', + abstract: 'Restituisce la distribuzione t a una coda sinistra di Student. La distribuzione t viene utilizzata nelle verifiche di ipotesi su piccoli set di dati presi come campione. Utilizzare questa funzione al posto di una tabella di valori critici per il calcolo della distribuzione t.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore numerico in cui calcolare la distribuzione.' }, + degFreedom: { name: 'degFreedom', detail: 'Obbligatorio. Intero che indica il numero di gradi di libertà.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Valore logico che determina la forma assunta dalla funzione. Se cumulativo è VERO, DISTRIB.T.N restituirà la funzione di distribuzione cumulativa, se è FALSO restituirà la funzione densità di probabilità.' }, + }, + }, + T_DIST_2T: { + description: 'Restituisce la probabilità per la distribuzione t di Student (a due code).', + abstract: 'Restituisce la probabilità per la distribuzione t di Student (a due code).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valore numerico in corrispondenza del quale valutare la distribuzione.' }, + degFreedom: { name: 'degFreedom', detail: 'Intero che indica il numero di gradi di libertà.' }, + }, + }, + T_DIST_RT: { + description: 'Restituisce la probabilità per la distribuzione t di Student (a una coda destra).', + abstract: 'Restituisce la probabilità per la distribuzione t di Student (a una coda destra).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Valore numerico in corrispondenza del quale valutare la distribuzione.' }, + degFreedom: { name: 'degFreedom', detail: 'Intero che indica il numero di gradi di libertà.' }, + }, + }, + T_INV: { + description: 'Restituisce l\'inversa della probabilità per la distribuzione t di Student.', + abstract: 'Restituisce l\'inversa della probabilità per la distribuzione t di Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Probabilità associata alla distribuzione t di Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Intero che indica il numero di gradi di libertà.' }, + }, + }, + T_INV_2T: { + description: 'Restituisce l\'inversa della probabilità per la distribuzione t di Student (a due code).', + abstract: 'Restituisce l\'inversa della probabilità per la distribuzione t di Student (a due code).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Probabilità associata alla distribuzione t di Student.' }, + degFreedom: { name: 'degFreedom', detail: 'Intero che indica il numero di gradi di libertà.' }, + }, + }, + T_TEST: { + description: 'Restituisce la probabilità associata a un test t di Student.', + abstract: 'Restituisce la probabilità associata a un test t di Student.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Prima matrice o intervallo di dati.' }, + array2: { name: 'array2', detail: 'Seconda matrice o intervallo di dati.' }, + tails: { name: 'tails', detail: 'Specifica il numero di code della distribuzione. Se è 1, TEST.T usa la distribuzione a una coda; se è 2, quella a due code.' }, + type: { name: 'type', detail: 'Tipo di test t da eseguire.' }, + }, + }, + TREND: { + description: 'La funzione TENDENZA restituisce i valori lungo una tendenza lineare. Adatta una linea retta (usando il metodo dei minimi quadrati) alle y_note e x_note della matrice. TENDENZA restituisce i valori y lungo tale riga per la matrice di Nuova_x specificata.', + abstract: 'La funzione TENDENZA restituisce i valori lungo una tendenza lineare. Adatta una linea retta (usando il metodo dei minimi quadrati) alle y_note e x_note della matrice. TENDENZA restituisce i valori y lungo tale riga per la matrice di Nuova_x specificata.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Insieme dei valori y già noti nella relazione y = mx + b. Se la matrice y_note è in una singola colonna, ogni colonna di x_note verrà interpretata come una variabile distinta. Se la matrice y_note è in una singola riga, ogni riga di x_note verrà interpretata come una variabile distinta.' }, + knownXs: { name: 'known_x\'s', detail: 'Insieme facoltativo di valori x che possono essere già noti dalla relazione y = mx + b La matrice x_note può comprendere uno o più insiemi di variabili. Se viene utilizzata una sola variabile, y_note e x_note potranno essere intervalli di forma qualsiasi, purché con dimensioni uguali. Se vengono utilizzate più variabili, y_note dovrà essere un vettore, ovvero un intervallo con altezza di una riga o larghezza di una colonna. Se x_note è omesso, verrà considerato uguale alla matrice {1;2;3;...} che ha le stesse dimensioni di y_note.' }, + newXs: { name: 'new_x\'s', detail: 'Nuovi valori x per i quali TENDENZA restituirà i valori y corrispondenti. Analogamente a X_nota, Nuova_x deve includere una colonna (o una riga) per ciascuna variabile indipendente. Di conseguenza, se Y_nota è in una singola colonna, X_nota e Nuova_x dovrebbero avere lo stesso numero di colonne. Se Y_nota è in una singola riga, X_nota e Nuova_x dovrebbero avere lo stesso numero di righe. Se Nuova_x è omesso, verrà considerato uguale a X_nota. Se entrambi X_nota e Nuova_x sono omessi, verranno considerati uguali alla matrice {1;2;3;...} che ha le stesse dimensioni di Y_nota.' }, + constb: { name: 'const', detail: 'Valore logico che specifica se la costante b deve essere uguale a 0. Se cost è VERO o è omesso, b verrà calcolata secondo la normale procedura. Se cost è FALSO, b verrà impostata a 0 e i valori m verranno corretti in modo che y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'Restituisce la media della parte interna di un set di dati. La funzione MEDIA.TRONCATA calcola la media ricavata dall\'esclusione di una percentuale di valori dalla coda superiore e dalla coda inferiore di un set di dati. È possibile utilizzare questa funzione quando si desidera escludere i dati esterni dall\'analisi.', + abstract: 'Restituisce la media della parte interna di un set di dati. La funzione MEDIA.TRONCATA calcola la media ricavata dall\'esclusione di una percentuale di valori dalla coda superiore e dalla coda inferiore di un set di dati. È possibile utilizzare questa funzione quando si desidera escludere i dati esterni dall\'analisi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di valori da troncare e di cui calcolare la media.' }, + percent: { name: 'percent', detail: 'Obbligatorio. Numero frazionario di coordinate da escludere dal calcolo. Se ad esempio percento = 0,2, verranno esclusi 4 punti da un set di dati di 20 punti (20 x 0,2), ovvero 2 punti dalla parte superiore e 2 dalla parte inferiore del set.' }, + }, + }, + VAR_P: { + description: 'Restituisce la varianza sulla base dell\'intera popolazione. Ignora i valori logici e il testo nella popolazione.', + abstract: 'Restituisce la varianza sulla base dell\'intera popolazione. Ignora i valori logici e il testo nella popolazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a una popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 2 a 254 argomenti numerici corrispondenti a una popolazione.' }, + }, + }, + VAR_S: { + description: 'Stima la varianza sulla base di un campione. Ignora i valori logici e il testo nel campione.', + abstract: 'Stima la varianza sulla base di un campione. Ignora i valori logici e il testo nel campione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obbligatorio. Primo argomento numerico corrispondente a un campione di popolazione.' }, + number2: { name: 'number2', detail: 'Opzionale. Da 2 a 254 argomenti numerici corrispondenti a un campione di popolazione.' }, + }, + }, + VARA: { + description: 'Stima la varianza sulla base di un campione.', + abstract: 'Stima la varianza sulla base di un campione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 argomenti di valori corrispondenti a un campione di popolazione.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 argomenti di valori corrispondenti a un campione di popolazione.' }, + }, + }, + VARPA: { + description: 'Restituisce la varianza sulla base dell\'intera popolazione.', + abstract: 'Restituisce la varianza sulla base dell\'intera popolazione.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 argomenti di valori corrispondenti a una popolazione.' }, + value2: { name: 'value2', detail: 'Val1 è obbligatorio, i valori successivi sono facoltativi. Da 1 a 255 argomenti di valori corrispondenti a una popolazione.' }, + }, + }, + WEIBULL_DIST: { + description: 'Restituisce la distribuzione di Weibull. Utilizzare questa distribuzione nelle analisi di affidabilità, come il calcolo della durata media di un dispositivo.', + abstract: 'Restituisce la distribuzione di Weibull. Utilizzare questa distribuzione nelle analisi di affidabilità, come il calcolo della durata media di un dispositivo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obbligatorio. Valore in cui calcolare la funzione.' }, + alpha: { name: 'alpha', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + beta: { name: 'beta', detail: 'Obbligatorio. Parametro per la distribuzione.' }, + cumulative: { name: 'cumulative', detail: 'Obbligatorio. Determina la forma assunta dalla funzione.' }, + }, + }, + Z_TEST: { + description: 'Per informazioni sulla modalità di utilizzo di TESTZ per il calcolo di un valore di probabilità a due code, vedere la sezione Osservazioni riportata di seguito.', + abstract: 'Per informazioni sulla modalità di utilizzo di TESTZ per il calcolo di un valore di probabilità a due code, vedere la sezione Osservazioni riportata di seguito.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obbligatorio. Matrice o intervallo di dati in base al quale verificare x' }, + x: { name: 'x', detail: 'Obbligatorio. Valore da verificare.' }, + sigma: { name: 'sigma', detail: 'Opzionale. Deviazione standard della popolazione (nota). Se questo argomento viene omesso, verrà utilizzata la deviazione standard campione.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/statistical/ja-JP.ts index 07b53a0ecc..74a0444a26 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/avedev-%E9%96%A2%E6%95%B0-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/ja-jp/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/average-%E9%96%A2%E6%95%B0-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/average-function', }, ], functionParameter: { @@ -46,19 +46,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: '指定した値と対応するウェイトに基づいて、一連の値の加重平均値を求めます。', - abstract: '指定した値と対応するウェイトに基づいて、一連の値の加重平均値を求めます。', + description: 'AVERAGE.WEIGHTED 関数は、値とそれぞれに対応するウェイトを使用して、一連の値の加重平均を求めます。', + abstract: 'AVERAGE.WEIGHTED 関数は、値とそれぞれに対応するウェイトを使用して、一連の値の加重平均を求めます。', links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/9084098?hl=ja&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=ja', }, ], functionParameter: { - values: { name: '値', detail: '平均化する値を指定します。' }, - weights: { name: 'ウェイト', detail: '適用するウェイトの対応するリストを指定します。' }, - additionalValues: { name: '追加の値', detail: '平均化する追加の値を指定します。' }, - additionalWeights: { name: '追加のウェイト', detail: '適用する追加のウェイトを指定します。' }, + values: { name: '値', detail: '平均化する値を指定します。 セルの範囲を参照することも、値を指定することもできます。' }, + weights: { name: 'ウェイト', detail: '適用するウェイトの対応するリストを指定します。 セルの範囲を参照することも、ウェイトを指定することもできます。 ウェイトには負の値を指定できませんが、ゼロは指定できます。 少なくとも 1 つのウェイトには正の値を指定してください。 セルの範囲を指定する場合、値の範囲と同じ数の行と列がセルの範囲に含まれている必要があります。' }, + additionalValues: { name: '追加の値', detail: '平均化する追加の値を指定します。 追加の値は省略可能です。' }, + additionalWeights: { name: '追加のウェイト', detail: '適用する追加のウェイトを指定します。 追加のウェイトは省略可能です。ただし、 追加の値 を指定する場合には、各値の後に 追加のウェイト をそれぞれ 1 つ指定するようにしてください。' }, }, }, AVERAGEA: { @@ -67,7 +67,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/averagea-%E9%96%A2%E6%95%B0-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/ja-jp/excel/functions/averagea-function', }, ], functionParameter: { @@ -81,7 +81,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/averageif-%E9%96%A2%E6%95%B0-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/ja-jp/excel/functions/averageif-function', }, ], functionParameter: { @@ -96,7 +96,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/averageifs-%E9%96%A2%E6%95%B0-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/ja-jp/excel/functions/averageifs-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/beta-dist-%E9%96%A2%E6%95%B0-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/ja-jp/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -131,7 +131,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/beta-inv-%E9%96%A2%E6%95%B0-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/binom-dist-%E9%96%A2%E6%95%B0-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -164,7 +164,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/binom-dist-range-%E9%96%A2%E6%95%B0-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/ja-jp/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -180,7 +180,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/binom-inv-%E9%96%A2%E6%95%B0-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -195,7 +195,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chisq-dist-%E9%96%A2%E6%95%B0-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -210,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chisq-dist-rt-%E9%96%A2%E6%95%B0-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chisq-inv-%E9%96%A2%E6%95%B0-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chisq-inv-rt-%E9%96%A2%E6%95%B0-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -252,7 +252,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/chisq-test-%E9%96%A2%E6%95%B0-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -266,7 +266,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/confidence-norm-%E9%96%A2%E6%95%B0-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -281,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/confidence-t-%E9%96%A2%E6%95%B0-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/ja-jp/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -296,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/correl-%E9%96%A2%E6%95%B0-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/ja-jp/excel/functions/correl-function', }, ], functionParameter: { @@ -310,7 +310,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/count-%E9%96%A2%E6%95%B0-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/count-function', }, ], functionParameter: { @@ -324,12 +324,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/counta-%E9%96%A2%E6%95%B0-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/ja-jp/excel/functions/counta-function', }, ], functionParameter: { - number1: { name: '数値 1', detail: '計算対象として含める値を表す 1 つ目の引数。' }, - number2: { name: '数値 2', detail: 'カウントする値を表す追加の引数 (最大 255 個の引数)。' }, + value1: { name: '値 1', detail: '平均を求める 1 つ目の数値、セル参照、またはセル範囲を指定します。' }, + value2: { name: '値 2', detail: '平均を求める追加の数値、セル参照、または範囲 (最大 255)。' }, }, }, COUNTBLANK: { @@ -338,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/countblank-%E9%96%A2%E6%95%B0-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/ja-jp/excel/functions/countblank-function', }, ], functionParameter: { @@ -351,7 +351,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/countif-%E9%96%A2%E6%95%B0-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/ja-jp/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -365,7 +365,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/countifs-%E9%96%A2%E6%95%B0-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/ja-jp/excel/functions/countifs-function', }, ], functionParameter: { @@ -381,7 +381,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/covariance-p-%E9%96%A2%E6%95%B0-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/ja-jp/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -395,7 +395,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/covariance-s-%E9%96%A2%E6%95%B0-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ja-jp/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -409,7 +409,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/devsq-%E9%96%A2%E6%95%B0-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/ja-jp/excel/functions/devsq-function', }, ], functionParameter: { @@ -423,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/expon-dist-%E9%96%A2%E6%95%B0-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -438,7 +438,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/f-dist-%E9%96%A2%E6%95%B0-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/f-dist-function', }, ], functionParameter: { @@ -454,7 +454,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/f-dist-rt-%E9%96%A2%E6%95%B0-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/ja-jp/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -469,7 +469,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/f-inv-%E9%96%A2%E6%95%B0-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/ja-jp/excel/functions/f-inv-function', }, ], functionParameter: { @@ -484,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/f-inv-rt-%E9%96%A2%E6%95%B0-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/ja-jp/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -499,7 +499,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/f-test-%E9%96%A2%E6%95%B0-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/f-test-function', }, ], functionParameter: { @@ -513,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fisher-%E9%96%A2%E6%95%B0-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fisher-function', }, ], functionParameter: { @@ -526,7 +526,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fisherinv-%E9%96%A2%E6%95%B0-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -539,7 +539,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -554,12 +554,16 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecasting-%E9%96%A2%E6%95%B0-%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目標日', detail: '値を予測する対象のデータ ポイントです。' }, + values: { name: '値', detail: '予測に使用する履歴値です。' }, + timeline: { name: 'タイムライン', detail: '一定の間隔を持つ数値の日付または時刻の独立した範囲または配列です。' }, + seasonality: { name: '季節性', detail: '省略可能。自動検出は 1、季節性なしは 0 を指定します。' }, + dataCompletion: { name: 'データ補完', detail: '省略可能。欠損点を補間する場合は 1、0 として扱う場合は 0 を指定します。' }, + aggregation: { name: '集計', detail: '省略可能。重複するタイムスタンプの集計方法を 1 から 7 で指定します。' }, }, }, FORECAST_ETS_CONFINT: { @@ -568,12 +572,17 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecasting-%E9%96%A2%E6%95%B0-%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目標日', detail: '値を予測する対象のデータ ポイントです。' }, + values: { name: '値', detail: '予測に使用する履歴値です。' }, + timeline: { name: 'タイムライン', detail: '一定の間隔を持つ数値の日付または時刻の独立した範囲または配列です。' }, + confidenceLevel: { name: '信頼水準', detail: '省略可能。0 から 1 の数値です。既定値は 0.95 です。' }, + seasonality: { name: '季節性', detail: '省略可能。自動検出は 1、季節性なしは 0 を指定します。' }, + dataCompletion: { name: 'データ補完', detail: '省略可能。欠損点を補間する場合は 1、0 として扱う場合は 0 を指定します。' }, + aggregation: { name: '集計', detail: '省略可能。重複するタイムスタンプの集計方法を 1 から 7 で指定します。' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -582,12 +591,14 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecasting-%E9%96%A2%E6%95%B0-%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '値', detail: '予測に使用する履歴値です。' }, + timeline: { name: 'タイムライン', detail: '一定の間隔を持つ数値の日付または時刻の独立した範囲または配列です。' }, + dataCompletion: { name: 'データ補完', detail: '省略可能。欠損点を補間する場合は 1、0 として扱う場合は 0 を指定します。' }, + aggregation: { name: '集計', detail: '省略可能。重複するタイムスタンプの集計方法を 1 から 7 で指定します。' }, }, }, FORECAST_ETS_STAT: { @@ -596,12 +607,16 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecasting-%E9%96%A2%E6%95%B0-%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '値', detail: '予測に使用する履歴値です。' }, + timeline: { name: 'タイムライン', detail: '一定の間隔を持つ数値の日付または時刻の独立した範囲または配列です。' }, + statisticType: { name: '統計の種類', detail: '返す予測統計を 1 から 8 で指定します。' }, + seasonality: { name: '季節性', detail: '省略可能。自動検出は 1、季節性なしは 0 を指定します。' }, + dataCompletion: { name: 'データ補完', detail: '省略可能。欠損点を補間する場合は 1、0 として扱う場合は 0 を指定します。' }, + aggregation: { name: '集計', detail: '省略可能。重複するタイムスタンプの集計方法を 1 から 7 で指定します。' }, }, }, FORECAST_LINEAR: { @@ -610,7 +625,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ja-jp/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -625,7 +640,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/frequency-%E9%96%A2%E6%95%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/frequency-function', }, ], functionParameter: { @@ -639,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gamma-%E9%96%A2%E6%95%B0-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gamma-function', }, ], functionParameter: { @@ -652,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gamma-dist-%E9%96%A2%E6%95%B0-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -668,7 +683,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gamma-inv-%E9%96%A2%E6%95%B0-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -683,7 +698,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gammaln-%E9%96%A2%E6%95%B0-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gammaln-function', }, ], functionParameter: { @@ -696,7 +711,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gammaln-precise-%E9%96%A2%E6%95%B0-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -709,7 +724,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/gauss-%E9%96%A2%E6%95%B0-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/ja-jp/excel/functions/gauss-function', }, ], functionParameter: { @@ -722,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/geomean-%E9%96%A2%E6%95%B0-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/geomean-function', }, ], functionParameter: { @@ -736,7 +751,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/growth-%E9%96%A2%E6%95%B0-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/growth-function', }, ], functionParameter: { @@ -752,7 +767,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/harmean-%E9%96%A2%E6%95%B0-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/harmean-function', }, ], functionParameter: { @@ -766,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/hypgeom-dist-%E9%96%A2%E6%95%B0-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/ja-jp/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -783,7 +798,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/intercept-%E9%96%A2%E6%95%B0-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/ja-jp/excel/functions/intercept-function', }, ], functionParameter: { @@ -797,7 +812,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/kurt-%E9%96%A2%E6%95%B0-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/ja-jp/excel/functions/kurt-function', }, ], functionParameter: { @@ -811,7 +826,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/large-%E9%96%A2%E6%95%B0-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/ja-jp/excel/functions/large-function', }, ], functionParameter: { @@ -825,7 +840,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/linest-%E9%96%A2%E6%95%B0-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/linest-function', }, ], functionParameter: { @@ -841,7 +856,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/logest-%E9%96%A2%E6%95%B0-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/logest-function', }, ], functionParameter: { @@ -857,7 +872,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lognorm-dist-%E9%96%A2%E6%95%B0-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -873,7 +888,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lognorm-inv-%E9%96%A2%E6%95%B0-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -888,11 +903,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/12487850?hl=ja&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=ja', }, ], functionParameter: { - range: { name: '範囲', detail: '許容誤差の計算に使用される値の範囲。' }, + range: { name: '範囲', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, confidence: { name: '信頼レベル', detail: '0 ~ 1 の信頼レベル。' }, }, }, @@ -902,7 +917,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/max-%E9%96%A2%E6%95%B0-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/ja-jp/excel/functions/max-function', }, ], functionParameter: { @@ -922,7 +937,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/maxa-%E9%96%A2%E6%95%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/maxa-function', }, ], functionParameter: { @@ -936,7 +951,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/maxifs-%E9%96%A2%E6%95%B0-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/ja-jp/excel/functions/maxifs-function', }, ], functionParameter: { @@ -953,7 +968,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/median-%E9%96%A2%E6%95%B0-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/median-function', }, ], functionParameter: { @@ -967,7 +982,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/min-%E9%96%A2%E6%95%B0-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/ja-jp/excel/functions/min-function', }, ], functionParameter: { @@ -981,7 +996,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mina-%E9%96%A2%E6%95%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mina-function', }, ], functionParameter: { @@ -995,7 +1010,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/minifs-%E9%96%A2%E6%95%B0-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/ja-jp/excel/functions/minifs-function', }, ], functionParameter: { @@ -1012,7 +1027,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mode-mult-%E9%96%A2%E6%95%B0-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1026,7 +1041,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mode-sngl-%E9%96%A2%E6%95%B0-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1040,7 +1055,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/negbinom-dist-%E9%96%A2%E6%95%B0-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/ja-jp/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1056,7 +1071,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/norm-dist-%E9%96%A2%E6%95%B0-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1072,7 +1087,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/norm-inv-%E9%96%A2%E6%95%B0-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/ja-jp/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1087,7 +1102,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/norm-s-dist-%E9%96%A2%E6%95%B0-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/ja-jp/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1101,7 +1116,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/norm-s-inv-%E9%96%A2%E6%95%B0-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1114,7 +1129,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/pearson-%E9%96%A2%E6%95%B0-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/ja-jp/excel/functions/pearson-function', }, ], functionParameter: { @@ -1128,7 +1143,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentile-exc-%E9%96%A2%E6%95%B0-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1142,7 +1157,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentile-inc-%E9%96%A2%E6%95%B0-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1156,7 +1171,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentrank-exc-%E9%96%A2%E6%95%B0-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1171,7 +1186,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/percentrank-inc-%E9%96%A2%E6%95%B0-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1186,7 +1201,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/permut-%E9%96%A2%E6%95%B0-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/permut-function', }, ], functionParameter: { @@ -1200,7 +1215,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/permutationa-%E9%96%A2%E6%95%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1214,7 +1229,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/phi-%E9%96%A2%E6%95%B0-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/phi-function', }, ], functionParameter: { @@ -1227,7 +1242,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/poisson-dist-%E9%96%A2%E6%95%B0-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/ja-jp/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1242,7 +1257,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/prob-%E9%96%A2%E6%95%B0-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/ja-jp/excel/functions/prob-function', }, ], functionParameter: { @@ -1258,7 +1273,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/quartile-exc-%E9%96%A2%E6%95%B0-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/ja-jp/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1272,7 +1287,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/quartile-inc-%E9%96%A2%E6%95%B0-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1286,7 +1301,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rank-avg-%E9%96%A2%E6%95%B0-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1301,7 +1316,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rank-eq-%E9%96%A2%E6%95%B0-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1316,12 +1331,12 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rsq-%E9%96%A2%E6%95%B0-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: '配列 1', detail: '複数の従属変数の値が入力されているセル範囲または配列を指定します。' }, - array2: { name: '配列 2', detail: '複数の独立変数の値が入力されているセル範囲または配列を指定します。' }, + knownYs: { name: '既知の y', detail: '既知の従属変数の値が入力されているセル範囲または配列を指定します。' }, + knownXs: { name: '既知の x', detail: '既知の独立変数の値が入力されているセル範囲または配列を指定します。' }, }, }, SKEW: { @@ -1330,7 +1345,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/skew-%E9%96%A2%E6%95%B0-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/ja-jp/excel/functions/skew-function', }, ], functionParameter: { @@ -1344,7 +1359,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/skew-p-%E9%96%A2%E6%95%B0-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1358,7 +1373,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/slope-%E9%96%A2%E6%95%B0-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/slope-function', }, ], functionParameter: { @@ -1372,7 +1387,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/small-%E9%96%A2%E6%95%B0-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/ja-jp/excel/functions/small-function', }, ], functionParameter: { @@ -1386,7 +1401,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/standardize-%E9%96%A2%E6%95%B0-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/ja-jp/excel/functions/standardize-function', }, ], functionParameter: { @@ -1401,7 +1416,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdev-p-%E9%96%A2%E6%95%B0-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1415,7 +1430,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdev-s-%E9%96%A2%E6%95%B0-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1429,7 +1444,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdeva-%E9%96%A2%E6%95%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1443,7 +1458,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/stdevpa-%E9%96%A2%E6%95%B0-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1457,7 +1472,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/steyx-%E9%96%A2%E6%95%B0-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/ja-jp/excel/functions/steyx-function', }, ], functionParameter: { @@ -1471,7 +1486,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-dist-%E9%96%A2%E6%95%B0-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1486,7 +1501,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-dist-2t-%E9%96%A2%E6%95%B0-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1500,7 +1515,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-dist-rt-%E9%96%A2%E6%95%B0-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1514,7 +1529,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-inv-%E9%96%A2%E6%95%B0-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1528,7 +1543,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-inv-2t-%E9%96%A2%E6%95%B0-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1542,7 +1557,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-test-%E9%96%A2%E6%95%B0-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-test-function', }, ], functionParameter: { @@ -1558,7 +1573,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/trend-%E9%96%A2%E6%95%B0-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/ja-jp/excel/functions/trend-function', }, ], functionParameter: { @@ -1574,7 +1589,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/trimmean-%E9%96%A2%E6%95%B0-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/ja-jp/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1588,7 +1603,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/var-p-%E9%96%A2%E6%95%B0-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/var-p-function', }, ], functionParameter: { @@ -1602,7 +1617,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/var-s-%E9%96%A2%E6%95%B0-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/var-s-function', }, ], functionParameter: { @@ -1616,7 +1631,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/vara-%E9%96%A2%E6%95%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/ja-jp/excel/functions/vara-function', }, ], functionParameter: { @@ -1630,7 +1645,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/varpa-%E9%96%A2%E6%95%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/ja-jp/excel/functions/varpa-function', }, ], functionParameter: { @@ -1644,7 +1659,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/weibull-dist-%E9%96%A2%E6%95%B0-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/ja-jp/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1660,7 +1675,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/z-test-%E9%96%A2%E6%95%B0-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/ja-jp/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/statistical/ko-KR.ts index c06bf594e0..71967f90c1 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/avedev-함수-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/ko-kr/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/average-함수-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/average-function', }, ], functionParameter: { @@ -46,19 +46,19 @@ const locale: typeof enUS = { }, }, 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.', + description: 'AVERAGE.WEIGHTED 함수는 값과 각 값에 해당하는 가중치를 사용하여 값 집합의 가중 평균을 계산합니다.', + abstract: 'AVERAGE.WEIGHTED 함수는 값과 각 값에 해당하는 가중치를 사용하여 값 집합의 가중 평균을 계산합니다.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=ko', }, ], functionParameter: { - values: { name: 'values', detail: '要计算平均数的值。' }, - weights: { name: 'weights', detail: '要应用的相应权重列表。' }, - additionalValues: { name: 'additional_values', detail: '要计算平均数的其他值。' }, - additionalWeights: { name: 'additional_weights', detail: '要应用的其他权重。' }, + values: { name: 'values', detail: '평균을 계산할 값입니다. 셀 범위를 참조하거나 값 자체를 포함할 수 있습니다.' }, + weights: { name: 'weights', detail: '적용할 가중치 목록입니다. 셀 범위를 참조하거나 가중치를 포함할 수 있습니다. 가중치는 0일 수는 있지만 음수일 수는 없습니다. 가중치 중 적어도 하나는 양수여야 합니다. 셀 범위를 사용하는 경우, 해당 범위 내 행과 열의 수는 값 범위 내 행과 열의 수와 동일해야 합니다.' }, + additionalValues: { name: 'additional_values', detail: '평균을 계산할 추가 값입니다. 추가 값은 선택사항입니다.' }, + additionalWeights: { name: 'additional_weights', detail: '적용할 추가 가중치입니다. 추가 가중치는 선택사항이지만 각 추가_값 뒤에는 한 개의 추가_가중치 가 있어야 합니다.' }, }, }, AVERAGEA: { @@ -67,7 +67,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/averagea-함수-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/ko-kr/excel/functions/averagea-function', }, ], functionParameter: { @@ -81,7 +81,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/averageif-함수-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/ko-kr/excel/functions/averageif-function', }, ], functionParameter: { @@ -96,7 +96,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/averageifs-함수-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/ko-kr/excel/functions/averageifs-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/beta-dist-함수-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/ko-kr/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -131,7 +131,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/beta-inv-함수-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/binom-dist-함수-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -164,7 +164,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/binom-dist-range-함수-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/ko-kr/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -180,7 +180,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/binom-inv-함수-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -195,7 +195,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chisq-dist-함수-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -210,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chisq-dist-rt-함수-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chisq-inv-함수-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chisq-inv-rt-함수-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -252,7 +252,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/chisq-test-함수-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -266,7 +266,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/confidence-norm-함수-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -281,7 +281,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/confidence-t-함수-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/ko-kr/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -296,7 +296,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/correl-함수-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/ko-kr/excel/functions/correl-function', }, ], functionParameter: { @@ -310,7 +310,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/count-함수-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/count-function', }, ], functionParameter: { @@ -324,18 +324,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/counta-함수-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/ko-kr/excel/functions/counta-function', }, ], functionParameter: { - number1: { - name: 'value1', - detail: '개수를 구하려는 첫 번째 인수입니다.', - }, - number2: { - name: 'value2', - detail: '개수를 구하려는 추가 인수로 최대 255개입니다.', - }, + value1: { name: 'value1', detail: '평균을 구하려는 첫 번째 인수입니다.' }, + value2: { name: 'value2', detail: '평균을 구하려는 2에서 255개의 추가 인수입니다.' }, }, }, COUNTBLANK: { @@ -344,7 +338,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/countblank-함수-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/ko-kr/excel/functions/countblank-function', }, ], functionParameter: { @@ -357,7 +351,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/countif-함수-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/ko-kr/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -371,7 +365,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/countifs-함수-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/ko-kr/excel/functions/countifs-function', }, ], functionParameter: { @@ -387,7 +381,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/covariance-p-함수-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/ko-kr/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -401,7 +395,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/covariance-s-함수-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ko-kr/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -415,7 +409,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/devsq-함수-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/ko-kr/excel/functions/devsq-function', }, ], functionParameter: { @@ -429,7 +423,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/expon-dist-함수-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -444,7 +438,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/f-dist-함수-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/f-dist-function', }, ], functionParameter: { @@ -460,7 +454,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/f-dist-rt-함수-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/ko-kr/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -475,7 +469,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/f-inv-함수-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/f-inv-function', }, ], functionParameter: { @@ -490,7 +484,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/f-inv-rt-함수-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/ko-kr/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -505,7 +499,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/f-test-함수-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/f-test-function', }, ], functionParameter: { @@ -519,7 +513,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fisher-함수-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fisher-function', }, ], functionParameter: { @@ -532,7 +526,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fisherinv-함수-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -545,7 +539,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/forecast-및-forecast-linear-함수-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -555,59 +549,74 @@ const locale: typeof enUS = { }, }, 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', + description: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', + abstract: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '대상 날짜', detail: '값을 예측할 데이터 요소입니다.' }, + values: { name: '값', detail: '예측에 사용하는 기록 값입니다.' }, + timeline: { name: '시간 표시 막대', detail: '일정한 간격의 숫자 날짜 또는 시간으로 구성된 독립 범위나 배열입니다.' }, + seasonality: { name: '계절성', detail: '선택 사항입니다. 자동 검색은 1, 계절성 없음은 0입니다.' }, + dataCompletion: { name: '데이터 완성', detail: '선택 사항입니다. 누락 지점을 보간하려면 1, 0으로 처리하려면 0을 사용합니다.' }, + aggregation: { name: '집계', detail: '선택 사항입니다. 중복 타임스탬프 집계 방법을 1에서 7로 지정합니다.' }, }, }, 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', + description: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', + abstract: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '대상 날짜', detail: '값을 예측할 데이터 요소입니다.' }, + values: { name: '값', detail: '예측에 사용하는 기록 값입니다.' }, + timeline: { name: '시간 표시 막대', detail: '일정한 간격의 숫자 날짜 또는 시간으로 구성된 독립 범위나 배열입니다.' }, + confidenceLevel: { name: '신뢰 수준', detail: '선택 사항입니다. 0과 1 사이의 숫자이며 기본값은 0.95입니다.' }, + seasonality: { name: '계절성', detail: '선택 사항입니다. 자동 검색은 1, 계절성 없음은 0입니다.' }, + dataCompletion: { name: '데이터 완성', detail: '선택 사항입니다. 누락 지점을 보간하려면 1, 0으로 처리하려면 0을 사용합니다.' }, + aggregation: { name: '집계', detail: '선택 사항입니다. 중복 타임스탬프 집계 방법을 1에서 7로 지정합니다.' }, }, }, 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', + description: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', + abstract: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '값', detail: '예측에 사용하는 기록 값입니다.' }, + timeline: { name: '시간 표시 막대', detail: '일정한 간격의 숫자 날짜 또는 시간으로 구성된 독립 범위나 배열입니다.' }, + dataCompletion: { name: '데이터 완성', detail: '선택 사항입니다. 누락 지점을 보간하려면 1, 0으로 처리하려면 0을 사용합니다.' }, + aggregation: { name: '집계', detail: '선택 사항입니다. 중복 타임스탬프 집계 방법을 1에서 7로 지정합니다.' }, }, }, 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', + description: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', + abstract: '언제든지 Excel Tech Community 의 전문가에게 문의하거나 커뮤니티에서 지원을 받을 수 있습니다 .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '값', detail: '예측에 사용하는 기록 값입니다.' }, + timeline: { name: '시간 표시 막대', detail: '일정한 간격의 숫자 날짜 또는 시간으로 구성된 독립 범위나 배열입니다.' }, + statisticType: { name: '통계 유형', detail: '반환할 예측 통계를 1에서 8로 지정합니다.' }, + seasonality: { name: '계절성', detail: '선택 사항입니다. 자동 검색은 1, 계절성 없음은 0입니다.' }, + dataCompletion: { name: '데이터 완성', detail: '선택 사항입니다. 누락 지점을 보간하려면 1, 0으로 처리하려면 0을 사용합니다.' }, + aggregation: { name: '집계', detail: '선택 사항입니다. 중복 타임스탬프 집계 방법을 1에서 7로 지정합니다.' }, }, }, FORECAST_LINEAR: { @@ -616,7 +625,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/forecast-및-forecast-linear-함수-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ko-kr/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -631,7 +640,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/frequency-함수-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/frequency-function', }, ], functionParameter: { @@ -645,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gamma-함수-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gamma-function', }, ], functionParameter: { @@ -658,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gamma-dist-함수-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -674,7 +683,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gamma-inv-함수-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -689,7 +698,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gammaln-함수-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gammaln-function', }, ], functionParameter: { @@ -702,7 +711,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gammaln-precise-함수-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -715,7 +724,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/gauss-함수-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/ko-kr/excel/functions/gauss-function', }, ], functionParameter: { @@ -728,7 +737,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/geomean-함수-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/geomean-function', }, ], functionParameter: { @@ -742,7 +751,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/growth-함수-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/growth-function', }, ], functionParameter: { @@ -758,7 +767,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/harmean-함수-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/harmean-function', }, ], functionParameter: { @@ -772,7 +781,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/hypgeom-dist-함수-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/ko-kr/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -789,7 +798,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/intercept-함수-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/ko-kr/excel/functions/intercept-function', }, ], functionParameter: { @@ -803,7 +812,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/kurt-함수-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/ko-kr/excel/functions/kurt-function', }, ], functionParameter: { @@ -817,7 +826,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/large-함수-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/ko-kr/excel/functions/large-function', }, ], functionParameter: { @@ -831,7 +840,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/linest-함수-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/linest-function', }, ], functionParameter: { @@ -847,7 +856,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/logest-함수-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/logest-function', }, ], functionParameter: { @@ -863,7 +872,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lognorm-dist-함수-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -879,7 +888,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lognorm-inv-함수-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -889,16 +898,16 @@ const locale: typeof enUS = { }, }, 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.', + description: '이 함수는 값 범위와 신뢰 수준에서 오차 범위를 계산합니다.', + abstract: '이 함수는 값 범위와 신뢰 수준에서 오차 범위를 계산합니다.', links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=ko', }, ], functionParameter: { - range: { name: 'range', detail: 'The range of values used to calculate the margin of error.' }, + range: { name: 'range', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, confidence: { name: 'confidence', detail: 'The desired confidence level between (0, 1).' }, }, }, @@ -908,7 +917,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/max-함수-e0012258-dde4-4e73-a28e-0ec0df6d3071', + url: 'https://support.microsoft.com/ko-kr/excel/functions/max-function', }, ], functionParameter: { @@ -922,7 +931,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/maxa-함수-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/maxa-function', }, ], functionParameter: { @@ -936,7 +945,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/maxifs-함수-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/ko-kr/excel/functions/maxifs-function', }, ], functionParameter: { @@ -953,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/median-함수-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/median-function', }, ], functionParameter: { @@ -967,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/min-함수-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/ko-kr/excel/functions/min-function', }, ], functionParameter: { @@ -981,7 +990,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mina-함수-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mina-function', }, ], functionParameter: { @@ -995,7 +1004,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/minifs-함수-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/ko-kr/excel/functions/minifs-function', }, ], functionParameter: { @@ -1012,7 +1021,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mode-mult-함수-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1026,7 +1035,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mode-sngl-함수-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1040,7 +1049,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/negbinom-dist-함수-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/ko-kr/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1056,7 +1065,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/norm-dist-함수-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1072,7 +1081,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/norm-inv-함수-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/ko-kr/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1087,7 +1096,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/norm-s-dist-함수-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/ko-kr/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1101,7 +1110,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/norm-s-inv-함수-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1114,7 +1123,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/pearson-함수-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/ko-kr/excel/functions/pearson-function', }, ], functionParameter: { @@ -1128,7 +1137,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentile-exc-함수-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1142,7 +1151,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentile-inc-함수-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1156,7 +1165,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentrank-exc-함수-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1171,7 +1180,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/percentrank-inc-함수-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1186,7 +1195,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/permut-함수-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/permut-function', }, ], functionParameter: { @@ -1200,7 +1209,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/permutationa-함수-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1214,7 +1223,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/phi-함수-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/phi-function', }, ], functionParameter: { @@ -1227,7 +1236,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/poisson-dist-함수-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1242,7 +1251,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/prob-함수-9ac30561-c81c-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/prob-function', }, ], functionParameter: { @@ -1258,7 +1267,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/quartile-exc-함수-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/ko-kr/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1272,7 +1281,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/quartile-inc-함수-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1286,7 +1295,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rank-avg-함수-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1301,7 +1310,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rank-eq-함수-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1316,12 +1325,12 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rsq-함수-d7161715-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'array1', detail: 'The dependent array or range of data.' }, - array2: { name: 'array2', detail: 'The independent array or range of data.' }, + knownYs: { name: 'known_ys', detail: '종속 데이터 요소의 배열이나 셀 범위입니다.' }, + knownXs: { name: 'known_xs', detail: '독립 데이터 요소의 집합입니다.' }, }, }, SKEW: { @@ -1330,7 +1339,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/skew-함수-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/ko-kr/excel/functions/skew-function', }, ], functionParameter: { @@ -1344,7 +1353,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/skew-p-함수-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1358,7 +1367,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/slope-함수-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/slope-function', }, ], functionParameter: { @@ -1372,7 +1381,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/small-함수-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/ko-kr/excel/functions/small-function', }, ], functionParameter: { @@ -1386,7 +1395,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/standardize-함수-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/ko-kr/excel/functions/standardize-function', }, ], functionParameter: { @@ -1401,7 +1410,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdev-p-함수-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1415,7 +1424,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdev-s-함수-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1429,7 +1438,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdeva-함수-5ff38888-7ea5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1443,7 +1452,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/stdevpa-함수-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1457,7 +1466,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/steyx-함수-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/ko-kr/excel/functions/steyx-function', }, ], functionParameter: { @@ -1471,7 +1480,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-dist-함수-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1486,7 +1495,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-dist-2t-함수-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1500,7 +1509,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-dist-rt-함수-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1514,7 +1523,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-inv-함수-2908272b-4e61-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1528,7 +1537,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-inv-2t-함수-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1542,14 +1551,14 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-test-함수-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-test-function', }, ], functionParameter: { array1: { name: 'array1', detail: '데이터의 첫 번째 집합입니다.' }, array2: { name: 'array2', detail: '데이터의 두 번째 집합입니다.' }, - 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.' }, + tails: { name: 'tails', detail: '분포의 꼬리 수를 지정합니다. tails가 1이면 T.TEST는 단측 분포를 사용하고, 2이면 양측 분포를 사용합니다.' }, + type: { name: 'type', detail: '수행할 t-검정의 유형입니다.' }, }, }, TREND: { @@ -1558,7 +1567,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/trend-함수-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/ko-kr/excel/functions/trend-function', }, ], functionParameter: { @@ -1574,7 +1583,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/trimmean-함수-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/ko-kr/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1588,7 +1597,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/var-p-함수-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/var-p-function', }, ], functionParameter: { @@ -1602,7 +1611,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/var-s-함수-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ko-kr/excel/functions/var-s-function', }, ], functionParameter: { @@ -1616,7 +1625,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/vara-함수-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/ko-kr/excel/functions/vara-function', }, ], functionParameter: { @@ -1630,7 +1639,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/varpa-함수-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/ko-kr/excel/functions/varpa-function', }, ], functionParameter: { @@ -1644,7 +1653,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/weibull-dist-함수-4e783c39-9325-49be-b6af-172e570f8599', + url: 'https://support.microsoft.com/ko-kr/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1660,7 +1669,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/z-test-함수-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/ko-kr/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/statistical/pl-PL.ts new file mode 100644 index 0000000000..7bb1213065 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/pl-PL.ts @@ -0,0 +1,1683 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'Zwraca wartość średnią odchyleń bezwzględnych punktów danych od ich wartości średniej. Funkcja ODCH.ŚREDNIE jest miarą zmienności zbioru danych.', + abstract: 'Zwraca wartość średnią odchyleń bezwzględnych punktów danych od ich wartości średniej. Funkcja ODCH.ŚREDNIE jest miarą zmienności zbioru danych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć średnią odchyleń bezwzględnych. Zamiast argumentów rozdzielonych średnikami można zastosować pojedynczą tablicę lub odwołanie do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć średnią odchyleń bezwzględnych. Zamiast argumentów rozdzielonych średnikami można zastosować pojedynczą tablicę lub odwołanie do tablicy.' }, + }, + }, + AVERAGE: { + description: 'Zwraca średnią (średnią arytmetyczną) argumentów. Jeśli na przykład zakres A1:A20 zawiera liczby, formuła =ŚREDNIA(A1:A20) zwraca średnią tych liczb.', + abstract: 'Zwraca średnią (średnią arytmetyczną) argumentów. Jeśli na przykład zakres A1:A20 zawiera liczby, formuła =ŚREDNIA(A1:A20) zwraca średnią tych liczb.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwsza liczba, odwołanie do komórki lub zakres, dla którego należy obliczyć średnią.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Dodatkowe liczby, odwołania do komórek lub zakresy (maksymalnie 255), dla których ma zostać wyznaczona średnia.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'Funkcja AVERAGE.WEIGHTED oblicza średnią ważoną zestawu wartości na podstawie tych wartości i odpowiadających im wag.', + abstract: 'Funkcja AVERAGE.WEIGHTED oblicza średnią ważoną zestawu wartości na podstawie tych wartości i odpowiadających im wag.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=pl', + }, + ], + functionParameter: { + values: { name: 'wartości', detail: 'Wartości, dla których ma zostać obliczona średnia. Może to być zakres komórek lub same wartości.' }, + weights: { name: 'wagi', detail: 'Lista odpowiadających im wag. Wagi mogą być równe zero, ale nie mogą być ujemne; co najmniej jedna musi być dodatnia. Zakres wag musi mieć tyle samo wierszy i kolumn co zakres wartości.' }, + additionalValues: { name: 'dodatkowe_wartości', detail: 'Opcjonalne dodatkowe wartości uwzględniane w średniej.' }, + additionalWeights: { name: 'dodatkowe_wagi', detail: 'Opcjonalne dodatkowe wagi. Po każdej dodatkowej_wartości musi wystąpić dokładnie jedna dodatkowa_waga.' }, + }, + }, + AVERAGEA: { + description: 'Oblicza wartość średnią (średnią arytmetyczną) argumentów z listy.', + abstract: 'Oblicza wartość średnią (średnią arytmetyczną) argumentów z listy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 komórek, zakresów komórek lub wartości, dla których należy wyznaczyć średnią.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 komórek, zakresów komórek lub wartości, dla których należy wyznaczyć średnią.' }, + }, + }, + AVERAGEIF: { + description: 'Zwraca średnią (średnią arytmetyczną) wszystkich komórek z zakresu, które spełniają podane kryteria.', + abstract: 'Zwraca średnią (średnią arytmetyczną) wszystkich komórek z zakresu, które spełniają podane kryteria.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Wymagane. Jedna lub więcej komórek, które mają zostać uśrednione, włączając w to liczby lub nazwy, a także tablice lub odwołania zawierające liczby.' }, + criteria: { name: 'criteria', detail: 'Wymagane. Kryteria w postaci liczby, wyrażenia, odwołania do komórki lub tekstu, określające komórki, dla których zostanie obliczona średnia. Kryteria można wyrazić na przykład jako 32, "32", ">32", "jabłka" lub B4.' }, + averageRange: { name: 'average_range', detail: 'Opcjonalne. Rzeczywisty zestaw komórek, dla których zostanie obliczona średnia. W przypadku pominięcia tego argumentu zostanie użyty parametr zakres.' }, + }, + }, + AVERAGEIFS: { + description: 'Zwraca średnią (średnią arytmetyczną) wszystkich komórek, które spełniają jedno lub więcej kryteriów.', + abstract: 'Zwraca średnią (średnią arytmetyczną) wszystkich komórek, które spełniają jedno lub więcej kryteriów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Wymagane. Jedna lub więcej komórek, które mają zostać uśrednione, włączając w to liczby lub nazwy, a także tablice lub odwołania zawierające liczby.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Argument kryteria_zakres1 jest wymagany, kolejne argumenty kryteria_zakres są opcjonalne. Są to zakresy (od 1 do 127), w których zostaną sprawdzone skojarzone kryteria.' }, + criteria1: { name: 'criteria1', detail: 'Argument kryteria1 jest wymagany, pozostałe są opcjonalne. Są to kryteria (od 1 do 127) w postaci liczby, wyrażenia, odwołania do komórki lub tekstu określające komórki, które mają zostać uśrednione. Kryteria można wyrazić na przykład jako 32, "32", ">32", "jabłka" lub B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Argument kryteria_zakres1 jest wymagany, kolejne argumenty kryteria_zakres są opcjonalne. Są to zakresy (od 1 do 127), w których zostaną sprawdzone skojarzone kryteria.' }, + criteria2: { name: 'criteria2', detail: 'Argument kryteria1 jest wymagany, pozostałe są opcjonalne. Są to kryteria (od 1 do 127) w postaci liczby, wyrażenia, odwołania do komórki lub tekstu określające komórki, które mają zostać uśrednione. Kryteria można wyrazić na przykład jako 32, "32", ">32", "jabłka" lub B4.' }, + }, + }, + BETA_DIST: { + description: 'Rozkładu beta używa się zazwyczaj w badaniu zmian zawartości procentowych w próbkach, na przykład części doby spędzanej przez ludzi na oglądaniu telewizji.', + abstract: 'Rozkładu beta używa się zazwyczaj w badaniu zmian zawartości procentowych w próbkach, na przykład części doby spędzanej przez ludzi na oglądaniu telewizji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość między A a B, dla której określa się funkcję.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁ.BETA zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + A: { name: 'A', detail: 'opcjonalny. Dolne ograniczenie interwału wartości x.' }, + B: { name: 'B', detail: 'Argument opcjonalny. Górne ograniczenie interwału wartości x.' }, + }, + }, + BETA_INV: { + description: 'Jeśli prawdopodobieństwo = ROZKŁ.BETA(x;...PRAWDA), wówczas ROZKŁ.BETA.ODWR(prawdopodobieństwo;...) = x. Rozkład beta może być używany w planowaniu projektów do modelowania możliwych czasów ukończenia przy danym oczekiwanym czasie ukończenia i jego zmienności.', + abstract: 'Jeśli prawdopodobieństwo = ROZKŁ.BETA(x;...PRAWDA), wówczas ROZKŁ.BETA.ODWR(prawdopodobieństwo;...) = x. Rozkład beta może być używany w planowaniu projektów do modelowania możliwych czasów ukończenia przy danym oczekiwanym czasie ukończenia i jego zmienności.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem beta.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu.' }, + A: { name: 'A', detail: 'opcjonalny. Dolne ograniczenie interwału wartości x.' }, + B: { name: 'B', detail: 'Argument opcjonalny. Górne ograniczenie interwału wartości x.' }, + }, + }, + BINOM_DIST: { + description: 'Zwraca wartość pojedynczego składnika dwumianowego rozkładu prawdopodobieństwa. Funkcję ROZKŁ.DWUM należy stosować do rozwiązywania problemów, w których występuje stała liczba testów lub prób, wynik każdej próby może być tylko sukcesem lub porażką, próby są niezależne, a prawdopodobieństwo sukcesu jest stałe w trakcie eksperymentu. Na przykład za pomocą funkcji ROZKŁ.DWUM można obliczyć prawdopodobieństwo, że z trojga następnych nowo narodzonych dzieci dwoje będzie płci męskiej.', + abstract: 'Zwraca wartość pojedynczego składnika dwumianowego rozkładu prawdopodobieństwa. Funkcję ROZKŁ.DWUM należy stosować do rozwiązywania problemów, w których występuje stała liczba testów lub prób, wynik każdej próby może być tylko sukcesem lub porażką, próby są niezależne, a prawdopodobieństwo sukcesu jest stałe w trakcie eksperymentu. Na przykład za pomocą funkcji ROZKŁ.DWUM można obliczyć prawdopodobieństwo, że z trojga następnych nowo narodzonych dzieci dwoje będzie płci męskiej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Wymagane. Liczba sukcesów w próbach.' }, + trials: { name: 'trials', detail: 'Wymagane. Liczba niezależnych prób.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu w każdej próbie.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli argument „skumulowany” ma wartość PRAWDA, funkcja ROZKŁ.DWUM zwraca funkcję rozkładu skumulowanego, czyli prawdopodobieństwo, że zachodzi co najwyżej liczba_s sukcesów; jeśli FAŁSZ, zwraca funkcję masy prawdopodobieństwa, czyli prawdopodobieństwo, że zajdzie liczba_s sukcesów.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Zwraca prawdopodobieństwo wyniku próby na podstawie rozkładu dwumianowego.', + abstract: 'Zwraca prawdopodobieństwo wyniku próby na podstawie rozkładu dwumianowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Wymagane. Liczba niezależnych prób. Musi być większy lub równy 0.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu w pojedynczej próbie. Musi być większy lub równy 0 oraz mniejszy lub równy 1.' }, + numberS: { name: 'number_s', detail: 'Wymagane. Liczba sukcesów w próbach. Musi być większy lub równy 0 oraz mniejszy lub równy liczbie prób.' }, + numberS2: { name: 'number_s2', detail: 'Opcjonalne. Jeżeli zostanie podany, funkcja zwraca prawdopodobieństwo liczby udanych prób wypadających pomiędzy argumentem Liczba_s i Liczba_s2. Musi być większy lub równy Liczba_s oraz mniejszy lub równy liczbie prób.' }, + }, + }, + BINOM_INV: { + description: 'Zwraca najmniejszą wartość, dla której skumulowany rozkład dwumianowy jest większy lub równy wartości kryterium.', + abstract: 'Zwraca najmniejszą wartość, dla której skumulowany rozkład dwumianowy jest większy lub równy wartości kryterium.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Wymagane. Liczba prób Bernoulliego.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu w każdej próbie.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Wartość kryterium.' }, + }, + }, + CHISQ_DIST: { + description: 'Zwraca rozkład chi-kwadrat.', + abstract: 'Zwraca rozkład chi-kwadrat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, przy której ma być szacowany rozkład.' }, + degFreedom: { name: 'deg_freedom', detail: 'Wymagane. Liczba stopni swobody.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁ.CHI zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'Rozkład χ2 jest skojarzony z testem χ2. Test χ2 służy do porównywania wartości obserwowanych i przewidywanych. Na przykład eksperyment genetyczny może mieć hipotezę, że następne pokolenie roślin będzie w określonym zestawie kolorów. Przez porównanie wyników obserwowanych z wynikami oczekiwanymi można określić prawidłowość hipotezy.', + abstract: 'Rozkład χ2 jest skojarzony z testem χ2. Test χ2 służy do porównywania wartości obserwowanych i przewidywanych. Na przykład eksperyment genetyczny może mieć hipotezę, że następne pokolenie roślin będzie w określonym zestawie kolorów. Przez porównanie wyników obserwowanych z wynikami oczekiwanymi można określić prawidłowość hipotezy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, przy której ma być szacowany rozkład.' }, + degFreedom: { name: 'deg_freedom', detail: 'Wymagane. Liczba stopni swobody.' }, + }, + }, + CHISQ_INV: { + description: 'Zwraca odwrotność lewostronnego prawdopodobieństwa rozkładu chi-kwadrat.', + abstract: 'Zwraca odwrotność lewostronnego prawdopodobieństwa rozkładu chi-kwadrat.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem chi-kwadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Wymagane. Liczba stopni swobody.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Jeśli prawdopodobieństwo = ROZKŁ.CHI.PS(x;...), to ROZKŁ.CHI.ODWR.PS(prawdopodobieństwo;...) = x. Ta funkcja służy do porównywania wyników obserwowanych z wynikami spodziewanymi w celu określenia, czy hipoteza jest prawidłowa.', + abstract: 'Jeśli prawdopodobieństwo = ROZKŁ.CHI.PS(x;...), to ROZKŁ.CHI.ODWR.PS(prawdopodobieństwo;...) = x. Ta funkcja służy do porównywania wyników obserwowanych z wynikami spodziewanymi w celu określenia, czy hipoteza jest prawidłowa.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem chi-kwadrat.' }, + degFreedom: { name: 'deg_freedom', detail: 'Wymagane. Liczba stopni swobody.' }, + }, + }, + CHISQ_TEST: { + description: 'Zwraca wartość testu niezależności. Funkcja CHI.TEST zwraca wartość rozkładu chi-kwadrat (χ2) statystyki i stosownych stopni swobody. Testu χ2 można używać do określania, czy dane eksperymentalne potwierdzają przewidywania wynikające z hipotezy.', + abstract: 'Zwraca wartość testu niezależności. Funkcja CHI.TEST zwraca wartość rozkładu chi-kwadrat (χ2) statystyki i stosownych stopni swobody. Testu χ2 można używać do określania, czy dane eksperymentalne potwierdzają przewidywania wynikające z hipotezy.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Wymagane. Zakres danych zawierający wartości obserwowane, które należy porównać z wartościami przewidywanymi.' }, + expectedRange: { name: 'expected_range', detail: 'Wymagane. Zakres danych zawierający współczynnik iloczynu sum wierszy i sum kolumn do sumy końcowej.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'Przedział ufności to zakres wartości. Średnia z próby, x, znajduje się w połowie tego przedziału, zaś przedział obejmuje wartości x ± UFNOŚĆ.NORM. Na przykład, jeśli x jest średnią z próby terminów dostawy produktów pocztą, x ± UFNOŚĆ.NORM będzie przedziałem wartości średnich z populacji. Dla każdej średniej z populacji, μ0, w tym przedziale, prawdopodobieństwo uzyskania średniej z próby różniącej się od μ0 o więcej niż x jest większe niż alfa; dla każdej średniej z populacji, μ0, która nie należy do tego przedziału, prawdopodobieństwo uzyskania średniej z próby różniącej się od μ0 o więcej niż x jest mniejsze niż alfa. Innymi słowy, załóżmy że używając wartości x, odchylenia standardowego i wielkości, budujemy test dwustronny na poziomie istotności alfa, który ma sprawdzić hipotezę, że średnia z populacji wynosi μ0. Hipotezy nie odrzucimy, jeśli μ0 będzie mieścić się w przedziale ufności, a odrzucimy ją, jeśli μ0 znajdzie się poza przedziałem ufności. Przedział ufności nie daje podstaw do przyjęcia, że prawdopodobieństwo, iż termin dostawy następnej paczki zmieści się w przedziale ufności, wynosi 1 - alfa.', + abstract: 'Przedział ufności to zakres wartości. Średnia z próby, x, znajduje się w połowie tego przedziału, zaś przedział obejmuje wartości x ± UFNOŚĆ.NORM. Na przykład, jeśli x jest średnią z próby terminów dostawy produktów pocztą, x ± UFNOŚĆ.NORM będzie przedziałem wartości średnich z populacji. Dla każdej średniej z populacji, μ0, w tym przedziale, prawdopodobieństwo uzyskania średniej z próby różniącej się od μ0 o więcej niż x jest większe niż alfa; dla każdej średniej z populacji, μ0, która nie należy do tego przedziału, prawdopodobieństwo uzyskania średniej z próby różniącej się od μ0 o więcej niż x jest mniejsze niż alfa. Innymi słowy, załóżmy że używając wartości x, odchylenia standardowego i wielkości, budujemy test dwustronny na poziomie istotności alfa, który ma sprawdzić hipotezę, że średnia z populacji wynosi μ0. Hipotezy nie odrzucimy, jeśli μ0 będzie mieścić się w przedziale ufności, a odrzucimy ją, jeśli μ0 znajdzie się poza przedziałem ufności. Przedział ufności nie daje podstaw do przyjęcia, że prawdopodobieństwo, iż termin dostawy następnej paczki zmieści się w przedziale ufności, wynosi 1 - alfa.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Wymagane. Poziom istotności używany do obliczania poziomu ufności. Poziom ufności jest równy 100*(1 – alfa)%, czyli wartość alfa równa 0,05 wskazuje poziom ufności 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe dla zakresu danych, które z założenia jest znane.' }, + size: { name: 'size', detail: 'Wymagane. Wielkość próby.' }, + }, + }, + CONFIDENCE_T: { + description: 'Zwraca przedział ufności dla średniej populacji, używając rozkładu t-Studenta.', + abstract: 'Zwraca przedział ufności dla średniej populacji, używając rozkładu t-Studenta.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Wymagane. Poziom istotności używany do obliczania poziomu ufności. Poziom ufności jest równy 100*(1 – alfa)%, czyli wartość alfa równa 0,05 wskazuje poziom ufności 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe dla zakresu danych, które z założenia jest znane.' }, + size: { name: 'size', detail: 'Wymagane. Wielkość próby.' }, + }, + }, + CORREL: { + description: 'Funkcja WSP.KORELACJI zwraca współczynnik korelacji dwóch zakresów komórek. Współczynnik korelacji służy do określania relacji między dwiema własnościami. Na przykład można zbadać relację między średnią temperaturą danej miejscowości a używaniem klimatyzatorów.', + abstract: 'Funkcja WSP.KORELACJI zwraca współczynnik korelacji dwóch zakresów komórek. Współczynnik korelacji służy do określania relacji między dwiema własnościami. Na przykład można zbadać relację między średnią temperaturą danej miejscowości a używaniem klimatyzatorów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Zakres wartości komórek.' }, + array2: { name: 'array2', detail: 'Wymagane. Drugi zakres wartości komórek.' }, + }, + }, + COUNT: { + description: 'Funkcja ILE.LICZB zlicza komórki zawierające liczby, jak również liczby umieszczone na liście argumentów. Funkcja ILE.LICZB służy do uzyskiwania liczby wpisów w polu liczbowym, które znajduje się w zakresie lub w tablicy liczb. Na przykład w celu zliczenia liczb w zakresie A1:A20 należy wprowadzić następującą formułę: =ILE.LICZB(A1:A20) . W tym przykładzie: jeśli pięć komórek w zakresie zawiera liczby, wynikiem jest wartość 5 .', + abstract: 'Funkcja ILE.LICZB zlicza komórki zawierające liczby, jak również liczby umieszczone na liście argumentów. Funkcja ILE.LICZB służy do uzyskiwania liczby wpisów w polu liczbowym, które znajduje się w zakresie lub w tablicy liczb. Na przykład w celu zliczenia liczb w zakresie A1:A20 należy wprowadzić następującą formułę: =ILE.LICZB(A1:A20) . W tym przykładzie: jeśli pięć komórek w zakresie zawiera liczby, wynikiem jest wartość 5 .', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Wymagane. Pierwszy element, odwołanie do komórki lub zakres, w którym mają zostać zliczone liczby.' }, + value2: { name: 'value 2', detail: 'Opcjonalne. Maksymalnie 255 dodatkowych elementów, odwołań do komórek lub zakresów, w których mają zostać zliczone liczby.' }, + }, + }, + COUNTA: { + description: 'Funkcja ILE.NIEPUSTYCH zlicza komórki, które nie są puste w zakresie.', + abstract: 'Funkcja ILE.NIEPUSTYCH zlicza komórki, które nie są puste w zakresie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 komórek, zakresów komórek lub wartości, dla których należy wyznaczyć średnią.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 komórek, zakresów komórek lub wartości, dla których należy wyznaczyć średnią.' }, + }, + }, + COUNTBLANK: { + description: 'Użyj funkcji LICZ.PUSTE , jednej z funkcji statystycznych , aby zliczyć liczbę pustych komórek w zakresie komórek.', + abstract: 'Użyj funkcji LICZ.PUSTE , jednej z funkcji statystycznych , aby zliczyć liczbę pustych komórek w zakresie komórek.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Wymagane. Zakres, w którym należy zliczyć puste komórki.' }, + }, + }, + COUNTIF: { + description: 'Funkcja LICZ.JEŻELI, jedna z funkcji statystycznych , umożliwia policzenie liczby komórek, które spełniają dane kryteria. Można na przykład policzyć, ile razy konkretna nazwa miasta występuje na liście klientów.', + abstract: 'Funkcja LICZ.JEŻELI, jedna z funkcji statystycznych , umożliwia policzenie liczby komórek, które spełniają dane kryteria. Można na przykład policzyć, ile razy konkretna nazwa miasta występuje na liście klientów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Grupa komórek, które mają zostać zliczone. Zakres może zawierać liczby, tablice, nazwany zakres lub odwołania zawierające liczby. Wartości puste i tekst są ignorowane. Dowiedz się, jak zaznaczać zakresy w arkuszu .' }, + criteria: { name: 'criteria', detail: 'Liczba, wyrażenie, odwołanie do komórki lub ciąg tekstowy określające, które komórki będą zliczane. Można użyć liczby, np. 32, porównania, np. ">32", komórki, np. B4 lub wyrazu, np. "jabłka". Funkcja LICZ.JEŻELI używa tylko pojedynczego kryterium. Aby użyć wielu kryteriów, należy skorzystać z funkcji LICZ.WARUNKI .' }, + }, + }, + COUNTIFS: { + description: 'Funkcja LICZ.WARUNKI stosuje kryteria do komórek w wielu zakresach i zlicza, ile razy wszystkie kryteria są spełnione.', + abstract: 'Funkcja LICZ.WARUNKI stosuje kryteria do komórek w wielu zakresach i zlicza, ile razy wszystkie kryteria są spełnione.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Wymagane. Pierwszy zakres, w którym zostaną sprawdzone skojarzone kryteria.' }, + criteria1: { name: 'criteria1', detail: 'Wymagane. Kryteria w postaci liczby, wyrażenia, odwołania do komórki lub tekstu określające komórki, które mają być zliczane. Kryteria można wyrazić na przykład jako 32, ">32", B4, "jabłka" lub "32".' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Opcjonalne. Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalna liczba par zakres/kryteria to 127.' }, + criteria2: { name: 'criteria2', detail: 'Opcjonalne. Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalna liczba par zakres/kryteria to 127.' }, + }, + }, + COVARIANCE_P: { + description: 'Zwraca wartość kowariancji populacji, czyli średniej iloczynów odchyleń każdej pary punktów danych w dwóch zbiorach danych. Kowariancji należy używać do określania zależności między dwoma zbiorami danych. Na przykład można sprawdzić, czy większe przychody są związane z wyższym poziomem wykształcenia.', + abstract: 'Zwraca wartość kowariancji populacji, czyli średniej iloczynów odchyleń każdej pary punktów danych w dwóch zbiorach danych. Kowariancji należy używać do określania zależności między dwoma zbiorami danych. Na przykład można sprawdzić, czy większe przychody są związane z wyższym poziomem wykształcenia.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwszy zakres komórek zawierających liczby całkowite.' }, + array2: { name: 'array2', detail: 'Wymagane. Drugi zakres komórek zawierających liczby całkowite.' }, + }, + }, + COVARIANCE_S: { + description: 'Zwraca kowariancję próbki, czyli średnią iloczynów odchyleń dla każdej pary punktów danych w dwóch zbiorach danych.', + abstract: 'Zwraca kowariancję próbki, czyli średnią iloczynów odchyleń dla każdej pary punktów danych w dwóch zbiorach danych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwszy zakres komórek zawierających liczby całkowite.' }, + array2: { name: 'array2', detail: 'Wymagane. Drugi zakres komórek zawierających liczby całkowite.' }, + }, + }, + DEVSQ: { + description: 'Zwraca wartość sumy kwadratów odchyleń punktów danych od ich średniej z próby.', + abstract: 'Zwraca wartość sumy kwadratów odchyleń punktów danych od ich średniej z próby.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana suma kwadratów odchyleń. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana suma kwadratów odchyleń. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + EXPON_DIST: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu wykładniczego. Funkcja ROZKŁ.EXP umożliwia modelowanie upływu czasu między zdarzeniami, np. czasu oczekiwania na wypłatę gotówki z bankomatu. Można na przykład użyć funkcji ROZKŁ.EXP do wyznaczenia prawdopodobieństwa, że zajmie to najwyżej jedną minutę.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu wykładniczego. Funkcja ROZKŁ.EXP umożliwia modelowanie upływu czasu między zdarzeniami, np. czasu oczekiwania na wypłatę gotówki z bankomatu. Można na przykład użyć funkcji ROZKŁ.EXP do wyznaczenia prawdopodobieństwa, że zajmie to najwyżej jedną minutę.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość funkcji.' }, + lambda: { name: 'lambda', detail: 'Wymagane. Wartość parametru.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna określająca postać funkcji wykładniczej, która ma zostać podana. Jeśli argument „skumulowany” ma wartość PRAWDA, funkcja ROZKŁ.EXP zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ — funkcję gęstości prawdopodobieństwa.' }, + }, + }, + F_DIST: { + description: 'Zwraca wartość rozkładu prawdopodobieństwa F-Snedecora. Funkcja ta umożliwia określenie, czy dwa zbiory danych mają różne stopnie zróżnicowania. Na przykład, można sprawdzić wyniki testów mężczyzn i kobiet przychodzących do szkoły średniej, i określić, czy zmienność u kobiet różni się od tej znalezionej u mężczyzn.', + abstract: 'Zwraca wartość rozkładu prawdopodobieństwa F-Snedecora. Funkcja ta umożliwia określenie, czy dwa zbiory danych mają różne stopnie zróżnicowania. Na przykład, można sprawdzić wyniki testów mężczyzn i kobiet przychodzących do szkoły średniej, i określić, czy zmienność u kobiet różni się od tej znalezionej u mężczyzn.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁ.F zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ — funkcję gęstości prawdopodobieństwa.' }, + }, + }, + F_DIST_RT: { + description: 'Zwraca wartość (prawostronnego) rozkładu prawdopodobieństwa F-Snedecora (stopień zróżnicowania) dla dwóch zestawów danych. Ta funkcja służy do określania, czy dwa zbiory danych mają różne stopnie zróżnicowania. Można na przykład sprawdzić wyniki testów uzyskane przez chłopców i dziewczęta zdające do szkoły średniej i określić, czy zmienność wyników uzyskanych przez dziewczęta różni się od zmienności wyników chłopców.', + abstract: 'Zwraca wartość (prawostronnego) rozkładu prawdopodobieństwa F-Snedecora (stopień zróżnicowania) dla dwóch zestawów danych. Ta funkcja służy do określania, czy dwa zbiory danych mają różne stopnie zróżnicowania. Można na przykład sprawdzić wyniki testów uzyskane przez chłopców i dziewczęta zdające do szkoły średniej i określić, czy zmienność wyników uzyskanych przez dziewczęta różni się od zmienności wyników chłopców.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + }, + }, + F_INV: { + description: 'Zwraca odwrotność rozkładu prawdopodobieństwa F. Jeśli p = ROZKŁ.F(x,...), to ROZKŁ.F.ODWR(p,...) = x. Rozkład F-Snedecora można stosować w teście F w celu porównania stopnia zmienności dwóch zbiorów danych. Można na przykład przeanalizować rozkład dochodów w Stanach Zjednoczonych i Kanadzie, aby określić, czy oba kraje mają podobne zróżnicowanie dochodów.', + abstract: 'Zwraca odwrotność rozkładu prawdopodobieństwa F. Jeśli p = ROZKŁ.F(x,...), to ROZKŁ.F.ODWR(p,...) = x. Rozkład F-Snedecora można stosować w teście F w celu porównania stopnia zmienności dwóch zbiorów danych. Można na przykład przeanalizować rozkład dochodów w Stanach Zjednoczonych i Kanadzie, aby określić, czy oba kraje mają podobne zróżnicowanie dochodów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone ze skumulowanym rozkładem F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + }, + }, + F_INV_RT: { + description: 'Zwraca wartość funkcji odwrotnej rozkładu (prawostronnego) prawdopodobieństwa F-Snedecora. Jeżeli p = ROZKŁ.F.PS(x;...), to ROZKŁ.F.ODWR.PS(p;...) = x. Rozkład F-Snedecora można stosować w teście F w celu porównania stopnia zmienności dwóch zbiorów danych. Można na przykład przeanalizować rozkład dochodów w Stanach Zjednoczonych i Kanadzie, aby określić, czy oba kraje mają podobne zróżnicowanie dochodów.', + abstract: 'Zwraca wartość funkcji odwrotnej rozkładu (prawostronnego) prawdopodobieństwa F-Snedecora. Jeżeli p = ROZKŁ.F.PS(x;...), to ROZKŁ.F.ODWR.PS(p;...) = x. Rozkład F-Snedecora można stosować w teście F w celu porównania stopnia zmienności dwóch zbiorów danych. Można na przykład przeanalizować rozkład dochodów w Stanach Zjednoczonych i Kanadzie, aby określić, czy oba kraje mają podobne zróżnicowanie dochodów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone ze skumulowanym rozkładem F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Wymagane. Wartość stopni swobody w liczniku.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Wymagane. Wartość stopni swobody w mianowniku.' }, + }, + }, + F_TEST: { + description: 'Funkcja umożliwia określenie, czy dwie próbki mają różne wariancje. Na przykład, mając wyniki testów ze szkół prywatnych i publicznych, można sprawdzić, czy w tych szkołach występują różne poziomy zróżnicowania wyników.', + abstract: 'Funkcja umożliwia określenie, czy dwie próbki mają różne wariancje. Na przykład, mając wyniki testów ze szkół prywatnych i publicznych, można sprawdzić, czy w tych szkołach występują różne poziomy zróżnicowania wyników.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwsza tablica lub pierwszy zakres danych.' }, + array2: { name: 'array2', detail: 'Wymagane. Druga tablica lub drugi zakres danych.' }, + }, + }, + FISHER: { + description: 'Zwraca wartość transformacji Fishera w punkcie x. Wynikiem tej transformacji jest funkcja, która ma przeważnie rozkład normalny, a nie skośny. Funkcja ta pozwala weryfikować hipotezy dotyczące współczynnika korelacji.', + abstract: 'Zwraca wartość transformacji Fishera w punkcie x. Wynikiem tej transformacji jest funkcja, która ma przeważnie rozkład normalny, a nie skośny. Funkcja ta pozwala weryfikować hipotezy dotyczące współczynnika korelacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość liczbowa, dla której ma zostać wykonana transformacja.' }, + }, + }, + FISHERINV: { + description: 'Zwraca wartość funkcji odwrotnej transformacji Fishera. Transformacja ta jest przydatna w analizie korelacji pomiędzy zakresami lub tablicami danych. Jeżeli y = ROZKŁAD.FISHER(x), to ROZKŁAD.FISHER.ODW(y) = x.', + abstract: 'Zwraca wartość funkcji odwrotnej transformacji Fishera. Transformacja ta jest przydatna w analizie korelacji pomiędzy zakresami lub tablicami danych. Jeżeli y = ROZKŁAD.FISHER(x), to ROZKŁAD.FISHER.ODW(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Argument wymagany. Wartość, dla której ma zostać wykonana transformacja odwrotna.' }, + }, + }, + FORECAST: { + description: 'Oblicz lub przewiduj przyszłą wartość przy użyciu istniejących wartości. Przyszła wartość jest wartością y dla danej wartości x. Istniejące wartości to znane wartości x i y, a przyszła wartość jest przewidywana przy użyciu regresji liniowej. Te funkcje umożliwiają przewidywanie przyszłej sprzedaży, wymagań dotyczących zapasów lub trendów konsumpcyjnych.', + abstract: 'Oblicz lub przewiduj przyszłą wartość przy użyciu istniejących wartości. Przyszła wartość jest wartością y dla danej wartości x. Istniejące wartości to znane wartości x i y, a przyszła wartość jest przewidywana przy użyciu regresji liniowej. Te funkcje umożliwiają przewidywanie przyszłej sprzedaży, wymagań dotyczących zapasów lub trendów konsumpcyjnych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'tak Punkt danych, dla którego ma zostać określona prognoza wartości.' }, + knownYs: { name: 'known_y\'s', detail: 'tak Tablica lub zakres danych zależnych.' }, + knownXs: { name: 'known_x\'s', detail: 'tak Tablica lub zakres danych niezależnych.' }, + }, + }, + FORECAST_ETS: { + description: 'Oblicza lub prognozuje przyszłą wartość na podstawie wartości historycznych za pomocą algorytmu AAA wygładzania wykładniczego (ETS).', + abstract: 'Oblicza lub prognozuje przyszłą wartość na podstawie wartości historycznych za pomocą algorytmu AAA wygładzania wykładniczego (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data docelowa', detail: 'Punkt danych, dla którego ma zostać przewidziana wartość.' }, + values: { name: 'Wartości', detail: 'Wartości historyczne używane do prognozy.' }, + timeline: { name: 'Oś czasu', detail: 'Niezależny zakres lub tablica liczbowych dat albo godzin ze stałym krokiem.' }, + seasonality: { name: 'Sezonowość', detail: 'Opcjonalnie. 1 oznacza wykrywanie automatyczne, a 0 brak sezonowości.' }, + dataCompletion: { name: 'Uzupełnianie danych', detail: 'Opcjonalnie. Użyj 1, aby interpolować brakujące punkty, lub 0, aby traktować je jako zera.' }, + aggregation: { name: 'Agregacja', detail: 'Opcjonalnie. Wartość od 1 do 7 określa agregację zduplikowanych znaczników czasu.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Zwraca przedział ufności dla prognozowanej wartości w określonym punkcie docelowym.', + abstract: 'Zwraca przedział ufności dla prognozowanej wartości w określonym punkcie docelowym.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data docelowa', detail: 'Punkt danych, dla którego ma zostać przewidziana wartość.' }, + values: { name: 'Wartości', detail: 'Wartości historyczne używane do prognozy.' }, + timeline: { name: 'Oś czasu', detail: 'Niezależny zakres lub tablica liczbowych dat albo godzin ze stałym krokiem.' }, + confidenceLevel: { name: 'Poziom ufności', detail: 'Opcjonalnie. Liczba od 0 do 1; wartość domyślna to 0,95.' }, + seasonality: { name: 'Sezonowość', detail: 'Opcjonalnie. 1 oznacza wykrywanie automatyczne, a 0 brak sezonowości.' }, + dataCompletion: { name: 'Uzupełnianie danych', detail: 'Opcjonalnie. Użyj 1, aby interpolować brakujące punkty, lub 0, aby traktować je jako zera.' }, + aggregation: { name: 'Agregacja', detail: 'Opcjonalnie. Wartość od 1 do 7 określa agregację zduplikowanych znaczników czasu.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Zwraca długość powtarzającego się wzorca wykrytego przez program Excel dla określonego szeregu czasowego.', + abstract: 'Zwraca długość powtarzającego się wzorca wykrytego przez program Excel dla określonego szeregu czasowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Wartości', detail: 'Wartości historyczne używane do prognozy.' }, + timeline: { name: 'Oś czasu', detail: 'Niezależny zakres lub tablica liczbowych dat albo godzin ze stałym krokiem.' }, + dataCompletion: { name: 'Uzupełnianie danych', detail: 'Opcjonalnie. Użyj 1, aby interpolować brakujące punkty, lub 0, aby traktować je jako zera.' }, + aggregation: { name: 'Agregacja', detail: 'Opcjonalnie. Wartość od 1 do 7 określa agregację zduplikowanych znaczników czasu.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Zwraca wartość statystyczną wynikającą z prognozy szeregów czasowych.', + abstract: 'Zwraca wartość statystyczną wynikającą z prognozy szeregów czasowych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Wartości', detail: 'Wartości historyczne używane do prognozy.' }, + timeline: { name: 'Oś czasu', detail: 'Niezależny zakres lub tablica liczbowych dat albo godzin ze stałym krokiem.' }, + statisticType: { name: 'Typ statystyki', detail: 'Wartość od 1 do 8 określa zwracaną statystykę prognozy.' }, + seasonality: { name: 'Sezonowość', detail: 'Opcjonalnie. 1 oznacza wykrywanie automatyczne, a 0 brak sezonowości.' }, + dataCompletion: { name: 'Uzupełnianie danych', detail: 'Opcjonalnie. Użyj 1, aby interpolować brakujące punkty, lub 0, aby traktować je jako zera.' }, + aggregation: { name: 'Agregacja', detail: 'Opcjonalnie. Wartość od 1 do 7 określa agregację zduplikowanych znaczników czasu.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Oblicz lub przewiduj przyszłą wartość przy użyciu istniejących wartości. Przyszła wartość jest wartością y dla danej wartości x. Istniejące wartości to znane wartości x i y, a przyszła wartość jest przewidywana przy użyciu regresji liniowej. Te funkcje umożliwiają przewidywanie przyszłej sprzedaży, wymagań dotyczących zapasów lub trendów konsumpcyjnych.', + abstract: 'Oblicz lub przewiduj przyszłą wartość przy użyciu istniejących wartości. Przyszła wartość jest wartością y dla danej wartości x. Istniejące wartości to znane wartości x i y, a przyszła wartość jest przewidywana przy użyciu regresji liniowej. Te funkcje umożliwiają przewidywanie przyszłej sprzedaży, wymagań dotyczących zapasów lub trendów konsumpcyjnych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'tak Punkt danych, dla którego ma zostać określona prognoza wartości.' }, + knownYs: { name: 'known_y\'s', detail: 'tak Tablica lub zakres danych zależnych.' }, + knownXs: { name: 'known_x\'s', detail: 'tak Tablica lub zakres danych niezależnych.' }, + }, + }, + FREQUENCY: { + description: 'Funkcja CZĘSTOŚĆ oblicza, jak często wartości występują w określonym zakresie wartości, a następnie zwraca tablicę liczb w układzie pionowym. Funkcja CZĘSTOŚĆ umożliwia na przykład sprawdzenie liczby wyników testów mieszczących się w pewnym zakresie. Ponieważ funkcja CZĘSTOŚĆ zwraca tablicę, musi być wprowadzona jako formuła tablicowa.', + abstract: 'Funkcja CZĘSTOŚĆ oblicza, jak często wartości występują w określonym zakresie wartości, a następnie zwraca tablicę liczb w układzie pionowym. Funkcja CZĘSTOŚĆ umożliwia na przykład sprawdzenie liczby wyników testów mieszczących się w pewnym zakresie. Ponieważ funkcja CZĘSTOŚĆ zwraca tablicę, musi być wprowadzona jako formuła tablicowa.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Wymagane. Tablica lub odwołanie do zbioru wartości, dla których mają być zliczane częstości. Jeśli argument tablica_dane nie ma żadnych wartości, funkcja CZĘSTOŚĆ zwraca tablicę zer.' }, + binsArray: { name: 'bins_array', detail: 'Wymagane. Tablica lub odwołanie do przedziałów, w których mają być grupowane wartości argumentu tablica_dane. Jeśli argument tablica_przedziały nie zawiera żadnych wartości, funkcja CZĘSTOŚĆ zwraca liczbę elementów w argumencie tablica_dane.' }, + }, + }, + GAMMA: { + description: 'Zwraca wartość funkcji gamma.', + abstract: 'Zwraca wartość funkcji gamma.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Zwraca liczbę.' }, + }, + }, + GAMMA_DIST: { + description: 'Zwraca rozkład gamma. Funkcja ta umożliwia badanie zmiennych, które mogą mieć rozkład skośny. Rozkład gamma jest powszechnie stosowany w analizie kolejek.', + abstract: 'Zwraca rozkład gamma. Funkcja ta umożliwia badanie zmiennych, które mogą mieć rozkład skośny. Rozkład gamma jest powszechnie stosowany w analizie kolejek.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, przy której ma być szacowany rozkład.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu. Jeśli wartość argumentu beta = 1, funkcja ROZKŁ.GAMMA zwraca standardowy rozkład gamma.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu skumulowany jest PRAWDA, funkcja ROZKŁ.GAMMA zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ — funkcję gęstości prawdopodobieństwa.' }, + }, + }, + GAMMA_INV: { + description: 'Zwraca funkcję odwrotną skumulowanego rozkładu gamma. Jeśli p = ROZKŁ.GAMMA(x;...), to ROZKŁ.GAMMA.ODWR(p;...) = x. Funkcja ta jest przydatna w badaniu zmiennej, której rozkład może być skośny.', + abstract: 'Zwraca funkcję odwrotną skumulowanego rozkładu gamma. Jeśli p = ROZKŁ.GAMMA(x;...), to ROZKŁ.GAMMA.ODWR(p;...) = x. Funkcja ta jest przydatna w badaniu zmiennej, której rozkład może być skośny.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo związane z rozkładem gamma.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu. Jeśli wartość argumentu beta = 1, funkcja ROZKŁ.GAMMA.ODWR zwraca standardowy rozkład gamma.' }, + }, + }, + GAMMALN: { + description: 'Zwraca logarytm naturalny funkcji gamma, Γ(x).', + abstract: 'Zwraca logarytm naturalny funkcji gamma, Γ(x).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ma zostać obliczona funkcja ROZKŁAD.LIN.GAMMA.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Zwraca logarytm naturalny funkcji gamma, Γ(x).', + abstract: 'Zwraca logarytm naturalny funkcji gamma, Γ(x).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ma zostać obliczona funkcja ROZKŁAD.LIN.GAMMA.DOKŁ.' }, + }, + }, + GAUSS: { + description: 'Oblicza prawdopodobieństwo, że element populacji o standardowym rozkładzie normalnym należy do zakresu między średnią a wielokrotnością odchyleń standardowych od średniej określoną przez argument z.', + abstract: 'Oblicza prawdopodobieństwo, że element populacji o standardowym rozkładzie normalnym należy do zakresu między średnią a wielokrotnością odchyleń standardowych od średniej określoną przez argument z.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Argument wymagany. Zwraca liczbę.' }, + }, + }, + GEOMEAN: { + description: 'Zwraca średnią geometryczną tablicy lub zakresu danych dodatnich. Funkcji ŚREDNIA.GEOMETRYCZNA można na przykład użyć do obliczenia średniej stopy wzrostu danego procentu składanego przy zmiennej stopie.', + abstract: 'Zwraca średnią geometryczną tablicy lub zakresu danych dodatnich. Funkcji ŚREDNIA.GEOMETRYCZNA można na przykład użyć do obliczenia średniej stopy wzrostu danego procentu składanego przy zmiennej stopie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana średnia. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana średnia. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + GROWTH: { + description: 'Oblicza przewidywany wzrost wykładniczy, używając istniejących danych. Funkcja REGEXPW zwraca wartości y dla serii nowych wartości x określonych na podstawie istniejących wartości x i y. Można także użyć funkcji REGEXPW, aby dopasować krzywą wykładniczą do istniejących wartości x i y.', + abstract: 'Oblicza przewidywany wzrost wykładniczy, używając istniejących danych. Funkcja REGEXPW zwraca wartości y dla serii nowych wartości x określonych na podstawie istniejących wartości x i y. Można także użyć funkcji REGEXPW, aby dopasować krzywą wykładniczą do istniejących wartości x i y.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Zestaw znanych wartości y spełniających zależność y = b*m^x. Jeśli tablica znane_y znajduje się w pojedynczej kolumnie, to każda kolumna tablicy znane_x jest interpretowana jako oddzielna zmienna. Jeśli tablica znane_y znajduje się w pojedynczym wierszu, to każdy wiersz tablicy znane_x jest interpretowany jako oddzielna zmienna. Jeśli którakolwiek z liczb w known_y jest ujemna lub 0, funkcja REGEXPW zwraca #NUM! wartość błędu #ADR!.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcjonalne. Zbiór znanych wartości x spełniających zależność y = b*m^x. Tablica known_x może zawierać jeden lub więcej zestawów zmiennych. Jeśli jest używana tylko jedna zmienna, known_y i known_x mogą być zakresami dowolnego kształtu, o ile mają jednakowe wymiary. Jeśli jest używana więcej niż jedna zmienna, known_y musi być wektorem (czyli zakresem o wysokości jednego wiersza lub szerokości jednej kolumny). Jeżeli argument znane_x jest pominięty, przyjmuje się, że jest on tablicą {1;2;3;...}, która ma ten sam rozmiar co tablica znane_y.' }, + newXs: { name: 'new_x\'s', detail: 'Opcjonalne. Zestaw nowych wartości x, dla których funkcja REGEXPW ma zwrócić odpowiednie wartości y. New_x musi zawierać kolumnę (lub wiersz) dla każdej zmiennej niezależnej, podobnie jak known_x. Jeśli więc known_y znajduje się w jednej kolumnie, known_x i new_x muszą mieć taką samą liczbę kolumn. Jeśli known_y znajduje się w jednym wierszu, known_x i new_x muszą mieć taką samą liczbę wierszy. Jeżeli argument nowe_ x zostanie pominięty, przyjmuje się, że jest on taki sam jak znane_x. Jeżeli zarówno znane_x jak i nowe_x zostaną pominięte, to przyjmuje się, że są one tablicą {1;2;3;...} o takiej samej wielkości co znane_y.' }, + constb: { name: 'const', detail: 'Opcjonalne. Wartość logiczna określająca, czy stała b ma mieć narzuconą wartość 1. Jeżeli stała ma wartość PRAWDA lub jest pominięta, to stała b jest obliczana normalnie. Jeśli stała ma wartość FAŁSZ, to stała b jest ustawiana jako równa 1, a wartości m są tak dostosowywane, aby y = m^x.' }, + }, + }, + HARMEAN: { + description: 'Zwraca średnią harmoniczną zbioru danych. Średnia harmoniczna jest odwrotnością średniej arytmetycznej odwrotności.', + abstract: 'Zwraca średnią harmoniczną zbioru danych. Średnia harmoniczna jest odwrotnością średniej arytmetycznej odwrotności.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana średnia. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana średnia. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Zwraca rozkład hipergeometryczny. HIPERGEOM. Funkcja ROZKŁ.DIST zwraca prawdopodobieństwo podanej liczby sukcesów próbek, biorąc pod uwagę wielkość próbki, sukcesy populacji i wielkość populacji. Użyj hipergeomu. RozKŁ.DY dla problemów z skończoną populacją, gdzie każda obserwacja jest sukcesem lub porażką i gdzie każdy podzbiór o danej wielkości jest wybierany z jednakowym prawdopodobieństwem.', + abstract: 'Zwraca rozkład hipergeometryczny. HIPERGEOM. Funkcja ROZKŁ.DIST zwraca prawdopodobieństwo podanej liczby sukcesów próbek, biorąc pod uwagę wielkość próbki, sukcesy populacji i wielkość populacji. Użyj hipergeomu. RozKŁ.DY dla problemów z skończoną populacją, gdzie każda obserwacja jest sukcesem lub porażką i gdzie każdy podzbiór o danej wielkości jest wybierany z jednakowym prawdopodobieństwem.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Wymagane. Liczba sukcesów w próbce.' }, + numberSample: { name: 'number_sample', detail: 'Wymagane. Wielkość próbki.' }, + populationS: { name: 'population_s', detail: 'Wymagane. Liczba sukcesów w populacji.' }, + numberPop: { name: 'number_pop', detail: 'Wymagane. Wielkość populacji.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu skumulowany jest PRAWDA, funkcja ROZKŁ.HIPERGEOM zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję masy prawdopodobieństwa.' }, + }, + }, + INTERCEPT: { + description: 'Oblicza punkt przecięcia się linii z osią y przy użyciu istniejących wartości znane_x i znane_y. Punkt przecięcia jest to punkt, w którym prosta regresji, poprowadzona przez wartości znane_x i znane_y, przecina oś y. Należy stosować funkcję ODCIĘTA wtedy, gdy chce się wyznaczyć wartość zmiennej zależnej przy zerowej wartości zmiennej niezależnej. Na przykład można zastosować funkcję ODCIĘTA do wyznaczenia oporności metalu przy 0°C, podczas gdy punkty pomiarowe wyznaczano w temperaturze pokojowej i wyższych.', + abstract: 'Oblicza punkt przecięcia się linii z osią y przy użyciu istniejących wartości znane_x i znane_y. Punkt przecięcia jest to punkt, w którym prosta regresji, poprowadzona przez wartości znane_x i znane_y, przecina oś y. Należy stosować funkcję ODCIĘTA wtedy, gdy chce się wyznaczyć wartość zmiennej zależnej przy zerowej wartości zmiennej niezależnej. Na przykład można zastosować funkcję ODCIĘTA do wyznaczenia oporności metalu przy 0°C, podczas gdy punkty pomiarowe wyznaczano w temperaturze pokojowej i wyższych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Zbiór danych lub obserwacji zależnych.' }, + knownXs: { name: 'known_x\'s', detail: 'Wymagane. Zbiór danych lub obserwacji niezależnych.' }, + }, + }, + KURT: { + description: 'Zwraca kurtozę zbioru danych. Kurtoza charakteryzuje względną szczytowość lub płaskość rozkładu w porównaniu z rozkładem normalnym. Dodatnia kurtoza oznacza rozkład o stosunkowo dużej szczytowości. Ujemna kurtoza oznacza rozkład stosunkowo płaski.', + abstract: 'Zwraca kurtozę zbioru danych. Kurtoza charakteryzuje względną szczytowość lub płaskość rozkładu w porównaniu z rozkładem normalnym. Dodatnia kurtoza oznacza rozkład o stosunkowo dużej szczytowości. Ujemna kurtoza oznacza rozkład stosunkowo płaski.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana kurtoza. Zamiast argumentów rozdzielonych średnikami można użyć jednej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których jest obliczana kurtoza. Zamiast argumentów rozdzielonych średnikami można użyć jednej tablicy lub odwołania do tablicy.' }, + }, + }, + LARGE: { + description: 'Zwraca k-tą największą wartość w zbiorze danych. Funkcji tej można użyć do wybrania wartości na podstawie jej względnej pozycji. Przykładowo można użyć funkcji MAX.K w celu określenia pierwszego, drugiego lub trzeciego miejsca.', + abstract: 'Zwraca k-tą największą wartość w zbiorze danych. Funkcji tej można użyć do wybrania wartości na podstawie jej względnej pozycji. Przykładowo można użyć funkcji MAX.K w celu określenia pierwszego, drugiego lub trzeciego miejsca.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres danych, dla których ma zostać wyznaczona k-ta największą wartość.' }, + k: { name: 'k', detail: 'Argument wymagany. Wyznaczana pozycja danej (od największej) w tablicy lub zakresie komórek.' }, + }, + }, + LINEST: { + description: 'Funkcja REGLINP oblicza statystykę dla linii, korzystając z metody najmniejszych kwadratów, aby obliczyć linię prostą, która najlepiej pasuje do danych, a następnie zwraca tablicę opisującą tę linię. Funkcję REGLINP można również połączyć z innymi funkcjami, aby obliczyć statystykę dla innych typów modeli, które są liniowe w nieznanych parametrach, w tym serii wielomianowych, logarytmicznych, wykładniczych i potęgowych. Funkcja zwraca tablicę wartości, musi więc być wprowadzana w postaci formuły tablicowej. Instrukcje są zgodne z przykładami przedstawionymi w tym artykule.', + abstract: 'Funkcja REGLINP oblicza statystykę dla linii, korzystając z metody najmniejszych kwadratów, aby obliczyć linię prostą, która najlepiej pasuje do danych, a następnie zwraca tablicę opisującą tę linię. Funkcję REGLINP można również połączyć z innymi funkcjami, aby obliczyć statystykę dla innych typów modeli, które są liniowe w nieznanych parametrach, w tym serii wielomianowych, logarytmicznych, wykładniczych i potęgowych. Funkcja zwraca tablicę wartości, musi więc być wprowadzana w postaci formuły tablicowej. Instrukcje są zgodne z przykładami przedstawionymi w tym artykule.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Argument wymagany. Jest to zestaw znanych wartości y spełniających zależność y = mx + b. Jeśli zakres known_y znajduje się w jednej kolumnie, to każda z known_x jest interpretowana jako oddzielna zmienna. Jeśli zakres known_y znajduje się w jednym wierszu, to każdy wiersz known_x jest interpretowany jako oddzielna zmienna.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcjonalnie. Jest to zestaw znanych wartości x spełniających zależność y = mx + b. Zakres known_x może zawierać jeden lub więcej zestawów zmiennych. Jeśli użyto tylko jednej zmiennej, known_y i known_x mogą być zakresami o dowolnym kształcie, o ile mają jednakowe wymiary. Jeśli użyto więcej niż jednej zmiennej, known_y musi być wektorem (czyli zakresem o wysokości jednego wiersza lub szerokości jednej kolumny). Jeśli argument known_x zostanie pominięty, przyjmuje się, że jest on tablicą {1;2;3,...} o takim samym rozmiarze jak known_y .' }, + constb: { name: 'const', detail: 'Opcjonalnie. Wartość logiczna określająca, czy stała b ma mieć narzuconą wartość 0. Jeżeli stała ma wartość PRAWDA lub jest pominięta, to stała b jest obliczana normalnie. Jeśli stała ma wartość FAŁSZ, to stała b jest ustawiana jako równa 0, a wartości m są dostosowywane tak, aby wypełnić równanie y = mx.' }, + stats: { name: 'stats', detail: 'Opcjonalnie. Wartość logiczna określająca, czy mają być zwracane dodatkowe statystyki regresji. Jeśli argument statystyka ma wartość PRAWDA, funkcja REGLINP zwraca dodatkowe statystyki regresji; W rezultacie zwrócona tablica to {mn;mn-1,...,m1;b; sen,sen-1,...,se1,seb; r 2,sey ; F,df; ssreg,ssresid} . Jeśli argument statystyka ma wartość FAŁSZ lub jest pominięty, funkcja REGLINP zwraca tylko współczynniki m i stałą b. Poniżej przedstawiono dodatkowe statystyki regresji:' }, + }, + }, + LOGEST: { + description: 'Poniżej przedstawiono równanie krzywej:', + abstract: 'Poniżej przedstawiono równanie krzywej:', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Zestaw znanych wartości y spełniających zależność y = b*m^x. Jeśli tablica znane_y znajduje się w pojedynczej kolumnie, to każda kolumna tablicy znane_x jest interpretowana jako oddzielna zmienna. Jeśli tablica znane_y znajduje się w pojedynczym wierszu, to każdy wiersz tablicy znane_x jest interpretowany jako oddzielna zmienna.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcjonalne. Zbiór znanych wartości x spełniających zależność y = b*m^x. Tablica known_x może zawierać jeden lub więcej zestawów zmiennych. Jeśli jest używana tylko jedna zmienna, known_y i known_x mogą być zakresami dowolnego kształtu, o ile mają jednakowe wymiary. Jeśli jest używana więcej niż jedna zmienna, known_y musi być zakresem komórek o wysokości jednego wiersza lub szerokości jednej kolumny (nazywanej również wektorem). Jeżeli argument znane_x jest pominięty, przyjmuje się, że jest on tablicą {1;2;3;...} o tym samym rozmiarze, co znane_y.' }, + constb: { name: 'const', detail: 'Opcjonalne. Wartość logiczna określająca, czy stała b ma mieć narzuconą wartość 1. Jeżeli stała ma wartość PRAWDA lub jest pominięta, to stała b jest obliczana normalnie. Jeśli stała ma wartość FAŁSZ, to stała b jest ustawiana na wartość 1, a wartości m są dopasowywane do równania y = m^x.' }, + stats: { name: 'stats', detail: 'Opcjonalne. Wartość logiczna określająca, czy mają być zwracane dodatkowe statystyki regresji. Jeśli argument statystyka ma wartość PRAWDA, to funkcja REGEXPP zwraca dodatkowe statystyki regresji, więc zwrócona tablica przedstawia się następująco: {mn;mn-1;...;m1;b\\sen;sen-1;...;se1;seb\\r 2;sey\\F;df\\ssreg;ssresid}. Jeśli argument statystyka ma wartość FAŁSZ lub jest pominięty, to funkcja REGEXPP zwraca jedynie współczynniki m i stałą b.' }, + }, + }, + LOGNORM_DIST: { + description: 'Funkcję tę należy stosować do analizowania danych, które zostały przetworzone logarytmicznie.', + abstract: 'Funkcję tę należy stosować do analizowania danych, które zostały przetworzone logarytmicznie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + mean: { name: 'mean', detail: 'Wymagane. Wartość średnia ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe ln(x).' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu skumulowany jest PRAWDA, funkcja ROZKŁ.LOG zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + }, + }, + LOGNORM_INV: { + description: 'Zwraca odwrotność funkcji skumulowanego rozkładu logarytmiczno-normalnego x, gdzie ln(x) ma rozkład normalny z parametrami średnia i odchylenie_std. Jeśli p = ROZKŁAD.LOG(x;...), to ROZKŁ.LOG.ODWR(p;...) = x.', + abstract: 'Zwraca odwrotność funkcji skumulowanego rozkładu logarytmiczno-normalnego x, gdzie ln(x) ma rozkład normalny z parametrami średnia i odchylenie_std. Jeśli p = ROZKŁAD.LOG(x;...), to ROZKŁ.LOG.ODWR(p;...) = x.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem logarytmiczno-normalnym.' }, + mean: { name: 'mean', detail: 'Wymagane. Wartość średnia ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe ln(x).' }, + }, + }, + MARGINOFERROR: { + description: 'Oblicza margines błędu na podstawie zakresu wartości i poziomu ufności.', + abstract: 'Oblicza margines błędu na podstawie zakresu wartości i poziomu ufności.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=pl', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Zakres wartości używany do obliczenia marginesu błędu.' }, + confidence: { name: 'confidence', detail: 'Żądany poziom ufności z przedziału (0; 1).' }, + }, + }, + MAX: { + description: 'Zwraca największą wartość w zbiorze wartości.', + abstract: 'Zwraca największą wartość w zbiorze wartości.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć wartość maksymalną.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć wartość maksymalną.' }, + }, + }, + MAXA: { + description: 'Zwraca największą wartość z listy argumentów.', + abstract: 'Zwraca największą wartość z listy argumentów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Wymagane. Pierwszy argument liczbowy, dla którego ma zostać obliczona wartość maksymalna.' }, + value2: { name: 'value2', detail: 'Opcjonalne. Argumenty liczbowe, od 2 do 255 wartości, dla których należy znaleźć największą wartość.' }, + }, + }, + MAXIFS: { + description: 'Funkcja MAKS.WARUNKÓW zwraca wartość maksymalną spośród komórek spełniających podany zestaw warunków lub kryteriów.', + abstract: 'Funkcja MAKS.WARUNKÓW zwraca wartość maksymalną spośród komórek spełniających podany zestaw warunków lub kryteriów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'Zakres komórek, w którym zostanie określona wartość maksymalna.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Zbiór komórek ocenianych na podstawie kryteriów.' }, + criteria1: { name: 'criteria1', detail: 'Kryteria w postaci liczby, wyrażenia lub tekstu, definiujące, które wartości zostaną określone jako maksymalne. Takie same kryteria stosuje się w funkcjach MIN.WARUNKÓW , SUMA.WARUNKÓW i ŚREDNIA.WARUNKÓW .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 126 par zakres/kryteria.' }, + criteria2: { name: 'criteria2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 126 par zakres/kryteria.' }, + }, + }, + MEDIAN: { + description: 'Zwraca medianę podanych liczb.', + abstract: 'Zwraca medianę podanych liczb.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Pierwsza liczba, odwołanie do komórki lub zakres, dla których chcesz wyznaczyć medianę.' }, + number2: { name: 'number2', detail: 'Dodatkowe liczby, odwołania do komórek lub zakresy, dla których chcesz wyznaczyć medianę; maksymalnie 255.' }, + }, + }, + MIN: { + description: 'Zwraca najmniejszą liczbę w zbiorze wartości.', + abstract: 'Zwraca najmniejszą liczbę w zbiorze wartości.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest opcjonalny, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć wartość minimalną.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest opcjonalny, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których należy wyznaczyć wartość minimalną.' }, + }, + }, + MINA: { + description: 'Zwraca najmniejszą wartość z listy argumentów.', + abstract: 'Zwraca najmniejszą wartość z listy argumentów.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy wyznaczyć najmniejszą wartość.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości, dla których należy wyznaczyć najmniejszą wartość.' }, + }, + }, + MINIFS: { + description: 'Funkcja MIN.WARUNKÓW zwraca wartość minimalną spośród komórek spełniających podany zestaw warunków lub kryteriów.', + abstract: 'Funkcja MIN.WARUNKÓW zwraca wartość minimalną spośród komórek spełniających podany zestaw warunków lub kryteriów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'Zakres komórek, w którym zostanie określona wartość minimalna.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Zbiór komórek ocenianych na podstawie kryteriów.' }, + criteria1: { name: 'criteria1', detail: 'Kryteria w postaci liczby, wyrażenia lub tekstu, definiujące, które wartości zostaną określone jako minimalne. Takie same kryteria stosuje się w funkcjach MAKS.WARUNKÓW , SUMA.WARUNKÓW i ŚREDNIA.WARUNKÓW .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 126 par zakres/kryteria.' }, + criteria2: { name: 'criteria2', detail: 'Dodatkowe zakresy i skojarzone z nimi kryteria. Maksymalnie można wprowadzić 126 par zakres/kryteria.' }, + }, + }, + MODE_MULT: { + description: 'Jeśli istnieje więcej niż jedna dominanta, ta funkcja zwraca kilka wyników. Funkcja zwraca tablicę wartości, więc musi zostać wprowadzona w postaci formuły tablicowej.', + abstract: 'Jeśli istnieje więcej niż jedna dominanta, ta funkcja zwraca kilka wyników. Funkcja zwraca tablicę wartości, więc musi zostać wprowadzona w postaci formuły tablicowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwsza liczba zakresu, dla którego ma zostać obliczona dominanta.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Argumenty liczbowe od 2 do 254, dla których należy obliczyć dominantę. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + MODE_SNGL: { + description: 'Zwraca wartość najczęściej występującą lub powtarzającą się w tablicy albo w zakresie danych.', + abstract: 'Zwraca wartość najczęściej występującą lub powtarzającą się w tablicy albo w zakresie danych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument, dla którego ma zostać obliczona dominanta.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Argumenty od 2 do 254, dla których należy obliczyć dominantę. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Zwraca ujemny rozkład dwumianowy — prawdopodobieństwo, że wystąpi liczba_p porażek przed wystąpieniem liczba_s-tego sukcesu przy prawdopodobieństwie sukcesu prawdopodobieństwo_s.', + abstract: 'Zwraca ujemny rozkład dwumianowy — prawdopodobieństwo, że wystąpi liczba_p porażek przed wystąpieniem liczba_s-tego sukcesu przy prawdopodobieństwie sukcesu prawdopodobieństwo_s.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Wymagane. Liczba porażek.' }, + numberS: { name: 'number_s', detail: 'Wymagane. Progowa liczba sukcesów.' }, + probabilityS: { name: 'probability_s', detail: 'Wymagane. Prawdopodobieństwo sukcesu.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁ.DWUM.PRZEC zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + }, + }, + NORM_DIST: { + description: 'Zwraca rozkład normalny dla określonej średniej i odchylenia standardowego. Funkcja ta ma bardzo szeroki zakres zastosowań w statystyce, łącznie z badaniem hipotez.', + abstract: 'Zwraca rozkład normalny dla określonej średniej i odchylenia standardowego. Funkcja ta ma bardzo szeroki zakres zastosowań w statystyce, łącznie z badaniem hipotez.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której należy obliczyć rozkład.' }, + mean: { name: 'mean', detail: 'Wymagane. Średnia arytmetyczna rozkładu.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe rozkładu.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu "skumulowany" jest PRAWDA, jest to norma. Funkcja ROZKŁ.D zwraca funkcję rozkładu skumulowanego. jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + }, + }, + NORM_INV: { + description: 'Zwraca odwrotność skumulowanego rozkładu normalnego dla podanej średniej i odchylenia standardowego.', + abstract: 'Zwraca odwrotność skumulowanego rozkładu normalnego dla podanej średniej i odchylenia standardowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo odpowiadające rozkładowi normalnemu.' }, + mean: { name: 'mean', detail: 'Wymagane. Średnia arytmetyczna rozkładu.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe rozkładu.' }, + }, + }, + NORM_S_DIST: { + description: 'Norma. Funkcja ROZKŁ.S w programie Excel zwraca standardowy rozkład normalny ( tj. ma średnią zero i odchylenie standardowe jednego ). Funkcji tej można używać miejscu tabeli standardowych obszarów krzywej normalnej.', + abstract: 'Norma. Funkcja ROZKŁ.S w programie Excel zwraca standardowy rozkład normalny ( tj. ma średnią zero i odchylenie standardowe jednego ). Funkcji tej można używać miejscu tabeli standardowych obszarów krzywej normalnej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Argument wymagany. Jest to wartość, dla której należy obliczyć rozkład.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Argumentem skumulowanym może być PRAWDA lub FAŁSZ . Ta wartość logiczna określa postać funkcji. Jeśli wartością argumentu "skumulowany" jest PRAWDA, to norma. Funkcja ROZKŁ.S zwraca funkcję rozkładu skumulowanego . Jeśli ma wartość FAŁSZ, funkcja zwraca funkcję masy prawdopodobieństwa .' }, + }, + }, + NORM_S_INV: { + description: 'Zwraca funkcję odwrotną skumulowanego, standardowego rozkładu normalnego. Rozkład ten ma średnią równą zero i standardowe odchylenie równe jeden.', + abstract: 'Zwraca funkcję odwrotną skumulowanego, standardowego rozkładu normalnego. Rozkład ten ma średnią równą zero i standardowe odchylenie równe jeden.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo odpowiadające rozkładowi normalnemu.' }, + }, + }, + PEARSON: { + description: 'Zwraca współczynnik korelacji liniowej Pearsona r. Jest to bezwymiarowy wskaźnik, którego wartość mieści się w zakresie od -1,0 do 1,0 włącznie, i odzwierciedla stopień liniowej zależności pomiędzy dwoma zestawami danych.', + abstract: 'Zwraca współczynnik korelacji liniowej Pearsona r. Jest to bezwymiarowy wskaźnik, którego wartość mieści się w zakresie od -1,0 do 1,0 włącznie, i odzwierciedla stopień liniowej zależności pomiędzy dwoma zestawami danych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Zbiór wartości niezależnych.' }, + array2: { name: 'array2', detail: 'Wymagane. Zbiór wartości zależnych.' }, + }, + }, + PERCENTILE_EXC: { + description: 'Zwraca k-ty percentyl wartości w zestawie danych (z wyłączeniem 0 i 1).', + abstract: 'Zwraca k-ty percentyl wartości w zestawie danych (z wyłączeniem 0 i 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres danych określający pozycję względną.' }, + k: { name: 'k', detail: 'Wartość percentyla z zakresu od 0 do 1, z wyłączeniem 0 i 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Zwraca k-ty percentyl wartości w zestawie danych (z uwzględnieniem 0 i 1).', + abstract: 'Zwraca k-ty percentyl wartości w zestawie danych (z uwzględnieniem 0 i 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres danych określający pozycję względną.' }, + k: { name: 'k', detail: 'Wartość percentyla z zakresu od 0 do 1, z uwzględnieniem 0 i 1.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Zwraca rangę procentową wartości w zestawie danych (z wyłączeniem 0 i 1).', + abstract: 'Zwraca rangę procentową wartości w zestawie danych (z wyłączeniem 0 i 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres danych określający pozycję względną.' }, + x: { name: 'x', detail: 'Wartość, dla której chcesz poznać rangę.' }, + significance: { name: 'significance', detail: 'Wartość określająca liczbę cyfr znaczących zwracanej wartości procentowej. Jeśli ją pominiesz, funkcja PERCENTRANK.EXC użyje trzech cyfr (0,xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Zwraca rangę procentową wartości w zestawie danych (z uwzględnieniem 0 i 1).', + abstract: 'Zwraca rangę procentową wartości w zestawie danych (z uwzględnieniem 0 i 1).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres danych określający pozycję względną.' }, + x: { name: 'x', detail: 'Wartość, dla której chcesz poznać rangę.' }, + significance: { name: 'significance', detail: 'Wartość określająca liczbę cyfr znaczących zwracanej wartości procentowej. Jeśli ją pominiesz, funkcja PERCENTRANK.INC użyje trzech cyfr (0,xxx).' }, + }, + }, + PERMUT: { + description: 'Zwraca liczbę permutacji dla podanej liczby obiektów, które można wybrać z szerszej grupy obiektów liczbowych. Permutacją jest dowolny zbiór lub podzbiór obiektów lub zdarzeń, gdzie ważne jest wewnętrzne uporządkowanie. Permutacje różnią się od kombinacji, dla których wewnętrzne uporządkowanie nie jest istotne. Funkcję tę należy stosować do obliczania prawdopodobieństwa typu loteryjnego.', + abstract: 'Zwraca liczbę permutacji dla podanej liczby obiektów, które można wybrać z szerszej grupy obiektów liczbowych. Permutacją jest dowolny zbiór lub podzbiór obiektów lub zdarzeń, gdzie ważne jest wewnętrzne uporządkowanie. Permutacje różnią się od kombinacji, dla których wewnętrzne uporządkowanie nie jest istotne. Funkcję tę należy stosować do obliczania prawdopodobieństwa typu loteryjnego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba całkowita, która opisuje liczbę obiektów.' }, + numberChosen: { name: 'number_chosen', detail: 'Wymagane. Liczba całkowita, która opisuje liczbę obiektów w każdej permutacji.' }, + }, + }, + PERMUTATIONA: { + description: 'Zwraca liczbę permutacji dla podanej liczby obiektów (z powtórzeniami), które można wybrać spośród wszystkich obiektów.', + abstract: 'Zwraca liczbę permutacji dla podanej liczby obiektów (z powtórzeniami), które można wybrać spośród wszystkich obiektów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba całkowita, która opisuje całkowitą liczbę obiektów.' }, + numberChosen: { name: 'number_chosen', detail: 'Wymagane. Liczba całkowita, która opisuje liczbę obiektów w każdej permutacji.' }, + }, + }, + PHI: { + description: 'Zwraca wartość funkcji gęstości dla standardowego rozkładu normalnego.', + abstract: 'Zwraca wartość funkcji gęstości dla standardowego rozkładu normalnego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. X jest liczbą, dla której ma zostać zwrócona gęstość dla standardowego rozkładu normalnego.' }, + }, + }, + POISSON_DIST: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Poissona. Zwykłym zastosowaniem rozkładu Poissona jest prognozowanie liczby zdarzeń w danym czasie, takiej jak liczba samochodów przejeżdżających przez plac w czasie jednej minuty.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Poissona. Zwykłym zastosowaniem rozkładu Poissona jest prognozowanie liczby zdarzeń w danym czasie, takiej jak liczba samochodów przejeżdżających przez plac w czasie jednej minuty.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Liczba zdarzeń.' }, + mean: { name: 'mean', detail: 'Wymagane. Oczekiwana wartość liczbowa.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać zwracanego rozkładu prawdopodobieństwa. Jeśli argument skumulowany ma wartość PRAWDA, funkcja ROZKŁ.POISSON zwraca skumulowane prawdopodobieństwo Poissona, że liczba przypadkowych zdarzeń będzie między zero a x włącznie; jeśli ma wartość FAŁSZ, funkcja zwraca funkcję masy prawdopodobieństwa Poissona, że liczba zdarzeń będzie równa dokładnie x.' }, + }, + }, + PROB: { + description: 'Zwraca prawdopodobieństwo, że wartości w zakresie znajdują się pomiędzy dwiema granicami. Jeżeli argument górna_granica nie jest podany, funkcja ta zwraca prawdopodobieństwo, że wartości w zakres_x są równe dolna_granica.', + abstract: 'Zwraca prawdopodobieństwo, że wartości w zakresie znajdują się pomiędzy dwiema granicami. Jeżeli argument górna_granica nie jest podany, funkcja ta zwraca prawdopodobieństwo, że wartości w zakres_x są równe dolna_granica.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Wymagane. Zakres wartości liczbowych x, z którymi są skojarzone prawdopodobieństwa.' }, + probRange: { name: 'prob_range', detail: 'Wymagane. Zbiór prawdopodobieństw skojarzonych z wartościami określonymi w argumencie zakres_x.' }, + lowerLimit: { name: 'lower_limit', detail: 'Opcjonalne. Dolna granica wartości, dla których jest poszukiwane prawdopodobieństwo.' }, + upperLimit: { name: 'upper_limit', detail: 'Opcjonalne. Górna granica wartości, dla których jest poszukiwane prawdopodobieństwo.' }, + }, + }, + QUARTILE_EXC: { + description: 'Zwraca kwartyl zbioru danych na podstawie wartości percentylu z przedziału od 0 do 1.', + abstract: 'Zwraca kwartyl zbioru danych na podstawie wartości percentylu z przedziału od 0 do 1.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres komórek z wartościami liczbowymi, dla których ma zostać obliczona wartość kwartylu.' }, + quart: { name: 'quart', detail: 'Wymagane. Wskazuje, która wartość ma zostać zwrócona.' }, + }, + }, + QUARTILE_INC: { + description: 'Kwartyle są często używane w danych o sprzedaży i w danych statystycznych do dzielenia populacji na grupy. Funkcję KWARTYL.PRZEDZ.ZAMK można na przykład zastosować do znalezienia 25% najwyższych przychodów w populacji.', + abstract: 'Kwartyle są często używane w danych o sprzedaży i w danych statystycznych do dzielenia populacji na grupy. Funkcję KWARTYL.PRZEDZ.ZAMK można na przykład zastosować do znalezienia 25% najwyższych przychodów w populacji.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres komórek z wartościami liczbowymi, dla których ma zostać obliczona wartość kwartylu.' }, + quart: { name: 'quart', detail: 'Wymagane. Wskazuje, która wartość ma zostać zwrócona.' }, + }, + }, + RANK_AVG: { + description: 'Zwraca pozycję liczby na liście liczb: jej rozmiar względem innych wartości na liście. Jeśli więcej niż jedna wartość ma taką samą pozycję, zwracana jest średnia pozycja.', + abstract: 'Zwraca pozycję liczby na liście liczb: jej rozmiar względem innych wartości na liście. Jeśli więcej niż jedna wartość ma taką samą pozycję, zwracana jest średnia pozycja.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, której pozycja ma zostać określona.' }, + ref: { name: 'ref', detail: 'Wymagane. Tablica z listą liczb lub odwołanie do takiej listy. Wartości w odwołaniu niebędące liczbami są ignorowane.' }, + order: { name: 'order', detail: 'Opcjonalne. Liczba określająca sposób ustalania pozycji liczby.' }, + }, + }, + RANK_EQ: { + description: 'Zwraca pozycję pewnej liczby na liście liczb. Jego rozmiar jest w stosunku do innych wartości na liście; Jeśli więcej niż jedna wartość ma taką samą pozycję, zwracana jest najwyższa pozycja tego zestawu wartości.', + abstract: 'Zwraca pozycję pewnej liczby na liście liczb. Jego rozmiar jest w stosunku do innych wartości na liście; Jeśli więcej niż jedna wartość ma taką samą pozycję, zwracana jest najwyższa pozycja tego zestawu wartości.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, której pozycja ma zostać określona.' }, + ref: { name: 'ref', detail: 'Wymagane. Tablica z listą liczb lub odwołanie do takiej listy. Wartości w odwołaniu niebędące liczbami są ignorowane.' }, + order: { name: 'order', detail: 'Opcjonalne. Liczba określająca sposób ustalania pozycji liczby.' }, + }, + }, + RSQ: { + description: 'Zwraca kwadrat korelacji iloczynu momentów Pearsona dla punktów danych w argumentach znane_y i znane_x. Aby uzyskać więcej informacji, zobacz PEARSON, funkcja . Wartość R-kwadrat można zinterpretować jako proporcję wariancji y przypisywaną do wariancji x.', + abstract: 'Zwraca kwadrat korelacji iloczynu momentów Pearsona dla punktów danych w argumentach znane_y i znane_x. Aby uzyskać więcej informacji, zobacz PEARSON, funkcja . Wartość R-kwadrat można zinterpretować jako proporcję wariancji y przypisywaną do wariancji x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Tablica lub zakres komórek zawierający numeryczne zależne punkty danych.' }, + knownXs: { name: 'known_x\'s', detail: 'Wymagane. Zbiór niezależnych punktów danych.' }, + }, + }, + SKEW: { + description: 'Zwraca skośność rozkładu. Skośność charakteryzuje stopień asymetrii rozkładu wokół jego średniej. Skośność dodatnia określa rozkład z asymetrią rozciągającą się w kierunku wartości dodatnich. Skośność ujemna określa rozkład z asymetrią rozciągającą się w kierunku wartości ujemnych.', + abstract: 'Zwraca skośność rozkładu. Skośność charakteryzuje stopień asymetrii rozkładu wokół jego średniej. Skośność dodatnia określa rozkład z asymetrią rozciągającą się w kierunku wartości dodatnich. Skośność ujemna określa rozkład z asymetrią rozciągającą się w kierunku wartości ujemnych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których zostanie obliczona skośność. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Argument liczba1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów, dla których zostanie obliczona skośność. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + SKEW_P: { + description: 'Zwraca skośność rozkładu na podstawie populacji, charakteryzującą stopień asymetrii rozkładu wokół średniej.', + abstract: 'Zwraca skośność rozkładu na podstawie populacji, charakteryzującą stopień asymetrii rozkładu wokół średniej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Pierwsza liczba, odwołanie do komórki lub zakres, dla których chcesz wyznaczyć skośność.' }, + number2: { name: 'number2', detail: 'Dodatkowe liczby, odwołania do komórek lub zakresy, dla których chcesz wyznaczyć skośność; maksymalnie 255.' }, + }, + }, + SLOPE: { + description: 'Zwraca nachylenie wykresu regresji liniowej dla wszystkich punktów danych w argumentach znane_y i znane_x. Nachylenie to współrzędna pionowa podzielona przez współrzędną poziomą między dwoma dowolnymi punktami na linii, która określa wielkość zmiany wzdłuż linii regresji.', + abstract: 'Zwraca nachylenie wykresu regresji liniowej dla wszystkich punktów danych w argumentach znane_y i znane_x. Nachylenie to współrzędna pionowa podzielona przez współrzędną poziomą między dwoma dowolnymi punktami na linii, która określa wielkość zmiany wzdłuż linii regresji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Tablica lub zakres komórek zawierający numeryczne zależne punkty danych.' }, + knownXs: { name: 'known_x\'s', detail: 'Wymagane. Zbiór niezależnych punktów danych.' }, + }, + }, + SMALL: { + description: 'Zwraca k-tą najmniejszą wartość ze zbioru danych. Funkcji tej należy używać do uzyskiwania wartości znajdujących się w określonej względnej pozycji w zbiorze danych.', + abstract: 'Zwraca k-tą najmniejszą wartość ze zbioru danych. Funkcji tej należy używać do uzyskiwania wartości znajdujących się w określonej względnej pozycji w zbiorze danych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres danych numerycznych, dla których należy określić k-tą najmniejszą wartość.' }, + k: { name: 'k', detail: 'Argument wymagany. Pozycja (od najniższej) w tablicy lub w zakresie danych, którą ma zwrócić funkcja.' }, + }, + }, + STANDARDIZE: { + description: 'Zwraca wartość znormalizowaną z rozkładu opisanego przez argumenty średnia i odchylenie_std.', + abstract: 'Zwraca wartość znormalizowaną z rozkładu opisanego przez argumenty średnia i odchylenie_std.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, którą zostanie znormalizowana.' }, + mean: { name: 'mean', detail: 'Wymagane. Średnia arytmetyczna rozkładu.' }, + standardDev: { name: 'standard_dev', detail: 'Wymagane. Odchylenie standardowe rozkładu.' }, + }, + }, + STDEV_P: { + description: 'Odchylenie standardowe jest miarą szerokości rozproszenia wartości od wartości średniej.', + abstract: 'Odchylenie standardowe jest miarą szerokości rozproszenia wartości od wartości średniej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 1 do 254 argumentów odpowiadających populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + STDEV_S: { + description: 'Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + abstract: 'Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający próbce populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 254 argumentów liczbowych odpowiadających próbce populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + STDEVA: { + description: 'Szacuje odchylenie standardowe próbki. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości przeciętnej (średniej).', + abstract: 'Szacuje odchylenie standardowe próbki. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości przeciętnej (średniej).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości odpowiadających próbce populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości odpowiadających próbce populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + STDEVPA: { + description: 'Oblicza odchylenie standardowe dla całej populacji podanej jako argumenty, w tym tekst i wartości logiczne. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + abstract: 'Oblicza odchylenie standardowe dla całej populacji podanej jako argumenty, w tym tekst i wartości logiczne. Odchylenie standardowe jest miarą tego, jak szeroko wartości są rozproszone od wartości średniej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości odpowiadających populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 wartości odpowiadających populacji. Zamiast argumentów rozdzielonych średnikami można użyć pojedynczej tablicy lub odwołania do tablicy.' }, + }, + }, + STEYX: { + description: 'Zwraca błąd standardowy prognozowanej wartości y dla każdego x w regresji. Błąd standardowy jest miarą wielkości błędu przy prognozowaniu wartości y dla oddzielnej wartości x.', + abstract: 'Zwraca błąd standardowy prognozowanej wartości y dla każdego x w regresji. Błąd standardowy jest miarą wielkości błędu przy prognozowaniu wartości y dla oddzielnej wartości x.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Wymagane. Tablica lub zakres zależnych punktów danych.' }, + knownXs: { name: 'known_x\'s', detail: 'Wymagane. Tablica lub zakres niezależnych punktów danych.' }, + }, + }, + T_DIST: { + description: 'Zwraca lewostronny rozkład t-Studenta. Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + abstract: 'Zwraca lewostronny rozkład t-Studenta. Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość liczbowa, przy której należy oszacować rozkład.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba całkowita oznaczająca liczbę stopni swobody.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wartość logiczna, która określa postać funkcji. Jeśli wartością argumentu „skumulowany” jest PRAWDA, funkcja ROZKŁ.T zwraca funkcję rozkładu skumulowanego, a jeśli FAŁSZ, funkcja zwraca funkcję gęstości prawdopodobieństwa.' }, + }, + }, + T_DIST_2T: { + description: 'Rozkład t-Studenta jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + abstract: 'Rozkład t-Studenta jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość liczbowa, przy której należy oszacować rozkład.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba całkowita oznaczająca liczbę stopni swobody.' }, + }, + }, + T_DIST_RT: { + description: 'Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + abstract: 'Rozkład t jest stosowany przy testowaniu hipotez dla małych próbek zbiorów danych. Funkcję tę należy stosować zamiast tabeli wartości krytycznych dla rozkładu t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość liczbowa, przy której należy oszacować rozkład.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba całkowita oznaczająca liczbę stopni swobody.' }, + }, + }, + T_INV: { + description: 'Zwraca lewą odwrotność rozkładu t-Studenta.', + abstract: 'Zwraca lewą odwrotność rozkładu t-Studenta.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem t-Studenta.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba stopni swobody charakteryzująca rozkład.' }, + }, + }, + T_INV_2T: { + description: 'Zwraca dwustronną odwrotność rozkładu t-Studenta.', + abstract: 'Zwraca dwustronną odwrotność rozkładu t-Studenta.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Wymagane. Prawdopodobieństwo skojarzone z rozkładem t-Studenta.' }, + degFreedom: { name: 'degFreedom', detail: 'Wymagane. Liczba stopni swobody charakteryzująca rozkład.' }, + }, + }, + T_TEST: { + description: 'Zwraca prawdopodobieństwo skojarzone z testem t-Studenta. Funkcję T.TEST należy stosować do określenia, czy istnieje prawdopodobieństwo tego, że dwie próbki pochodzą z tych samych podległych populacji, które mają taką samą wartość średnią.', + abstract: 'Zwraca prawdopodobieństwo skojarzone z testem t-Studenta. Funkcję T.TEST należy stosować do określenia, czy istnieje prawdopodobieństwo tego, że dwie próbki pochodzą z tych samych podległych populacji, które mają taką samą wartość średnią.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Wymagane. Pierwszy zbiór danych.' }, + array2: { name: 'array2', detail: 'Wymagane. Drugi zbiór danych.' }, + tails: { name: 'tails', detail: 'Wymagane. Określa liczbę stron rozkładu. Jeśli argument strony = 1, funkcja T.TEST stosuje rozkład jednostronny. Jeśli argument strony = 2, funkcja T.TEST stosuje rozkład dwustronny.' }, + type: { name: 'type', detail: 'Wymagane. Typ testu t, który należy przeprowadzić.' }, + }, + }, + TREND: { + description: 'Funkcja REGLINW zwraca wartości trendu liniowego. Pasuje do linii prostej (przy użyciu metody najmniejszych kwadratów) do known_y tablicy i known_x. Funkcja REGLINW zwraca wartości y wzdłuż tej linii dla tablicy new_x określonej przez Ciebie.', + abstract: 'Funkcja REGLINW zwraca wartości trendu liniowego. Pasuje do linii prostej (przy użyciu metody najmniejszych kwadratów) do known_y tablicy i known_x. Funkcja REGLINW zwraca wartości y wzdłuż tej linii dla tablicy new_x określonej przez Ciebie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Zestaw znanych już wartości y w relacji y = mx + b Jeśli tablica znane_y znajduje się w pojedynczej kolumnie, to każda kolumna tablicy znane_x jest interpretowana jako oddzielna zmienna. Jeśli tablica znane_y znajduje się w pojedynczym wierszu, to każdy wiersz tablicy znane_x jest interpretowany jako oddzielna zmienna.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcjonalny zestaw znanych wartości x w relacji y = mx + b Tablica known_x może zawierać jeden lub więcej zestawów zmiennych. Jeśli jest używana tylko jedna zmienna, known_y i known_x mogą być zakresami dowolnego kształtu, o ile mają jednakowe wymiary. Jeśli jest używana więcej niż jedna zmienna, known_y musi być wektorem (czyli zakresem o wysokości jednego wiersza lub szerokości jednej kolumny). Jeżeli argument znane_x jest pominięty, przyjmuje się, że jest on tablicą {1;2;3;...}, która ma ten sam rozmiar co tablica znane_y.' }, + newXs: { name: 'new_x\'s', detail: 'Nowe wartości x, dla których funkcja REGLINW ma zwracać odpowiednie wartości y New_x musi zawierać kolumnę (lub wiersz) dla każdej zmiennej niezależnej, podobnie jak known_x. Jeśli więc known_y znajduje się w jednej kolumnie, known_x i new_x muszą mieć taką samą liczbę kolumn. Jeśli known_y znajduje się w jednym wierszu, known_x i new_x muszą mieć taką samą liczbę wierszy. Jeżeli argument nowe_ x zostanie pominięty, to przyjmuje się, że jest on taki sam, jak argument znane_x. Jeżeli zarówno argument znane_x, jak i nowe_x zostanie pominięty, to przyjmuje się, że są one tablicą {1;2;3;...} o takiej samej wielkości, co tablica znane_y.' }, + constb: { name: 'const', detail: 'Wartość logiczna określająca, czy stała b ma mieć wartość równą 0 Jeżeli stała ma wartość PRAWDA lub jest pominięta, to stała b jest obliczana normalnie. Jeżeli stała ma wartość FAŁSZ, to stała b jest ustawiana jako równa 0, a wartości m są tak dostosowywane, aby spełniać równanie y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'Zwraca średnią wewnętrznego zbioru danych. Funkcja ŚREDNIA.WEWN oblicza średnią, wykluczając pewien procent punktów danych z górnego i dolnego krańca zbioru danych. Funkcję tę należy stosować wtedy, gdy analizując dane, trzeba z nich wykluczyć wartości skrajne.', + abstract: 'Zwraca średnią wewnętrznego zbioru danych. Funkcja ŚREDNIA.WEWN oblicza średnią, wykluczając pewien procent punktów danych z górnego i dolnego krańca zbioru danych. Funkcję tę należy stosować wtedy, gdy analizując dane, trzeba z nich wykluczyć wartości skrajne.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Wymagane. Tablica lub zakres wartości, które należy obciąć i obliczyć dla nich średnią.' }, + percent: { name: 'percent', detail: 'Wymagane. Ułamkowa liczba określająca punkty danych, które powinny być wykluczone z obliczeń. Na przykład, jeśli procent = 0,2, ze zbioru danych zawierających 20 punktów (20 x 0,2) zostaną obcięte 4 punkty: 2 punkty z górnego obszaru i 2 punkty z dolnego obszaru zbioru danych.' }, + }, + }, + VAR_P: { + description: 'Oblicza wariancję na podstawie całej populacji (pomija wartości logiczne i tekstowe w próbce).', + abstract: 'Oblicza wariancję na podstawie całej populacji (pomija wartości logiczne i tekstowe w próbce).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 254 argumentów liczbowych odpowiadających populacji.' }, + }, + }, + VAR_S: { + description: 'Szacuje wariancję na podstawie próbki, ignorując zawarte w niej wartości logiczne i tekst.', + abstract: 'Szacuje wariancję na podstawie próbki, ignorując zawarte w niej wartości logiczne i tekst.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Wymagane. Pierwszy argument liczbowy odpowiadający próbce populacji.' }, + number2: { name: 'number2', detail: 'Opcjonalne. Od 2 do 254 argumentów liczbowych, które odpowiadają próbce populacji.' }, + }, + }, + VARA: { + description: 'Szacuje wariancję na podstawie próbki.', + abstract: 'Szacuje wariancję na podstawie próbki.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów wartości, które odpowiadają próbce populacji.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów wartości, które odpowiadają próbce populacji.' }, + }, + }, + VARPA: { + description: 'Oblicza wariancję na podstawie całej populacji.', + abstract: 'Oblicza wariancję na podstawie całej populacji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów wartości, które odpowiadają populacji.' }, + value2: { name: 'value2', detail: 'Argument wartość1 jest wymagany, pozostałe są opcjonalne. Od 1 do 255 argumentów wartości, które odpowiadają populacji.' }, + }, + }, + WEIBULL_DIST: { + description: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Weibulla. Rozkład ten znajduje zastosowanie w analizie niezawodności, na przykład przy obliczaniu średniego czasu międzyawaryjnego urządzeń.', + abstract: 'Zwraca skumulowaną funkcję (dystrybuantę) rozkładu Weibulla. Rozkład ten znajduje zastosowanie w analizie niezawodności, na przykład przy obliczaniu średniego czasu międzyawaryjnego urządzeń.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Argument wymagany. Wartość, dla której ta funkcja ma zostać obliczona.' }, + alpha: { name: 'alpha', detail: 'Wymagane. Parametr rozkładu.' }, + beta: { name: 'beta', detail: 'Wymagane. Parametr rozkładu.' }, + cumulative: { name: 'cumulative', detail: 'Wymagane. Wyznacza postać funkcji.' }, + }, + }, + Z_TEST: { + description: 'Zwraca jednostronną wartość prawdopodobieństwa testu z.', + abstract: 'Zwraca jednostronną wartość prawdopodobieństwa testu z.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica lub zakres danych, względem których ma zostać przetestowana wartość x.' }, + x: { name: 'x', detail: 'Wartość do przetestowania.' }, + sigma: { name: 'sigma', detail: 'Znane odchylenie standardowe populacji. Jeśli je pominięto, używane jest odchylenie standardowe próbki.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/statistical/pt-BR.ts new file mode 100644 index 0000000000..95a3b1aded --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/statistical/pt-BR.ts @@ -0,0 +1,1683 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + AVEDEV: { + description: 'Retorna a média aritmética dos desvios médios dos pontos de dados a partir de sua média. DESV.MÉDIO é uma medida da variabilidade em um conjunto de dados.', + abstract: 'Retorna a média aritmética dos desvios médios dos pontos de dados a partir de sua média. DESV.MÉDIO é uma medida da variabilidade em um conjunto de dados.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/avedev-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. Argumentos de 1 a 255 para os quais você deseja obter a média aritmética dos desvios absolutos. Você também pode usar uma matriz única ou uma referência a matriz, em vez dos argumentos separados por ponto-e-vírgula.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. Argumentos de 1 a 255 para os quais você deseja obter a média aritmética dos desvios absolutos. Você também pode usar uma matriz única ou uma referência a matriz, em vez dos argumentos separados por ponto-e-vírgula.' }, + }, + }, + AVERAGE: { + description: 'Retorna a média aritmética dos argumentos. Por exemplo, se o intervalo A1:A20 contiver números, a fórmula =AVERAGE(A1:A20) retornará a média desses números.', + abstract: 'Retorna a média aritmética dos argumentos. Por exemplo, se o intervalo A1:A20 contiver números, a fórmula =AVERAGE(A1:A20) retornará a média desses números.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/average-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro número, referência de célula ou intervalo para o qual você deseja a média.' }, + number2: { name: 'number2', detail: 'Opcional. Números adicionais, referências de célula ou intervalos para os quais você deseja a média, até no máximo 255.' }, + }, + }, + AVERAGE_WEIGHTED: { + description: 'A função AVERAGE.WEIGHTED calcula a média ponderada de um conjunto de valores usando os valores e seus pesos correspondentes.', + abstract: 'A função AVERAGE.WEIGHTED calcula a média ponderada de um conjunto de valores usando os valores e seus pesos correspondentes.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/9084098?hl=pt-BR', + }, + ], + functionParameter: { + values: { name: 'valores', detail: 'Os valores cuja média será calculada. Pode ser um intervalo de células ou os próprios valores.' }, + weights: { name: 'pesos', detail: 'A lista correspondente de pesos a aplicar. Os pesos podem ser zero, mas não negativos, e pelo menos um deve ser positivo. O intervalo de pesos deve ter o mesmo número de linhas e colunas que o intervalo de valores.' }, + additionalValues: { name: 'valores_adicionais', detail: 'Valores adicionais opcionais cuja média será calculada.' }, + additionalWeights: { name: 'pesos_adicionais', detail: 'Pesos adicionais opcionais. Cada valor_adicional deve ser seguido por exatamente um peso_adicional.' }, + }, + }, + AVERAGEA: { + description: 'Calcula a média (aritmética) dos valores na lista de argumentos.', + abstract: 'Calcula a média (aritmética) dos valores na lista de argumentos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/averagea-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 células, intervalos de células ou valores cuja média você deseja obter.' }, + value2: { name: 'value2', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 células, intervalos de células ou valores cuja média você deseja obter.' }, + }, + }, + AVERAGEIF: { + description: 'Retorna a média (média aritmética) de todas as células em um intervalo que satisfazem um determinado critério.', + abstract: 'Retorna a média (média aritmética) de todas as células em um intervalo que satisfazem um determinado critério.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/averageif-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Necessário. Uma ou mais células a serem usadas para o cálculo da média, incluindo números ou nomes, matrizes ou referências que contêm números.' }, + criteria: { name: 'criteria', detail: 'Necessário. Os critérios na forma de um número, uma expressão, uma referência de célula ou um texto que define quais células serão usadas para o cálculo da média. Por exemplo, os critérios podem ser expressos como 32, "32", ">32", "maçãs" ou B4.' }, + averageRange: { name: 'average_range', detail: 'Opcional. O conjunto real de células que será usado para calcular a média. Se omitido, será usado o intervalo.' }, + }, + }, + AVERAGEIFS: { + description: 'Retorna a média (média aritmética) de todas as células que satisfazem vários critérios.', + abstract: 'Retorna a média (média aritmética) de todas as células que satisfazem vários critérios.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/averageifs-function', + }, + ], + functionParameter: { + averageRange: { name: 'average_range', detail: 'Necessário. Uma ou mais células a serem usadas para o cálculo da média, incluindo números ou nomes, matrizes ou referências que contêm números.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'Intervalo_critérios1 é obrigatório, intervalos_critérios subsequentes são opcionais. De 1 a 127 intervalos para avaliar os critérios associados.' }, + criteria1: { name: 'criteria1', detail: 'Critérios1 é necessário, critérios subsequentes são opcionais. Os critérios de 1 a 127 na forma de um número, uma expressão, uma referência de célula ou um texto que define quais células serão usadas para calcular a média. Por exemplo, os critérios podem ser expressos como 32, "32", ">32", "maçãs" ou B4.' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Intervalo_critérios1 é obrigatório, intervalos_critérios subsequentes são opcionais. De 1 a 127 intervalos para avaliar os critérios associados.' }, + criteria2: { name: 'criteria2', detail: 'Critérios1 é necessário, critérios subsequentes são opcionais. Os critérios de 1 a 127 na forma de um número, uma expressão, uma referência de célula ou um texto que define quais células serão usadas para calcular a média. Por exemplo, os critérios podem ser expressos como 32, "32", ">32", "maçãs" ou B4.' }, + }, + }, + BETA_DIST: { + description: 'A distribuição beta geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + abstract: 'A distribuição beta geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/beta-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor entre A e B no qual se avalia a função.' }, + alpha: { name: 'alpha', detail: 'Necessário. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Necessário. Um parâmetro da distribuição.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.BETA retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + A: { name: 'A', detail: 'Opcional. Um limite inferior para o intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Um limite superior para o intervalo de x.' }, + }, + }, + BETA_INV: { + description: 'Se probabilidade = DIST.BETA(x,...VERDADEIRO), INV.BETA(probabilidade,...) = x. A distribuição beta pode ser usada no planejamento do projeto para criar modelos de tempos de conclusão provável de acordo com determinado tempo de conclusão e variabilidade esperados.', + abstract: 'Se probabilidade = DIST.BETA(x,...VERDADEIRO), INV.BETA(probabilidade,...) = x. A distribuição beta pode ser usada no planejamento do projeto para criar modelos de tempos de conclusão provável de acordo com determinado tempo de conclusão e variabilidade esperados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/beta-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade associada à distribuição beta.' }, + alpha: { name: 'alpha', detail: 'Necessário. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Necessário. Um parâmetro da distribuição.' }, + A: { name: 'A', detail: 'Opcional. Um limite inferior para o intervalo de x.' }, + B: { name: 'B', detail: 'Opcional. Um limite superior para o intervalo de x.' }, + }, + }, + BINOM_DIST: { + description: 'Retorna a probabilidade de distribuição binomial do termo individual. Use DISTR.BINOM em problemas com um número fixo de testes ou tentativas, quando os resultados de determinada tentativa forem apenas sucesso ou fracasso, quando as tentativas forem independentes e quando a probabilidade de sucesso for constante durante toda a experiência. Por exemplo, DISTR.BINOM pode calcular a probabilidade de que dois dos próximos três bebês sejam meninos.', + abstract: 'Retorna a probabilidade de distribuição binomial do termo individual. Use DISTR.BINOM em problemas com um número fixo de testes ou tentativas, quando os resultados de determinada tentativa forem apenas sucesso ou fracasso, quando as tentativas forem independentes e quando a probabilidade de sucesso for constante durante toda a experiência. Por exemplo, DISTR.BINOM pode calcular a probabilidade de que dois dos próximos três bebês sejam meninos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/binom-dist-function', + }, + ], + functionParameter: { + numberS: { name: 'number_s', detail: 'Necessário. O número de tentativas bem-sucedidas.' }, + trials: { name: 'trials', detail: 'Necessário. O número de tentativas independentes.' }, + probabilityS: { name: 'probability_s', detail: 'Necessário. A probabilidade de sucesso em cada tentativa.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DISTR.BINOM retornará a função de distribuição cumulativa, que é a probabilidade de que exista no máximo núm_s sucessos; se for FALSO, retornará a função massa de probabilidade, que é a probabilidade de que exista núm_s sucessos.' }, + }, + }, + BINOM_DIST_RANGE: { + description: 'Retorna a probabilidade de um resultado de tentativa usando uma distribuição binomial.', + abstract: 'Retorna a probabilidade de um resultado de tentativa usando uma distribuição binomial.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/binom-dist-range-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Obrigatório. O número de tentativas independentes. Deve ser maior que ou igual a 0.' }, + probabilityS: { name: 'probability_s', detail: 'Obrigatório. A probabilidade de sucesso em cada tentativa. Deve ser maior que ou igual a 0 e menor que ou igual a 1.' }, + numberS: { name: 'number_s', detail: 'Obrigatório. O número de tentativas bem-sucedidas. Deve ser maior que ou igual a 0 e menor que ou igual a Tentativas.' }, + numberS2: { name: 'number_s2', detail: 'Opcional. Se fornecido, retorna a probabilidade de que o número de tentativas bem-sucedidas ficará entre Número_s e número _s2. Deve ser maior que ou igual a Número_s e menor que ou igual a Tentativas.' }, + }, + }, + BINOM_INV: { + description: 'Retorna o menor valor para o qual a distribuição binomial cumulativa é maior ou igual ao valor padrão.', + abstract: 'Retorna o menor valor para o qual a distribuição binomial cumulativa é maior ou igual ao valor padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/binom-inv-function', + }, + ], + functionParameter: { + trials: { name: 'trials', detail: 'Necessário. O número de tentativas de Bernoulli.' }, + probabilityS: { name: 'probability_s', detail: 'Necessário. A probabilidade de sucesso em cada tentativa.' }, + alpha: { name: 'alpha', detail: 'Necessário. O valor padrão.' }, + }, + }, + CHISQ_DIST: { + description: 'Retorna a probabilidade unilateral à esquerda da distribuição qui-quadrado.', + abstract: 'Retorna a probabilidade unilateral à esquerda da distribuição qui-quadrado.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/chisq-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'O valor no qual você deseja avaliar a distribuição.' }, + degFreedom: { name: 'deg_freedom', detail: 'O número de graus de liberdade.' }, + cumulative: { name: 'cumulative', detail: 'Um valor lógico que determina a forma da função. Se for VERDADEIRO, retorna a função de distribuição cumulativa; se for FALSO, retorna a função de densidade de probabilidade.' }, + }, + }, + CHISQ_DIST_RT: { + description: 'A distribuição χ2 está associada ao teste χ2. Use o teste χ2 para comparar os valores observados e os esperados. Por exemplo, uma experiência genética pode gerar a hipótese de que a próxima geração de plantas exibirá determinado conjunto de cores. Comparando os resultados observados com os esperados, você poderá decidir se a hipótese original é válida.', + abstract: 'A distribuição χ2 está associada ao teste χ2. Use o teste χ2 para comparar os valores observados e os esperados. Por exemplo, uma experiência genética pode gerar a hipótese de que a próxima geração de plantas exibirá determinado conjunto de cores. Comparando os resultados observados com os esperados, você poderá decidir se a hipótese original é válida.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/chisq-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual a distribuição será avaliada.' }, + degFreedom: { name: 'deg_freedom', detail: 'Necessário. O número de graus de liberdade.' }, + }, + }, + CHISQ_INV: { + description: 'A distribuição qui-quadrada geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + abstract: 'A distribuição qui-quadrada geralmente é usada para estudar a variação na porcentagem de determinado valor em amostras, como a fração do dia que as pessoas passam assistindo televisão.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/chisq-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade associada à distribuição qui-quadrada.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obrigatório. O número de graus de liberdade.' }, + }, + }, + CHISQ_INV_RT: { + description: 'Se a probabilidade = DIST.QUIQUA.CD(x,...), então INV.QUIQUA.CD(probabilidade,...) = x. Use esta função para comparar os resultados observados com os esperados para decidir se a sua hipótese original é válida.', + abstract: 'Se a probabilidade = DIST.QUIQUA.CD(x,...), então INV.QUIQUA.CD(probabilidade,...) = x. Use esta função para comparar os resultados observados com os esperados para decidir se a sua hipótese original é válida.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/chisq-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade associada à distribuição qui-quadrada.' }, + degFreedom: { name: 'deg_freedom', detail: 'Obrigatório. O número de graus de liberdade.' }, + }, + }, + CHISQ_TEST: { + description: 'Retorna o teste para independência. TESTE.QUIQUA retorna o valor da distribuição qui-quadrada (χ2) para a estatística e os graus apropriados de liberdade. Você pode usar os testes χ2 para determinar se os resultados hipotéticos são verificados por uma experiência.', + abstract: 'Retorna o teste para independência. TESTE.QUIQUA retorna o valor da distribuição qui-quadrada (χ2) para a estatística e os graus apropriados de liberdade. Você pode usar os testes χ2 para determinar se os resultados hipotéticos são verificados por uma experiência.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/chisq-test-function', + }, + ], + functionParameter: { + actualRange: { name: 'actual_range', detail: 'Necessário. O intervalo de dados que contém observações a serem comparadas com os valores esperados.' }, + expectedRange: { name: 'expected_range', detail: 'Necessário. O intervalo de dados que contém a razão entre o produto dos totais de linhas e dos totais de colunas e o total geral.' }, + }, + }, + CONFIDENCE_NORM: { + description: 'O intervalo de confiança é um intervalo de valores. A média das suas amostras, x, encontra-se no centro desse intervalo, e o intervalo é x ± INT.CONFIANÇA.NORM. Por exemplo, se x for a média das amostras de tempos de entrega para produtos encomendados pelo correio, x ± INT.CONFIANÇA.NORM será o intervalo de médias da população. Para toda média de população, μ0, nesse intervalo, a probabilidade de se obter uma média de amostras mais distante de μ0 que x é maior que alfa; para qualquer média da população, μ0, não nesse intervalo, a probabilidade de se obter uma média de amostras mais distante de μ0 que x é menor que alfa. Em outras palavras, suponha que utilizemos x, desv_padrão e tamanho para construir um teste bicaudal em nível alfa de significância da hipótese de que a média da população seja μ0. Depois, não rejeitaremos essa hipótese se μ0 estiver no intervalo de confiança e rejeitaremos essa hipótese se μ0 não estiver no intervalo de confiança. O intervalo de confiança não nos permite inferir se há probabilidade 1 – alfa de que nosso próximo pacote levará um tempo de entrega que esteja no intervalo de confiança.', + abstract: 'O intervalo de confiança é um intervalo de valores. A média das suas amostras, x, encontra-se no centro desse intervalo, e o intervalo é x ± INT.CONFIANÇA.NORM. Por exemplo, se x for a média das amostras de tempos de entrega para produtos encomendados pelo correio, x ± INT.CONFIANÇA.NORM será o intervalo de médias da população. Para toda média de população, μ0, nesse intervalo, a probabilidade de se obter uma média de amostras mais distante de μ0 que x é maior que alfa; para qualquer média da população, μ0, não nesse intervalo, a probabilidade de se obter uma média de amostras mais distante de μ0 que x é menor que alfa. Em outras palavras, suponha que utilizemos x, desv_padrão e tamanho para construir um teste bicaudal em nível alfa de significância da hipótese de que a média da população seja μ0. Depois, não rejeitaremos essa hipótese se μ0 estiver no intervalo de confiança e rejeitaremos essa hipótese se μ0 não estiver no intervalo de confiança. O intervalo de confiança não nos permite inferir se há probabilidade 1 – alfa de que nosso próximo pacote levará um tempo de entrega que esteja no intervalo de confiança.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/confidence-norm-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Obrigatório. O nível de significância usado para calcular o nível de confiança. O nível de confiança é igual a 100*(1 - alfa)% ou, em outras palavras, um alfa de 0,05 indica um nível de confiança de 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio-padrão da população para o intervalo de dados e é assumido como conhecido.' }, + size: { name: 'size', detail: 'Obrigatório. O tamanho da amostra.' }, + }, + }, + CONFIDENCE_T: { + description: 'Retorna o intervalo de confiança para uma média da população, usando uma distribuição t de Student.', + abstract: 'Retorna o intervalo de confiança para uma média da população, usando uma distribuição t de Student.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/confidence-t-function', + }, + ], + functionParameter: { + alpha: { name: 'alpha', detail: 'Necessário. O nível de significância usado para calcular o nível de confiança. O nível de confiança é igual a 100*(1 - alfa)% ou, em outras palavras, um alfa de 0,05 indica um nível de confiança de 95%.' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão de população para o intervalo de dados e é considerado conhecido.' }, + size: { name: 'size', detail: 'Necessário. O tamanho da amostra.' }, + }, + }, + CORREL: { + description: 'A função CORREL devolve o coeficiente de correlação de dois intervalos de células. Use o coeficiente de correlação para determinar a relação entre duas propriedades. Por exemplo, você pode examinar a relação entre a temperatura média de um local e o uso de aparelhos de ar condicionado.', + abstract: 'A função CORREL devolve o coeficiente de correlação de dois intervalos de células. Use o coeficiente de correlação para determinar a relação entre duas propriedades. Por exemplo, você pode examinar a relação entre a temperatura média de um local e o uso de aparelhos de ar condicionado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/correl-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. Um intervalo de valores de células.' }, + array2: { name: 'array2', detail: 'Obrigatório. Um segundo intervalo de valores de células.' }, + }, + }, + COUNT: { + description: 'A função CONT.NÚM conta o número de células que contêm números e conta os números na lista de argumentos. Use a função CONT.NÚM para obter o número de entradas em um campo de número que esteja em um intervalo ou uma matriz de números. Por exemplo, você pode inserir a seguinte fórmula para contar os números no intervalo A1:A20: =CONT.NÚM(A1:A20) . Nesse exemplo, se cinco células no intervalo contiverem números, o resultado será 5 .', + abstract: 'A função CONT.NÚM conta o número de células que contêm números e conta os números na lista de argumentos. Use a função CONT.NÚM para obter o número de entradas em um campo de número que esteja em um intervalo ou uma matriz de números. Por exemplo, você pode inserir a seguinte fórmula para contar os números no intervalo A1:A20: =CONT.NÚM(A1:A20) . Nesse exemplo, se cinco células no intervalo contiverem números, o resultado será 5 .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/count-function', + }, + ], + functionParameter: { + value1: { name: 'value 1', detail: 'Obrigatório. O primeiro item, referência de célula ou intervalo em que você deseja contar números.' }, + value2: { name: 'value 2', detail: 'Opcional. Até 255 itens, referências de célula ou intervalos adicionais em que você deseja contar números.' }, + }, + }, + COUNTA: { + description: 'A função CONTAR.VAL conta o número de células que não estão vazias num intervalo.', + abstract: 'A função CONTAR.VAL conta o número de células que não estão vazias num intervalo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/counta-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 células, intervalos de células ou valores cuja média você deseja obter.' }, + value2: { name: 'value2', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 células, intervalos de células ou valores cuja média você deseja obter.' }, + }, + }, + COUNTBLANK: { + description: 'Utilize a função CONTAR.VAZIO , uma das funções Estatísticas , para contar o número de células vazias num intervalo de células.', + abstract: 'Utilize a função CONTAR.VAZIO , uma das funções Estatísticas , para contar o número de células vazias num intervalo de células.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/countblank-function', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'Obrigatório. O intervalo no qual as células em branco serão contadas.' }, + }, + }, + COUNTIF: { + description: 'Use CONT.SE, uma das funções estatísticas , para contar o número de células que atendem a um critério; por exemplo, para contar o número de vezes que uma cidade específica aparece em uma lista de clientes.', + abstract: 'Use CONT.SE, uma das funções estatísticas , para contar o número de células que atendem a um critério; por exemplo, para contar o número de vezes que uma cidade específica aparece em uma lista de clientes.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/use-the-countif-function-in-microsoft-excel', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'O grupo de células que você deseja contar. Intervalo pode conter números, matrizes, um intervalo nomeado ou referências que contenham números. Valores em branco e de texto são ignorados. Saiba como selecionar intervalos em uma planilha .' }, + criteria: { name: 'criteria', detail: 'Um número, expressão, referência de célula ou cadeia de texto que determina quais células serão contadas. Por exemplo, você pode usar um número como 32, uma comparação como ">32", uma célula como B4 ou uma palavra como "maçãs". CONT.SE usa apenas um único critério. Use CONT.SES se você quiser usar vários critérios.' }, + }, + }, + COUNTIFS: { + description: 'A função COUNTIFS aplica critérios a células em vários intervalos e conta o número de vezes que todos os critérios são atendidos.', + abstract: 'A função COUNTIFS aplica critérios a células em vários intervalos e conta o número de vezes que todos os critérios são atendidos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/countifs-function', + }, + ], + functionParameter: { + criteriaRange1: { name: 'criteria_range1', detail: 'Necessário. O primeiro intervalo no qual avaliar os critérios associados.' }, + criteria1: { name: 'criteria1', detail: 'Necessário. Os critérios no formato de um número, uma expressão, uma referência de célula ou um texto que define quais células serão contadas. Por exemplo, os critérios podem ser expressos como 32, ">32", B4, "maçãs" ou "32".' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Opcional. Intervalos adicionais e seus critérios associados. Até 127 intervalo/critérios pares são permitidos.' }, + criteria2: { name: 'criteria2', detail: 'Opcional. Intervalos adicionais e seus critérios associados. Até 127 intervalo/critérios pares são permitidos.' }, + }, + }, + COVARIANCE_P: { + description: 'Retorna a covariação da população, a média dos produtos dos desvios para cada par de pontos de dados em dois conjuntos de dados. Use a covariação para determinar a relação entre dois conjuntos de dados. Por exemplo, você pode verificar se uma receita maior é acompanhada por maiores níveis de instrução.', + abstract: 'Retorna a covariação da população, a média dos produtos dos desvios para cada par de pontos de dados em dois conjuntos de dados. Use a covariação para determinar a relação entre dois conjuntos de dados. Por exemplo, você pode verificar se uma receita maior é acompanhada por maiores níveis de instrução.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/covariance-p-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. O primeiro intervalo de células de inteiros.' }, + array2: { name: 'array2', detail: 'Obrigatório. O segundo intervalo de células de inteiros.' }, + }, + }, + COVARIANCE_S: { + description: 'Retorna a covariação de amostra, a média dos produtos dos desvios para cada par de pontos de dados em dois conjuntos de dados.', + abstract: 'Retorna a covariação de amostra, a média dos produtos dos desvios para cada par de pontos de dados em dois conjuntos de dados.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/covariance-s-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. O primeiro intervalo de células de inteiros.' }, + array2: { name: 'array2', detail: 'Obrigatório. O segundo intervalo de células de inteiros.' }, + }, + }, + DEVSQ: { + description: 'Retorna a soma dos quadrados dos desvios de pontos de dados da média da amostra.', + abstract: 'Retorna a soma dos quadrados dos desvios de pontos de dados da média da amostra.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/devsq-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 argumentos para os quais se deseja calcular a soma dos desvios quadrados. Você pode também usar uma única matriz ou referência a uma matriz em vez dos argumentos separados por ponto-e-vírgulas.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 argumentos para os quais se deseja calcular a soma dos desvios quadrados. Você pode também usar uma única matriz ou referência a uma matriz em vez dos argumentos separados por ponto-e-vírgulas.' }, + }, + }, + EXPON_DIST: { + description: 'Retorna a distribuição exponencial. Use DISTR.EXPON para criar um modelo do tempo entre os eventos, como quanto tempo determinado caixa eletrônico leva para liberar o dinheiro. Por exemplo, você pode usar DISTR.EXPON para determinar a probabilidade de que o processo leve no máximo um minuto.', + abstract: 'Retorna a distribuição exponencial. Use DISTR.EXPON para criar um modelo do tempo entre os eventos, como quanto tempo determinado caixa eletrônico leva para liberar o dinheiro. Por exemplo, você pode usar DISTR.EXPON para determinar a probabilidade de que o processo leve no máximo um minuto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/expon-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor da função.' }, + lambda: { name: 'lambda', detail: 'Necessário. O valor do parâmetro.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que indica a forma da função exponencial a ser fornecida. Se cumulativo for VERDADEIRO, DISTR.EXPON retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + F_DIST: { + description: 'Retorna a distribuição de probabilidade F. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, você pode examinar as pontuações de teste de homens e mulheres que entram no ensino médio e determinar se a variabilidade nas fêmeas é diferente da encontrada nos homens.', + abstract: 'Retorna a distribuição de probabilidade F. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, você pode examinar as pontuações de teste de homens e mulheres que entram no ensino médio e determinar se a variabilidade nas fêmeas é diferente da encontrada nos homens.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/f-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Necessário. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Necessário. O grau de liberdade do denominador.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.F retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + F_DIST_RT: { + description: 'Retorna a distribuição de probabilidade F (de cauda direita) (nível de diversidade) para dois conjuntos de dados. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, é possível examinar os resultados dos testes de homens e mulheres que ingressam no 2º grau e determinar se a variabilidade entre as mulheres é diferente daquela encontrada entre os homens.', + abstract: 'Retorna a distribuição de probabilidade F (de cauda direita) (nível de diversidade) para dois conjuntos de dados. Você pode usar esta função para determinar se dois conjuntos de dados têm graus de diversidade diferentes. Por exemplo, é possível examinar os resultados dos testes de homens e mulheres que ingressam no 2º grau e determinar se a variabilidade entre as mulheres é diferente daquela encontrada entre os homens.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/f-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obrigatório. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obrigatório. O grau de liberdade do denominador.' }, + }, + }, + F_INV: { + description: 'Devolve o inverso da distribuição da probabilidade F. Se p = DIST.F(x,...), INV.F(p,...) = x. A distribuição F pode ser usada em um teste F que compara o grau de variabilidade em dois conjuntos de dados. Por exemplo, você pode analisar as distribuições de renda nos Estados Unidos e Canadá para determinar se os dois países têm um grau de diversidade de renda semelhante.', + abstract: 'Devolve o inverso da distribuição da probabilidade F. Se p = DIST.F(x,...), INV.F(p,...) = x. A distribuição F pode ser usada em um teste F que compara o grau de variabilidade em dois conjuntos de dados. Por exemplo, você pode analisar as distribuições de renda nos Estados Unidos e Canadá para determinar se os dois países têm um grau de diversidade de renda semelhante.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/f-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade associada à distribuição cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obrigatório. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obrigatório. O grau de liberdade do denominador.' }, + }, + }, + F_INV_RT: { + description: 'Retorna o inverso da distribuição de probabilidades F (de cauda direita). Se p = DIST.F.CD(x,...), então INV.F.CD(p,...) = x. A distribuição F pode ser usada em um teste F que compara o grau de variabilidade em dois conjuntos de dados. Por exemplo, você pode analisar as distribuições de renda nos Estados Unidos e Canadá para determinar se os dois países têm um grau de diversidade de renda semelhante.', + abstract: 'Retorna o inverso da distribuição de probabilidades F (de cauda direita). Se p = DIST.F.CD(x,...), então INV.F.CD(p,...) = x. A distribuição F pode ser usada em um teste F que compara o grau de variabilidade em dois conjuntos de dados. Por exemplo, você pode analisar as distribuições de renda nos Estados Unidos e Canadá para determinar se os dois países têm um grau de diversidade de renda semelhante.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/f-inv-rt-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. Uma probabilidade associada à distribuição cumulativa F.' }, + degFreedom1: { name: 'deg_freedom1', detail: 'Obrigatório. O grau de liberdade do numerador.' }, + degFreedom2: { name: 'deg_freedom2', detail: 'Obrigatório. O grau de liberdade do denominador.' }, + }, + }, + F_TEST: { + description: 'Use esta função para determinar se duas amostras possuem variações diferentes. Por exemplo, a partir de resultados de testes fornecidos por escolas públicas e particulares, você pode verificar se essas escolas têm diferentes níveis de diversidade da pontuação de teste.', + abstract: 'Use esta função para determinar se duas amostras possuem variações diferentes. Por exemplo, a partir de resultados de testes fornecidos por escolas públicas e particulares, você pode verificar se essas escolas têm diferentes níveis de diversidade da pontuação de teste.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/f-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Obrigatório. A primeira matriz ou intervalo de dados.' }, + array2: { name: 'array2', detail: 'Obrigatório. A segunda matriz ou intervalo de dados.' }, + }, + }, + FISHER: { + description: 'Retorna a transformação Fisher em x. Essa transformação produz uma função que é normalmente distribuída em vez de distorcida. Use esta função para executar testes de hipóteses no coeficiente de correlação.', + abstract: 'Retorna a transformação Fisher em x. Essa transformação produz uma função que é normalmente distribuída em vez de distorcida. Use esta função para executar testes de hipóteses no coeficiente de correlação.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fisher-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. Um valor numérico para o qual se deseja a transformação.' }, + }, + }, + FISHERINV: { + description: 'Retorna o inverso da transformação Fisher. Use esta transformação ao analisar correlações entre intervalos ou matrizes de dados. Se y = FISHER(x), então FISHERINV(y) = x.', + abstract: 'Retorna o inverso da transformação Fisher. Use esta transformação ao analisar correlações entre intervalos ou matrizes de dados. Se y = FISHER(x), então FISHERINV(y) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/fisherinv-function', + }, + ], + functionParameter: { + y: { name: 'y', detail: 'Obrigatório. O valor para o qual se deseja efetuar o inverso da transformação.' }, + }, + }, + FORECAST: { + description: 'Calcule ou preveja um valor futuro com valores existentes. O valor futuro é um valor y para um determinado valor x. Os valores existentes são valores x conhecidos e valores y e o valor futuro é previsto através da regressão linear. Pode utilizar estas funções para prever futuras vendas, requisitos de inventário ou tendências de consumidor.', + abstract: 'Calcule ou preveja um valor futuro com valores existentes. O valor futuro é um valor y para um determinado valor x. Os valores existentes são valores x conhecidos e valores y e o valor futuro é previsto através da regressão linear. Pode utilizar estas funções para prever futuras vendas, requisitos de inventário ou tendências de consumidor.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'sim O ponto de dados cujo valor você deseja prever.' }, + knownYs: { name: 'known_y\'s', detail: 'sim O intervalo de dados ou matriz dependente.' }, + knownXs: { name: 'known_x\'s', detail: 'sim O intervalo de dados ou matriz independente.' }, + }, + }, + FORECAST_ETS: { + description: 'Prevê um valor futuro com base em valores existentes usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + abstract: 'Prevê um valor futuro com base em valores existentes usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-ets-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data de destino', detail: 'O ponto de dados para o qual você deseja prever um valor.' }, + values: { name: 'Valores', detail: 'Os valores históricos usados na previsão.' }, + timeline: { name: 'Linha do tempo', detail: 'Um intervalo ou matriz independente de datas ou horas numéricas com etapa constante.' }, + seasonality: { name: 'Sazonalidade', detail: 'Opcional. 1 para detecção automática e 0 para nenhuma sazonalidade.' }, + dataCompletion: { name: 'Conclusão de dados', detail: 'Opcional. Use 1 para interpolar pontos ausentes ou 0 para tratá-los como zero.' }, + aggregation: { name: 'Agregação', detail: 'Opcional. Um valor de 1 a 7 especifica a agregação de carimbos de data/hora duplicados.' }, + }, + }, + FORECAST_ETS_CONFINT: { + description: 'Retorna o intervalo de confiança de um valor futuro previsto usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + abstract: 'Retorna o intervalo de confiança de um valor futuro previsto usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-ets-confint-function', + }, + ], + functionParameter: { + targetDate: { name: 'Data de destino', detail: 'O ponto de dados para o qual você deseja prever um valor.' }, + values: { name: 'Valores', detail: 'Os valores históricos usados na previsão.' }, + timeline: { name: 'Linha do tempo', detail: 'Um intervalo ou matriz independente de datas ou horas numéricas com etapa constante.' }, + confidenceLevel: { name: 'Nível de confiança', detail: 'Opcional. Um número entre 0 e 1; o padrão é 0,95.' }, + seasonality: { name: 'Sazonalidade', detail: 'Opcional. 1 para detecção automática e 0 para nenhuma sazonalidade.' }, + dataCompletion: { name: 'Conclusão de dados', detail: 'Opcional. Use 1 para interpolar pontos ausentes ou 0 para tratá-los como zero.' }, + aggregation: { name: 'Agregação', detail: 'Opcional. Um valor de 1 a 7 especifica a agregação de carimbos de data/hora duplicados.' }, + }, + }, + FORECAST_ETS_SEASONALITY: { + description: 'Retorna a duração do padrão sazonal detectado pelo algoritmo de Suavização Exponencial (ETS).', + abstract: 'Retorna a duração do padrão sazonal detectado pelo algoritmo de Suavização Exponencial (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-ets-seasonality-function', + }, + ], + functionParameter: { + values: { name: 'Valores', detail: 'Os valores históricos usados na previsão.' }, + timeline: { name: 'Linha do tempo', detail: 'Um intervalo ou matriz independente de datas ou horas numéricas com etapa constante.' }, + dataCompletion: { name: 'Conclusão de dados', detail: 'Opcional. Use 1 para interpolar pontos ausentes ou 0 para tratá-los como zero.' }, + aggregation: { name: 'Agregação', detail: 'Opcional. Um valor de 1 a 7 especifica a agregação de carimbos de data/hora duplicados.' }, + }, + }, + FORECAST_ETS_STAT: { + description: 'Retorna um valor estatístico como resultado da previsão de série temporal usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + abstract: 'Retorna um valor estatístico como resultado da previsão de série temporal usando uma versão AAA do algoritmo de Suavização Exponencial (ETS).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-ets-stat-function', + }, + ], + functionParameter: { + values: { name: 'Valores', detail: 'Os valores históricos usados na previsão.' }, + timeline: { name: 'Linha do tempo', detail: 'Um intervalo ou matriz independente de datas ou horas numéricas com etapa constante.' }, + statisticType: { name: 'Tipo de estatística', detail: 'Um valor de 1 a 8 especifica a estatística de previsão retornada.' }, + seasonality: { name: 'Sazonalidade', detail: 'Opcional. 1 para detecção automática e 0 para nenhuma sazonalidade.' }, + dataCompletion: { name: 'Conclusão de dados', detail: 'Opcional. Use 1 para interpolar pontos ausentes ou 0 para tratá-los como zero.' }, + aggregation: { name: 'Agregação', detail: 'Opcional. Um valor de 1 a 7 especifica a agregação de carimbos de data/hora duplicados.' }, + }, + }, + FORECAST_LINEAR: { + description: 'Calcule ou preveja um valor futuro com valores existentes. O valor futuro é um valor y para um determinado valor x. Os valores existentes são valores x conhecidos e valores y e o valor futuro é previsto através da regressão linear. Pode utilizar estas funções para prever futuras vendas, requisitos de inventário ou tendências de consumidor.', + abstract: 'Calcule ou preveja um valor futuro com valores existentes. O valor futuro é um valor y para um determinado valor x. Os valores existentes são valores x conhecidos e valores y e o valor futuro é previsto através da regressão linear. Pode utilizar estas funções para prever futuras vendas, requisitos de inventário ou tendências de consumidor.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/forecast-and-forecast-linear-functions', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'sim O ponto de dados cujo valor você deseja prever.' }, + knownYs: { name: 'known_y\'s', detail: 'sim O intervalo de dados ou matriz dependente.' }, + knownXs: { name: 'known_x\'s', detail: 'sim O intervalo de dados ou matriz independente.' }, + }, + }, + FREQUENCY: { + description: 'A função FREQUÊNCIA calcula a frequência com que os valores ocorrem em um intervalo de valores e, em seguida, retorna uma matriz vertical de números. Por exemplo, use FREQÜÊNCIA para contar o número de resultados de teste. Pelo fato de FREQÜÊNCIA retornar uma matriz, deve ser inserida como uma fórmula matricial.', + abstract: 'A função FREQUÊNCIA calcula a frequência com que os valores ocorrem em um intervalo de valores e, em seguida, retorna uma matriz vertical de números. Por exemplo, use FREQÜÊNCIA para contar o número de resultados de teste. Pelo fato de FREQÜÊNCIA retornar uma matriz, deve ser inserida como uma fórmula matricial.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/frequency-function', + }, + ], + functionParameter: { + dataArray: { name: 'data_array', detail: 'Necessário. Uma matriz ou uma referência a um conjunto de valores cujas frequências você deseja contar. Se matriz_dados não contiver valores, FREQÜÊNCIA retornará uma matriz de zeros.' }, + binsArray: { name: 'bins_array', detail: 'Necessário. Uma matriz ou referência a intervalos nos quais você deseja agrupar os valores contidos em matriz_dados. Se matriz_bin não contiver valores, FREQÜÊNCIA retornará o número de elementos em matriz_dados.' }, + }, + }, + GAMMA: { + description: 'Retorna o valor da função GAMA.', + abstract: 'Retorna o valor da função GAMA.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gamma-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Retorna um número.' }, + }, + }, + GAMMA_DIST: { + description: 'Retorna a distribuição gama. Você pode usar esta função para estudar variáveis que possam apresentar uma distribuição enviesada. A distribuição gama é comumente utilizada em análise de filas.', + abstract: 'Retorna a distribuição gama. Você pode usar esta função para estudar variáveis que possam apresentar uma distribuição enviesada. A distribuição gama é comumente utilizada em análise de filas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gamma-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual a distribuição será avaliada.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Obrigatório. Um parâmetro da distribuição. Se beta = 1, DIST.GAMA retornará a distribuição gama padrão.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.GAMA retornará a função de distribuição cumulativa; se for FALSO, retornará a função densidade de probabilidade.' }, + }, + }, + GAMMA_INV: { + description: 'Retorna o inverso da distribuição cumulativa gama. Se p = DIST.GAMA(x;...), então INV.GAMA(p;...) = x. Você pode usar essa função para estudar uma variável cuja distribuição pode ser enviesada.', + abstract: 'Retorna o inverso da distribuição cumulativa gama. Se p = DIST.GAMA(x;...), então INV.GAMA(p;...) = x. Você pode usar essa função para estudar uma variável cuja distribuição pode ser enviesada.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gamma-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. A probabilidade associada à distribuição gama.' }, + alpha: { name: 'alpha', detail: 'Necessário. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Necessário. Um parâmetro da distribuição. Se beta = 1, INV.GAMA retornará a distribuição gama padrão.' }, + }, + }, + GAMMALN: { + description: 'Retorna o logaritmo natural da função gama, Γ(x).', + abstract: 'Retorna o logaritmo natural da função gama, Γ(x).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gammaln-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor para o qual você deseja calcular LNGAMA.' }, + }, + }, + GAMMALN_PRECISE: { + description: 'Retorna o logaritmo natural da função gama, Γ(x).', + abstract: 'Retorna o logaritmo natural da função gama, Γ(x).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/gammaln-precise-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor para o qual você deseja calcular LNGAMA.PRECISO.' }, + }, + }, + GAUSS: { + description: 'Calcula a probabilidade em que um membro de uma população padrão normal irá se situar entre a média e os desvios z padrão da média.', + abstract: 'Calcula a probabilidade em que um membro de uma população padrão normal irá se situar entre a média e os desvios z padrão da média.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/gauss-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obrigatório. Retorna um número.' }, + }, + }, + GEOMEAN: { + description: 'Retorna a média geométrica de uma matriz ou de um intervalo de dados positivos. Por exemplo, você pode usar MÉDIA.GEOMÉTRICA para calcular o crescimento médio considerando-se juros compostos com taxas variáveis.', + abstract: 'Retorna a média geométrica de uma matriz ou de um intervalo de dados positivos. Por exemplo, você pode usar MÉDIA.GEOMÉTRICA para calcular o crescimento médio considerando-se juros compostos com taxas variáveis.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/geomean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Núm1 é obrigatório, os números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a média. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + number2: { name: 'number2', detail: 'Núm1 é obrigatório, os números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a média. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + GROWTH: { + description: 'Calcula o crescimento exponencial previsto usando dados existentes. CRESCIMENTO retorna os valores y para uma série de novos valores x que você especifica usando valores x e y existentes. Você também pode usar a função de planilha CRESCIMENTO para ajustar uma curva exponencial em valores x e y.', + abstract: 'Calcula o crescimento exponencial previsto usando dados existentes. CRESCIMENTO retorna os valores y para uma série de novos valores x que você especifica usando valores x e y existentes. Você também pode usar a função de planilha CRESCIMENTO para ajustar uma curva exponencial em valores x e y.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/growth-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obrigatório. O conjunto de valores y que você já conhece na relação y = b*m^x. Se a matriz val_conhecidos_y estiver em uma única coluna, cada coluna de val_conhecidos_x será interpretada como uma variável separada. Se a matriz val_conhecidos_y for uma única linha, cada linha de val_conhecidos_x será interpretada como uma variável separada. Se algum dos números em known_y for 0 ou negativo, CRESCIMENTO devolve o #NUM! valor de erro.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcional. Um conjunto opcional de valores x que você talvez conheça na relação y = b*m^x. A matriz val_conhecidos_x pode incluir um ou mais conjuntos de variáveis. Se apenas uma variável for usada, val_conhecidos_y e val_conhecidos_x podem ser intervalos de qualquer formato, desde que tenham dimensões iguais. Se mais de uma variável for usada, val_conhecidos_y deve ser um vetor (ou seja, um intervalo com altura de uma linha ou largura de uma coluna). Se val_conhecidos_x for omitido, pressupõe-se que a matriz {1,2,3....} é do mesmo tamanho que val_conhecidos_y.' }, + newXs: { name: 'new_x\'s', detail: 'Opcional. São novos valores x para os quais você deseja que CRESCIMENTO retorne valores y correspondentes. Novos_valores_x deve incluir uma coluna (ou linha) para cada variável independente, da mesma forma que val_conhecidos_x. Portanto, se val_conhecidos_y estiver em uma única coluna, val_conhecidos_x e novos_valores_x devem ter o mesmo número de colunas. Se val_conhecidos_y estiver em uma única linha, val_conhecidos_x e novos_valores_x devem ter o mesmo número de linhas. Se novos_valores_x for omitido, será considerado como equivalente a val_conhecidos_x. Se val_conhecidos_x e novos_valores_x forem omitidos, serão considerados como equivalentes à matriz {1,2,3,...} que é do mesmo tamanho de val_conhecidos_y.' }, + constb: { name: 'const', detail: 'Opcional. Um valor lógico que força ou não a constante b a se igualar a 1. Se constante for VERDADEIRO ou omitida, b será calculado normalmente. Se constante for FALSO, b será definido como 1 e os valores m serão ajustados para que y = m^x.' }, + }, + }, + HARMEAN: { + description: 'Retorna a média harmônica de um conjunto de dados. A média harmônica é a recíproca da média aritmética das recíprocas.', + abstract: 'Retorna a média harmônica de um conjunto de dados. A média harmônica é a recíproca da média aritmética das recíprocas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/harmean-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a média. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a média. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + HYPGEOM_DIST: { + description: 'Retorna a distribuição hipergeométrica. DIST.HIPERGEOM.N retorna a probabilidade de um determinado número de sucessos de uma amostra, de acordo com o tamanho da amostra, sucessos da população e tamanho da população. Use DIST.HIPERGEOM.N para problemas com uma população finita, em que cada observação é equivalente a um sucesso ou a um fracasso, e em que cada subconjunto de um determinado tamanho é escolhido com igual probabilidade.', + abstract: 'Retorna a distribuição hipergeométrica. DIST.HIPERGEOM.N retorna a probabilidade de um determinado número de sucessos de uma amostra, de acordo com o tamanho da amostra, sucessos da população e tamanho da população. Use DIST.HIPERGEOM.N para problemas com uma população finita, em que cada observação é equivalente a um sucesso ou a um fracasso, e em que cada subconjunto de um determinado tamanho é escolhido com igual probabilidade.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/hypgeom-dist-function', + }, + ], + functionParameter: { + sampleS: { name: 'sample_s', detail: 'Necessário. O número de sucessos em uma amostra.' }, + numberSample: { name: 'number_sample', detail: 'Necessário. O tamanho da amostra.' }, + populationS: { name: 'population_s', detail: 'Necessário. O número de sucessos na população.' }, + numberPop: { name: 'number_pop', detail: 'Necessário. O tamanho da população.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.HIPERGEOM.N retornará a função de distribuição cumulativa; se for FALSO, retornará a função de probabilidade de massa.' }, + }, + }, + INTERCEPT: { + description: 'Calcula o ponto no qual uma linha irá interceptar o eixo y usando valores de x e y existentes. O ponto de interseção é baseado em uma linha de regressão de melhor ajuste plotada pelos valores de x e y conhecidos. Use a função INTERCEPÇÃO quando você quiser determinar o valor da variável dependente e a variável independente for 0 (zero). Por exemplo, você pode usar a função INTERCEPÇÃO para prever a resistência elétrica de um metal a 0°C quando os pontos de dados forem medidos em temperatura ambiente ou mais elevada.', + abstract: 'Calcula o ponto no qual uma linha irá interceptar o eixo y usando valores de x e y existentes. O ponto de interseção é baseado em uma linha de regressão de melhor ajuste plotada pelos valores de x e y conhecidos. Use a função INTERCEPÇÃO quando você quiser determinar o valor da variável dependente e a variável independente for 0 (zero). Por exemplo, você pode usar a função INTERCEPÇÃO para prever a resistência elétrica de um metal a 0°C quando os pontos de dados forem medidos em temperatura ambiente ou mais elevada.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/intercept-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Necessário. O conjunto dependente de observações ou dados.' }, + knownXs: { name: 'known_x\'s', detail: 'Necessário. O conjunto independente de observações ou dados.' }, + }, + }, + KURT: { + description: 'Retorna a curtose de um conjunto de dados. A curtose caracteriza uma distribuição em cume ou plana se comparada à distribuição normal. A curtose positiva indica uma distribuição relativamente em cume. A curtose negativa indica uma distribuição relativamente plana.', + abstract: 'Retorna a curtose de um conjunto de dados. A curtose caracteriza uma distribuição em cume ou plana se comparada à distribuição normal. A curtose positiva indica uma distribuição relativamente em cume. A curtose negativa indica uma distribuição relativamente plana.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/kurt-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Núm1 é obrigatório, os números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a curtose. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + number2: { name: 'number2', detail: 'Núm1 é obrigatório, os números subsequentes são opcionais. De 1 a 255 argumentos para os quais você deseja calcular a curtose. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + LARGE: { + description: 'Retorna o maior valor k-ésimo de um conjunto de dados. Você pode usar esta função para selecionar um valor de acordo com a sua posição relativa. Por exemplo, você pode usar MAIOR para obter o primeiro, o segundo e o terceiro resultados.', + abstract: 'Retorna o maior valor k-ésimo de um conjunto de dados. Você pode usar esta função para selecionar um valor de acordo com a sua posição relativa. Por exemplo, você pode usar MAIOR para obter o primeiro, o segundo e o terceiro resultados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/large-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou intervalo de dados cujo maior valor k-ésimo você deseja determinar.' }, + k: { name: 'k', detail: 'Obrigatório. A posição (do maior) na matriz ou intervalo de célula de dados a ser fornecida.' }, + }, + }, + LINEST: { + description: 'A função PROJ.LIN calcula as estatísticas para uma linha usando o método "quadrados mínimos" para calcular uma linha reta que melhor se ajusta aos seus dados e retorna uma matriz que descreve essa linha. Você também pode combinar a função PROJ.LIN com outras funções para calcular as estatísticas de outros tipos de modelos que são lineares nos parâmetros desconhecidos, incluindo séries polinomiais, logarítmicas, exponenciais e de potência. Como essa função retorna uma matriz de valores, ela deve ser inserida como uma fórmula de matriz. Instruções acompanham os exemplos neste artigo.', + abstract: 'A função PROJ.LIN calcula as estatísticas para uma linha usando o método "quadrados mínimos" para calcular uma linha reta que melhor se ajusta aos seus dados e retorna uma matriz que descreve essa linha. Você também pode combinar a função PROJ.LIN com outras funções para calcular as estatísticas de outros tipos de modelos que são lineares nos parâmetros desconhecidos, incluindo séries polinomiais, logarítmicas, exponenciais e de potência. Como essa função retorna uma matriz de valores, ela deve ser inserida como uma fórmula de matriz. Instruções acompanham os exemplos neste artigo.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/linest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obrigatório. O conjunto de valores y que você já conhece na relação y = mx + b. Se o intervalo de known_y estiver em uma única coluna, cada coluna de known_x será interpretada como uma variável separada. Se o intervalo de known_y estiver contido em uma única linha, cada linha de known_x será interpretada como uma variável separada.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcional. Um conjunto opcional de valores x que talvez você já conheça na relação y = mx + b. O intervalo de known_x pode incluir um ou mais conjuntos de variáveis. Se apenas uma variável for usada, known_y e known_x poderão ser intervalos de qualquer formato, desde que tenham dimensões iguais. Se mais de uma variável for usada, known_y deve ser um vetor (ou seja, um intervalo com altura de uma linha ou largura de uma coluna). Se known_x for omitido, será considerado a matriz {1,2,3,...} com o mesmo tamanho que known_y .' }, + constb: { name: 'const', detail: 'Opcional. Um valor lógico que especifica se a constante b será ou não forçada a se igualar a 0. Se constante for VERDADEIRO ou omitido, b será calculado normalmente. Se constante for FALSO, b será definido como igual a 0 e os valores m serão ajustados para se adaptarem a y = mx.' }, + stats: { name: 'stats', detail: 'Opcional. O valor lógico que especifica se estatísticas de regressão adicionais serão retornadas. Se estatística for VERDADEIRO, PROJ.LIN retornará as estatísticas de regressão adicionais; Como resultado, a matriz retornada é {mn,mn-1,...,m1,b; sen,sen-1,...,se1,seb; r 2 , sey; F,df; ssreg,ssresid} . Se estatística for FALSO ou omitido, PROJ.LIN retornará somente os coeficientes m e a constante b. Os dados estatísticos de regressão adicionais são:' }, + }, + }, + LOGEST: { + description: 'A equação para a curva é:', + abstract: 'A equação para a curva é:', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/logest-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Necessário. O conjunto de valores y que você já conhece na relação y = b*m^x. Se a matriz val_conhecidos_y estiver em uma única coluna, cada coluna de val_conhecidos_x será interpretada como uma variável separada. Se a matriz val_conhecidos_y for uma única linha, cada linha de val_conhecidos_x será interpretada como uma variável separada.' }, + knownXs: { name: 'known_x\'s', detail: 'Opcional. Um conjunto opcional de valores x que você talvez conheça na relação y = b*m^x. A matriz val_conhecidos_x pode incluir um ou mais conjuntos de variáveis. Se apenas uma variável for usada, val_conhecidos_y e val_conhecidos_x podem ser intervalos de qualquer formato, desde que tenham dimensões iguais. Se mais de uma variável for usada, val_conhecidos_y deve ser um vetor (ou seja, um intervalo com altura de uma linha ou largura de uma coluna). Se val_conhecidos_x for omitido, pressupõe-se que a matriz {1,2,3,...} seja do mesmo tamanho que val_conhecidos_y.' }, + constb: { name: 'const', detail: 'Opcional. Um valor lógico que força ou não a constante b a se igualar a 1. Se constante for VERDADEIRO ou omitido, b será calculado normalmente. Se constante for FALSO, b será o conjunto igual a 1, e os valores m são ajustados para y = m^x.' }, + stats: { name: 'stats', detail: 'Opcional. O valor lógico que especifica se estatísticas de regressão adicionais serão retornadas. Se estatística for VERDADEIRO, PROJ.LOG retornará a estatística de regressão adicional, de forma que a matriz retornada será {mn,mn-1,...,m1,b;sen,sen-1,...,se1,seb;r 2,sey; F,df;ssreg,ssresid}. Se estatística for FALSO ou omitido, PROJ.LOG retornará apenas os coeficientes m e a constante b.' }, + }, + }, + LOGNORM_DIST: { + description: 'Use esta função para analisar os dados que forem transformados através de logaritmos.', + abstract: 'Use esta função para analisar os dados que forem transformados através de logaritmos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/lognorm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + mean: { name: 'mean', detail: 'Obrigatório. A média do ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio padrão do ln(x).' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.LOGNORMAL.N retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + LOGNORM_INV: { + description: 'Retorna o inverso da função de distribuição cumulativa lognormal de x, em que ln(x) normalmente é distribuída com os parâmetros Média e Desv_padrão. Se p = DIST.LOGNORMAL.N(x,...) então INV.LOGNORMAL(p,...) = x.', + abstract: 'Retorna o inverso da função de distribuição cumulativa lognormal de x, em que ln(x) normalmente é distribuída com os parâmetros Média e Desv_padrão. Se p = DIST.LOGNORMAL.N(x,...) então INV.LOGNORMAL(p,...) = x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/lognorm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade associada à distribuição lognormal.' }, + mean: { name: 'mean', detail: 'Necessário. A média do ln(x).' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão do ln(x).' }, + }, + }, + MARGINOFERROR: { + description: 'Esta função calcula a margem de erro a partir de um intervalo de valores e de um nível de confiança.', + abstract: 'Esta função calcula a margem de erro a partir de um intervalo de valores e de um nível de confiança.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/12487850?hl=pt-BR', + }, + ], + functionParameter: { + range: { name: 'range', detail: 'O intervalo de valores usado para calcular a margem de erro.' }, + confidence: { name: 'confidence', detail: 'O nível de confiança desejado entre 0 e 1.' }, + }, + }, + MAX: { + description: 'Retorna o valor máximo de um conjunto de valores.', + abstract: 'Retorna o valor máximo de um conjunto de valores.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/max-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 números cujo valor máximo você deseja saber.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 números cujo valor máximo você deseja saber.' }, + }, + }, + MAXA: { + description: 'Retorna o maior valor em uma lista de argumentos.', + abstract: 'Retorna o maior valor em uma lista de argumentos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/maxa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Obrigatório. O primeiro argumento de número para o qual você deseja localizar o maior valor.' }, + value2: { name: 'value2', detail: 'Opcional. Argumentos de número de 2 a 255 cujo valor máximo você deseja saber.' }, + }, + }, + MAXIFS: { + description: 'A função MÁXIMOSES retorna o valor máximo entre as células especificadas por um determinado conjunto de critérios ou condições.', + abstract: 'A função MÁXIMOSES retorna o valor máximo entre as células especificadas por um determinado conjunto de critérios ou condições.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/maxifs-function', + }, + ], + functionParameter: { + maxRange: { name: 'sum_range', detail: 'O intervalo real das células em que o valor máximo vai ser determinado.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'É o conjunto de células a serem avaliadas com os critérios.' }, + criteria1: { name: 'criteria1', detail: 'São os critérios na forma de um número, expressão ou texto que definem quais células serão avaliadas como o máximo. O mesmo conjunto de critérios funciona para as funções MÍNIMOSES , SOMASES e MÉDIASES .' }, + criteriaRange2: { name: 'criteriaRange2', detail: 'Os intervalos adicionais e seus critérios associados. Você pode inserir até 126 pares de intervalo/critérios.' }, + criteria2: { name: 'criteria2', detail: 'Os intervalos adicionais e seus critérios associados. Você pode inserir até 126 pares de intervalo/critérios.' }, + }, + }, + MEDIAN: { + description: 'Retorna a mediana dos números indicados. A mediana é o número no centro de um conjunto de números.', + abstract: 'Retorna a mediana dos números indicados. A mediana é o número no centro de um conjunto de números.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/median-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 números dos quais você deseja obter a mediana.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. De 1 a 255 números dos quais você deseja obter a mediana.' }, + }, + }, + MIN: { + description: 'Retorna o menor número na lista de argumentos.', + abstract: 'Retorna o menor número na lista de argumentos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/min-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Núm1 é opcional, os números subsequentes são opcionais. De 1 a 255 números cujo valor MÍNIMO você deseja saber.' }, + number2: { name: 'number2', detail: 'Núm1 é opcional, os números subsequentes são opcionais. De 1 a 255 números cujo valor MÍNIMO você deseja saber.' }, + }, + }, + MINA: { + description: 'Retorna o menor valor na lista de argumentos.', + abstract: 'Retorna o menor valor na lista de argumentos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mina-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 valores cujo menor valor você deseja saber.' }, + value2: { name: 'value2', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. De 1 a 255 valores cujo menor valor você deseja saber.' }, + }, + }, + MINIFS: { + description: 'A função MÍNIMOSES retorna o valor mínimo entre as células especificadas por um determinado conjunto de critérios ou condições.', + abstract: 'A função MÍNIMOSES retorna o valor mínimo entre as células especificadas por um determinado conjunto de critérios ou condições.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/minifs-function', + }, + ], + functionParameter: { + minRange: { name: 'min_range', detail: 'O intervalo real das células em que o valor mínimo vai ser determinado.' }, + criteriaRange1: { name: 'criteria_range1', detail: 'É o conjunto de células a serem avaliadas com os critérios.' }, + criteria1: { name: 'criteria1', detail: 'São os critérios na forma de um número, de uma expressão ou de um texto que definem quais células serão avaliadas como o mínimo. O mesmo conjunto de critérios funciona para as funções MÁXIMOSES , SOMASES e MÉDIASES .' }, + criteriaRange2: { name: 'criteria_range2', detail: 'Os intervalos adicionais e seus critérios associados. Você pode inserir até 126 pares de intervalo/critérios.' }, + criteria2: { name: 'criteria2', detail: 'Os intervalos adicionais e seus critérios associados. Você pode inserir até 126 pares de intervalo/critérios.' }, + }, + }, + MODE_MULT: { + description: 'Isso retornará mais de um resultado se existirem modos múltiplos. Como essa função retorna uma matriz de valores, ela deve ser inserida como uma fórmula de matriz.', + abstract: 'Isso retornará mais de um resultado se existirem modos múltiplos. Como essa função retorna uma matriz de valores, ela deve ser inserida como uma fórmula de matriz.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mode-mult-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro argumento de número cujo modo você deseja calcular.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos de número de 2 a 254 para os quais você deseja calcular o modo. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + MODE_SNGL: { + description: 'Retorna o valor que ocorre com mais frequência em uma matriz ou intervalo de dados.', + abstract: 'Retorna o valor que ocorre com mais frequência em uma matriz ou intervalo de dados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/mode-sngl-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento cujo modo você deseja calcular.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos de 2 a 254 para os quais você deseja calcular o modo. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgulas.' }, + }, + }, + NEGBINOM_DIST: { + description: 'Retorna a distribuição binominal negativa, a probabilidade de ocorrer núm_f fracassos antes de núm_s-ésimo sucesso, quando a probabilidade constante de um sucesso é probabilidade_s.', + abstract: 'Retorna a distribuição binominal negativa, a probabilidade de ocorrer núm_f fracassos antes de núm_s-ésimo sucesso, quando a probabilidade constante de um sucesso é probabilidade_s.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/negbinom-dist-function', + }, + ], + functionParameter: { + numberF: { name: 'number_f', detail: 'Necessário. O número de insucessos.' }, + numberS: { name: 'number_s', detail: 'Necessário. O número a partir do qual se considera haver sucesso.' }, + probabilityS: { name: 'probability_s', detail: 'Necessário. A probabilidade de sucesso.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.BIN.NEG.N retornará a função de distribuição cumulativa; se for FALSO, retornará a função de densidade de probabilidade.' }, + }, + }, + NORM_DIST: { + description: 'Retorna a distribuição cumulativa normal para a média especificada e o desvio padrão. Esta função tem uma enorme variedade de aplicações em estatística, incluindo verificação de hipóteses.', + abstract: 'Retorna a distribuição cumulativa normal para a média especificada e o desvio padrão. Esta função tem uma enorme variedade de aplicações em estatística, incluindo verificação de hipóteses.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/norm-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor cuja distribuição você deseja obter.' }, + mean: { name: 'mean', detail: 'Obrigatório. A média aritmética da distribuição.' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio padrão da distribuição.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, NORM. DIST devolve a função de distribuição cumulativa; se FOR FALSO, devolve a função de densidade de probabilidade.' }, + }, + }, + NORM_INV: { + description: 'Retorna o inverso da distribuição cumulativa normal para a média específica e o desvio padrão.', + abstract: 'Retorna o inverso da distribuição cumulativa normal para a média específica e o desvio padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/norm-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade correspondente à distribuição normal.' }, + mean: { name: 'mean', detail: 'Necessário. A média aritmética da distribuição.' }, + standardDev: { name: 'standard_dev', detail: 'Necessário. O desvio padrão da distribuição.' }, + }, + }, + NORM_S_DIST: { + description: 'A NORMA. A função DIST.S no Excel devolve a distribuição normal padrão ( ou seja, tem uma média de zero e um desvio padrão de um ). Pode utilizar esta função em vez de utilizar uma tabela de áreas curvas normais padrão.', + abstract: 'A NORMA. A função DIST.S no Excel devolve a distribuição normal padrão ( ou seja, tem uma média de zero e um desvio padrão de um ). Pode utilizar esta função em vez de utilizar uma tabela de áreas curvas normais padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/norm-s-dist-function', + }, + ], + functionParameter: { + z: { name: 'z', detail: 'Obrigatório. Este é o valor para o qual pretende obter a distribuição.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. O argumento cumulativo pode ser VERDADEIRO ou FALSO . Este valor lógico determina a forma da função. Se cumulativo for VERDADEIRO, NORM. DIST.S devolve a função de distribuição cumulativa . Se for FALSO, devolve a função de densidade de probabilidade .' }, + }, + }, + NORM_S_INV: { + description: 'Retorna o inverso da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um.', + abstract: 'Retorna o inverso da distribuição cumulativa normal padrão. A distribuição possui uma média igual a zero e um desvio padrão igual a um.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/norm-s-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. Uma probabilidade correspondente à distribuição normal.' }, + }, + }, + PEARSON: { + description: 'Retorna o coeficiente de correlação do momento do produto Pearson, r, um índice sem dimensão situado ente -1,0 e 1.0 inclusive, que reflete a extensão de uma relação linear entre dois conjuntos de dados.', + abstract: 'Retorna o coeficiente de correlação do momento do produto Pearson, r, um índice sem dimensão situado ente -1,0 e 1.0 inclusive, que reflete a extensão de uma relação linear entre dois conjuntos de dados.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/pearson-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Necessário. Um conjunto de valores independentes.' }, + array2: { name: 'array2', detail: 'Necessário. Um conjunto de valores dependentes.' }, + }, + }, + PERCENTILE_EXC: { + description: 'O PERCENTIL. A função EXC devolve o percentil k de valores num intervalo, em que k está no intervalo 0..1, exclusivo.', + abstract: 'O PERCENTIL. A função EXC devolve o percentil k de valores num intervalo, em que k está no intervalo 0..1, exclusivo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou intervalo de dados que define a posição relativa.' }, + k: { name: 'k', detail: 'Obrigatório. Um valor de percentil no intervalo 0 < k < 1.' }, + }, + }, + PERCENTILE_INC: { + description: 'Devolve o n-ésimo percentil de valores num intervalo, em que k está no intervalo de 0 a 1, inclusive.', + abstract: 'Devolve o n-ésimo percentil de valores num intervalo, em que k está no intervalo de 0 a 1, inclusive.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou intervalo de dados que define a posição relativa.' }, + k: { name: 'k', detail: 'Obrigatório. O valor de percentil no intervalo de 0 a 1, inclusive.' }, + }, + }, + PERCENTRANK_EXC: { + description: 'Retorna a ordem percentual de um valor em um conjunto de dados como um percentual (0..1, exclusivo) do conjunto de dados.', + abstract: 'Retorna a ordem percentual de um valor em um conjunto de dados como um percentual (0..1, exclusivo) do conjunto de dados.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentrank-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou intervalo de dados com valores numéricos que define uma posição relativa' }, + x: { name: 'x', detail: 'Obrigatório. O valor cuja ordem você deseja saber.' }, + significance: { name: 'significance', detail: 'Opcional. Um valor opcional que identifica o número de dígitos significativos para o valor de porcentagem retornado. Se omitido, ORDEM.PORCENTUAL.EXC usará três dígitos (0,xxx).' }, + }, + }, + PERCENTRANK_INC: { + description: 'Retorna a ordem percentual de um valor em um conjunto de dados como um percentual (0..1, inclusivo) do conjunto de dados.', + abstract: 'Retorna a ordem percentual de um valor em um conjunto de dados como um percentual (0..1, inclusivo) do conjunto de dados.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/percentrank-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou intervalo de dados com valores numéricos que define uma posição relativa.' }, + x: { name: 'x', detail: 'Obrigatório. O valor cuja ordem você deseja saber.' }, + significance: { name: 'significance', detail: 'Opcional. Um valor opcional que identifica o número de dígitos significativos para o valor de porcentagem retornado. Se omitido, ORDEM.PORCENTUAL.INC usará três dígitos (0,xxx).' }, + }, + }, + PERMUT: { + description: 'Retorna o número de permutações para um determinado número de objetos.', + abstract: 'Retorna o número de permutações para um determinado número de objetos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/permut-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O número de itens.' }, + numberChosen: { name: 'number_chosen', detail: 'O número de itens em cada permutação.' }, + }, + }, + PERMUTATIONA: { + description: 'Retorna o número de permutações para um determinado número de objetos (com repetições) que podem ser selecionados do total de objetos.', + abstract: 'Retorna o número de permutações para um determinado número de objetos (com repetições) que podem ser selecionados do total de objetos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/permutationa-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Um inteiro que descreve o número total de objetos.' }, + numberChosen: { name: 'number_chosen', detail: 'Necessário. Um número inteiro que descreve o número de objetos em cada permutação.' }, + }, + }, + PHI: { + description: 'Retorna o valor da função de densidade para uma distribuição normal padrão.', + abstract: 'Retorna o valor da função de densidade para uma distribuição normal padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/phi-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. X é o número do qual você quer a densidade da distribuição normal padrão.' }, + }, + }, + POISSON_DIST: { + description: 'Retorna a distribuição Poisson. Uma aplicação comum da distribuição Poisson é prever o número de eventos em um determinado período de tempo, como o número de carros que chega ao ponto de pedágio em um minuto.', + abstract: 'Retorna a distribuição Poisson. Uma aplicação comum da distribuição Poisson é prever o número de eventos em um determinado período de tempo, como o número de carros que chega ao ponto de pedágio em um minuto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/poisson-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O número de eventos.' }, + mean: { name: 'mean', detail: 'Necessário. O valor numérico esperado.' }, + cumulative: { name: 'cumulative', detail: 'Necessário. Um valor lógico que determina a forma da distribuição de probabilidade fornecida. Se cumulativo for VERDADEIRO, DIST.POISSON retornará a probabilidade Poisson de que o número de eventos aleatórios estará entre zero e x inclusive; se FALSO, retornará a função massa da probabilidade Poisson de que o número de eventos será equivalente a x.' }, + }, + }, + PROB: { + description: 'Retorna a probabilidade de valores em um intervalo estarem entre dois limites. Se o limite_superior não for fornecido, retornará a probabilidade de que os valores no intervalo_ x sejam iguais ao limite_inferior.', + abstract: 'Retorna a probabilidade de valores em um intervalo estarem entre dois limites. Se o limite_superior não for fornecido, retornará a probabilidade de que os valores no intervalo_ x sejam iguais ao limite_inferior.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/prob-function', + }, + ], + functionParameter: { + xRange: { name: 'x_range', detail: 'Obrigatório. O intervalo de valores numéricos de x com os quais são associadas probabilidades.' }, + probRange: { name: 'prob_range', detail: 'Obrigatório. Um conjunto de probabilidades associado com valores no intervalo_x.' }, + lowerLimit: { name: 'lower_limit', detail: 'Opcional. O limite inferior do valor cuja probabilidade você deseja obter.' }, + upperLimit: { name: 'upper_limit', detail: 'Opcional. O limite superior opcional do valor cuja probabilidade você deseja obter.' }, + }, + }, + QUARTILE_EXC: { + description: 'Devolve o quartil do conjunto de dados, com base em valores de percentil de 0 a 1, exclusivos.', + abstract: 'Devolve o quartil do conjunto de dados, com base em valores de percentil de 0 a 1, exclusivos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/quartile-exc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou intervalo de célula de valores numéricos cujo valor quartil você deseja obter.' }, + quart: { name: 'quart', detail: 'Obrigatório. Indica o valor a ser retornado.' }, + }, + }, + QUARTILE_INC: { + description: 'Retorna o quartil de um conjunto de dados, com base em valores de percentil de 0..1, inclusivo.', + abstract: 'Retorna o quartil de um conjunto de dados, com base em valores de percentil de 0..1, inclusivo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/quartile-inc-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou intervalo de célula de valores numéricos cujo valor quartil você deseja obter.' }, + quart: { name: 'quart', detail: 'Necessário. Indica o valor a ser retornado.' }, + }, + }, + RANK_AVG: { + description: 'Devolve a classificação de um número numa lista de números: o respetivo tamanho em relação a outros valores na lista. Se mais do que um valor tiver a mesma classificação, é devolvida a classificação média.', + abstract: 'Devolve a classificação de um número numa lista de números: o respetivo tamanho em relação a outros valores na lista. Se mais do que um valor tiver a mesma classificação, é devolvida a classificação média.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/rank-avg-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número cuja posição se deseja encontrar.' }, + ref: { name: 'ref', detail: 'Obrigatório. Uma matriz ou referência a uma lista de números. Valores não numéricos em Ref são ignorados.' }, + order: { name: 'order', detail: 'Opcional. Um número que especifica como posicionar um número em uma ordem.' }, + }, + }, + RANK_EQ: { + description: 'Retorna a posição de um número em uma lista de números. Seu tamanho em relação a outros valores de uma lista; se mais de um valor tiver a mesma posição, a posição superior desse conjunto de valores será retornada.', + abstract: 'Retorna a posição de um número em uma lista de números. Seu tamanho em relação a outros valores de uma lista; se mais de um valor tiver a mesma posição, a posição superior desse conjunto de valores será retornada.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/rank-eq-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número cuja posição se deseja encontrar.' }, + ref: { name: 'ref', detail: 'Necessário. Uma matriz ou referência a uma lista de números. Valores não numéricos em Ref são ignorados.' }, + order: { name: 'order', detail: 'Opcional. Um número que especifica como posicionar um número em uma ordem.' }, + }, + }, + RSQ: { + description: 'Retorna o quadrado do coeficiente de correlação do momento do produto de Pearson através dos pontos de dados em val_conhecidos_y e val_conhecidos_x. Para saber mais, veja a função PEARSON . O valor r2 pode ser interpretado como a proporção da variação em y que pode ser atribuída à variação em x.', + abstract: 'Retorna o quadrado do coeficiente de correlação do momento do produto de Pearson através dos pontos de dados em val_conhecidos_y e val_conhecidos_x. Para saber mais, veja a função PEARSON . O valor r2 pode ser interpretado como a proporção da variação em y que pode ser atribuída à variação em x.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/rsq-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Necessário. Uma matriz ou intervalo de células de pontos de dados dependentes e numéricos.' }, + knownXs: { name: 'known_x\'s', detail: 'Necessário. O conjunto de pontos de dados independentes.' }, + }, + }, + SKEW: { + description: 'Retorna a distorção de uma distribuição. O valor enviesado caracteriza o grau de assimetria de uma distribuição em torno de sua média. Um valor enviesado positivo indica uma distribuição com uma ponta assimétrica que se estende em direção a valores mais positivos. Um valor enviesado negativo indica uma distribuição com uma ponta assimétrica que se estende em direção a valores mais negativos.', + abstract: 'Retorna a distorção de uma distribuição. O valor enviesado caracteriza o grau de assimetria de uma distribuição em torno de sua média. Um valor enviesado positivo indica uma distribuição com uma ponta assimétrica que se estende em direção a valores mais positivos. Um valor enviesado negativo indica uma distribuição com uma ponta assimétrica que se estende em direção a valores mais negativos.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/skew-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Número1 é necessário, números subsequentes são opcionais. Argumentos de 1 a 255 para os quais você deseja calcular a distorção. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + number2: { name: 'number2', detail: 'Número1 é necessário, números subsequentes são opcionais. Argumentos de 1 a 255 para os quais você deseja calcular a distorção. Você também pode usar uma única matriz ou referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + SKEW_P: { + description: 'Retorna a DISTORÇÃO de uma distribuição com base em uma população: uma caracterização do grau de assimetria de uma distribuição em torno de seu meio.', + abstract: 'Retorna a DISTORÇÃO de uma distribuição com base em uma população: uma caracterização do grau de assimetria de uma distribuição em torno de seu meio.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/skew-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'O primeiro número, referência de célula ou intervalo para o qual você deseja calcular a assimetria.' }, + number2: { name: 'number2', detail: 'Números, referências de célula ou intervalos adicionais para os quais você deseja calcular a assimetria, até o máximo de 255.' }, + }, + }, + SLOPE: { + description: 'Retorna a inclinação da linha de regressão linear através de pontos de dados em val_conhecidos_y e val_conhecidos_x. A inclinação é a distância vertical dividida pela distância horizontal entre dois pontos quaisquer na linha, que é a taxa de mudança ao longo da linha de regressão.', + abstract: 'Retorna a inclinação da linha de regressão linear através de pontos de dados em val_conhecidos_y e val_conhecidos_x. A inclinação é a distância vertical dividida pela distância horizontal entre dois pontos quaisquer na linha, que é a taxa de mudança ao longo da linha de regressão.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/slope-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Necessário. Uma matriz ou intervalo de células de pontos de dados dependentes e numéricos.' }, + knownXs: { name: 'known_x\'s', detail: 'Necessário. O conjunto de pontos de dados independentes.' }, + }, + }, + SMALL: { + description: 'Retorna o menor valor k-ésimo do conjunto de dados. Use esta função para retornar valores com uma posição específica relativa em um conjunto de dados.', + abstract: 'Retorna o menor valor k-ésimo do conjunto de dados. Use esta função para retornar valores com uma posição específica relativa em um conjunto de dados.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/small-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. Uma matriz ou intervalo de dados numéricos cujo menor valor k-ésimo você deseja determinar.' }, + k: { name: 'k', detail: 'Obrigatório. A posição (a partir do menor) na matriz ou intervalo de dados a ser fornecido.' }, + }, + }, + STANDARDIZE: { + description: 'Retorna um valor normalizado de uma distribuição caracterizada por média e desv_padrão.', + abstract: 'Retorna um valor normalizado de uma distribuição caracterizada por média e desv_padrão.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/standardize-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor que você deseja normalizar.' }, + mean: { name: 'mean', detail: 'Obrigatório. A média aritmética da distribuição.' }, + standardDev: { name: 'standard_dev', detail: 'Obrigatório. O desvio padrão da distribuição.' }, + }, + }, + STDEV_P: { + description: 'O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdev-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro argumento numérico correspondente a uma população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 254 correspondentes a uma população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + STDEV_S: { + description: 'O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdev-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro argumento numérico correspondente a uma amostra de população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 254 correspondentes a uma amostra de população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + STDEVA: { + description: 'Estima o desvio padrão com base em uma amostra. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'Estima o desvio padrão com base em uma amostra. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdeva-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. Valores de 1 a 255 correspondentes a uma amostra de população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + value2: { name: 'value2', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. Valores de 1 a 255 correspondentes a uma amostra de população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + STDEVPA: { + description: 'Calcula o desvio padrão com base na população inteira dada como argumentos, incluindo os valores lógicos e de texto. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + abstract: 'Calcula o desvio padrão com base na população inteira dada como argumentos, incluindo os valores lógicos e de texto. O desvio padrão é uma medida do grau de dispersão dos valores em relação ao valor médio (a média).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/stdevpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 é necessário, os valores subsequentes são opcionais. Valores de 1 a 255 correspondentes a uma população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + value2: { name: 'value2', detail: 'Value1 é necessário, os valores subsequentes são opcionais. Valores de 1 a 255 correspondentes a uma população. Você também pode usar uma única matriz ou uma referência a uma matriz em vez de argumentos separados por ponto-e-vírgula.' }, + }, + }, + STEYX: { + description: 'Retorna o erro padrão do valor-y previsto para cada x da regressão. O erro padrão é uma medida da quantidade de erro na previsão de y para um x individual.', + abstract: 'Retorna o erro padrão do valor-y previsto para cada x da regressão. O erro padrão é uma medida da quantidade de erro na previsão de y para um x individual.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/steyx-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'Obrigatório. Uma matriz ou intervalo de pontos de dados dependentes.' }, + knownXs: { name: 'known_x\'s', detail: 'Obrigatório. Uma matriz ou intervalo de pontos de dados independentes.' }, + }, + }, + T_DIST: { + description: 'Retorna a distribuição t caudal esquerda de Student. A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + abstract: 'Retorna a distribuição t caudal esquerda de Student. A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor numérico em que se avalia a distribuição' }, + degFreedom: { name: 'degFreedom', detail: 'Obrigatório. Um número inteiro indicando o número de graus de liberdade.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Um valor lógico que determina a forma da função. Se cumulativo for VERDADEIRO, DIST.T retornará a função de distribuição cumulativa; se for FALSO, retornará a função densidade de probabilidade.' }, + }, + }, + T_DIST_2T: { + description: 'A distribuição t de Student é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + abstract: 'A distribuição t de Student é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-dist-2t-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor numérico em que se avalia a distribuição.' }, + degFreedom: { name: 'degFreedom', detail: 'Obrigatório. Um número inteiro indicando o número de graus de liberdade.' }, + }, + }, + T_DIST_RT: { + description: 'A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + abstract: 'A distribuição t é usada no teste de hipóteses de pequenos conjuntos de dados de amostras. Use esta função em vez de uma tabela de valores críticos para a distribuição t.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-dist-rt-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor numérico em que se avalia a distribuição.' }, + degFreedom: { name: 'degFreedom', detail: 'Obrigatório. Um número inteiro indicando o número de graus de liberdade.' }, + }, + }, + T_INV: { + description: 'Retorna o inverso caudal esquerdo da distribuição t de Student', + abstract: 'Retorna o inverso caudal esquerdo da distribuição t de Student', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-inv-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Obrigatório. A probabilidade associada à distribuição t de Student caudal esquerdo.' }, + degFreedom: { name: 'degFreedom', detail: 'Obrigatório. O número de graus de liberdade que caracteriza a distribuição.' }, + }, + }, + T_INV_2T: { + description: 'Retorna o inverso bicaudal da distribuição t de Student', + abstract: 'Retorna o inverso bicaudal da distribuição t de Student', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-inv-2t-function', + }, + ], + functionParameter: { + probability: { name: 'probability', detail: 'Necessário. A probabilidade associada à distribuição t de Student caudal esquerdo.' }, + degFreedom: { name: 'degFreedom', detail: 'Necessário. O número de graus de liberdade que caracteriza a distribuição.' }, + }, + }, + T_TEST: { + description: 'Retorna a probabilidade associada ao teste t de Student. Use TESTE.T para determinar se duas amostras poderão ser provenientes de duas populações subjacentes que possuem a mesma média.', + abstract: 'Retorna a probabilidade associada ao teste t de Student. Use TESTE.T para determinar se duas amostras poderão ser provenientes de duas populações subjacentes que possuem a mesma média.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-test-function', + }, + ], + functionParameter: { + array1: { name: 'array1', detail: 'Necessário. O primeiro conjunto de dados.' }, + array2: { name: 'array2', detail: 'Necessário. O segundo conjunto de dados.' }, + tails: { name: 'tails', detail: 'Necessário. Especifica o número de caudas da distribuição. Se caudas = 1, TESTE.T usará a distribuição unicaudal. Se caudas = 2, TESTE.T usará a distribuição bicaudal.' }, + type: { name: 'type', detail: 'Necessário. O tipo de Teste t a ser executado.' }, + }, + }, + TREND: { + description: 'A função TREND retorna valores ao longo de uma tendência linear. Ele se encaixa em uma linha reta (usando o método de menos quadrados) aos known_y e known_x da matriz. TREND retorna os valores y ao longo dessa linha para a matriz de new_x que você especifica.', + abstract: 'A função TREND retorna valores ao longo de uma tendência linear. Ele se encaixa em uma linha reta (usando o método de menos quadrados) aos known_y e known_x da matriz. TREND retorna os valores y ao longo dessa linha para a matriz de new_x que você especifica.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/trend-function', + }, + ], + functionParameter: { + knownYs: { name: 'known_y\'s', detail: 'O conjunto de valores y que você já conhece na relação y = mx + b Se a matriz val_conhecidos_y estiver em uma única coluna, cada coluna de val_conhecidos_x será interpretada como uma variável separada. Se a matriz val_conhecidos_y for uma única linha, cada linha de val_conhecidos_x será interpretada como uma variável separada.' }, + knownXs: { name: 'known_x\'s', detail: 'Um conjunto opcional de valores x que você já pode conhecer na relação y = mx + b A matriz val_conhecidos_x pode incluir um ou mais conjuntos de variáveis. Se apenas uma variável for usada, val_conhecidos_y e val_conhecidos_x podem ser intervalos de qualquer formato, desde que tenham dimensões iguais. Se mais de uma variável for usada, val_conhecidos_y deve ser um vetor (ou seja, um intervalo com altura de uma linha ou largura de uma coluna). Se val_conhecidos_x for omitido, pressupõe-se que a matriz {1,2,3....} é do mesmo tamanho que val_conhecidos_y.' }, + newXs: { name: 'new_x\'s', detail: 'Novos valores x para os quais você deseja que a TREND retorne valores y correspondentes Novos_valores_x deve incluir uma coluna (ou linha) para cada variável independente, da mesma forma que val_conhecidos_x. Portanto, se val_conhecidos_y estiver em uma única coluna, val_conhecidos_x e novos_valores_x devem ter o mesmo número de colunas. Se val_conhecidos_y estiver em uma única linha, val_conhecidos_x e novos_valores_x devem ter o mesmo número de linhas. Se você omitir novos_valores_x, pressupõe-se que seja igual a val_conhecidos_x. Se você omitir val_conhecidos_x e novos_valores_x, eles serão considerados como a matriz {1,2,3,...} que é do mesmo tamanho que val_conhecidos_y.' }, + constb: { name: 'const', detail: 'Um valor lógico que especifica se deve forçar a constante b a igual a 0 Se constante for VERDADEIRO ou omitido, b será calculado normalmente. Se constante for FALSO, b será definido como 0 (zero) e os valores m serão ajustados de forma que y = mx.' }, + }, + }, + TRIMMEAN: { + description: 'Retorna a média do interior de um conjunto de dados. MÉDIA.INTERNA calcula a média obtida excluindo-se uma porcentagem dos pontos de dados das pontas superior e inferior de um conjunto de dados. Você pode usar esta função quando quiser excluir dados externos à sua análise.', + abstract: 'Retorna a média do interior de um conjunto de dados. MÉDIA.INTERNA calcula a média obtida excluindo-se uma porcentagem dos pontos de dados das pontas superior e inferior de um conjunto de dados. Você pode usar esta função quando quiser excluir dados externos à sua análise.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/trimmean-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Obrigatório. A matriz ou intervalo de valores a se calcular a média desprezando os desvios.' }, + percent: { name: 'percent', detail: 'Obrigatório. O número fracionário de ponto de dados a ser excluído do cálculo. Por exemplo, se porcentagem = 0,2, serão arrumados 4 pontos de um conjunto de dados de 20 pontos (20 x 0,2): 2 da parte superior e 2 da parte inferior do conjunto.' }, + }, + }, + VAR_P: { + description: 'Calcula a variação com base na população inteira (ignora valores lógicos e de texto na população).', + abstract: 'Calcula a variação com base na população inteira (ignora valores lógicos e de texto na população).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/var-p-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Necessário. O primeiro argumento numérico correspondente a uma população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 254 correspondentes a uma população.' }, + }, + }, + VAR_S: { + description: 'Estima a variação com base em uma amostra (ignora valores lógicos e de texto na amostra).', + abstract: 'Estima a variação com base em uma amostra (ignora valores lógicos e de texto na amostra).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/var-s-function', + }, + ], + functionParameter: { + number1: { name: 'number1', detail: 'Obrigatório. O primeiro argumento numérico correspondente a uma amostra de população.' }, + number2: { name: 'number2', detail: 'Opcional. Argumentos numéricos de 2 a 254 correspondentes a uma amostra de população.' }, + }, + }, + VARA: { + description: 'Estima a variação com base em uma amostra.', + abstract: 'Estima a variação com base em uma amostra.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/vara-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Value1 é necessário, os valores subsequentes são opcionais. Argumentos de valor de 1 a 255 correspondentes a uma amostra de população.' }, + value2: { name: 'value2', detail: 'Value1 é necessário, os valores subsequentes são opcionais. Argumentos de valor de 1 a 255 correspondentes a uma amostra de população.' }, + }, + }, + VARPA: { + description: 'Calcula a variação com base na população inteira.', + abstract: 'Calcula a variação com base na população inteira.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/varpa-function', + }, + ], + functionParameter: { + value1: { name: 'value1', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. Argumentos de valor de 1 a 255 correspondentes a uma população.' }, + value2: { name: 'value2', detail: 'Valor1 é obrigatório, os valores subsequentes são opcionais. Argumentos de valor de 1 a 255 correspondentes a uma população.' }, + }, + }, + WEIBULL_DIST: { + description: 'Retorna a distribuição Weibull. Use esta distribuição na análise de confiabilidade, como no cálculo do tempo médio de falha para determinado dispositivo.', + abstract: 'Retorna a distribuição Weibull. Use esta distribuição na análise de confiabilidade, como no cálculo do tempo médio de falha para determinado dispositivo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/weibull-dist-function', + }, + ], + functionParameter: { + x: { name: 'x', detail: 'Obrigatório. O valor no qual se avalia a função.' }, + alpha: { name: 'alpha', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + beta: { name: 'beta', detail: 'Obrigatório. Um parâmetro da distribuição.' }, + cumulative: { name: 'cumulative', detail: 'Obrigatório. Determina a forma da função.' }, + }, + }, + Z_TEST: { + description: 'Para ver como o TESTE.Z pode ser usado em uma fórmula para calcular um valor de probabilidade bicaudal, consulte a seção Comentários abaixo.', + abstract: 'Para ver como o TESTE.Z pode ser usado em uma fórmula para calcular um valor de probabilidade bicaudal, consulte a seção Comentários abaixo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/z-test-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Necessário. A matriz ou o intervalo de dados em que x será testado.' }, + x: { name: 'x', detail: 'Obrigatório. O valor a ser testado.' }, + sigma: { name: 'sigma', detail: 'Opcional. O desvio padrão da população (conhecido). Quando não especificado, o desvio padrão de amostra será usado.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/statistical/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/statistical/ru-RU.ts index dbd3796a3a..6f0c77f6a9 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%BE%D1%82%D0%BA%D0%BB-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/ru-ru/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/average-function', }, ], functionParameter: { @@ -52,19 +52,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: 'Находит средневзвешенное значение набора значений по заданным значениям и соответствующим весам', - abstract: 'Находит средневзвешенное значение набора значений по заданным значениям и соответствующим весам', + description: 'Функция AVERAGE.WEIGHTED вычисляет средневзвешенное значение набора величин с учетом соответствующих весов.', + abstract: 'Функция AVERAGE.WEIGHTED вычисляет средневзвешенное значение набора величин с учетом соответствующих весов.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/9084098?hl=ru&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=ru', }, ], functionParameter: { - values: { name: 'значения', detail: 'Значения для расчета среднего.' }, - weights: { name: 'взвешенные', detail: 'Список соответствующих взвешенных величин, которые необходимо применить.' }, - additionalValues: { name: 'дополнительные значения', detail: 'Дополнительные значения для расчета среднего.' }, - additionalWeights: { name: 'дополнительные взвешенные', detail: 'Дополнительные взвешенные, которые необходимо применить.' }, + values: { name: 'значения', detail: 'Значения для расчета среднего. Значения или диапазон ячеек.' }, + weights: { name: 'взвешенные', detail: 'Список соответствующих взвешенных величин, которые необходимо применить. Взвешенные или диапазон ячеек. Взвешенные не могут быть отрицательными числами. Допустимо значение 0. Хотя бы одно из взвешенных должно быть положительным числом. Диапазон ячеек должен содержать столько же строк и столбцов, сколько содержится в диапазоне значений.' }, + additionalValues: { name: 'дополнительные значения', detail: 'Дополнительные значения для расчета среднего. Дополнительные значения указывать необязательно.' }, + additionalWeights: { name: 'дополнительные взвешенные', detail: 'Дополнительные взвешенные, которые необходимо применить. Дополнительные взвешенные указывать необязательно, но каждому дополнительному_значению должно соответствовать одно дополнительное_взвешенное .' }, }, }, AVERAGEA: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87%D0%B0-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/ru-ru/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87%D0%B5%D1%81%D0%BB%D0%B8-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/ru-ru/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87%D0%B5%D1%81%D0%BB%D0%B8%D0%BC%D0%BD-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B7%D0%BD%D0%B0%D1%87%D0%B5%D1%81%D0%BB%D0%B8%D0%BC%D0%BD-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/ru-ru/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%82%D0%B0-%D1%80%D0%B0%D1%81%D0%BF-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/ru-ru/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B5%D1%82%D0%B0-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B5%D1%82%D0%B0-%D0%BE%D0%B1%D1%80-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-%D0%B4%D0%B8%D0%B0%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-%D0%B4%D0%B8%D0%B0%D0%BF-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/ru-ru/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D0%BE%D0%B1%D1%80-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82-%D1%80%D0%B0%D1%81%D0%BF-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82-%D1%80%D0%B0%D1%81%D0%BF-%D0%BF%D1%85-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82-%D0%BE%D0%B1%D1%80-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%85%D0%B82-%D0%BE%D0%B1%D1%80-%D0%BF%D1%85-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82-%D0%BE%D0%B1%D1%80-%D0%BF%D1%85-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%85%D0%B82-%D1%82%D0%B5%D1%81%D1%82-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%BE%D0%B2%D0%B5%D1%80%D0%B8%D1%82-%D0%BD%D0%BE%D1%80%D0%BC-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D0%B2%D0%B5%D1%80%D0%B8%D1%82-%D0%BD%D0%BE%D1%80%D0%BC-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%BE%D0%B2%D0%B5%D1%80%D0%B8%D1%82-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/ru-ru/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D1%80%D1%80%D0%B5%D0%BB-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/ru-ru/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%87%D1%91%D1%82-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/count-function', }, ], functionParameter: { @@ -342,17 +342,17 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%87%D1%91%D1%82%D0%B7-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%87%D1%91%D1%82%D0%B7-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/ru-ru/excel/functions/counta-function', }, ], functionParameter: { - number1: { + value1: { name: 'значение1', - detail: 'Первый аргумент, представляющий значения, количество которые требуется подсчитать.', + detail: 'первое число, ссылка на ячейку или диапазон, для которого требуется вычислить среднее значение.', }, - number2: { + value2: { name: 'значение2', - detail: 'Дополнительные аргументы, представляющие значения, количество которых требуется подсчитать. Аргументов может быть не более 255.', + detail: 'Дополнительные числа, ссылки на ячейки или диапазоны, для которых необходимо вычислить среднее значение, максимум до 255.', }, }, }, @@ -362,7 +362,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%87%D0%B8%D1%82%D0%B0%D1%82%D1%8C%D0%BF%D1%83%D1%81%D1%82%D0%BE%D1%82%D1%8B-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/ru-ru/excel/functions/countblank-function', }, ], functionParameter: { @@ -375,7 +375,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%87%D1%91%D1%82%D0%B5%D1%81%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%87%D1%91%D1%82%D0%B5%D1%81%D0%BB%D0%B8-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/ru-ru/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -389,7 +389,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%87%D1%91%D1%82%D0%B5%D1%81%D0%BB%D0%B8%D0%BC%D0%BD-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/ru-ru/excel/functions/countifs-function', }, ], functionParameter: { @@ -405,7 +405,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BA%D0%BE%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D1%86%D0%B8%D1%8F-%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D1%86%D0%B8%D1%8F-%D0%B3-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/ru-ru/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -419,7 +419,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BA%D0%BE%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D1%86%D0%B8%D1%8F-%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D1%86%D0%B8%D1%8F-%D0%B2-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/ru-ru/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -433,7 +433,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%B2%D0%B0%D0%B4%D1%80%D0%BE%D1%82%D0%BA%D0%BB-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/ru-ru/excel/functions/devsq-function', }, ], functionParameter: { @@ -447,7 +447,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%8D%D0%BA%D1%81%D0%BF-%D1%80%D0%B0%D1%81%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8D%D0%BA%D1%81%D0%BF-%D1%80%D0%B0%D1%81%D0%BF-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -462,7 +462,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/f-%D1%80%D0%B0%D1%81%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f-%D1%80%D0%B0%D1%81%D0%BF-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/f-dist-function', }, ], functionParameter: { @@ -478,7 +478,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/f-%D1%80%D0%B0%D1%81%D0%BF-%D0%BF%D1%85-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f-%D1%80%D0%B0%D1%81%D0%BF-%D0%BF%D1%85-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/ru-ru/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -493,7 +493,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/f-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f-%D0%BE%D0%B1%D1%80-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/ru-ru/excel/functions/f-inv-function', }, ], functionParameter: { @@ -508,7 +508,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/f-%D0%BE%D0%B1%D1%80-%D0%BF%D1%85-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f-%D0%BE%D0%B1%D1%80-%D0%BF%D1%85-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/ru-ru/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -523,7 +523,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-f-%D1%82%D0%B5%D1%81%D1%82-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/f-test-function', }, ], functionParameter: { @@ -537,7 +537,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%B8%D1%88%D0%B5%D1%80-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fisher-function', }, ], functionParameter: { @@ -550,7 +550,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%B8%D1%88%D0%B5%D1%80%D0%BE%D0%B1%D1%80-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -563,7 +563,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-forecast-%D0%B8-forecast-linear-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -578,12 +578,16 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%B5%D0%B4%D1%81%D0%BA%D0%B0%D0%B7-ets-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%B5%D0%B4%D1%81%D0%BA%D0%B0%D0%B7-ets-15389b8b-677e-4fbd-bd95-21d464333f41', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + targetDate: { name: 'Целевая дата', detail: 'Точка данных, для которой требуется спрогнозировать значение.' }, + values: { name: 'Значения', detail: 'Исторические значения, используемые для прогноза.' }, + timeline: { name: 'Временная шкала', detail: 'Независимый диапазон или массив числовых дат либо времени с постоянным шагом.' }, + seasonality: { name: 'Сезонность', detail: 'Необязательно. 1 — автоопределение, 0 — без сезонности.' }, + dataCompletion: { name: 'Заполнение данных', detail: 'Необязательно. 1 интерполирует пропуски, 0 считает их нулевыми.' }, + aggregation: { name: 'Агрегация', detail: 'Необязательно. Значение от 1 до 7 задает агрегацию повторяющихся меток времени.' }, }, }, FORECAST_ETS_CONFINT: { @@ -592,12 +596,17 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + targetDate: { name: 'Целевая дата', detail: 'Точка данных, для которой требуется спрогнозировать значение.' }, + values: { name: 'Значения', detail: 'Исторические значения, используемые для прогноза.' }, + timeline: { name: 'Временная шкала', detail: 'Независимый диапазон или массив числовых дат либо времени с постоянным шагом.' }, + confidenceLevel: { name: 'Уровень доверия', detail: 'Необязательно. Число от 0 до 1; по умолчанию 0,95.' }, + seasonality: { name: 'Сезонность', detail: 'Необязательно. 1 — автоопределение, 0 — без сезонности.' }, + dataCompletion: { name: 'Заполнение данных', detail: 'Необязательно. 1 интерполирует пропуски, 0 считает их нулевыми.' }, + aggregation: { name: 'Агрегация', detail: 'Необязательно. Значение от 1 до 7 задает агрегацию повторяющихся меток времени.' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -606,12 +615,14 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%B5%D0%B4%D1%81%D0%BA%D0%B0%D0%B7-ets-%D1%81%D0%B5%D0%B7%D0%BE%D0%BD%D0%BD%D0%BE%D1%81%D1%82%D1%8C-32a27a3b-d22f-42ce-8c5d-ef3649269f3c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + values: { name: 'Значения', detail: 'Исторические значения, используемые для прогноза.' }, + timeline: { name: 'Временная шкала', detail: 'Независимый диапазон или массив числовых дат либо времени с постоянным шагом.' }, + dataCompletion: { name: 'Заполнение данных', detail: 'Необязательно. 1 интерполирует пропуски, 0 считает их нулевыми.' }, + aggregation: { name: 'Агрегация', detail: 'Необязательно. Значение от 1 до 7 задает агрегацию повторяющихся меток времени.' }, }, }, FORECAST_ETS_STAT: { @@ -620,12 +631,16 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%B5%D0%B4%D1%81%D0%BA%D0%B0%D0%B7-ets-%D1%81%D1%82%D0%B0%D1%82-60f2ae14-d0cf-465e-9736-625ccaaa60b4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'число1', detail: 'первое' }, - number2: { name: 'число2', detail: 'второе' }, + values: { name: 'Значения', detail: 'Исторические значения, используемые для прогноза.' }, + timeline: { name: 'Временная шкала', detail: 'Независимый диапазон или массив числовых дат либо времени с постоянным шагом.' }, + statisticType: { name: 'Тип статистики', detail: 'Значение от 1 до 8 задает возвращаемую статистику прогноза.' }, + seasonality: { name: 'Сезонность', detail: 'Необязательно. 1 — автоопределение, 0 — без сезонности.' }, + dataCompletion: { name: 'Заполнение данных', detail: 'Необязательно. 1 интерполирует пропуски, 0 считает их нулевыми.' }, + aggregation: { name: 'Агрегация', detail: 'Необязательно. Значение от 1 до 7 задает агрегацию повторяющихся меток времени.' }, }, }, FORECAST_LINEAR: { @@ -634,7 +649,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/ru-ru/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -649,7 +664,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%87%D0%B0%D1%81%D1%82%D0%BE%D1%82%D0%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/frequency-function', }, ], functionParameter: { @@ -663,7 +678,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gamma-function', }, ], functionParameter: { @@ -676,7 +691,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0-%D1%80%D0%B0%D1%81%D0%BF-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -692,7 +707,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0-%D0%BE%D0%B1%D1%80-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -707,7 +722,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0%D0%BD%D0%BB%D0%BE%D0%B3-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gammaln-function', }, ], functionParameter: { @@ -720,7 +735,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0%D0%BD%D0%BB%D0%BE%D0%B3-%D1%82%D0%BE%D1%87%D0%BD-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D0%BC%D0%BC%D0%B0%D0%BD%D0%BB%D0%BE%D0%B3-%D1%82%D0%BE%D1%87%D0%BD-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -733,7 +748,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B3%D0%B0%D1%83%D1%81%D1%81-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B0%D1%83%D1%81%D1%81-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/ru-ru/excel/functions/gauss-function', }, ], functionParameter: { @@ -746,7 +761,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B3%D0%B5%D0%BE%D0%BC-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/geomean-function', }, ], functionParameter: { @@ -760,7 +775,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%BE%D1%81%D1%82-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/growth-function', }, ], functionParameter: { @@ -776,7 +791,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%80%D0%B3%D0%B0%D1%80%D0%BC-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/harmean-function', }, ], functionParameter: { @@ -790,7 +805,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B3%D0%B8%D0%BF%D0%B5%D1%80%D0%B3%D0%B5%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/ru-ru/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -807,7 +822,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%82%D1%80%D0%B5%D0%B7%D0%BE%D0%BA-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/ru-ru/excel/functions/intercept-function', }, ], functionParameter: { @@ -821,7 +836,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%8D%D0%BA%D1%81%D1%86%D0%B5%D1%81%D1%81-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/ru-ru/excel/functions/kurt-function', }, ], functionParameter: { @@ -835,7 +850,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%B8%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%B8%D0%B9-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/ru-ru/excel/functions/large-function', }, ], functionParameter: { @@ -849,7 +864,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%B8%D0%BD%D0%B5%D0%B9%D0%BD-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/linest-function', }, ], functionParameter: { @@ -865,7 +880,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%B3%D1%80%D1%84%D0%BF%D1%80%D0%B8%D0%B1%D0%BB-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/logest-function', }, ], functionParameter: { @@ -881,7 +896,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -897,7 +912,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BB%D0%BE%D0%B3%D0%BD%D0%BE%D1%80%D0%BC-%D0%BE%D0%B1%D1%80-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -907,16 +922,16 @@ const locale: typeof enUS = { }, }, MARGINOFERROR: { - description: 'Рассчитывает предельную погрешность исходя из диапазона значений и уровня доверия', - abstract: 'Рассчитывает предельную погрешность исходя из диапазона значений и уровня доверия', + description: 'Эта функция рассчитывает предельную погрешность исходя из диапазона значений и уровня доверия.', + abstract: 'Эта функция рассчитывает предельную погрешность исходя из диапазона значений и уровня доверия.', links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/12487850?hl=ru&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=ru', }, ], functionParameter: { - range: { name: 'диапазон', detail: 'Диапазон значений, который используется для расчета предельной погрешности.' }, + range: { name: 'диапазон', detail: 'MARGINOFERROR(A1:C3, 0,99)' }, confidence: { name: 'доверие', detail: 'Нужный уровень доверия в интервале от 0 до 1.' }, }, }, @@ -926,7 +941,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B0%D0%BA%D1%81-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/ru-ru/excel/functions/max-function', }, ], functionParameter: { @@ -946,7 +961,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B0%D0%BA%D1%81%D0%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/maxa-function', }, ], functionParameter: { @@ -960,7 +975,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%B0%D0%BA%D1%81%D0%B5%D1%81%D0%BB%D0%B8-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/ru-ru/excel/functions/maxifs-function', }, ], functionParameter: { @@ -977,7 +992,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B5%D0%B4%D0%B8%D0%B0%D0%BD%D0%B0-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/median-function', }, ], functionParameter: { @@ -991,7 +1006,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%BD-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/ru-ru/excel/functions/min-function', }, ], functionParameter: { @@ -1011,7 +1026,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%BD%D0%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mina-function', }, ], functionParameter: { @@ -1025,7 +1040,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%B8%D0%BD%D0%B5%D1%81%D0%BB%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%BD%D0%B5%D1%81%D0%BB%D0%B8-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/ru-ru/excel/functions/minifs-function', }, ], functionParameter: { @@ -1042,7 +1057,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BC%D0%BE%D0%B4%D0%B0-%D0%BD%D1%81%D0%BA-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BC%D0%BE%D0%B4%D0%B0-%D0%BD%D1%81%D0%BA-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1056,7 +1071,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1070,7 +1085,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BE%D1%82%D1%80%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BE%D1%82%D1%80%D0%B1%D0%B8%D0%BD%D0%BE%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/ru-ru/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1086,7 +1101,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC-%D1%80%D0%B0%D1%81%D0%BF-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1102,7 +1117,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC-%D0%BE%D0%B1%D1%80-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/ru-ru/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1117,7 +1132,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC-%D1%81%D1%82-%D1%80%D0%B0%D1%81%D0%BF-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/ru-ru/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1131,7 +1146,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BD%D0%BE%D1%80%D0%BC-%D1%81%D1%82-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC-%D1%81%D1%82-%D0%BE%D0%B1%D1%80-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1144,7 +1159,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B8%D1%80%D1%81%D0%BE%D0%BD-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/ru-ru/excel/functions/pearson-function', }, ], functionParameter: { @@ -1158,7 +1173,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D0%B8%D0%BB%D1%8C-%D0%B8%D1%81%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D0%B8%D0%BB%D1%8C-%D0%B8%D1%81%D0%BA%D0%BB-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1172,7 +1187,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D0%B8%D0%BB%D1%8C-%D0%B2%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D0%B8%D0%BB%D1%8C-%D0%B2%D0%BA%D0%BB-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1186,7 +1201,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-%D0%B8%D1%81%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-%D0%B8%D1%81%D0%BA%D0%BB-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1201,7 +1216,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-%D0%B2%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BD%D0%B3-%D0%B2%D0%BA%D0%BB-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1216,7 +1231,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D1%82-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/permut-function', }, ], functionParameter: { @@ -1230,7 +1245,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D1%82%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D1%82%D0%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1244,7 +1259,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D0%B8-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%84%D0%B8-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/phi-function', }, ], functionParameter: { @@ -1257,7 +1272,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/ru-ru/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1272,7 +1287,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%B5%D1%80%D0%BE%D1%8F%D1%82%D0%BD%D0%BE%D1%81%D1%82%D1%8C-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/ru-ru/excel/functions/prob-function', }, ], functionParameter: { @@ -1288,7 +1303,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B8%D0%BB%D1%8C-%D0%B8%D1%81%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B8%D0%BB%D1%8C-%D0%B8%D1%81%D0%BA%D0%BB-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/ru-ru/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1302,7 +1317,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B8%D0%BB%D1%8C-%D0%B2%D0%BA%D0%BB-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B8%D0%BB%D1%8C-%D0%B2%D0%BA%D0%BB-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1316,7 +1331,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%80%D0%B0%D0%BD%D0%B3-%D1%81%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%BD%D0%B3-%D1%81%D1%80-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1331,7 +1346,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1346,12 +1361,12 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BA%D0%B2%D0%BF%D0%B8%D1%80%D1%81%D0%BE%D0%BD-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'массив1', detail: 'Зависимый массив или интервал данных.' }, - array2: { name: 'массив2', detail: 'Независимый массив или интервал данных.' }, + knownYs: { name: 'известные значения Y', detail: 'Зависимый массив или интервал данных.' }, + knownXs: { name: 'известные значения X', detail: 'Независимый массив или интервал данных.' }, }, }, SKEW: { @@ -1360,7 +1375,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BA%D0%BE%D1%81-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/ru-ru/excel/functions/skew-function', }, ], functionParameter: { @@ -1374,7 +1389,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D0%BA%D0%BE%D1%81-%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D0%BA%D0%BE%D1%81-%D0%B3-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1388,7 +1403,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%BA%D0%BB%D0%BE%D0%BD-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/slope-function', }, ], functionParameter: { @@ -1402,7 +1417,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%B8%D0%BC%D0%B5%D0%BD%D1%8C%D1%88%D0%B8%D0%B9-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/ru-ru/excel/functions/small-function', }, ], functionParameter: { @@ -1416,7 +1431,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%BD%D0%BE%D1%80%D0%BC%D0%B0%D0%BB%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/ru-ru/excel/functions/standardize-function', }, ], functionParameter: { @@ -1431,7 +1446,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD-%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD-%D0%B3-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1445,7 +1460,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD-%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD-%D0%B2-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1459,7 +1474,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD%D0%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1473,7 +1488,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD%D0%BF%D0%B0-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%B0%D0%BD%D0%B4%D0%BE%D1%82%D0%BA%D0%BB%D0%BE%D0%BD%D0%BF%D0%B0-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1487,7 +1502,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D0%BE%D1%88yx-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/ru-ru/excel/functions/steyx-function', }, ], functionParameter: { @@ -1501,7 +1516,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D1%80%D0%B0%D1%81%D0%BF-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D1%80%D0%B0%D1%81%D0%BF-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1516,7 +1531,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D1%80%D0%B0%D1%81%D0%BF-2%D1%85-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1530,7 +1545,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D1%80%D0%B0%D1%81%D0%BF-%D0%BF%D1%85-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1544,7 +1559,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D0%BE%D0%B1%D1%80-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D0%BE%D0%B1%D1%80-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1558,7 +1573,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D0%BE%D0%B1%D1%80-2%D1%85-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1572,7 +1587,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%81%D1%82%D1%8C%D1%8E%D0%B4%D0%B5%D0%BD%D1%82-%D1%82%D0%B5%D1%81%D1%82-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-test-function', }, ], functionParameter: { @@ -1588,7 +1603,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%82%D0%B5%D0%BD%D0%B4%D0%B5%D0%BD%D1%86%D0%B8%D1%8F-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%82%D0%B5%D0%BD%D0%B4%D0%B5%D0%BD%D1%86%D0%B8%D1%8F-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/ru-ru/excel/functions/trend-function', }, ], functionParameter: { @@ -1604,7 +1619,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D1%83%D1%80%D0%B5%D0%B7%D1%81%D1%80%D0%B5%D0%B4%D0%BD%D0%B5%D0%B5-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/ru-ru/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1618,7 +1633,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%B8%D1%81%D0%BF-%D0%B3-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF-%D0%B3-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/var-p-function', }, ], functionParameter: { @@ -1632,7 +1647,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D0%B4%D0%B8%D1%81%D0%BF-%D0%B2-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF-%D0%B2-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/var-s-function', }, ], functionParameter: { @@ -1646,7 +1661,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF%D0%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/ru-ru/excel/functions/vara-function', }, ], functionParameter: { @@ -1660,7 +1675,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B4%D0%B8%D1%81%D0%BF%D1%80%D0%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/ru-ru/excel/functions/varpa-function', }, ], functionParameter: { @@ -1674,7 +1689,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-%D0%B2%D0%B5%D0%B9%D0%B1%D1%83%D0%BB%D0%BB-%D1%80%D0%B0%D1%81%D0%BF-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/ru-ru/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1690,7 +1705,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/z-%D1%82%D0%B5%D1%81%D1%82-%D1%84%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D1%8F-z-%D1%82%D0%B5%D1%81%D1%82-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/ru-ru/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/statistical/sk-SK.ts index fdc63e06ac..38b1226990 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/avedev-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/sk-sk/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/average-function-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/average-function', }, ], functionParameter: { @@ -57,7 +57,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/9084098?hl=en&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=sk', }, ], functionParameter: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/averagea-function-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/sk-sk/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/averageif-function-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/sk-sk/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/averageifs-function-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/sk-sk/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/beta-dist-function-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/sk-sk/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/beta-inv-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/binom-dist-range-function-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/sk-sk/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/binom-inv-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chisq-dist-function-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chisq-dist-rt-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chisq-inv-function-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chisq-inv-rt-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/chisq-test-function-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/confidence-norm-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/confidence-t-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/sk-sk/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/correl-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/sk-sk/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/count-function-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/count-function', }, ], functionParameter: { @@ -336,17 +336,17 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/counta-function-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/sk-sk/excel/functions/counta-function', }, ], functionParameter: { - number1: { + value1: { name: 'hodnota1', - detail: 'Prvá hodnota, odkaz na bunku alebo rozsah, pre ktorý chcete zistiť počet neprázdnych buniek.', + detail: 'Prvé číslo, odkaz na bunku alebo rozsah, pre ktorý chcete priemer.', }, - number2: { + value2: { name: 'hodnota2', - detail: 'Ďalšie hodnoty, odkazy na bunky alebo rozsahy, pre ktoré chcete zistiť počet neprázdnych buniek, maximálne 255.', + detail: 'Ďalšie čísla, odkazy na bunky alebo rozsahy, pre ktoré chcete priemer, maximálne 255.', }, }, }, @@ -356,7 +356,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/sk-sk/excel/functions/countblank-function', }, ], functionParameter: { @@ -369,7 +369,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/countif-function-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/sk-sk/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -383,7 +383,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/sk-sk/excel/functions/countifs-function', }, ], functionParameter: { @@ -399,7 +399,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/covariance-p-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/sk-sk/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -413,7 +413,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/covariance-s-function-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/sk-sk/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -427,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/devsq-function-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/sk-sk/excel/functions/devsq-function', }, ], functionParameter: { @@ -441,7 +441,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/expon-dist-function-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -456,7 +456,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/f-dist-function-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/f-dist-function', }, ], functionParameter: { @@ -472,7 +472,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/f-dist-rt-function-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/sk-sk/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -487,7 +487,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/f-inv-function-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/sk-sk/excel/functions/f-inv-function', }, ], functionParameter: { @@ -502,7 +502,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/f-inv-rt-function-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/sk-sk/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -517,7 +517,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/f-test-function-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/f-test-function', }, ], functionParameter: { @@ -531,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fisher-function-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fisher-function', }, ], functionParameter: { @@ -544,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fisherinv-function-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -557,7 +557,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -572,12 +572,16 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + targetDate: { name: 'Cieľový dátum', detail: 'Údajový bod, pre ktorý chcete predpovedať hodnotu.' }, + values: { name: 'Hodnoty', detail: 'Historické hodnoty použité na prognózu.' }, + timeline: { name: 'Časová os', detail: 'Nezávislý rozsah alebo pole číselných dátumov či časov s konštantným krokom.' }, + seasonality: { name: 'Sezónnosť', detail: 'Voliteľné. 1 pre automatické zistenie a 0 bez sezónnosti.' }, + dataCompletion: { name: 'Doplnenie údajov', detail: 'Voliteľné. Použite 1 na interpoláciu chýbajúcich bodov alebo 0 na ich nahradenie nulou.' }, + aggregation: { name: 'Agregácia', detail: 'Voliteľné. Hodnota 1 až 7 určuje agregáciu duplicitných časových pečiatok.' }, }, }, FORECAST_ETS_CONFINT: { @@ -586,12 +590,17 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + targetDate: { name: 'Cieľový dátum', detail: 'Údajový bod, pre ktorý chcete predpovedať hodnotu.' }, + values: { name: 'Hodnoty', detail: 'Historické hodnoty použité na prognózu.' }, + timeline: { name: 'Časová os', detail: 'Nezávislý rozsah alebo pole číselných dátumov či časov s konštantným krokom.' }, + confidenceLevel: { name: 'Úroveň spoľahlivosti', detail: 'Voliteľné. Číslo od 0 do 1; predvolená hodnota je 0,95.' }, + seasonality: { name: 'Sezónnosť', detail: 'Voliteľné. 1 pre automatické zistenie a 0 bez sezónnosti.' }, + dataCompletion: { name: 'Doplnenie údajov', detail: 'Voliteľné. Použite 1 na interpoláciu chýbajúcich bodov alebo 0 na ich nahradenie nulou.' }, + aggregation: { name: 'Agregácia', detail: 'Voliteľné. Hodnota 1 až 7 určuje agregáciu duplicitných časových pečiatok.' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -600,12 +609,14 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + values: { name: 'Hodnoty', detail: 'Historické hodnoty použité na prognózu.' }, + timeline: { name: 'Časová os', detail: 'Nezávislý rozsah alebo pole číselných dátumov či časov s konštantným krokom.' }, + dataCompletion: { name: 'Doplnenie údajov', detail: 'Voliteľné. Použite 1 na interpoláciu chýbajúcich bodov alebo 0 na ich nahradenie nulou.' }, + aggregation: { name: 'Agregácia', detail: 'Voliteľné. Hodnota 1 až 7 určuje agregáciu duplicitných časových pečiatok.' }, }, }, FORECAST_ETS_STAT: { @@ -614,12 +625,16 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'číslo1', detail: 'prvý' }, - number2: { name: 'číslo2', detail: 'druhý' }, + values: { name: 'Hodnoty', detail: 'Historické hodnoty použité na prognózu.' }, + timeline: { name: 'Časová os', detail: 'Nezávislý rozsah alebo pole číselných dátumov či časov s konštantným krokom.' }, + statisticType: { name: 'Typ štatistiky', detail: 'Hodnota 1 až 8 určuje vrátenú štatistiku prognózy.' }, + seasonality: { name: 'Sezónnosť', detail: 'Voliteľné. 1 pre automatické zistenie a 0 bez sezónnosti.' }, + dataCompletion: { name: 'Doplnenie údajov', detail: 'Voliteľné. Použite 1 na interpoláciu chýbajúcich bodov alebo 0 na ich nahradenie nulou.' }, + aggregation: { name: 'Agregácia', detail: 'Voliteľné. Hodnota 1 až 7 určuje agregáciu duplicitných časových pečiatok.' }, }, }, FORECAST_LINEAR: { @@ -628,7 +643,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/sk-sk/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -643,7 +658,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/frequency-function', }, ], functionParameter: { @@ -657,7 +672,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gamma-function-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gamma-function', }, ], functionParameter: { @@ -670,7 +685,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -686,7 +701,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gamma-inv-function-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -701,7 +716,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gammaln-function-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gammaln-function', }, ], functionParameter: { @@ -714,7 +729,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gammaln-precise-function-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -727,7 +742,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/gauss-function-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/sk-sk/excel/functions/gauss-function', }, ], functionParameter: { @@ -740,7 +755,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/geomean-function-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/geomean-function', }, ], functionParameter: { @@ -754,7 +769,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/growth-function-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/growth-function', }, ], functionParameter: { @@ -770,7 +785,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/harmean-function-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/harmean-function', }, ], functionParameter: { @@ -784,7 +799,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/hypgeom-dist-function-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/sk-sk/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -801,7 +816,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/intercept-function-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/sk-sk/excel/functions/intercept-function', }, ], functionParameter: { @@ -815,7 +830,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/kurt-function-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/sk-sk/excel/functions/kurt-function', }, ], functionParameter: { @@ -829,7 +844,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/large-function-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/sk-sk/excel/functions/large-function', }, ], functionParameter: { @@ -843,7 +858,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/linest-function-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/linest-function', }, ], functionParameter: { @@ -859,7 +874,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/logest-function-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/logest-function', }, ], functionParameter: { @@ -875,7 +890,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lognorm-dist-function-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -891,7 +906,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lognorm-inv-function-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -906,7 +921,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/12487850?hl=en&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=sk', }, ], functionParameter: { @@ -920,7 +935,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/max-function-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/sk-sk/excel/functions/max-function', }, ], functionParameter: { @@ -934,7 +949,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/maxa-function-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/maxa-function', }, ], functionParameter: { @@ -948,7 +963,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/maxifs-function-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/sk-sk/excel/functions/maxifs-function', }, ], functionParameter: { @@ -965,7 +980,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/median-function-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/median-function', }, ], functionParameter: { @@ -979,7 +994,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/min-function-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/sk-sk/excel/functions/min-function', }, ], functionParameter: { @@ -993,7 +1008,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mina-function-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mina-function', }, ], functionParameter: { @@ -1007,7 +1022,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/minifs-function-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/sk-sk/excel/functions/minifs-function', }, ], functionParameter: { @@ -1024,7 +1039,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mode-mult-function-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1038,7 +1053,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mode-sngl-function-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1052,7 +1067,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/negbinom-dist-function-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/sk-sk/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1068,7 +1083,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1084,7 +1099,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/norm-inv-function-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/sk-sk/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1099,7 +1114,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/norm-s-dist-function-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/sk-sk/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1113,7 +1128,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/norm-s-inv-function-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1126,7 +1141,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/pearson-function-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/sk-sk/excel/functions/pearson-function', }, ], functionParameter: { @@ -1140,7 +1155,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentile-exc-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1154,7 +1169,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentile-inc-function-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1168,7 +1183,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentrank-exc-function-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1183,7 +1198,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/percentrank-inc-function-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1198,7 +1213,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/permut-function-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/permut-function', }, ], functionParameter: { @@ -1212,7 +1227,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/permutationa-function-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1226,7 +1241,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/phi-function-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/phi-function', }, ], functionParameter: { @@ -1239,7 +1254,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/poisson-dist-function-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/sk-sk/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1254,7 +1269,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/prob-function-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/sk-sk/excel/functions/prob-function', }, ], functionParameter: { @@ -1270,7 +1285,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/quartile-exc-function-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/sk-sk/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1284,7 +1299,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/quartile-inc-function-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1298,7 +1313,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1313,7 +1328,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rank-eq-function-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1328,12 +1343,12 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rsq-function-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: 'pole1', detail: 'Známe hodnoty y.' }, - array2: { name: 'pole2', detail: 'Známe hodnoty x.' }, + knownYs: { name: 'známe_y', detail: 'Závislé hodnoty vynesené v známom rozsahu.' }, + knownXs: { name: 'známe_x', detail: 'Nezávislé hodnoty vynesené v známom rozsahu.' }, }, }, SKEW: { @@ -1342,7 +1357,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/skew-function-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/sk-sk/excel/functions/skew-function', }, ], functionParameter: { @@ -1356,7 +1371,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/skew-p-function-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1370,7 +1385,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/slope-function-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/slope-function', }, ], functionParameter: { @@ -1384,7 +1399,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/small-function-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/sk-sk/excel/functions/small-function', }, ], functionParameter: { @@ -1398,7 +1413,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/standardize-function-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/sk-sk/excel/functions/standardize-function', }, ], functionParameter: { @@ -1413,7 +1428,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdev-p-function-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1427,7 +1442,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdev-s-function-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1441,7 +1456,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdeva-function-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1455,7 +1470,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/stdevpa-function-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1469,7 +1484,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/steyx-function-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/sk-sk/excel/functions/steyx-function', }, ], functionParameter: { @@ -1483,7 +1498,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-dist-function-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1498,7 +1513,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-dist-2t-function-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1512,7 +1527,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1526,7 +1541,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-inv-function-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1540,7 +1555,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-inv-2t-function-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1554,7 +1569,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-test-function-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-test-function', }, ], functionParameter: { @@ -1570,7 +1585,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/trend-function-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/sk-sk/excel/functions/trend-function', }, ], functionParameter: { @@ -1586,7 +1601,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/trimmean-function-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/sk-sk/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1600,7 +1615,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/var-p-function-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/var-p-function', }, ], functionParameter: { @@ -1614,7 +1629,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/var-s-function-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/var-s-function', }, ], functionParameter: { @@ -1628,7 +1643,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/vara-function-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/sk-sk/excel/functions/vara-function', }, ], functionParameter: { @@ -1642,7 +1657,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/varpa-function-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/sk-sk/excel/functions/varpa-function', }, ], functionParameter: { @@ -1656,7 +1671,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/weibull-dist-function-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/sk-sk/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1672,7 +1687,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/sk-sk/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/statistical/vi-VN.ts index 6f6ec70dae..6f3d9414c4 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/average-function', }, ], functionParameter: { @@ -46,19 +46,19 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Hàm AVERAGE.WEIGHTED tìm trung bình cộng gia quyền của một tập giá trị khi biết trước các giá trị và trọng số tương ứng.', + abstract: 'Hàm AVERAGE.WEIGHTED tìm trung bình cộng gia quyền của một tập giá trị khi biết trước 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', + url: 'https://support.google.com/docs/answer/9084098?hl=vi', }, ], 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.' }, + values: { name: 'giá_trị', detail: 'Giá trị cần tính trung bình. Có thể tham chiếu một dải ô hoặc có thể chứa chính các giá trị đó.' }, + weights: { name: 'trọng_số', detail: 'Danh sách trọng số tương ứng để áp dụng. Có thể tham chiếu một dải ô hoặc có thể chứa chính các trọng số đó. Trọng số không được âm nhưng có thể là số 0. Phải có ít nhất một trọng số là số dương. Nếu dùng dải ô thì dải ô đó phải có cùng số hàng và cột giống với phạm vi của các giá trị.' }, + additionalValues: { name: 'giá_trị_bổ_sung', detail: 'Các giá trị bổ sung cần tính trung bình. Không bắt buộc phải có các giá trị bổ sung.' }, + additionalWeights: { name: 'trọng_số_bổ_sung', detail: 'Các trọng số bổ sung để áp dụng. Không bắt buộc phải có các trọng số bổ sung, nhưng mỗi giá_trị_bổ_sung phải đi kèm với đúng một trọng_số_bổ_sung.' }, }, }, AVERAGEA: { @@ -67,7 +67,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/averagea-function', }, ], functionParameter: { @@ -81,7 +81,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/averageif-function', }, ], functionParameter: { @@ -96,7 +96,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/averageifs-function', }, ], functionParameter: { @@ -113,7 +113,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -131,7 +131,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -148,7 +148,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -164,7 +164,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -180,7 +180,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -195,7 +195,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -210,7 +210,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -224,7 +224,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -238,7 +238,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -252,7 +252,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -266,7 +266,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -281,7 +281,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -296,7 +296,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/correl-function', }, ], functionParameter: { @@ -310,7 +310,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/count-function', }, ], functionParameter: { @@ -331,18 +331,12 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/counta-function', }, ], functionParameter: { - number1: { - name: 'số 1', - detail: 'Tham số đầu tiên đại diện cho giá trị mà bạn muốn đếm', - }, - number2: { - name: 'số 2', - detail: '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ố.', - }, + 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.' }, }, }, COUNTBLANK: { @@ -351,7 +345,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/countblank-function', }, ], functionParameter: { @@ -364,7 +358,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -378,7 +372,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/countifs-function', }, ], functionParameter: { @@ -394,7 +388,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -408,7 +402,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -422,7 +416,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/devsq-function', }, ], functionParameter: { @@ -436,7 +430,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -451,7 +445,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/f-dist-function', }, ], functionParameter: { @@ -467,7 +461,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -482,7 +476,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/f-inv-function', }, ], functionParameter: { @@ -497,7 +491,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -512,7 +506,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/f-test-function', }, ], functionParameter: { @@ -526,7 +520,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fisher-function', }, ], functionParameter: { @@ -539,7 +533,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -552,7 +546,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -562,59 +556,74 @@ const locale: typeof enUS = { }, }, 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', + description: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', + abstract: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: 'Ngày đích', detail: 'Điểm dữ liệu mà bạn muốn dự đoán giá trị.' }, + values: { name: 'Giá trị', detail: 'Các giá trị lịch sử dùng để dự báo.' }, + timeline: { name: 'Dòng thời gian', detail: 'Phạm vi hoặc mảng độc lập gồm ngày hoặc giờ dạng số với bước không đổi.' }, + seasonality: { name: 'Tính thời vụ', detail: 'Tùy chọn. 1 để tự động phát hiện và 0 để không dùng tính thời vụ.' }, + dataCompletion: { name: 'Hoàn thành dữ liệu', detail: 'Tùy chọn. Dùng 1 để nội suy điểm bị thiếu hoặc 0 để coi chúng là số không.' }, + aggregation: { name: 'Tổng hợp', detail: 'Tùy chọn. Giá trị từ 1 đến 7 chỉ định cách tổng hợp dấu thời gian trùng lặp.' }, }, }, 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', + description: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', + abstract: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.CONFINT', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: 'Ngày đích', detail: 'Điểm dữ liệu mà bạn muốn dự đoán giá trị.' }, + values: { name: 'Giá trị', detail: 'Các giá trị lịch sử dùng để dự báo.' }, + timeline: { name: 'Dòng thời gian', detail: 'Phạm vi hoặc mảng độc lập gồm ngày hoặc giờ dạng số với bước không đổi.' }, + confidenceLevel: { name: 'Mức tin cậy', detail: 'Tùy chọn. Số từ 0 đến 1; mặc định là 0,95.' }, + seasonality: { name: 'Tính thời vụ', detail: 'Tùy chọn. 1 để tự động phát hiện và 0 để không dùng tính thời vụ.' }, + dataCompletion: { name: 'Hoàn thành dữ liệu', detail: 'Tùy chọn. Dùng 1 để nội suy điểm bị thiếu hoặc 0 để coi chúng là số không.' }, + aggregation: { name: 'Tổng hợp', detail: 'Tùy chọn. Giá trị từ 1 đến 7 chỉ định cách tổng hợp dấu thời gian trùng lặp.' }, }, }, 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', + description: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', + abstract: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.SEASONALITY', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: 'Giá trị', detail: 'Các giá trị lịch sử dùng để dự báo.' }, + timeline: { name: 'Dòng thời gian', detail: 'Phạm vi hoặc mảng độc lập gồm ngày hoặc giờ dạng số với bước không đổi.' }, + dataCompletion: { name: 'Hoàn thành dữ liệu', detail: 'Tùy chọn. Dùng 1 để nội suy điểm bị thiếu hoặc 0 để coi chúng là số không.' }, + aggregation: { name: 'Tổng hợp', detail: 'Tùy chọn. Giá trị từ 1 đến 7 chỉ định cách tổng hợp dấu thời gian trùng lặp.' }, }, }, 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', + description: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', + abstract: 'Bạn luôn có thể yêu cầu chuyên gia trong Cộng đồng Kỹ thuật Excel hoặc nhận hỗ trợ trong Cộng đồng .', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.ETS.STAT', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: 'Giá trị', detail: 'Các giá trị lịch sử dùng để dự báo.' }, + timeline: { name: 'Dòng thời gian', detail: 'Phạm vi hoặc mảng độc lập gồm ngày hoặc giờ dạng số với bước không đổi.' }, + statisticType: { name: 'Loại thống kê', detail: 'Giá trị từ 1 đến 8 chỉ định thống kê dự báo cần trả về.' }, + seasonality: { name: 'Tính thời vụ', detail: 'Tùy chọn. 1 để tự động phát hiện và 0 để không dùng tính thời vụ.' }, + dataCompletion: { name: 'Hoàn thành dữ liệu', detail: 'Tùy chọn. Dùng 1 để nội suy điểm bị thiếu hoặc 0 để coi chúng là số không.' }, + aggregation: { name: 'Tổng hợp', detail: 'Tùy chọn. Giá trị từ 1 đến 7 chỉ định cách tổng hợp dấu thời gian trùng lặp.' }, }, }, FORECAST_LINEAR: { @@ -623,7 +632,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -638,7 +647,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/frequency-function', }, ], functionParameter: { @@ -652,7 +661,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gamma-function', }, ], functionParameter: { @@ -665,7 +674,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -681,7 +690,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -696,7 +705,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gammaln-function', }, ], functionParameter: { @@ -709,7 +718,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -722,7 +731,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/gauss-function', }, ], functionParameter: { @@ -735,7 +744,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/geomean-function', }, ], functionParameter: { @@ -749,7 +758,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/growth-function', }, ], functionParameter: { @@ -765,7 +774,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/harmean-function', }, ], functionParameter: { @@ -779,7 +788,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -796,7 +805,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/intercept-function', }, ], functionParameter: { @@ -810,7 +819,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/kurt-function', }, ], functionParameter: { @@ -824,7 +833,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/large-function', }, ], functionParameter: { @@ -838,7 +847,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/linest-function', }, ], functionParameter: { @@ -854,7 +863,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/logest-function', }, ], functionParameter: { @@ -870,7 +879,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -886,7 +895,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -896,16 +905,16 @@ const locale: typeof enUS = { }, }, 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.', + description: 'Hàm này tính biên độ sai số của một dải giá trị và mức tin cậy.', + abstract: 'Hàm này 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', + url: 'https://support.google.com/docs/answer/12487850?hl=vi', }, ], functionParameter: { - range: { name: 'dải_ô', detail: 'Dải giá trị dùng để tính biên độ sai số.' }, + range: { name: 'dải_ô', detail: 'MARGINOFERROR(A1:C3; 0.99)' }, confidence: { name: 'mức_tin_cậy', detail: 'Mức tin cậy mong muốn trong khoảng (0, 1).' }, }, }, @@ -915,7 +924,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/max-function', }, ], functionParameter: { @@ -935,7 +944,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/maxa-function', }, ], functionParameter: { @@ -949,7 +958,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/maxifs-function', }, ], functionParameter: { @@ -966,7 +975,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/median-function', }, ], functionParameter: { @@ -980,7 +989,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/min-function', }, ], functionParameter: { @@ -1000,7 +1009,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mina-function', }, ], functionParameter: { @@ -1014,7 +1023,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/minifs-function', }, ], functionParameter: { @@ -1031,7 +1040,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1045,7 +1054,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1059,7 +1068,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1075,7 +1084,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1091,7 +1100,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1106,7 +1115,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1120,7 +1129,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1133,7 +1142,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/pearson-function', }, ], functionParameter: { @@ -1147,7 +1156,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1161,7 +1170,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1175,7 +1184,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1190,7 +1199,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1205,7 +1214,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/permut-function', }, ], functionParameter: { @@ -1219,7 +1228,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1233,7 +1242,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/phi-function', }, ], functionParameter: { @@ -1246,7 +1255,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1261,7 +1270,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/prob-function', }, ], functionParameter: { @@ -1277,7 +1286,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1291,7 +1300,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1305,7 +1314,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1320,7 +1329,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1335,12 +1344,12 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rsq-function', }, ], 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.' }, + 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.' }, }, }, SKEW: { @@ -1349,7 +1358,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/skew-function', }, ], functionParameter: { @@ -1363,7 +1372,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1377,7 +1386,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/slope-function', }, ], functionParameter: { @@ -1391,7 +1400,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/small-function', }, ], functionParameter: { @@ -1405,7 +1414,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/standardize-function', }, ], functionParameter: { @@ -1420,7 +1429,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1434,7 +1443,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1448,7 +1457,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1462,7 +1471,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1476,7 +1485,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/steyx-function', }, ], functionParameter: { @@ -1490,7 +1499,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1505,7 +1514,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1519,7 +1528,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1533,7 +1542,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1547,7 +1556,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1561,7 +1570,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-test-function', }, ], functionParameter: { @@ -1577,7 +1586,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/trend-function', }, ], functionParameter: { @@ -1593,7 +1602,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1607,7 +1616,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/var-p-function', }, ], functionParameter: { @@ -1621,7 +1630,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/var-s-function', }, ], functionParameter: { @@ -1635,7 +1644,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/vara-function', }, ], functionParameter: { @@ -1649,7 +1658,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/varpa-function', }, ], functionParameter: { @@ -1663,7 +1672,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1679,7 +1688,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/statistical/zh-CN.ts index b6606c1d1e..5c65bd976b 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/avedev-%E5%87%BD%E6%95%B0-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/zh-cn/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/average-%E5%87%BD%E6%95%B0-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/average-function', }, ], functionParameter: { @@ -52,19 +52,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: '在已知数值和相应权重的情况下,计算出一组值的加权平均值', - abstract: '在已知数值和相应权重的情况下,计算出一组值的加权平均值', + description: 'AVERAGE.WEIGHTED 函数根据一组数值及其对应的权重计算这些数值的加权平均值。', + abstract: 'AVERAGE.WEIGHTED 函数根据一组数值及其对应的权重计算这些数值的加权平均值。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/9084098?hl=zh-Hans&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=zh-Hans', }, ], functionParameter: { - values: { name: '值', detail: '要计算平均数的值。' }, - weights: { name: '权重', detail: '要应用的相应权重列表。' }, - additionalValues: { name: '其他值', detail: '要计算平均数的其他值。' }, - additionalWeights: { name: '其他权重', detail: '要应用的其他权重。' }, + values: { name: '值', detail: '要计算平均数的值。 可以引用一组单元格,也可以是数值本身。' }, + weights: { name: '权重', detail: '要应用的相应权重列表。 可以引用一组单元格,也可以是权重本身。 权重不得为负数,但可以为零。 必须至少有一个权重是正数。 如果使用一组单元格,则该单元格范围的行数和列数必须与值范围的行数和列数相同。' }, + additionalValues: { name: '其他值', detail: '要计算平均数的其他值。 其他值是选填的。' }, + additionalWeights: { name: '其他权重', detail: '要应用的其他权重。 其他权重是选填的,但每个 其他值 必须后跟一个 权重 。' }, }, }, AVERAGEA: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/averagea-%E5%87%BD%E6%95%B0-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/zh-cn/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/averageif-%E5%87%BD%E6%95%B0-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/zh-cn/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/averageifs-%E5%87%BD%E6%95%B0-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/zh-cn/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/beta-dist-%E5%87%BD%E6%95%B0-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/zh-cn/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/beta-inv-%E5%87%BD%E6%95%B0-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/binom-dist-%E5%87%BD%E6%95%B0-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/binom-dist-range-%E5%87%BD%E6%95%B0-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/zh-cn/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/binom-inv-%E5%87%BD%E6%95%B0-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chisq-dist-%E5%87%BD%E6%95%B0-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chisq-dist-rt-%E5%87%BD%E6%95%B0-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chisq-inv-%E5%87%BD%E6%95%B0-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chisq-inv-rt-%E5%87%BD%E6%95%B0-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/chisq-test-%E5%87%BD%E6%95%B0-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/confidence-norm-%E5%87%BD%E6%95%B0-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/confidence-t-%E5%87%BD%E6%95%B0-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/zh-cn/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/correl-%E5%87%BD%E6%95%B0-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/zh-cn/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/count-%E5%87%BD%E6%95%B0-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/count-function', }, ], functionParameter: { @@ -343,17 +343,17 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/counta-%E5%87%BD%E6%95%B0-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/zh-cn/excel/functions/counta-function', }, ], functionParameter: { - number1: { - name: '数值 1', - detail: '表示要计数的值的第一个参数', + value1: { + name: '值 1', + detail: '要计算平均值的第一个数字、单元格引用或单元格区域。', }, - number2: { - name: '数值 2', - detail: '表示要计数的值的其他参数,最多可包含 255 个参数。', + value2: { + name: '值 2', + detail: '要计算平均值的其他数字、单元格引用或单元格区域,最多可包含 255 个。', }, }, }, @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/countblank-%E5%87%BD%E6%95%B0-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/zh-cn/excel/functions/countblank-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/countif-%E5%87%BD%E6%95%B0-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/zh-cn/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/countifs-%E5%87%BD%E6%95%B0-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/zh-cn/excel/functions/countifs-function', }, ], functionParameter: { @@ -406,7 +406,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/covariance-p-%E5%87%BD%E6%95%B0-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/zh-cn/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -420,7 +420,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/covariance-s-%E5%87%BD%E6%95%B0-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/zh-cn/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -434,7 +434,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/devsq-%E5%87%BD%E6%95%B0-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/zh-cn/excel/functions/devsq-function', }, ], functionParameter: { @@ -448,7 +448,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/expon-dist-%E5%87%BD%E6%95%B0-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -463,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/f-dist-%E5%87%BD%E6%95%B0-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/f-dist-function', }, ], functionParameter: { @@ -479,7 +479,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/f-dist-rt-%E5%87%BD%E6%95%B0-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/zh-cn/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -494,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/f-inv-%E5%87%BD%E6%95%B0-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/zh-cn/excel/functions/f-inv-function', }, ], functionParameter: { @@ -509,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/f-inv-rt-%E5%87%BD%E6%95%B0-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/zh-cn/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -524,7 +524,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/f-test-%E5%87%BD%E6%95%B0-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/f-test-function', }, ], functionParameter: { @@ -538,7 +538,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fisher-%E5%87%BD%E6%95%B0-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fisher-function', }, ], functionParameter: { @@ -551,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fisherinv-%E5%87%BD%E6%95%B0-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -564,7 +564,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -579,12 +579,16 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/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', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目标日期', detail: '要预测其值的数据点。' }, + values: { name: '值', detail: '用于预测的历史值。' }, + timeline: { name: '时间线', detail: '由步长恒定的数值日期或时间组成的独立区域或数组。' }, + seasonality: { name: '季节性', detail: '可选。1 表示自动检测,0 表示无季节性。' }, + dataCompletion: { name: '数据补全', detail: '可选。1 表示插值补全缺失点,0 表示将缺失点视为零。' }, + aggregation: { name: '聚合', detail: '可选。用 1 到 7 指定重复时间戳的聚合方式。' }, }, }, FORECAST_ETS_CONFINT: { @@ -593,12 +597,17 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/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', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目标日期', detail: '要预测其值的数据点。' }, + values: { name: '值', detail: '用于预测的历史值。' }, + timeline: { name: '时间线', detail: '由步长恒定的数值日期或时间组成的独立区域或数组。' }, + confidenceLevel: { name: '置信水平', detail: '可选。0 到 1 之间的数字,默认值为 0.95。' }, + seasonality: { name: '季节性', detail: '可选。1 表示自动检测,0 表示无季节性。' }, + dataCompletion: { name: '数据补全', detail: '可选。1 表示插值补全缺失点,0 表示将缺失点视为零。' }, + aggregation: { name: '聚合', detail: '可选。用 1 到 7 指定重复时间戳的聚合方式。' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -607,12 +616,14 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/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', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '值', detail: '用于预测的历史值。' }, + timeline: { name: '时间线', detail: '由步长恒定的数值日期或时间组成的独立区域或数组。' }, + dataCompletion: { name: '数据补全', detail: '可选。1 表示插值补全缺失点,0 表示将缺失点视为零。' }, + aggregation: { name: '聚合', detail: '可选。用 1 到 7 指定重复时间戳的聚合方式。' }, }, }, FORECAST_ETS_STAT: { @@ -621,12 +632,16 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/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', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '值', detail: '用于预测的历史值。' }, + timeline: { name: '时间线', detail: '由步长恒定的数值日期或时间组成的独立区域或数组。' }, + statisticType: { name: '统计类型', detail: '用 1 到 8 指定要返回的预测统计值。' }, + seasonality: { name: '季节性', detail: '可选。1 表示自动检测,0 表示无季节性。' }, + dataCompletion: { name: '数据补全', detail: '可选。1 表示插值补全缺失点,0 表示将缺失点视为零。' }, + aggregation: { name: '聚合', detail: '可选。用 1 到 7 指定重复时间戳的聚合方式。' }, }, }, FORECAST_LINEAR: { @@ -635,7 +650,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/forecast-%E5%92%8C-forecast-linear-%E5%87%BD%E6%95%B0-50ca49c9-7b40-4892-94e4-7ad38bbeda99', + url: 'https://support.microsoft.com/zh-cn/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -650,7 +665,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/frequency-%E5%87%BD%E6%95%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/frequency-function', }, ], functionParameter: { @@ -664,7 +679,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gamma-%E5%87%BD%E6%95%B0-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gamma-function', }, ], functionParameter: { @@ -677,7 +692,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gamma-dist-%E5%87%BD%E6%95%B0-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -693,7 +708,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gamma-inv-%E5%87%BD%E6%95%B0-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -708,7 +723,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gammaln-%E5%87%BD%E6%95%B0-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gammaln-function', }, ], functionParameter: { @@ -721,7 +736,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gammaln-precise-%E5%87%BD%E6%95%B0-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -734,7 +749,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/gauss-%E5%87%BD%E6%95%B0-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/zh-cn/excel/functions/gauss-function', }, ], functionParameter: { @@ -747,7 +762,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/geomean-%E5%87%BD%E6%95%B0-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/geomean-function', }, ], functionParameter: { @@ -761,7 +776,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/growth-%E5%87%BD%E6%95%B0-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/growth-function', }, ], functionParameter: { @@ -777,7 +792,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/harmean-%E5%87%BD%E6%95%B0-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/harmean-function', }, ], functionParameter: { @@ -791,7 +806,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/hypgeom-dist-%E5%87%BD%E6%95%B0-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/zh-cn/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -808,7 +823,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/intercept-%E5%87%BD%E6%95%B0-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/zh-cn/excel/functions/intercept-function', }, ], functionParameter: { @@ -822,7 +837,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/kurt-%E5%87%BD%E6%95%B0-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/zh-cn/excel/functions/kurt-function', }, ], functionParameter: { @@ -836,7 +851,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/large-%E5%87%BD%E6%95%B0-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/zh-cn/excel/functions/large-function', }, ], functionParameter: { @@ -850,7 +865,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/linest-%E5%87%BD%E6%95%B0-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/linest-function', }, ], functionParameter: { @@ -866,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/logest-%E5%87%BD%E6%95%B0-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/logest-function', }, ], functionParameter: { @@ -882,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lognorm-dist-%E5%87%BD%E6%95%B0-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -898,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lognorm-inv-%E5%87%BD%E6%95%B0-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -908,16 +923,16 @@ const locale: typeof enUS = { }, }, MARGINOFERROR: { - description: '根据一系列值和置信水平计算误差范围', - abstract: '根据一系列值和置信水平计算误差范围', + description: '此函数会根据一系列值和置信水平计算误差范围。', + abstract: '此函数会根据一系列值和置信水平计算误差范围。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/12487850?hl=zh-Hans&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=zh-Hans', }, ], functionParameter: { - range: { name: '范围', detail: '用于计算误差范围的值范围。' }, + range: { name: '范围', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, confidence: { name: '置信度', detail: '所需的置信度介于 0 与 1 之间。' }, }, }, @@ -927,7 +942,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/max-%E5%87%BD%E6%95%B0-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/zh-cn/excel/functions/max-function', }, ], functionParameter: { @@ -947,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/maxa-%E5%87%BD%E6%95%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/maxa-function', }, ], functionParameter: { @@ -961,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/maxifs-%E5%87%BD%E6%95%B0-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/zh-cn/excel/functions/maxifs-function', }, ], functionParameter: { @@ -978,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/median-%E5%87%BD%E6%95%B0-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/median-function', }, ], functionParameter: { @@ -992,7 +1007,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/min-%E5%87%BD%E6%95%B0-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/zh-cn/excel/functions/min-function', }, ], functionParameter: { @@ -1012,7 +1027,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mina-%E5%87%BD%E6%95%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mina-function', }, ], functionParameter: { @@ -1026,7 +1041,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/minifs-%E5%87%BD%E6%95%B0-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/zh-cn/excel/functions/minifs-function', }, ], functionParameter: { @@ -1043,7 +1058,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mode-mult-%E5%87%BD%E6%95%B0-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1057,7 +1072,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mode-sngl-%E5%87%BD%E6%95%B0-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1071,7 +1086,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/negbinom-dist-%E5%87%BD%E6%95%B0-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/zh-cn/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1087,7 +1102,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/norm-dist-%E5%87%BD%E6%95%B0-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1103,7 +1118,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/norm-inv-%E5%87%BD%E6%95%B0-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/zh-cn/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1118,7 +1133,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/norm-s-dist-%E5%87%BD%E6%95%B0-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/zh-cn/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1132,7 +1147,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/norm-s-inv-%E5%87%BD%E6%95%B0-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1145,7 +1160,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/pearson-%E5%87%BD%E6%95%B0-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/zh-cn/excel/functions/pearson-function', }, ], functionParameter: { @@ -1159,7 +1174,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentile-exc-%E5%87%BD%E6%95%B0-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1173,7 +1188,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentile-inc-%E5%87%BD%E6%95%B0-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1187,7 +1202,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentrank-exc-%E5%87%BD%E6%95%B0-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1202,7 +1217,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/percentrank-inc-%E5%87%BD%E6%95%B0-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1217,7 +1232,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/permut-%E5%87%BD%E6%95%B0-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/permut-function', }, ], functionParameter: { @@ -1231,7 +1246,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/permutationa-%E5%87%BD%E6%95%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1245,7 +1260,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/phi-%E5%87%BD%E6%95%B0-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/phi-function', }, ], functionParameter: { @@ -1258,7 +1273,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/poisson-dist-%E5%87%BD%E6%95%B0-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/zh-cn/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1273,7 +1288,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/prob-%E5%87%BD%E6%95%B0-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/zh-cn/excel/functions/prob-function', }, ], functionParameter: { @@ -1289,7 +1304,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/quartile-exc-%E5%87%BD%E6%95%B0-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/zh-cn/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1303,7 +1318,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/quartile-inc-%E5%87%BD%E6%95%B0-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1317,7 +1332,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rank-avg-%E5%87%BD%E6%95%B0-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1332,7 +1347,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rank-eq-%E5%87%BD%E6%95%B0-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1347,12 +1362,12 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rsq-%E5%87%BD%E6%95%B0-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: '数据1', detail: '代表因变量数据的数组或矩阵的范围。' }, - array2: { name: '数据2', detail: '代表自变量数据的数组或矩阵的范围。' }, + knownYs: { name: '数据_y', detail: '代表因变量数据的数组或矩阵的范围。' }, + knownXs: { name: '数据_x', detail: '代表自变量数据的数组或矩阵的范围。' }, }, }, SKEW: { @@ -1361,7 +1376,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/skew-%E5%87%BD%E6%95%B0-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/zh-cn/excel/functions/skew-function', }, ], functionParameter: { @@ -1375,7 +1390,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/skew-p-%E5%87%BD%E6%95%B0-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1389,7 +1404,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/slope-%E5%87%BD%E6%95%B0-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/slope-function', }, ], functionParameter: { @@ -1403,7 +1418,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/small-%E5%87%BD%E6%95%B0-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/zh-cn/excel/functions/small-function', }, ], functionParameter: { @@ -1417,7 +1432,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/standardize-%E5%87%BD%E6%95%B0-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/zh-cn/excel/functions/standardize-function', }, ], functionParameter: { @@ -1432,7 +1447,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdev-p-%E5%87%BD%E6%95%B0-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1446,7 +1461,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdev-s-%E5%87%BD%E6%95%B0-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1460,7 +1475,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdeva-%E5%87%BD%E6%95%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1474,7 +1489,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/stdevpa-%E5%87%BD%E6%95%B0-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1488,7 +1503,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/steyx-%E5%87%BD%E6%95%B0-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/zh-cn/excel/functions/steyx-function', }, ], functionParameter: { @@ -1502,7 +1517,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-dist-%E5%87%BD%E6%95%B0-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1517,7 +1532,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-dist-2t-%E5%87%BD%E6%95%B0-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1531,7 +1546,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-dist-rt-%E5%87%BD%E6%95%B0-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1545,7 +1560,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-inv-%E5%87%BD%E6%95%B0-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1559,7 +1574,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-inv-2t-%E5%87%BD%E6%95%B0-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1573,7 +1588,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-test-%E5%87%BD%E6%95%B0-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-test-function', }, ], functionParameter: { @@ -1589,7 +1604,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/trend-%E5%87%BD%E6%95%B0-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/zh-cn/excel/functions/trend-function', }, ], functionParameter: { @@ -1605,7 +1620,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/trimmean-%E5%87%BD%E6%95%B0-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/zh-cn/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1619,7 +1634,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/var-p-%E5%87%BD%E6%95%B0-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/var-p-function', }, ], functionParameter: { @@ -1633,7 +1648,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/var-s-%E5%87%BD%E6%95%B0-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/var-s-function', }, ], functionParameter: { @@ -1647,7 +1662,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/vara-%E5%87%BD%E6%95%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/zh-cn/excel/functions/vara-function', }, ], functionParameter: { @@ -1661,7 +1676,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/varpa-%E5%87%BD%E6%95%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/zh-cn/excel/functions/varpa-function', }, ], functionParameter: { @@ -1675,7 +1690,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/weibull-dist-%E5%87%BD%E6%95%B0-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/zh-cn/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1691,7 +1706,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/z-test-%E5%87%BD%E6%95%B0-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/zh-cn/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/statistical/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/statistical/zh-TW.ts index 5d0b77dfdb..6da0b0acfa 100644 --- a/packages/sheets-formula/src/locale/function-list/statistical/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/statistical/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/avedev-%E5%87%BD%E6%95%B0-58fe8d65-2a84-4dc7-8052-f3f87b5c6639', + url: 'https://support.microsoft.com/zh-tw/excel/functions/avedev-function', }, ], functionParameter: { @@ -37,7 +37,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/average-%E5%87%BD%E6%95%B0-047bac88-d466-426c-a32b-8f33eb960cf6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/average-function', }, ], functionParameter: { @@ -52,19 +52,19 @@ const locale: typeof enUS = { }, }, AVERAGE_WEIGHTED: { - description: '可在已知實際數值和對應權重的情況下,用來求得多項數值的加權平均值', - abstract: '可在已知實際數值和對應權重的情況下,用來求得多項數值的加權平均值', + description: 'AVERAGE.WEIGHTED 函數會根據一組數值及其對應的權重,計算這些數值的加權平均值。', + abstract: 'AVERAGE.WEIGHTED 函數會根據一組數值及其對應的權重,計算這些數值的加權平均值。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/9084098?hl=zh-Hant&ref_topic=3105600&sjid=2155433538747546473-AP', + url: 'https://support.google.com/docs/answer/9084098?hl=zh-Hant', }, ], functionParameter: { - values: { name: '值', detail: '要計算平均值的數值。' }, - weights: { name: '權重', detail: '要套用的權重對應清單。' }, - additionalValues: { name: '其他值', detail: '要計算平均值的其他值。' }, - additionalWeights: { name: '其他權重', detail: '要套用的其他權重。' }, + values: { name: '值', detail: '要計算平均值的數值。 可以是參照儲存格的範圍,也可以是數值本身。' }, + weights: { name: '權重', detail: '要套用的權重對應清單。 可以是參照儲存格的範圍,也可以是權重本身。 雖然權重不得為負數,但可以為零。 至少要有一個權重為正數。 如果使用特定儲存格範圍,這段範圍的欄數和列數必須與數值範圍的欄數和列數相同。' }, + additionalValues: { name: '其他值', detail: '要計算平均值的其他值。 其他值為選填。' }, + additionalWeights: { name: '其他權重', detail: '要套用的其他權重。 其他權重為選填,但每個 [其他值] 的後面都必須加上一個 [其他權重] 。' }, }, }, AVERAGEA: { @@ -73,7 +73,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/averagea-%E5%87%BD%E6%95%B0-f5f84098-d453-4f4c-bbba-3d2c66356091', + url: 'https://support.microsoft.com/zh-tw/excel/functions/averagea-function', }, ], functionParameter: { @@ -93,7 +93,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/averageif-%E5%87%BD%E6%95%B0-faec8e2e-0dec-4308-af69-f5576d8ac642', + url: 'https://support.microsoft.com/zh-tw/excel/functions/averageif-function', }, ], functionParameter: { @@ -108,7 +108,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/averageifs-%E5%87%BD%E6%95%B0-48910c45-1fc0-4389-a028-f7c5c3001690', + url: 'https://support.microsoft.com/zh-tw/excel/functions/averageifs-function', }, ], functionParameter: { @@ -125,7 +125,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/beta-dist-%E5%87%BD%E6%95%B0-11188c9c-780a-42c7-ba43-9ecb5a878d31', + url: 'https://support.microsoft.com/zh-tw/excel/functions/beta-dist-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/beta-inv-%E5%87%BD%E6%95%B0-e84cb8aa-8df0-4cf6-9892-83a341d252eb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/beta-inv-function', }, ], functionParameter: { @@ -160,7 +160,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/binom-dist-%E5%87%BD%E6%95%B0-c5ae37b6-f39c-4be2-94c2-509a1480770c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/binom-dist-function', }, ], functionParameter: { @@ -176,7 +176,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/binom-dist-range-%E5%87%BD%E6%95%B0-17331329-74c7-4053-bb4c-6653a7421595', + url: 'https://support.microsoft.com/zh-tw/excel/functions/binom-dist-range-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/binom-inv-%E5%87%BD%E6%95%B0-80a0370c-ada6-49b4-83e7-05a91ba77ac9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/binom-inv-function', }, ], functionParameter: { @@ -207,7 +207,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chisq-dist-%E5%87%BD%E6%95%B0-8486b05e-5c05-4942-a9ea-f6b341518732', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chisq-dist-function', }, ], functionParameter: { @@ -222,7 +222,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chisq-dist-rt-%E5%87%BD%E6%95%B0-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chisq-dist-rt-function', }, ], functionParameter: { @@ -236,7 +236,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chisq-inv-%E5%87%BD%E6%95%B0-400db556-62b3-472d-80b3-254723e7092f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chisq-inv-function', }, ], functionParameter: { @@ -250,7 +250,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chisq-inv-rt-%E5%87%BD%E6%95%B0-435b5ed8-98d5-4da6-823f-293e2cbc94fe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chisq-inv-rt-function', }, ], functionParameter: { @@ -264,7 +264,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/chisq-test-%E5%87%BD%E6%95%B0-2e8a7861-b14a-4985-aa93-fb88de3f260f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/chisq-test-function', }, ], functionParameter: { @@ -278,7 +278,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/confidence-norm-%E5%87%BD%E6%95%B0-7cec58a6-85bb-488d-91c3-63828d4fbfd4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/confidence-norm-function', }, ], functionParameter: { @@ -293,7 +293,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/confidence-t-%E5%87%BD%E6%95%B0-e8eca395-6c3a-4ba9-9003-79ccc61d3c53', + url: 'https://support.microsoft.com/zh-tw/excel/functions/confidence-t-function', }, ], functionParameter: { @@ -308,7 +308,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/correl-%E5%87%BD%E6%95%B0-995dcef7-0c0a-4bed-a3fb-239d7b68ca92', + url: 'https://support.microsoft.com/zh-tw/excel/functions/correl-function', }, ], functionParameter: { @@ -322,7 +322,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/count-%E5%87%BD%E6%95%B0-a59cd7fc-b623-4d93-87a4-d23bf411294c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/count-function', }, ], functionParameter: { @@ -343,17 +343,17 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/counta-%E5%87%BD%E6%95%B0-7dc98875-d5c1-46f1-9a82-53f3219e2509', + url: 'https://support.microsoft.com/zh-tw/excel/functions/counta-function', }, ], functionParameter: { - number1: { - name: '數值 1', - detail: '表示要計數的值的第一個參數', + value1: { + name: '值 1', + detail: '要計算平均值的第一個數字、儲存格參考或儲存格區域。 ', }, - number2: { - name: '數值 2', - detail: '表示要計數的值的其他參數,最多可包含 255 個參數。 ', + value2: { + name: '值 2', + detail: '要計算平均值的其他數字、儲存格參考或儲存格區域,最多可包含 255 個。 ', }, }, }, @@ -363,7 +363,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/countblank-%E5%87%BD%E6%95%B0-6a92d772-675c-4bee-b346-24af6bd3ac22', + url: 'https://support.microsoft.com/zh-tw/excel/functions/countblank-function', }, ], functionParameter: { @@ -376,7 +376,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/countif-%E5%87%BD%E6%95%B0-e0de10c6-f885-4e71-abb4-1f464816df34', + url: 'https://support.microsoft.com/zh-tw/excel/functions/use-the-countif-function-in-microsoft-excel', }, ], functionParameter: { @@ -390,7 +390,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/countifs-%E5%87%BD%E6%95%B0-dda3dc6e-f74e-4aee-88bc-aa8c2a866842', + url: 'https://support.microsoft.com/zh-tw/excel/functions/countifs-function', }, ], functionParameter: { @@ -406,7 +406,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/covariance-p-%E5%87%BD%E6%95%B0-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc', + url: 'https://support.microsoft.com/zh-tw/excel/functions/covariance-p-function', }, ], functionParameter: { @@ -420,7 +420,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/covariance-s-%E5%87%BD%E6%95%B0-0a539b74-7371-42aa-a18f-1f5320314977', + url: 'https://support.microsoft.com/zh-tw/excel/functions/covariance-s-function', }, ], functionParameter: { @@ -434,7 +434,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/devsq-%E5%87%BD%E6%95%B0-8b739616-8376-4df5-8bd0-cfe0a6caf444', + url: 'https://support.microsoft.com/zh-tw/excel/functions/devsq-function', }, ], functionParameter: { @@ -448,7 +448,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/expon-dist-%E5%87%BD%E6%95%B0-4c12ae24-e563-4155-bf3e-8b78b6ae140e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/expon-dist-function', }, ], functionParameter: { @@ -463,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/f-dist-%E5%87%BD%E6%95%B0-a887efdc-7c8e-46cb-a74a-f884cd29b25d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/f-dist-function', }, ], functionParameter: { @@ -479,7 +479,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/f-dist-rt-%E5%87%BD%E6%95%B0-d74cbb00-6017-4ac9-b7d7-6049badc0520', + url: 'https://support.microsoft.com/zh-tw/excel/functions/f-dist-rt-function', }, ], functionParameter: { @@ -494,7 +494,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/f-inv-%E5%87%BD%E6%95%B0-0dda0cf9-4ea0-42fd-8c3c-417a1ff30dbe', + url: 'https://support.microsoft.com/zh-tw/excel/functions/f-inv-function', }, ], functionParameter: { @@ -509,7 +509,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/f-inv-rt-%E5%87%BD%E6%95%B0-d371aa8f-b0b1-40ef-9cc2-496f0693ac00', + url: 'https://support.microsoft.com/zh-tw/excel/functions/f-inv-rt-function', }, ], functionParameter: { @@ -524,7 +524,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/f-test-%E5%87%BD%E6%95%B0-100a59e7-4108-46f8-8443-78ffacb6c0a7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/f-test-function', }, ], functionParameter: { @@ -538,7 +538,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fisher-%E5%87%BD%E6%95%B0-d656523c-5076-4f95-b87b-7741bf236c69', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fisher-function', }, ], functionParameter: { @@ -551,7 +551,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fisherinv-%E5%87%BD%E6%95%B0-62504b39-415a-4284-a285-19c8e82f86bb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fisherinv-function', }, ], functionParameter: { @@ -564,7 +564,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -579,12 +579,16 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-ets-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目標日期', detail: '要預測其值的資料點。' }, + values: { name: '值', detail: '用於預測的歷史值。' }, + timeline: { name: '時間軸', detail: '由固定間距的數值日期或時間組成的獨立範圍或陣列。' }, + seasonality: { name: '季節性', detail: '選用。1 表示自動偵測,0 表示無季節性。' }, + dataCompletion: { name: '資料補全', detail: '選用。1 表示插補遺漏點,0 表示將遺漏點視為零。' }, + aggregation: { name: '彙總', detail: '選用。以 1 到 7 指定重複時間戳記的彙總方式。' }, }, }, FORECAST_ETS_CONFINT: { @@ -593,12 +597,17 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-ets-confint-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + targetDate: { name: '目標日期', detail: '要預測其值的資料點。' }, + values: { name: '值', detail: '用於預測的歷史值。' }, + timeline: { name: '時間軸', detail: '由固定間距的數值日期或時間組成的獨立範圍或陣列。' }, + confidenceLevel: { name: '信賴水準', detail: '選用。0 到 1 之間的數字,預設值為 0.95。' }, + seasonality: { name: '季節性', detail: '選用。1 表示自動偵測,0 表示無季節性。' }, + dataCompletion: { name: '資料補全', detail: '選用。1 表示插補遺漏點,0 表示將遺漏點視為零。' }, + aggregation: { name: '彙總', detail: '選用。以 1 到 7 指定重複時間戳記的彙總方式。' }, }, }, FORECAST_ETS_SEASONALITY: { @@ -607,27 +616,32 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-ets-seasonality-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '值', detail: '用於預測的歷史值。' }, + timeline: { name: '時間軸', detail: '由固定間距的數值日期或時間組成的獨立範圍或陣列。' }, + dataCompletion: { name: '資料補全', detail: '選用。1 表示插補遺漏點,0 表示將遺漏點視為零。' }, + aggregation: { name: '彙總', detail: '選用。以 1 到 7 指定重複時間戳記的彙總方式。' }, }, }, - FORECAST_ETS_STAT: - { + 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-ets-stat-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + values: { name: '值', detail: '用於預測的歷史值。' }, + timeline: { name: '時間軸', detail: '由固定間距的數值日期或時間組成的獨立範圍或陣列。' }, + statisticType: { name: '統計類型', detail: '以 1 到 8 指定要傳回的預測統計值。' }, + seasonality: { name: '季節性', detail: '選用。1 表示自動偵測,0 表示無季節性。' }, + dataCompletion: { name: '資料補全', detail: '選用。1 表示插補遺漏點,0 表示將遺漏點視為零。' }, + aggregation: { name: '彙總', detail: '選用。以 1 到 7 指定重複時間戳記的彙總方式。' }, }, }, FORECAST_LINEAR: { @@ -636,7 +650,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/zh-tw/excel/functions/forecast-and-forecast-linear-functions', }, ], functionParameter: { @@ -651,7 +665,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/frequency-%E5%87%BD%E6%95%B0-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/frequency-function', }, ], functionParameter: { @@ -665,7 +679,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gamma-%E5%87%BD%E6%95%B0-ce1702b1-cf55-471d-8307-f83be0fc5297', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gamma-function', }, ], functionParameter: { @@ -678,7 +692,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gamma-dist-%E5%87%BD%E6%95%B0-9b6f1538-d11c-4d5f-8966-21f6a2201def', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gamma-dist-function', }, ], functionParameter: { @@ -694,7 +708,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gamma-inv-%E5%87%BD%E6%95%B0-74991443-c2b0-4be5-aaab-1aa4d71fbb18', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gamma-inv-function', }, ], functionParameter: { @@ -709,7 +723,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gammaln-%E5%87%BD%E6%95%B0-b838c48b-c65f-484f-9e1d-141c55470eb9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gammaln-function', }, ], functionParameter: { @@ -722,7 +736,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gammaln-precise-%E5%87%BD%E6%95%B0-5cdfe601-4e1e-4189-9d74-241ef1caa599', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gammaln-precise-function', }, ], functionParameter: { @@ -735,7 +749,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/gauss-%E5%87%BD%E6%95%B0-069f1b4e-7dee-4d6a-a71f-4b69044a6b33', + url: 'https://support.microsoft.com/zh-tw/excel/functions/gauss-function', }, ], functionParameter: { @@ -748,7 +762,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/geomean-%E5%87%BD%E6%95%B0-db1ac48d-25a5-40a0-ab83-0b38980e40d5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/geomean-function', }, ], functionParameter: { @@ -762,7 +776,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/growth-%E5%87%BD%E6%95%B0-541a91dc-3d5e-437d-b156-21324e68b80d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/growth-function', }, ], functionParameter: { @@ -778,7 +792,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/harmean-%E5%87%BD%E6%95%B0-5efd9184-fab5-42f9-b1d3-57883a1d3bc6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/harmean-function', }, ], functionParameter: { @@ -792,7 +806,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/hypgeom-dist-%E5%87%BD%E6%95%B0-6dbd547f-1d12-4b1f-8ae5-b0d9e3d22fbf', + url: 'https://support.microsoft.com/zh-tw/excel/functions/hypgeom-dist-function', }, ], functionParameter: { @@ -809,7 +823,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/intercept-%E5%87%BD%E6%95%B0-2a9b74e2-9d47-4772-b663-3bca70bf63ef', + url: 'https://support.microsoft.com/zh-tw/excel/functions/intercept-function', }, ], functionParameter: { @@ -823,7 +837,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/kurt-%E5%87%BD%E6%95%B0-bc3a265c-5da4-4dcb-b7fd-c237789095ab', + url: 'https://support.microsoft.com/zh-tw/excel/functions/kurt-function', }, ], functionParameter: { @@ -837,7 +851,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/large-%E5%87%BD%E6%95%B0-3af0af19-1190-42bb-bb8b-01672ec00a64', + url: 'https://support.microsoft.com/zh-tw/excel/functions/large-function', }, ], functionParameter: { @@ -851,7 +865,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/linest-%E5%87%BD%E6%95%B0-84d7d0d9-6e50-4101-977a-fa7abf772b6d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/linest-function', }, ], functionParameter: { @@ -867,7 +881,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/logest-%E5%87%BD%E6%95%B0-f27462d8-3657-4030-866b-a272c1d18b4b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/logest-function', }, ], functionParameter: { @@ -883,7 +897,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lognorm-dist-%E5%87%BD%E6%95%B0-eb60d00b-48a9-4217-be2b-6074aee6b070', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lognorm-dist-function', }, ], functionParameter: { @@ -899,7 +913,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lognorm-inv-%E5%87%BD%E6%95%B0-fe79751a-f1f2-4af8-a0a1-e151b2d4f600', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lognorm-inv-function', }, ], functionParameter: { @@ -909,16 +923,16 @@ const locale: typeof enUS = { }, }, MARGINOFERROR: { - description: '計算特定值範圍和信賴水準的誤差範圍', - abstract: '計算特定值範圍和信賴水準的誤差範圍', + description: '這個函式會計算特定值範圍和信賴水準的誤差範圍。', + abstract: '這個函式會計算特定值範圍和信賴水準的誤差範圍。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/12487850?hl=zh-Hant&sjid=11250989209896695200-AP', + url: 'https://support.google.com/docs/answer/12487850?hl=zh-Hant', }, ], functionParameter: { - range: { name: '範圍', detail: '用來計算誤差範圍的值範圍。' }, + range: { name: '範圍', detail: 'MARGINOFERROR(A1:C3, 0.99)' }, confidence: { name: '信賴水準', detail: '想要的信賴水準介於 (0, 1) 之間。' }, }, }, @@ -928,7 +942,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/max-%E5%87%BD%E6%95%B0-e0012414-9ac8-4b34-9a47-73e662c08098', + url: 'https://support.microsoft.com/zh-tw/excel/functions/max-function', }, ], functionParameter: { @@ -948,7 +962,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/maxa-%E5%87%BD%E6%95%B0-814bda1e-3840-4bff-9365-2f59ac2ee62d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/maxa-function', }, ], functionParameter: { @@ -962,7 +976,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/maxifs-%E5%87%BD%E6%95%B0-dfd611e6-da2c-488a-919b-9b6376b28883', + url: 'https://support.microsoft.com/zh-tw/excel/functions/maxifs-function', }, ], functionParameter: { @@ -979,7 +993,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/median-%E5%87%BD%E6%95%B0-d0916313-4753-414c-8537-ce85bdd967d2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/median-function', }, ], functionParameter: { @@ -993,7 +1007,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/min-%E5%87%BD%E6%95%B0-61635d12-920f-4ce2-a70f-96f202dcc152', + url: 'https://support.microsoft.com/zh-tw/excel/functions/min-function', }, ], functionParameter: { @@ -1013,7 +1027,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mina-%E5%87%BD%E6%95%B0-245a6f46-7ca5-4dc7-ab49-805341bc31d3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mina-function', }, ], functionParameter: { @@ -1027,7 +1041,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/minifs-%E5%87%BD%E6%95%B0-6ca1ddaa-079b-4e74-80cc-72eef32e6599', + url: 'https://support.microsoft.com/zh-tw/excel/functions/minifs-function', }, ], functionParameter: { @@ -1044,7 +1058,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mode-mult-%E5%87%BD%E6%95%B0-50fd9464-b2ba-4191-b57a-39446689ae8c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mode-mult-function', }, ], functionParameter: { @@ -1058,7 +1072,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mode-sngl-%E5%87%BD%E6%95%B0-f1267c16-66c6-4386-959f-8fba5f8bb7f8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mode-sngl-function', }, ], functionParameter: { @@ -1072,7 +1086,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/negbinom-dist-%E5%87%BD%E6%95%B0-c8239f89-c2d0-45bd-b6af-172e570f8599', + url: 'https://support.microsoft.com/zh-tw/excel/functions/negbinom-dist-function', }, ], functionParameter: { @@ -1088,7 +1102,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/norm-dist-%E5%87%BD%E6%95%B0-edb1cc14-a21c-4e53-839d-8082074c9f8d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/norm-dist-function', }, ], functionParameter: { @@ -1104,7 +1118,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/norm-inv-%E5%87%BD%E6%95%B0-54b30935-fee7-493c-bedb-2278a9db7e13', + url: 'https://support.microsoft.com/zh-tw/excel/functions/norm-inv-function', }, ], functionParameter: { @@ -1119,7 +1133,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/norm-s-dist-%E5%87%BD%E6%95%B0-1e787282-3832-4520-a9ae-bd2a8d99ba88', + url: 'https://support.microsoft.com/zh-tw/excel/functions/norm-s-dist-function', }, ], functionParameter: { @@ -1133,7 +1147,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/norm-s-inv-%E5%87%BD%E6%95%B0-d6d556b4-ab7f-49cd-b526-5a20918452b1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/norm-s-inv-function', }, ], functionParameter: { @@ -1146,7 +1160,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/pearson-%E5%87%BD%E6%95%B0-0c3e30fc-e5af-49c4-808a-3ef66e034c18', + url: 'https://support.microsoft.com/zh-tw/excel/functions/pearson-function', }, ], functionParameter: { @@ -1160,7 +1174,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentile-exc-%E5%87%BD%E6%95%B0-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentile-exc-function', }, ], functionParameter: { @@ -1174,7 +1188,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentile-inc-%E5%87%BD%E6%95%B0-680f9539-45eb-410b-9a5e-c1355e5fe2ed', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentile-inc-function', }, ], functionParameter: { @@ -1188,7 +1202,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentrank-exc-%E5%87%BD%E6%95%B0-d8afee96-b7e2-4a2f-8c01-8fcdedaa6314', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentrank-exc-function', }, ], functionParameter: { @@ -1203,7 +1217,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/percentrank-inc-%E5%87%BD%E6%95%B0-149592c9-00c0-49ba-86c1-c1f45b80463a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/percentrank-inc-function', }, ], functionParameter: { @@ -1218,7 +1232,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/permut-%E5%87%BD%E6%95%B0-3bd1cb9a-2880-41ab-a197-f246a7a602d3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/permut-function', }, ], functionParameter: { @@ -1232,7 +1246,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/permutationa-%E5%87%BD%E6%95%B0-6c7d7fdc-d657-44e6-aa19-2857b25cae4e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/permutationa-function', }, ], functionParameter: { @@ -1246,7 +1260,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/phi-%E5%87%BD%E6%95%B0-23e49bc6-a8e8-402d-98d3-9ded87f6295c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/phi-function', }, ], functionParameter: { @@ -1259,7 +1273,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/poisson-dist-%E5%87%BD%E6%95%B0-8fe148ff-39a2-46cb-abf3-7772695d9636', + url: 'https://support.microsoft.com/zh-tw/excel/functions/poisson-dist-function', }, ], functionParameter: { @@ -1274,7 +1288,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/prob-%E5%87%BD%E6%95%B0-9ac30561-c81c-4259-8253-34f0a238fc49', + url: 'https://support.microsoft.com/zh-tw/excel/functions/prob-function', }, ], functionParameter: { @@ -1290,7 +1304,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/quartile-exc-%E5%87%BD%E6%95%B0-5a355b7a-840b-4a01-b0f1-f538c2864cad', + url: 'https://support.microsoft.com/zh-tw/excel/functions/quartile-exc-function', }, ], functionParameter: { @@ -1304,7 +1318,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/quartile-inc-%E5%87%BD%E6%95%B0-1bbacc80-5075-42f1-aed6-47d735c4819d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/quartile-inc-function', }, ], functionParameter: { @@ -1318,7 +1332,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rank-avg-%E5%87%BD%E6%95%B0-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rank-avg-function', }, ], functionParameter: { @@ -1333,7 +1347,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rank-eq-%E5%87%BD%E6%95%B0-284858ce-8ef6-450e-b662-26245be04a40', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rank-eq-function', }, ], functionParameter: { @@ -1348,12 +1362,12 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rsq-%E5%87%BD%E6%95%B0-d7161715-250d-4a01-b80d-a8364f2be08f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rsq-function', }, ], functionParameter: { - array1: { name: '陣列1', detail: '代表因變數資料的陣列或矩陣的範圍。' }, - array2: { name: '陣列2', detail: '代表自變數資料的陣列或矩陣的範圍。' }, + knownYs: { name: '陣列_y', detail: '代表因變數資料的陣列或矩陣的範圍。' }, + knownXs: { name: '陣列_x', detail: '代表自變數資料的陣列或矩陣的範圍。' }, }, }, SKEW: { @@ -1362,7 +1376,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/skew-%E5%87%BD%E6%95%B0-bdf49d86-b1ef-4804-a046-28eaea69c9fa', + url: 'https://support.microsoft.com/zh-tw/excel/functions/skew-function', }, ], functionParameter: { @@ -1376,7 +1390,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/skew-p-%E5%87%BD%E6%95%B0-76530a5c-99b9-48a1-8392-26632d542fcb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/skew-p-function', }, ], functionParameter: { @@ -1390,7 +1404,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/slope-%E5%87%BD%E6%95%B0-11fb8f97-3117-4813-98aa-61d7e01276b9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/slope-function', }, ], functionParameter: { @@ -1404,7 +1418,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/small-%E5%87%BD%E6%95%B0-17da8222-7c82-42b2-961b-14c45384df07', + url: 'https://support.microsoft.com/zh-tw/excel/functions/small-function', }, ], functionParameter: { @@ -1418,7 +1432,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/standardize-%E5%87%BD%E6%95%B0-81d66554-2d54-40ec-ba83-6437108ee775', + url: 'https://support.microsoft.com/zh-tw/excel/functions/standardize-function', }, ], functionParameter: { @@ -1433,7 +1447,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdev-p-%E5%87%BD%E6%95%B0-6e917c05-31a0-496f-ade7-4f4e7462f285', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdev-p-function', }, ], functionParameter: { @@ -1447,7 +1461,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdev-s-%E5%87%BD%E6%95%B0-7d69cf97-0c1f-4acf-be27-f3e83904cc23', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdev-s-function', }, ], functionParameter: { @@ -1461,7 +1475,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdeva-%E5%87%BD%E6%95%B0-5ff38888-7ea5-48de-9a6d-11ed73b29e9d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdeva-function', }, ], functionParameter: { @@ -1475,7 +1489,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/stdevpa-%E5%87%BD%E6%95%B0-5578d4d6-455a-4308-9991-d405afe2c28c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/stdevpa-function', }, ], functionParameter: { @@ -1489,7 +1503,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/steyx-%E5%87%BD%E6%95%B0-6ce74b2c-449d-4a6e-b9ac-f9cef5ba48ab', + url: 'https://support.microsoft.com/zh-tw/excel/functions/steyx-function', }, ], functionParameter: { @@ -1503,7 +1517,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-dist-%E5%87%BD%E6%95%B0-4329459f-ae91-48c2-bba8-1ead1c6c21b2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-dist-function', }, ], functionParameter: { @@ -1518,7 +1532,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-dist-2t-%E5%87%BD%E6%95%B0-198e9340-e360-4230-bd21-f52f22ff5c28', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-dist-2t-function', }, ], functionParameter: { @@ -1532,7 +1546,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-dist-rt-%E5%87%BD%E6%95%B0-20a30020-86f9-4b35-af1f-7ef6ae683eda', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-dist-rt-function', }, ], functionParameter: { @@ -1546,7 +1560,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-inv-%E5%87%BD%E6%95%B0-2908272b-4e61-4942-9df9-a25fec9b0e2e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-inv-function', }, ], functionParameter: { @@ -1560,7 +1574,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-inv-2t-%E5%87%BD%E6%95%B0-ce72ea19-ec6c-4be7-bed2-b9baf2264f17', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-inv-2t-function', }, ], functionParameter: { @@ -1574,7 +1588,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-test-%E5%87%BD%E6%95%B0-d4e08ec3-c545-485f-962e-276f7cbed055', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-test-function', }, ], functionParameter: { @@ -1590,7 +1604,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/trend-%E5%87%BD%E6%95%B0-e2f135f0-8827-4096-9873-9a7cf7b51ef1', + url: 'https://support.microsoft.com/zh-tw/excel/functions/trend-function', }, ], functionParameter: { @@ -1606,7 +1620,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/trimmean-%E5%87%BD%E6%95%B0-d90c9878-a119-4746-88fa-63d988f511d3', + url: 'https://support.microsoft.com/zh-tw/excel/functions/trimmean-function', }, ], functionParameter: { @@ -1620,7 +1634,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/var-p-%E5%87%BD%E6%95%B0-73d1285c-108c-4843-ba5d-a51f90656f3a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/var-p-function', }, ], functionParameter: { @@ -1634,7 +1648,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/var-s-%E5%87%BD%E6%95%B0-913633de-136b-449d-813e-65a00b2b990b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/var-s-function', }, ], functionParameter: { @@ -1648,7 +1662,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/vara-%E5%87%BD%E6%95%B0-3de77469-fa3a-47b4-85fd-81758a1e1d07', + url: 'https://support.microsoft.com/zh-tw/excel/functions/vara-function', }, ], functionParameter: { @@ -1662,7 +1676,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/varpa-%E5%87%BD%E6%95%B0-59a62635-4e89-4fad-88ac-ce4dc0513b96', + url: 'https://support.microsoft.com/zh-tw/excel/functions/varpa-function', }, ], functionParameter: { @@ -1676,7 +1690,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/weibull-dist-%E5%87%BD%E6%95%B0-4e783c39-9325-49be-bbc9-a83ef82b45db', + url: 'https://support.microsoft.com/zh-tw/excel/functions/weibull-dist-function', }, ], functionParameter: { @@ -1692,7 +1706,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/z-test-%E5%87%BD%E6%95%B0-d633d5a3-2031-4614-a016-92180ad82bee', + url: 'https://support.microsoft.com/zh-tw/excel/functions/z-test-function', }, ], functionParameter: { diff --git a/packages/sheets-formula/src/locale/function-list/text/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/text/ar-SA.ts new file mode 100644 index 0000000000..76a71c0a9a --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/ar-SA.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'بالنسبة للغات التي تتضمن مجموعة أحرف مزدوجة البايت (DBCS)، تقوم هذه الدالة بتغيير الأحرف ذات العرض الكامل (مزدوجة البايت) إلى أحرف ذات عرض نصفي (أحادية البايت).', + abstract: 'بالنسبة للغات التي تتضمن مجموعة أحرف مزدوجة البايت (DBCS)، تقوم هذه الدالة بتغيير الأحرف ذات العرض الكامل (مزدوجة البايت) إلى أحرف ذات عرض نصفي (أحادية البايت).', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. وهي النص أو مرجع الخلية الذي يحتوي على النص المطلوب تغييره. لن يتم تغيير النص إذا لم يكن يحتوي على أي أحرف ذات عرض كامل.' }, + }, + }, + ARRAYTOTEXT: { + description: 'ترجع الدالة ARRAYTOTEXT مصفوفة من القيم النصية من أي نطاق محدد. يمرر القيم النصية دون تغيير، ويحول القيم غير النصية إلى نص.', + abstract: 'ترجع الدالة ARRAYTOTEXT مصفوفة من القيم النصية من أي نطاق محدد. يمرر القيم النصية دون تغيير، ويحول القيم غير النصية إلى نص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'المصفوفة المراد إرجاعها كنص. مطلوبة.' }, + format: { name: 'format', detail: 'تنسيق البيانات التي تم إرجاعها. اختيارية. يمكن أن تكون واحدة من قيمتين: 0 افتراضي. تنسيق مختصر يسهل قراءته. سيكون النص الذي يتم إرجاعه هو نفسه النص المعروض في خلية تم تطبيق التنسيق العام عليها. 1 تنسيق صارم يتضمن أحرف الإلغاء ومحددات الصفوف. يولد سلسلة يمكن تحليلها عند إدخالها في شريط الصيغة. لتضمين السلاسل التي تم إرجاعها في علامات الاقتباس باستثناء القيم المنطقية والأرقام والأخطاء.' }, + }, + }, + BAHTTEXT: { + description: 'تحوّل رقماً إلى نص باللغة التايلاندية وتضيف اللاحقة "باهت".', + abstract: 'تحوّل رقماً إلى نص باللغة التايلاندية وتضيف اللاحقة "باهت".', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. رقم تريد تحويله إلى نص، أو مرجع لخلية تحتوي على رقم، أو صيغة يتم تقييمها إلى رقم.' }, + }, + }, + CHAR: { + description: 'تُرجع الحرف المحدد بواسطة رقم. استخدم CHAR لترجمة أرقام صفحات الترميز اللغوي التي قد تحصل عليها من ملفات موجودة على أنواع أخرى من أجهزة الكمبيوتر إلى أحرف.', + abstract: 'تُرجع الحرف المحدد بواسطة رقم. استخدم CHAR لترجمة أرقام صفحات الترميز اللغوي التي قد تحصل عليها من ملفات موجودة على أنواع أخرى من أجهزة الكمبيوتر إلى أحرف.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. وهي رقم بين 1 و255 يحدد الحرف الذي تريده. ويتم الحصول على الحرف من مجموعة الأحرف التي يستخدمها الكمبيوتر. ملاحظة يدعم Excel على الويب CHAR(9) وCHAR(10) وCHAR(13) وCHAR (32) وما فوق فقط.' }, + }, + }, + CLEAN: { + description: 'تزيل كافة الأحرف غير القابلة للطباعة من النص. استخدم CLEAN مع نص مستورد من تطبيقات أخرى ويحتوي على أحرف قد لا تتم طباعتها مع نظام التشغيل الموجود لديك. على سبيل المثال، يمكنك استخدام CLEAN لإزالة رموز الكمبيوتر غير المهمة والتي تتكرر عادةً في بداية ملفات البيانات ونهايتها وتتعذّر طباعته.', + abstract: 'تزيل كافة الأحرف غير القابلة للطباعة من النص. استخدم CLEAN مع نص مستورد من تطبيقات أخرى ويحتوي على أحرف قد لا تتم طباعتها مع نظام التشغيل الموجود لديك. على سبيل المثال، يمكنك استخدام CLEAN لإزالة رموز الكمبيوتر غير المهمة والتي تتكرر عادةً في بداية ملفات البيانات ونهايتها وتتعذّر طباعته.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. وهي أي معلومات في ورقة العمل تريد إزالة الأحرف غير القابلة للطباعة منها.' }, + }, + }, + CODE: { + description: 'تُرجع رمزاً رقمياً للحرف الأول في سلسلة نصية. يتوافق الرمز الذي يتم إرجاعه مع مجموعة الأحرف التي يستخدمها الكمبيوتر.', + abstract: 'تُرجع رمزاً رقمياً للحرف الأول في سلسلة نصية. يتوافق الرمز الذي يتم إرجاعه مع مجموعة الأحرف التي يستخدمها الكمبيوتر.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. وهي النص الذي تريد رمز الحرف الأول له.' }, + }, + }, + CONCAT: { + description: 'تجمع الدالة CONCAT بين النص من نطاقات و/أو سلاسل متعددة، ولكنها لا توفر محددا أو وسيطات IgnoreEmpty.', + abstract: 'تجمع الدالة CONCAT بين النص من نطاقات و/أو سلاسل متعددة، ولكنها لا توفر محددا أو وسيطات IgnoreEmpty.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'العنصر النصي المطلوب ضمه. سلسلة أو صفيف من السلاسل مثل نطاق من الخلايا.' }, + text2: { name: 'text2', detail: 'العناصر النصية الإضافية المطلوب ضمها. الحد الأقصى للوسيطات النصية هو 253 للعناصر النصية. يمكن أن تكون كل منها سلسلة أو صفيف من السلاسل مثل نطاق من الخلايا.' }, + }, + }, + CONCATENATE: { + description: 'استخدم CONCATENATE ، وهي إحدى دالات النص ، لجمع سلستين نصيتين أو أكثر في سلسلة واحدة.', + abstract: 'استخدم CONCATENATE ، وهي إحدى دالات النص ، لجمع سلستين نصيتين أو أكثر في سلسلة واحدة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'العنصر الأول المراد ضمه. يمكن أن يكون قيمة نصية أو رقماً أو مرجع خلية.' }, + text2: { name: 'text2', detail: 'عناصر نصية إضافية للضم. يمكنك إدخال ما يصل إلى 255 عنصراً، بإجمالي لا يتجاوز 8192 حرفاً.' }, + }, + }, + DBCS: { + description: 'تقوم الدالة الموضحة في موضوع "التعليمات" هذا بتحويل الأحرف بنصف العرض (وحيدة البايت) بإحدى سلاسل الأحرف إلى أحرف كاملة العرض (مزدوجة البايت). يعتمد اسم الدالة (والأحرف التي تقوم بتحويلها) على إعدادات اللغة لديك.', + abstract: 'تقوم الدالة الموضحة في موضوع "التعليمات" هذا بتحويل الأحرف بنصف العرض (وحيدة البايت) بإحدى سلاسل الأحرف إلى أحرف كاملة العرض (مزدوجة البايت). يعتمد اسم الدالة (والأحرف التي تقوم بتحويلها) على إعدادات اللغة لديك.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص أو مرجع الخلية الذي يحتوي على النص الذي تريد تغييره. إذا لم يتضمن النص أي أحرف إنجليزية أو أحرف كاتاكانا بنصف العرض، فلا يتغير النص.' }, + }, + }, + DOLLAR: { + description: 'تحوّل الدالة DOLLAR ، إحدى دالات TEXT ، الرقم إلى نص باستخدام تنسيق العملة، مع تقريب الأرقام العشرية إلى عدد الأماكن التي تحددها. تستخدم الدالة DOLLAR تنسيق الأرقام ‎$#,##0.00_);($#,##0.00)‎، رغم أن رمز العملة المنطبق يعتمد على إعدادات اللغة المحلية لديك.', + abstract: 'تحوّل الدالة DOLLAR ، إحدى دالات TEXT ، الرقم إلى نص باستخدام تنسيق العملة، مع تقريب الأرقام العشرية إلى عدد الأماكن التي تحددها. تستخدم الدالة DOLLAR تنسيق الأرقام ‎$#,##0.00_);($#,##0.00)‎، رغم أن رمز العملة المنطبق يعتمد على إعدادات اللغة المحلية لديك.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. رقم أو مرجع لخلية تحتوي على رقم أو صيغة يتم تقييمها إلى رقم.' }, + decimals: { name: 'decimals', detail: 'الاختياري. عدد الأرقام إلى يمين الفاصلة العشرية. إذا كانت هذه القيمة سالبة، فسيتم تقريب الرقم إلى يسار الفاصلة العشرية. إذا حذفت الوسيطة decimals، فسيُفترض أنها 2.' }, + }, + }, + EXACT: { + description: 'تقارن هذه الدالة بين سلسلتين نصيتين وتُرجع القيمة TRUE عند وجود تطابق تام بينهما، وإلا فتُرجع القيمة FALSE. إن الدالة EXACT حساسة لحالة الأحرف ولكنها تتجاهل الاختلافات في التنسيق. استخدم الدالة EXACT لاختبار النص الذي يتم إدخاله في المستند.', + abstract: 'تقارن هذه الدالة بين سلسلتين نصيتين وتُرجع القيمة TRUE عند وجود تطابق تام بينهما، وإلا فتُرجع القيمة FALSE. إن الدالة EXACT حساسة لحالة الأحرف ولكنها تتجاهل الاختلافات في التنسيق. استخدم الدالة EXACT لاختبار النص الذي يتم إدخاله في المستند.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'مطلوب. السلسلة النصية الأولى.' }, + text2: { name: 'text2', detail: 'مطلوب. السلسلة النصية الثانية.' }, + }, + }, + FIND: { + description: 'تعثر على قيمة نصية داخل قيمة نصية أخرى مع مراعاة حالة الأحرف.', + abstract: 'تعثر على قيمة نصية داخل قيمة نصية أخرى مع مراعاة حالة الأحرف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'النص الذي تريد العثور عليه.' }, + withinText: { name: 'within_text', detail: 'النص الذي يحتوي على النص الذي تريد العثور عليه.' }, + startNum: { name: 'start_num', detail: 'يحدد الحرف الذي يبدأ عنده البحث. إذا حذفت start_num، يُفترض أنها 1.' }, + }, + }, + FINDB: { + description: 'تعثر على قيمة نصية داخل قيمة نصية أخرى مع مراعاة حالة الأحرف.', + abstract: 'تعثر على قيمة نصية داخل قيمة نصية أخرى مع مراعاة حالة الأحرف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'النص الذي تريد العثور عليه.' }, + withinText: { name: 'within_text', detail: 'النص الذي يحتوي على النص الذي تريد العثور عليه.' }, + startNum: { name: 'start_num', detail: 'يحدد الحرف الذي يبدأ عنده البحث. إذا حذفت start_num، يُفترض أنها 1.' }, + }, + }, + FIXED: { + description: 'تقرّب هذه الدالة رقماً إلى عدد محدد من الأرقام العشرية، وتنسّق الرقم بالتنسيق العشري باستخدام نقطة وفواصل، وتُرجع النتيجة كنص.', + abstract: 'تقرّب هذه الدالة رقماً إلى عدد محدد من الأرقام العشرية، وتنسّق الرقم بالتنسيق العشري باستخدام نقطة وفواصل، وتُرجع النتيجة كنص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم الذي تريد تقريبه وتحويله إلى نص.' }, + decimals: { name: 'decimals', detail: 'الاختياري. عدد الأرقام إلى يمين الفاصلة العشرية.' }, + noCommas: { name: 'no_commas', detail: 'الاختياري. قيمة منطقية تمنع FIXED من تضمين فواصل في النص الذي يتم إرجاعه إذا تم تقييمها إلى TRUE.' }, + }, + }, + LEFT: { + description: 'ترجع الأحرف الموجودة في أقصى يسار قيمة نصية.', + abstract: 'ترجع الأحرف الموجودة في أقصى يسار قيمة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + numChars: { name: 'num_chars', detail: 'يحدد عدد الأحرف التي تريد أن تستخرجها LEFT.' }, + }, + }, + LEFTB: { + description: 'ترجع الأحرف الموجودة في أقصى يسار قيمة نصية.', + abstract: 'ترجع الأحرف الموجودة في أقصى يسار قيمة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + numBytes: { name: 'num_bytes', detail: 'يحدد عدد البايتات التي تريد أن تستخرجها LEFTB.' }, + }, + }, + LEN: { + description: 'ترجع عدد الأحرف في سلسلة نصية.', + abstract: 'ترجع عدد الأحرف في سلسلة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تريد معرفة طوله. تُحتسب المسافات كأحرف.' }, + }, + }, + LENB: { + description: 'ترجع عدد البايتات المستخدمة لتمثيل الأحرف في سلسلة نصية.', + abstract: 'ترجع عدد البايتات المستخدمة لتمثيل الأحرف في سلسلة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تريد معرفة طوله. تُحتسب المسافات كأحرف.' }, + }, + }, + LOWER: { + description: 'تحويل كافة الأحرف الكبيرة في سلسلة نصية إلى أحرف صغيرة.', + abstract: 'تحويل كافة الأحرف الكبيرة في سلسلة نصية إلى أحرف صغيرة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص الذي تريد تحويله إلى أحرف صغيرة. لا تغيّر الدالة LOWER الأحرف غير الأبجدية في النص.' }, + }, + }, + MID: { + description: 'ترجع عدداً محدداً من الأحرف من سلسلة نصية بدءاً من الموضع الذي تحدده.', + abstract: 'ترجع عدداً محدداً من الأحرف من سلسلة نصية بدءاً من الموضع الذي تحدده.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + startNum: { name: 'start_num', detail: 'موضع أول حرف تريد استخراجه من text.' }, + numChars: { name: 'num_chars', detail: 'يحدد عدد الأحرف التي تريد أن تستخرجها MID.' }, + }, + }, + MIDB: { + description: 'ترجع عدداً محدداً من الأحرف من سلسلة نصية بدءاً من الموضع الذي تحدده.', + abstract: 'ترجع عدداً محدداً من الأحرف من سلسلة نصية بدءاً من الموضع الذي تحدده.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + startNum: { name: 'start_num', detail: 'موضع أول حرف تريد استخراجه من text.' }, + numBytes: { name: 'num_bytes', detail: 'يحدد عدد البايتات التي تريد أن تستخرجها MIDB.' }, + }, + }, + NUMBERSTRING: { + description: 'تحوّل الأرقام إلى سلاسل نصية صينية.', + abstract: 'تحوّل الأرقام إلى سلاسل نصية صينية.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'القيمة المحولة إلى سلسلة نصية صينية.' }, + type: { name: 'type', detail: 'نوع النتيجة المعادة. \n1. أحرف صينية صغيرة \n2. أحرف صينية كبيرة \n3. قراءة وكتابة الأحرف الصينية' }, + }, + }, + NUMBERVALUE: { + description: 'تقوم هذه الدالة بتحويل نص إلى رقم، بشكل مستقل عن الإعدادات المحلية.', + abstract: 'تقوم هذه الدالة بتحويل نص إلى رقم، بشكل مستقل عن الإعدادات المحلية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص المراد تحويله إلى رقم.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'الاختياري. الحرف المستخدم لفصل العدد الصحيح والجزء الكسري من النتيجة.' }, + groupSeparator: { name: 'group_separator', detail: 'الاختياري. الحرف المستخدم لفصل تجميعات الأرقام، مثل الآلاف من المئات والملايين عن الآلاف.' }, + }, + }, + PHONETIC: { + description: 'تستخرج هذه الدالة الأحرف الصوتية (furigana) من سلسلة نصية.', + abstract: 'تستخرج هذه الدالة الأحرف الصوتية (furigana) من سلسلة نصية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'مرجع', detail: 'مطلوب. سلسلة نصية أو مرجع إلى خلية واحدة أو نطاق خلايا يحتوي على سلسلة furigana النصية.' }, + }, + }, + PROPER: { + description: 'تحوّل هذه الدالة الحرف الأول في سلسلة نصية وأي أحرف أخرى في النص الذي يلي أي حرف آخر غير حرف أبجدي إلى حرف كبير. وتحوّل كافة الأحرف الأخرى إلى أحرف صغيرة.', + abstract: 'تحوّل هذه الدالة الحرف الأول في سلسلة نصية وأي أحرف أخرى في النص الذي يلي أي حرف آخر غير حرف أبجدي إلى حرف كبير. وتحوّل كافة الأحرف الأخرى إلى أحرف صغيرة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. نص مضمّن بين علامتي اقتباس، أو صيغة تُرجع نصاً، أو مرجع إلى خلية تحتوي على النص الذي تريد تحويل جزء منه إلى أحرف كبيرة.' }, + }, + }, + REGEXEXTRACT: { + description: 'تستخرج أول سلسلة فرعية مطابقة وفقاً لتعبير عادي.', + abstract: 'تستخرج أول سلسلة فرعية مطابقة وفقاً لتعبير عادي.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=ar', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص المُدخل.' }, + regularExpression: { name: 'regular_expression', detail: 'يُرجع الجزء الأول من النص الذي يطابق هذا التعبير.' }, + }, + }, + REGEXMATCH: { + description: 'تحدد ما إذا كان جزء من النص يطابق تعبيراً عادياً.', + abstract: 'تحدد ما إذا كان جزء من النص يطابق تعبيراً عادياً.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=ar', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص المراد اختباره مقابل التعبير العادي.' }, + regularExpression: { name: 'regular_expression', detail: 'التعبير العادي لاختبار النص مقابله.' }, + }, + }, + REGEXREPLACE: { + description: 'تستبدل جزءاً من سلسلة نصية بسلسلة نصية أخرى باستخدام تعبيرات عادية.', + abstract: 'تستبدل جزءاً من سلسلة نصية بسلسلة نصية أخرى باستخدام تعبيرات عادية.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=ar', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي سيُستبدل جزء منه.' }, + regularExpression: { name: 'regular_expression', detail: 'التعبير العادي. ستُستبدل كل الحالات المطابقة في text.' }, + replacement: { name: 'replacement', detail: 'النص الذي سيُدرج في النص الأصلي.' }, + }, + }, + REPLACE: { + description: 'تستبدل الأحرف داخل النص.', + abstract: 'تستبدل الأحرف داخل النص.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'النص الذي تريد استبدال بعض أحرفه.' }, + startNum: { name: 'start_num', detail: 'موضع الحرف في old_text الذي تريد استبداله بـ new_text.' }, + numChars: { name: 'num_chars', detail: 'عدد الأحرف في old_text التي تريد أن تستبدلها REPLACE بـ new_text.' }, + newText: { name: 'new_text', detail: 'النص الذي سيستبدل الأحرف في old_text.' }, + }, + }, + REPLACEB: { + description: 'تستبدل الأحرف داخل النص.', + abstract: 'تستبدل الأحرف داخل النص.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'النص الذي تريد استبدال بعض أحرفه.' }, + startNum: { name: 'start_num', detail: 'موضع الحرف في old_text الذي تريد استبداله بـ new_text.' }, + numBytes: { name: 'num_bytes', detail: 'عدد البايتات في old_text التي تريد أن تستبدلها REPLACEB بـ new_text.' }, + newText: { name: 'new_text', detail: 'النص الذي سيستبدل الأحرف في old_text.' }, + }, + }, + REPT: { + description: 'تكرر هذه الدالة نصاً لعدد معيّن من المرات. استخدم الدالة REPT لتعبئة خلية بعدد من مثيلات سلسلة نصية.', + abstract: 'تكرر هذه الدالة نصاً لعدد معيّن من المرات. استخدم الدالة REPT لتعبئة خلية بعدد من مثيلات سلسلة نصية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص الذي تريد تكراره.' }, + numberTimes: { name: 'number_times', detail: 'مطلوب. عدد موجب يحدد عدد المرات التي تريد فيها تكرار النص.' }, + }, + }, + RIGHT: { + description: 'ترجع الأحرف الموجودة في أقصى يمين قيمة نصية.', + abstract: 'ترجع الأحرف الموجودة في أقصى يمين قيمة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + numChars: { name: 'num_chars', detail: 'يحدد عدد الأحرف التي تريد أن تستخرجها RIGHT.' }, + }, + }, + RIGHTB: { + description: 'ترجع الأحرف الموجودة في أقصى يمين قيمة نصية.', + abstract: 'ترجع الأحرف الموجودة في أقصى يمين قيمة نصية.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'السلسلة النصية التي تحتوي على الأحرف التي تريد استخراجها.' }, + numBytes: { name: 'num_bytes', detail: 'يحدد عدد البايتات التي تريد أن تستخرجها RIGHTB.' }, + }, + }, + SEARCH: { + description: 'تعثر على قيمة نصية داخل قيمة نصية أخرى دون مراعاة حالة الأحرف.', + abstract: 'تعثر على قيمة نصية داخل قيمة نصية أخرى دون مراعاة حالة الأحرف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'النص الذي تريد العثور عليه.' }, + withinText: { name: 'within_text', detail: 'النص الذي يحتوي على النص الذي تريد العثور عليه.' }, + startNum: { name: 'start_num', detail: 'يحدد الحرف الذي يبدأ عنده البحث. إذا حذفت start_num، يُفترض أنها 1.' }, + }, + }, + SEARCHB: { + description: 'تعثر على قيمة نصية داخل قيمة نصية أخرى دون مراعاة حالة الأحرف.', + abstract: 'تعثر على قيمة نصية داخل قيمة نصية أخرى دون مراعاة حالة الأحرف.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'النص الذي تريد العثور عليه.' }, + withinText: { name: 'within_text', detail: 'النص الذي يحتوي على النص الذي تريد العثور عليه.' }, + startNum: { name: 'start_num', detail: 'يحدد الحرف الذي يبدأ عنده البحث. إذا حذفت start_num، يُفترض أنها 1.' }, + }, + }, + SUBSTITUTE: { + description: 'تستبدل هذه الدالة old_text بـ new_text في سلسلة نصية. استخدم الدالة SUBSTITUTE عندما تريد استبدال نص محدد في سلسلة نصية؛ استخدم الدالة REPLACE عندما تريد استبدال أي نص موجود في موقع محدد في سلسلة نصية.', + abstract: 'تستبدل هذه الدالة old_text بـ new_text في سلسلة نصية. استخدم الدالة SUBSTITUTE عندما تريد استبدال نص محدد في سلسلة نصية؛ استخدم الدالة REPLACE عندما تريد استبدال أي نص موجود في موقع محدد في سلسلة نصية.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص أو مرجع الخلية التي تحتوي على النص الذي ترغب في استبدال أحرف به.' }, + oldText: { name: 'old_text', detail: 'مطلوب. النص الذي تريد استبداله.' }, + newText: { name: 'new_text', detail: 'مطلوب. النص الذي تريد استبدال old_text به.' }, + instanceNum: { name: 'instance_num', detail: 'الاختياري. تحديد مثيل old_text الذي تريد استبداله بـ new_text. إذا حددت instance_num، يتم استبدال مثيل old_text هذا فقط. عدا ذلك، يتم تغيير كل مرات حدوث old_text في النص إلى new_text.' }, + }, + }, + T: { + description: 'تُرجع هذه الدالة النص الذي تشير إليه القيمة.', + abstract: 'تُرجع هذه الدالة النص الذي تشير إليه القيمة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'مطلوب. القيمة التي ترغب في اختبارها.' }, + }, + }, + TEXT: { + description: 'تتيح لك الدالة TEXT تغيير طريقة ظهور الأرقام من خلال تطبيق التنسيق عليها باستخدام رموز التنسيقات . وهذا مفيد عندما تريد عرض الأرقام بتنسيق أكثر قابلية للقراءة، أو تريد دمج الأرقام مع النصوص أو الرموز.', + abstract: 'تتيح لك الدالة TEXT تغيير طريقة ظهور الأرقام من خلال تطبيق التنسيق عليها باستخدام رموز التنسيقات . وهذا مفيد عندما تريد عرض الأرقام بتنسيق أكثر قابلية للقراءة، أو تريد دمج الأرقام مع النصوص أو الرموز.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'قيمة رقمية تريد تحويلها إلى نص.' }, + formatText: { name: 'format_text', detail: 'سلسلة نصية تحدد التنسيق الذي تريد تطبيقه على القيمة المقدمة.' }, + }, + }, + TEXTAFTER: { + description: 'إرجاع النص الذي يحدث بعد حرف معين أو سلسلة معينة. إنه عكس الدالة TEXTBEFORE .', + abstract: 'إرجاع النص الذي يحدث بعد حرف معين أو سلسلة معينة. إنه عكس الدالة TEXTBEFORE .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تبحث داخله. لا يُسمح بأحرف البدل.' }, + delimiter: { name: 'delimiter', detail: 'النص الذي يحدد النقطة التي تريد استخراج النص بعدها.' }, + instanceNum: { name: 'instance_num', detail: 'موضع ظهور المحدد الذي تريد استخراج النص بعده.' }, + matchMode: { name: 'match_mode', detail: 'يحدد ما إذا كان البحث في النص حساساً لحالة الأحرف. الإعداد الافتراضي حساس لحالة الأحرف.' }, + matchEnd: { name: 'match_end', detail: 'يعامل نهاية النص كمحدد. افتراضياً يجب أن يكون النص مطابقاً تماماً.' }, + ifNotFound: { name: 'if_not_found', detail: 'القيمة المعادة إذا لم يُعثر على تطابق. افتراضياً تُرجع #N/A.' }, + }, + }, + TEXTBEFORE: { + description: 'إرجاع النص الذي يحدث قبل حرف أو سلسلة معينة. إنها نقيض الدالة TEXTAFTER .', + abstract: 'إرجاع النص الذي يحدث قبل حرف أو سلسلة معينة. إنها نقيض الدالة TEXTAFTER .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تبحث داخله. لا يُسمح بأحرف البدل.' }, + delimiter: { name: 'delimiter', detail: 'النص الذي يحدد النقطة التي تريد استخراج النص قبلها.' }, + instanceNum: { name: 'instance_num', detail: 'موضع ظهور المحدد الذي تريد استخراج النص قبله.' }, + matchMode: { name: 'match_mode', detail: 'يحدد ما إذا كان البحث في النص حساساً لحالة الأحرف. الإعداد الافتراضي حساس لحالة الأحرف.' }, + matchEnd: { name: 'match_end', detail: 'يعامل نهاية النص كمحدد. افتراضياً يجب أن يكون النص مطابقاً تماماً.' }, + ifNotFound: { name: 'if_not_found', detail: 'القيمة المعادة إذا لم يُعثر على تطابق. افتراضياً تُرجع #N/A.' }, + }, + }, + TEXTJOIN: { + description: 'تعمل دالة TEXTJOIN على دمج النص من نطاقات و/أو سلاسل متعددة، وتضمين المحدِد الذي تحدده بين كل قيمة نصية سيتم دمجها. إذا كان المحدِد عبارة عن سلسلة نصية فارغة، فستعمل هذه الدالة على تسلسل النطاقات بطريقة فعّالة.', + abstract: 'تعمل دالة TEXTJOIN على دمج النص من نطاقات و/أو سلاسل متعددة، وتضمين المحدِد الذي تحدده بين كل قيمة نصية سيتم دمجها. إذا كان المحدِد عبارة عن سلسلة نصية فارغة، فستعمل هذه الدالة على تسلسل النطاقات بطريقة فعّالة.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/ar-sa/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'عبارة عن سلسلة نصية، إما أن تكون فارغة أو تكون حرفاً واحداً أو أكثر محاطاً بعلامات الاقتباس المزدوجة أو مرجعاً إلى سلسلة نصية صالحة. إذا تم إدخال رقم، فسيُعامل كنص.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'إذا كانت TRUE، فستتجاهل الخلايا الفارغة.' }, + text1: { name: 'text1', detail: 'هي العنصر النصي المطلوب دمجه. عبارة عن سلسلة نصية أو صفيف من السلاسل مثل نطاق من الخلايا.' }, + text2: { name: 'text2', detail: 'هي العناصر النصية الإضافية المطلوب دمجها. قد يكون هناك حد أقصى يبلغ 252 من الوسيطات النصية للعناصر النصية بما في ذلك text1 . يمكن أن يكون كل عنصر منها عبارة عن سلسلة أو صفيف من السلاسل مثل نطاق من الخلايا.' }, + }, + }, + TEXTSPLIT: { + description: 'تعمل الدالة TEXTSPLIT بالطريقة نفسها التي يعمل بها معالج Text-to-Columns ، ولكن في نموذج الصيغة. يسمح لك بالتقسيم عبر الأعمدة أو لأسفل حسب الصفوف. وهو عكس الدالة TEXTJOIN .', + abstract: 'تعمل الدالة TEXTSPLIT بالطريقة نفسها التي يعمل بها معالج Text-to-Columns ، ولكن في نموذج الصيغة. يسمح لك بالتقسيم عبر الأعمدة أو لأسفل حسب الصفوف. وهو عكس الدالة TEXTJOIN .', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تريد تقسيمه. مطلوبة.' }, + colDelimiter: { name: 'col_delimiter', detail: 'النص الذي يضع علامة على النقطة التي يتم فيها سكب النص عبر الأعمدة.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'النص الذي يضع علامة على النقطة التي يتم فيها تصغير النص إلى أسفل الصفوف. اختيارية.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'حدد TRUE لتجاهل المحددات المتتالية. يتم تعيين القيمة الافتراضية إلى "FALSE" مما يؤدي إلى إنشاء خلية فارغة. اختيارية.' }, + matchMode: { name: 'match_mode', detail: 'حدد 1 لإجراء تطابق غير حساس لحالة الأحرف. يتم تعيين القيمة الافتراضية إلى "0" مما يؤدي إلى إجراء تطابق حساس لحالة الأحرف. اختيارية.' }, + padWith: { name: 'pad_with', detail: 'القيمة التي سيتم بها فرز النتيجة. الإعداد الافتراضي هو #N/A.' }, + }, + }, + TRIM: { + description: 'تُزيل هذه الدالة كافة المسافات من النص باستثناء المسافات الفردية بين الكلمات. استخدم الدالة TRIM على نص تلقيته من تطبيق آخر قد يكون تباعد الكلمات فيه غير منتظم.', + abstract: 'تُزيل هذه الدالة كافة المسافات من النص باستثناء المسافات الفردية بين الكلمات. استخدم الدالة TRIM على نص تلقيته من تطبيق آخر قد يكون تباعد الكلمات فيه غير منتظم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'النص الذي تريد إزالة المسافات منه. يجب أن يكون النص مضمنا في علامات الاقتباس.' }, + }, + }, + UNICHAR: { + description: 'إرجاع حرف Unicode المشار إليه بالقيمة الرقمية المُعطاة.', + abstract: 'إرجاع حرف Unicode المشار إليه بالقيمة الرقمية المُعطاة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'مطلوبة. الرقم هو رقم Unicode الذي يمثل الحرف.' }, + }, + }, + UNICODE: { + description: 'إرجاع الرقم (نقطة الرمز) المقابل للحرف الأول من النص.', + abstract: 'إرجاع الرقم (نقطة الرمز) المقابل للحرف الأول من النص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص هو الحرف الذي تريد قيمة Unicode له.' }, + }, + }, + UPPER: { + description: 'تحوّل هذه الدالة النص إلى أحرف كبيرة.', + abstract: 'تحوّل هذه الدالة النص إلى أحرف كبيرة.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص الذي تريد تحويله إلى أحرف كبيرة. يمكن أن يكون النص مرجعاً أو سلسلة نصية.' }, + }, + }, + VALUE: { + description: 'تحوّل هذه الدالة سلسلة نصية تمثل رقماً إلى رقم.', + abstract: 'تحوّل هذه الدالة سلسلة نصية تمثل رقماً إلى رقم.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'مطلوبة. النص المضمّن بين علامات اقتباس أو مرجع إلى خلية تحتوي على النص الذي ترغب في تحويله.' }, + }, + }, + VALUETOTEXT: { + description: 'ترجع الدالة "VALUETOTEXT" نصاً من أي قيمة محددة. يمرر القيم النصية دون تغيير، ويحول القيم غير النصية إلى نص.', + abstract: 'ترجع الدالة "VALUETOTEXT" نصاً من أي قيمة محددة. يمرر القيم النصية دون تغيير، ويحول القيم غير النصية إلى نص.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'القيمة المراد إرجاعها كنص. مطلوبة.' }, + format: { name: 'format', detail: 'تنسيق البيانات التي تم إرجاعها. اختيارية. يمكن أن تكون واحدة من قيمتين: 0 افتراضي. تنسيق مختصر يسهل قراءته. سيكون النص الذي يتم إرجاعه هو نفسه النص المعروض في خلية تم تطبيق التنسيق العام عليها. 1 تنسيق صارم يتضمن أحرف الإلغاء ومحددات الصفوف. يولد سلسلة يمكن تحليلها عند إدخالها في شريط الصيغة. لتضمين السلاسل التي تم إرجاعها في علامات الاقتباس باستثناء القيم المنطقية والأرقام والأخطاء.' }, + }, + }, + CALL: { + description: 'تستدعي إجراءاً في مكتبة الارتباطات الديناميكية أو في مورد التعليمات البرمجية. ثمة نموذجان لبناء جملة هذه الدالة. استخدم بناء الجملة 1 مع مورد تعليمات برمجية مسجل مسبقاً فقط، والذي يستخدم وسيطات من الدالة REGISTER. واستخدم بناء الجملة 2أ أو 2ب لتسجيل مورد تعليمات برمجية واستدعائه بشكلٍ متزامن.', + abstract: 'تستدعي إجراءاً في مكتبة الارتباطات الديناميكية أو في مورد التعليمات البرمجية. ثمة نموذجان لبناء جملة هذه الدالة. استخدم بناء الجملة 1 مع مورد تعليمات برمجية مسجل مسبقاً فقط، والذي يستخدم وسيطات من الدالة REGISTER. واستخدم بناء الجملة 2أ أو 2ب لتسجيل مورد تعليمات برمجية واستدعائه بشكلٍ متزامن.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'مطلوب. وهي النص المقتبس الذي يحدد اسم مكتبة الارتباطات الديناميكية (DLL) التي تحتوي على الإجراء في Microsoft Excel لـ Windows.' }, + procedure: { name: 'الاجراء', detail: 'مطلوب. وهي النص الذي يحدد اسم الدالة في DLL في Microsoft Excel لـ Windows. يمكنك أيضاً استخدام القيمة الترتيبية للدالة من جملة EXPORTS في ملف تعريف الوحدة النمطية (DEF.). يجب ألا تكون القيمة الترتيبية في شكل نص.' }, + typeText: { name: 'Type_text', detail: 'مطلوب. وهي النص الذي يحدد نوع البيانات للقيمة المرجعة وأنواع بيانات كافة الوسيطات لـ DLL أو مورد التعليمات البرمجية. يحدد أول حرف من type_text القيمة المرجعة. يتم شرح التعليمات البرمجية التي تستخدمها لـ type_text بشكلٍ تفصيلي في استخدام الدالتين CALL وREGISTER . وبالنسبة إلى مكتبات DLL أو موارد التعليمات البرمجية (XLLs) المستقلة، يمكنك إهمال هذه الوسيطة.' }, + argument1: { name: 'الوسيطة 1,...', detail: 'الاختياري. وهي الوسيطات التي يتم تمريرها إلى الإجراء.' }, + }, + }, + EUROCONVERT: { + description: 'تحوّل هذا الدالة رقماً إلى عملة اليورو أو تحوّل رقماً من عملة اليورو إلى عملة اليورو لأي من الدول الأعضاء في الاتحاد الأوروبي أو تحوّل رقماً من عملة دولة عضو في الاتحاد الأوروبي إلى عملة دولة أخرى باستخدام اليورو كوسيط (تحويل ثلاثي). إن العملات المتوفرة للتحويل هي عملات الدول الأعضاء في الاتحاد الأوروبي التي تتعامل باليورو. تستخدم الدالة أسعار تحويل ثابتة تم تحديدها من قِبل الاتحاد الأوروبي.', + abstract: 'تحوّل هذا الدالة رقماً إلى عملة اليورو أو تحوّل رقماً من عملة اليورو إلى عملة اليورو لأي من الدول الأعضاء في الاتحاد الأوروبي أو تحوّل رقماً من عملة دولة عضو في الاتحاد الأوروبي إلى عملة دولة أخرى باستخدام اليورو كوسيط (تحويل ثلاثي). إن العملات المتوفرة للتحويل هي عملات الدول الأعضاء في الاتحاد الأوروبي التي تتعامل باليورو. تستخدم الدالة أسعار تحويل ثابتة تم تحديدها من قِبل الاتحاد الأوروبي.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Number', detail: 'مطلوبة. قيمة العملة التي تريد تحويلها أو مرجع إلى خلية تتضمن القيمة.' }, + source: { name: 'مصدر', detail: 'مطلوب. سلسلة مكونة من ثلاثة أحرف، أو مرجع إلى خلية تحتوي على السلسلة، تتطابق مع رمز ISO الخاص بالعملة المصدر. تتوفر رموز العملات التالية في الدالة EUROCONVERT:' }, + target: { name: 'الهدف', detail: 'مطلوب. سلسلة مكونة من ثلاثة أحرف، أو مرجع خلية، تتطابق مع رمز ISO الخاص بالعملة التي تريد تحويل الرقم إليها. انظر جدول المصدر السابق للحصول على رموز ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'مطلوب. قيمة منطقية (TRUE أو FALSE)، أو تعبير يتم تقييمه إلى القيمة TRUE أو FALSE، التي تحدد طريقة عرض النتيجة.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'مطلوب. عدد صحيح يساوي 3 أو أكبر منه يحدد عدد الأرقام المهمة التي سيتم استخدامها لقيمة اليورو الوسيطة عند التحويل بين عملتين لعضوين من أعضاء الاتحاد الأوروبي. إذا حذفت هذه الوسيطة، فلن يقوم Excel بتقريب قيمة اليورو الوسيطة. إذا قمت بتضمين هذه الوسيطة عند تحويل عملة أحد أعضاء الاتحاد الأوروبي إلى اليورو، فسيقوم Excel بحساب قيمة اليورو الوسيطة والتي يمكن تحويلها بعد ذلك إلى عملة أحد أعضاء الاتحاد الأوروبي.' }, + }, + }, + REGISTER_ID: { + description: 'تُرجع هذه الدالة معرّف التسجيل لمكتبة الارتباطات الديناميكية (DLL) المحددة أو مورد التعليمات البرمجية الذي تم تسجيله مسبقاً. إذا لم يتم تسجيل DLL أو مورد التعليمات البرمجية، فتسجل هذه الدالة DLL أو مورد التعليمات البرمجية ثم تُرجع معرّف التسجيل.', + abstract: 'تُرجع هذه الدالة معرّف التسجيل لمكتبة الارتباطات الديناميكية (DLL) المحددة أو مورد التعليمات البرمجية الذي تم تسجيله مسبقاً. إذا لم يتم تسجيل DLL أو مورد التعليمات البرمجية، فتسجل هذه الدالة DLL أو مورد التعليمات البرمجية ثم تُرجع معرّف التسجيل.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'مطلوب. النص الذي يحدد اسم DLL التي تحتوي على الدالة في Microsoft Excel لـ Windows.' }, + procedure: { name: 'الاجراء', detail: 'مطلوب. وهي النص الذي يحدد اسم الدالة في DLL في Microsoft Excel لـ Windows. يمكنك أيضاً استخدام القيمة الترتيبية للدالة من جملة EXPORTS في ملف تعريف الوحدة النمطية (DEF.). لا يجب أن تكون القيمة الترتيبية أو رقم معرّف المورد بتنسيق نصي.' }, + typeText: { name: 'Type_text', detail: 'الاختياري. نص يحدد نوع البيانات للقيمة المرجعة وأنواع بيانات كافة الوسيطات لـ DLL. يحدد أول حرف من type_text القيمة المرجعة. إذا تم تسجيل الدالة أو مورد التعليمات البرمجية مسبقاً، فيمكنك حذف هذه الوسيطة.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/text/ca-ES.ts index 900a391e3c..cc5889b3dd 100644 --- a/packages/sheets-formula/src/locale/function-list/text/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/text/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/ca-es/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/ca-es/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/ca-es/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/ca-es/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/ca-es/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/ca-es/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/ca-es/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/ca-es/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/ca-es/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/ca-es/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/ca-es/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ca-es/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ca-es/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/ca-es/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ca-es/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ca-es/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ca-es/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ca-es/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/ca-es/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ca-es/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ca-es/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/ca-es/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/ca-es/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + reference: { name: 'Referència', detail: 'Text, interval o referència que conté el text fonètic que voleu extreure.' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/ca-es/excel/functions/proper-function', }, ], functionParameter: { @@ -364,46 +363,46 @@ const locale: typeof enUS = { }, }, REGEXEXTRACT: { - description: 'Extreu les primeres subcadenes coincidents segons una expressió regular.', - abstract: 'Extreu les primeres subcadenes coincidents segons una expressió regular.', + description: 'Extreu subcadenes coincidents d\'acord amb una expressió regular.', + abstract: 'Extreu subcadenes coincidents d\'acord amb una expressió regular.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=ca', + url: 'https://support.google.com/docs/answer/3098244?hl=ca', }, ], functionParameter: { - text: { name: 'text', detail: 'El text d\'entrada.' }, + text: { name: 'text', detail: 'Consell : l\'exemple anterior tornarà dues columnes de dades: "extreure" a la primera i "valors" a la segona.' }, regularExpression: { name: 'expressió_regular', detail: 'Es retornarà la primera part del text que coincideixi amb aquesta expressió.' }, }, }, REGEXMATCH: { - description: 'Indica si un fragment de text coincideix amb una expressió regular.', - abstract: 'Indica si un fragment de text coincideix amb una expressió regular.', + description: 'Determina si una part del text coincideix amb una expressió regular.', + abstract: 'Determina si una part del text coincideix amb una expressió regular.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=ca', + url: 'https://support.google.com/docs/answer/3098292?hl=ca', }, ], functionParameter: { - text: { name: 'text', detail: 'El text a provar amb l\'expressió regular.' }, - regularExpression: { name: 'expressió_regular', detail: 'L\'expressió regular amb la qual provar el text.' }, + text: { name: 'text', detail: 'text que cal contrastar amb l\'expressió regular.' }, + regularExpression: { name: 'expressió_regular', detail: 'expressió regular amb què es contrastarà el text.' }, }, }, REGEXREPLACE: { - description: 'Substitueix part d\'una cadena de text per una altra cadena de text mitjançant expressions regulars.', - abstract: 'Substitueix part d\'una cadena de text per una altra cadena de text mitjançant expressions regulars.', + description: 'Substitueix part d\'una cadena de text per una altra cadena de text utilitzant expressions regulars.', + abstract: 'Substitueix part d\'una cadena de text per una altra cadena de text utilitzant expressions regulars.', links: [ { title: 'Instruccions', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=ca', + url: 'https://support.google.com/docs/answer/3098245?hl=ca', }, ], functionParameter: { - text: { name: 'text', detail: 'El text, una part del qual serà substituïda.' }, - regularExpression: { name: 'expressió_regular', detail: 'L\'expressió regular. Totes les instàncies coincidents en el text seran substituïdes.' }, - replacement: { name: 'substitució', detail: 'El text que s\'inserirà en el text original.' }, + text: { name: 'text', detail: 'text, una part del qual cal substituir.' }, + regularExpression: { name: 'expressió_regular', detail: 'l\'expressió regular. Totes les coincidències de l\'argument text se substituiran.' }, + replacement: { name: 'substitució', detail: 'text que cal inserir al text original.' }, }, }, REPLACE: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ca-es/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ca-es/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/ca-es/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ca-es/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ca-es/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ca-es/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ca-es/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/ca-es/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/t-function-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/ca-es/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/ca-es/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/ca-es/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/ca-es/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/ca-es/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/ca-es/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/ca-es/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/ca-es/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/ca-es/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/ca-es/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/ca-es/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/ca-es/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/ca-es/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + moduleText: { name: 'Text del mòdul', detail: 'Nom de la biblioteca d’enllaç dinàmic (DLL) que conté el procediment.' }, + procedure: { name: 'Procediment', detail: 'Nom o número ordinal del procediment de la DLL.' }, + typeText: { name: 'Text del tipus', detail: 'Text que especifica els tipus de dades dels arguments i del valor retornat.' }, + argument1: { name: 'Argument 1', detail: 'Opcional. Primer argument que es passa al procediment.' }, }, }, EUROCONVERT: { @@ -722,12 +723,15 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/ca-es/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + number: { name: 'Nombre', detail: 'Valor de moneda que s’ha de convertir.' }, + source: { name: 'Origen', detail: 'Codi de la moneda d’origen.' }, + target: { name: 'Destinació', detail: 'Codi de la moneda de destinació.' }, + fullPrecision: { name: 'Precisió completa', detail: 'Valor lògic que controla si s’arrodoneix amb les regles específiques de la moneda.' }, + triangulationPrecision: { name: 'Precisió de triangulació', detail: 'Opcional. Nombre de dígits significatius per a la conversió intermèdia a euros.' }, }, }, REGISTER_ID: { @@ -736,12 +740,13 @@ const locale: typeof enUS = { links: [ { title: 'Instruccions', - url: 'https://support.microsoft.com/ca-es/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/ca-es/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + moduleText: { name: 'Text del mòdul', detail: 'Nom de la DLL o del recurs de codi que conté el procediment.' }, + procedure: { name: 'Procediment', detail: 'Nom o número ordinal del procediment.' }, + typeText: { name: 'Text del tipus', detail: 'Opcional. Text que especifica els tipus de dades dels arguments i del valor retornat.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/de-DE.ts b/packages/sheets-formula/src/locale/function-list/text/de-DE.ts new file mode 100644 index 0000000000..a6acf14cfa --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/de-DE.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'Für Sprachen mit einem Double-Byte-Zeichensatz (DBCS) werden in dieser Funktion Zeichen normaler Breite (Double-Byte-Zeichen) in Zeichen halber Breite (Single-Byte-Zeichen) umgewandelt.', + abstract: 'Für Sprachen mit einem Double-Byte-Zeichensatz (DBCS) werden in dieser Funktion Zeichen normaler Breite (Double-Byte-Zeichen) in Zeichen halber Breite (Single-Byte-Zeichen) umgewandelt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text oder der Bezug auf eine Zelle, die den Text enthält, den Sie ändern möchten. Enthält dieser Text keinen Buchstaben normaler Breite, so wird er nicht geändert.' }, + }, + }, + ARRAYTOTEXT: { + description: 'Die MATRIXZUTEXT-Funktion gibt ein Array von Textwerten aus einem beliebigen angegebenen Bereich zurück. Er übergibt Textwerte unverändert und wandelt nicht Textwerte in Text um.', + abstract: 'Die MATRIXZUTEXT-Funktion gibt ein Array von Textwerten aus einem beliebigen angegebenen Bereich zurück. Er übergibt Textwerte unverändert und wandelt nicht Textwerte in Text um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Die Matrix, die als Text zurückgegeben werden soll. Erforderlich.' }, + format: { name: 'format', detail: 'Das Format der zurückgegebenen Daten. Optional. Es kann sich um einen von zwei Werten handeln: 0 Standardwert. Übersichtliches Format, das einfach zu lesen ist. Der zurückgegebene Text ist derselbe wie der Text, der in einer Zelle dargestellt wird, auf die die allgemeine Formatierung angewendet wurde. 1 Strenges Format, das Escapezeichen und Zeilentrennzeichen enthält. Generiert eine Zeichenfolge, die in der Bearbeitungsleiste eingegeben werden kann. Kapselt zurückgegebene Zeichenfolgen in Anführungszeichen mit Ausnahme von booleschen Werten, Zahlen und Fehlern.' }, + }, + }, + BAHTTEXT: { + description: 'Wandelt eine Zahl in Thai-Text um und fügt ein Suffix "Baht" hinzu.', + abstract: 'Wandelt eine Zahl in Thai-Text um und fügt ein Suffix "Baht" hinzu.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine Zahl, die Sie in Text konvertieren möchten, oder ein Bezug auf eine Zelle, die eine Zahl enthält, oder eine Formel, deren Ergebnis eine Zahl ist.' }, + }, + }, + CHAR: { + description: 'Gibt das der Codezahl entsprechende Zeichen zurück. Verwenden Sie ZEICHEN, um Seitenzahlen in einer anderen Codierung, die Sie aus Dateien erhalten, die auf Computern anderen Typs erstellt wurden, in Zeichen umzuwandeln.', + abstract: 'Gibt das der Codezahl entsprechende Zeichen zurück. Verwenden Sie ZEICHEN, um Seitenzahlen in einer anderen Codierung, die Sie aus Dateien erhalten, die auf Computern anderen Typs erstellt wurden, in Zeichen umzuwandeln.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine Zahl von 1 bis 255, die das von Ihnen gewünschte Zeichen angibt. Das jeweilige Zeichen ist Bestandteil des Zeichensatzes, der auf Ihrem Computer verwendet wird. Hinweis Excel für das Web unterstützt nur CHAR(9), CHAR(10), CHAR(13) und CHAR(32) und höher.' }, + }, + }, + CLEAN: { + description: 'Löscht alle nicht druckbaren Zeichen aus einem Text. Verwenden Sie SÄUBERN für Texte, die aus anderen Anwendungsprogrammen importiert wurden und eventuell Zeichen enthalten, die das von Ihnen verwendete Betriebssystem nicht drucken kann. Beispielsweise können Sie SÄUBERN dazu verwenden, Code zu entfernen, der sich häufig am Anfang und Ende einer Datendatei befindet und nicht gedruckt werden kann.', + abstract: 'Löscht alle nicht druckbaren Zeichen aus einem Text. Verwenden Sie SÄUBERN für Texte, die aus anderen Anwendungsprogrammen importiert wurden und eventuell Zeichen enthalten, die das von Ihnen verwendete Betriebssystem nicht drucken kann. Beispielsweise können Sie SÄUBERN dazu verwenden, Code zu entfernen, der sich häufig am Anfang und Ende einer Datendatei befindet und nicht gedruckt werden kann.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Beliebige Arbeitsblattinformation, aus der Sie die nicht druckbaren Zeichen entfernen möchten.' }, + }, + }, + CODE: { + description: 'Gibt die Codezahl des ersten Zeichens in einem Text zurück. Die ausgegebene Codezahl entspricht dem Zeichensatz, mit dem Ihr Computer arbeitet.', + abstract: 'Gibt die Codezahl des ersten Zeichens in einem Text zurück. Die ausgegebene Codezahl entspricht dem Zeichensatz, mit dem Ihr Computer arbeitet.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text, für den Sie die Codezahl des ersten Zeichens bestimmen möchten.' }, + }, + }, + CONCAT: { + description: 'Die CONCAT-Funktion kombiniert den Text aus mehreren Bereichen und/oder Zeichenfolgen, stellt jedoch keine Trennzeichen oder IgnoreEmpty-Argumente bereit.', + abstract: 'Die CONCAT-Funktion kombiniert den Text aus mehreren Bereichen und/oder Zeichenfolgen, stellt jedoch keine Trennzeichen oder IgnoreEmpty-Argumente bereit.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Das zu verkettende Textelement. Eine Zeichenfolge oder ein Array von Zeichenfolgen, wie z. B. ein Zellbereich.' }, + text2: { name: 'text2', detail: 'Weitere zu verkettende Textelemente. Für die Textelemente sind maximal 253 Textargumente zulässig. Dabei kann es sich jeweils um eine Zeichenfolge oder ein Array von Zeichenfolgen, wie z. B. um einen Zellbereich, handeln.' }, + }, + }, + CONCATENATE: { + description: 'Verwenden Sie VERKETTEN , also ein der Textfunktionen , um zwei der mehr Zeichenfolgen zu einer Zeichenfolge zu verbinden.', + abstract: 'Verwenden Sie VERKETTEN , also ein der Textfunktionen , um zwei der mehr Zeichenfolgen zu einer Zeichenfolge zu verbinden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Das erste zu verknüpfende Element. Es kann ein Textwert, eine Zahl oder ein Zellbezug sein.' }, + text2: { name: 'text2', detail: 'Weitere zu verknüpfende Textelemente. Sie können bis zu 255 Elemente mit insgesamt bis zu 8.192 Zeichen verwenden.' }, + }, + }, + DBCS: { + description: 'Die unter diesem Hilfethema beschriebene Funktion konvertiert Buchstaben mit halber Breite (Single-Byte) in einer Zeichenfolge in Zeichen mit normaler Breite (Double-Byte). Der Name der Funktion (sowie die von ihr konvertierten Zeichen) hängt von den Ländereinstellungen ab.', + abstract: 'Die unter diesem Hilfethema beschriebene Funktion konvertiert Buchstaben mit halber Breite (Single-Byte) in einer Zeichenfolge in Zeichen mit normaler Breite (Double-Byte). Der Name der Funktion (sowie die von ihr konvertierten Zeichen) hängt von den Ländereinstellungen ab.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text oder der Bezug auf eine Zelle, die den Text enthält, den Sie ändern möchten. Enthält dieser Text keine lateinischen Buchstaben oder Katakana halber Breite, so wird er nicht geändert.' }, + }, + }, + DOLLAR: { + description: 'Die DOLLAR-Funktion , eine der TEXT-Funktionen , konvertiert eine Zahl im Währungsformat in Text, wobei die Dezimalstellen auf die von Ihnen angegebene Anzahl von Stellen gerundet werden. DOLLAR verwendet $#,###0.00_); ($#,###0,00) Zahlenformat, obwohl das angewendete Währungssymbol von Ihren Lokalen Spracheinstellungen abhängt.', + abstract: 'Die DOLLAR-Funktion , eine der TEXT-Funktionen , konvertiert eine Zahl im Währungsformat in Text, wobei die Dezimalstellen auf die von Ihnen angegebene Anzahl von Stellen gerundet werden. DOLLAR verwendet $#,###0.00_); ($#,###0,00) Zahlenformat, obwohl das angewendete Währungssymbol von Ihren Lokalen Spracheinstellungen abhängt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Eine Zahl, ein Bezug auf eine Zelle, die eine Zahl enthält, oder eine Formel, die zu einer Zahl ausgewertet wird.' }, + decimals: { name: 'decimals', detail: 'Optional. Die Anzahl der Ziffern rechts vom Dezimalkomma Wenn dies negativ ist, wird die Zahl links vom Dezimaltrennzeichen gerundet. Fehlt das Argument Dezimalstellen, wird es als 2 angenommen.' }, + }, + }, + EXACT: { + description: 'Vergleicht zwei Textzeichenfolgen und gibt TRUE zurück, wenn sie genau identisch sind, andernfalls FALSE. Bei IDENTISCH wird die Groß-/Kleinschreibung beachtet, formatierungsbezogene Unterschiede werden jedoch ignoriert. Verwenden Sie EXACT, um zu testen, ob Text in ein Dokument eingegeben wird.', + abstract: 'Vergleicht zwei Textzeichenfolgen und gibt TRUE zurück, wenn sie genau identisch sind, andernfalls FALSE. Bei IDENTISCH wird die Groß-/Kleinschreibung beachtet, formatierungsbezogene Unterschiede werden jedoch ignoriert. Verwenden Sie EXACT, um zu testen, ob Text in ein Dokument eingegeben wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Erforderlich. Die erste Zeichenfolge.' }, + text2: { name: 'text2', detail: 'Erforderlich. Die zweite Zeichenfolge.' }, + }, + }, + FIND: { + description: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird beachtet).', + abstract: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird beachtet).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Der Text, den Sie suchen möchten.' }, + withinText: { name: 'within_text', detail: 'Der Text, der den zu suchenden Text enthält.' }, + startNum: { name: 'start_num', detail: 'Gibt das Zeichen an, an dem die Suche beginnt. Wenn start_num weggelassen wird, wird 1 angenommen.' }, + }, + }, + FINDB: { + description: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird beachtet).', + abstract: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird beachtet).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Der Text, den Sie suchen möchten.' }, + withinText: { name: 'within_text', detail: 'Der Text, der den zu suchenden Text enthält.' }, + startNum: { name: 'start_num', detail: 'Gibt das Zeichen an, an dem die Suche beginnt. Wenn start_num weggelassen wird, wird 1 angenommen.' }, + }, + }, + FIXED: { + description: 'Formatiert eine Zahl als Text mit einer festen Anzahl von Nachkommastellen.', + abstract: 'Formatiert eine Zahl als Text mit einer festen Anzahl von Nachkommastellen.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Zahl, die Sie runden und in Text umwandeln möchten' }, + decimals: { name: 'decimals', detail: 'Optional. Die Anzahl der Ziffern rechts vom Dezimalkomma' }, + noCommas: { name: 'no_commas', detail: 'Optional. Ein logischer Wert, der bei TRUE verhindert, dass FIXED Kommas in den zurückgegebenen Text einschließt.' }, + }, + }, + LEFT: { + description: 'Gibt die am weitesten links stehenden Zeichen eines Textwerts zurück.', + abstract: 'Gibt die am weitesten links stehenden Zeichen eines Textwerts zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + numChars: { name: 'num_chars', detail: 'Gibt die Anzahl der Zeichen an, die LEFT extrahieren soll.' }, + }, + }, + LEFTB: { + description: 'Gibt die am weitesten links stehenden Zeichen eines Textwerts zurück.', + abstract: 'Gibt die am weitesten links stehenden Zeichen eines Textwerts zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + numBytes: { name: 'num_bytes', detail: 'Gibt die Anzahl der Zeichen an, die LEFTB auf Bytebasis extrahieren soll.' }, + }, + }, + LEN: { + description: 'Gibt die Anzahl der Zeichen in einer Textzeichenfolge zurück.', + abstract: 'Gibt die Anzahl der Zeichen in einer Textzeichenfolge zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, dessen Länge Sie ermitteln möchten. Leerzeichen zählen als Zeichen.' }, + }, + }, + LENB: { + description: 'Gibt die Anzahl der Bytes zurück, mit denen die Zeichen in einer Textzeichenfolge dargestellt werden.', + abstract: 'Gibt die Anzahl der Bytes zurück, mit denen die Zeichen in einer Textzeichenfolge dargestellt werden.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, dessen Länge Sie ermitteln möchten. Leerzeichen zählen als Zeichen.' }, + }, + }, + LOWER: { + description: 'Wandelt einen Text in Kleinbuchstaben um.', + abstract: 'Wandelt einen Text in Kleinbuchstaben um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text, den Sie in Kleinbuchstaben umwandeln möchten. "KLEIN" nimmt an Zeichen des Texts, die keine Buchstaben sind, keine Änderungen vor.' }, + }, + }, + MID: { + description: 'Gibt eine bestimmte Anzahl von Zeichen aus einer Textzeichenfolge zurück, beginnend an der angegebenen Position.', + abstract: 'Gibt eine bestimmte Anzahl von Zeichen aus einer Textzeichenfolge zurück, beginnend an der angegebenen Position.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + startNum: { name: 'start_num', detail: 'Die Position des ersten Zeichens in text, das Sie extrahieren möchten.' }, + numChars: { name: 'num_chars', detail: 'Gibt die Anzahl der Zeichen an, die MID extrahieren soll.' }, + }, + }, + MIDB: { + description: 'Gibt eine bestimmte Anzahl von Zeichen aus einer Textzeichenfolge zurück, beginnend an der angegebenen Position.', + abstract: 'Gibt eine bestimmte Anzahl von Zeichen aus einer Textzeichenfolge zurück, beginnend an der angegebenen Position.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + startNum: { name: 'start_num', detail: 'Die Position des ersten Zeichens in text, das Sie extrahieren möchten.' }, + numBytes: { name: 'num_bytes', detail: 'Gibt die Anzahl der Zeichen an, die MIDB auf Bytebasis extrahieren soll.' }, + }, + }, + NUMBERSTRING: { + description: 'Konvertiert Zahlen in chinesische Zeichenfolgen.', + abstract: 'Konvertiert Zahlen in chinesische Zeichenfolgen.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Der Wert, der in eine chinesische Zeichenfolge umgewandelt wird.' }, + type: { name: 'type', detail: 'Der Typ des zurückgegebenen Ergebnisses. \n1. Chinesische Kleinbuchstaben \n2. Chinesische Großbuchstaben \n3. Chinesische Schriftzeichen zum Lesen und Schreiben' }, + }, + }, + NUMBERVALUE: { + description: 'Konvertiert Text in Zahlen auf eine Weise, die vom Gebietsschema unabhängig ist.', + abstract: 'Konvertiert Text in Zahlen auf eine Weise, die vom Gebietsschema unabhängig ist.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der in eine Zahl zu konvertierende Text.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Optional. Das Zeichen, das zum Trennen der ganzen Zahl von den Nachkommastellen des Ergebnisses verwendet wird.' }, + groupSeparator: { name: 'group_separator', detail: 'Optional. Das Zeichen, das zum Trennen von Zahlengruppen verwendet wird, z. B. zwischen Tausender und Hunderter oder zwischen Millionen und Tausender.' }, + }, + }, + PHONETIC: { + description: 'Extrahiert die phonetischen (Furigana-) Zeichen aus einer Textzeichenfolge.', + abstract: 'Extrahiert die phonetischen (Furigana-) Zeichen aus einer Textzeichenfolge.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Verweis', detail: 'Erforderlich. Textzeichenfolge oder ein Verweis auf eine einzelne Zelle oder einen Zellbereich, die eine Furigana-Textzeichenfolge enthalten.' }, + }, + }, + PROPER: { + description: 'Wandelt den ersten Buchstaben aller Wörter einer Zeichenfolge in Großbuchstaben um. Wandelt alle anderen Buchstaben in Kleinbuchstaben um.', + abstract: 'Wandelt den ersten Buchstaben aller Wörter einer Zeichenfolge in Großbuchstaben um. Wandelt alle anderen Buchstaben in Kleinbuchstaben um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. In Anführungszeichen eingeschlossener Text, eine Formel, die Text zurückgibt, oder ein Bezug auf eine Zelle, die den Text enthält, den Sie teilweise groß schreiben möchten' }, + }, + }, + REGEXEXTRACT: { + description: 'Extrahiert die erste Teilzeichenfolge, die einem regulären Ausdruck entspricht.', + abstract: 'Extrahiert die erste Teilzeichenfolge, die einem regulären Ausdruck entspricht.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=de', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Eingabetext.' }, + regularExpression: { name: 'regular_expression', detail: 'Der erste Teil von text, der diesem Ausdruck entspricht, wird zurückgegeben.' }, + }, + }, + REGEXMATCH: { + description: 'Gibt zurück, ob ein Text einem regulären Ausdruck entspricht.', + abstract: 'Gibt zurück, ob ein Text einem regulären Ausdruck entspricht.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=de', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, der mit dem regulären Ausdruck geprüft werden soll.' }, + regularExpression: { name: 'regular_expression', detail: 'Der reguläre Ausdruck, mit dem der Text geprüft wird.' }, + }, + }, + REGEXREPLACE: { + description: 'Ersetzt mithilfe regulärer Ausdrücke einen Teil einer Textzeichenfolge durch eine andere Textzeichenfolge.', + abstract: 'Ersetzt mithilfe regulärer Ausdrücke einen Teil einer Textzeichenfolge durch eine andere Textzeichenfolge.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=de', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, von dem ein Teil ersetzt wird.' }, + regularExpression: { name: 'regular_expression', detail: 'Der reguläre Ausdruck. Alle passenden Vorkommen in text werden ersetzt.' }, + replacement: { name: 'replacement', detail: 'Der Text, der in den ursprünglichen Text eingefügt wird.' }, + }, + }, + REPLACE: { + description: 'Ersetzt Zeichen innerhalb eines Texts.', + abstract: 'Ersetzt Zeichen innerhalb eines Texts.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Text, in dem Sie einige Zeichen ersetzen möchten.' }, + startNum: { name: 'start_num', detail: 'Die Position des Zeichens in old_text, das Sie durch new_text ersetzen möchten.' }, + numChars: { name: 'num_chars', detail: 'Die Anzahl der Zeichen in old_text, die REPLACE durch new_text ersetzen soll.' }, + newText: { name: 'new_text', detail: 'Der Text, der Zeichen in old_text ersetzt.' }, + }, + }, + REPLACEB: { + description: 'Ersetzt Zeichen innerhalb eines Texts.', + abstract: 'Ersetzt Zeichen innerhalb eines Texts.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Text, in dem Sie einige Zeichen ersetzen möchten.' }, + startNum: { name: 'start_num', detail: 'Die Position des Zeichens in old_text, das Sie durch new_text ersetzen möchten.' }, + numBytes: { name: 'num_bytes', detail: 'Die Anzahl der Bytes in old_text, die REPLACEB durch new_text ersetzen soll.' }, + newText: { name: 'new_text', detail: 'Der Text, der Zeichen in old_text ersetzt.' }, + }, + }, + REPT: { + description: 'Wiederholt einen Text so oft wie angegeben. Verwenden Sie WIEDERHOLEN, um eine Zeichenfolge (eine Basiszeichenfolge) in einer bestimmten Häufigkeit in eine Zelle einzugeben.', + abstract: 'Wiederholt einen Text so oft wie angegeben. Verwenden Sie WIEDERHOLEN, um eine Zeichenfolge (eine Basiszeichenfolge) in einer bestimmten Häufigkeit in eine Zelle einzugeben.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text, den Sie wiederholen möchten' }, + numberTimes: { name: 'number_times', detail: 'Erforderlich. Eine positive Zahl, die angibt, wie oft "Text" wiederholt werden soll' }, + }, + }, + RIGHT: { + description: 'Gibt die am weitesten rechts stehenden Zeichen eines Textwerts zurück.', + abstract: 'Gibt die am weitesten rechts stehenden Zeichen eines Textwerts zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + numChars: { name: 'num_chars', detail: 'Gibt die Anzahl der Zeichen an, die RIGHT extrahieren soll.' }, + }, + }, + RIGHTB: { + description: 'Gibt die am weitesten rechts stehenden Zeichen eines Textwerts zurück.', + abstract: 'Gibt die am weitesten rechts stehenden Zeichen eines Textwerts zurück.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Die Textzeichenfolge mit den Zeichen, die Sie extrahieren möchten.' }, + numBytes: { name: 'num_bytes', detail: 'Gibt die Anzahl der Zeichen an, die RIGHTB auf Bytebasis extrahieren soll.' }, + }, + }, + SEARCH: { + description: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird nicht beachtet).', + abstract: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird nicht beachtet).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Der Text, den Sie suchen möchten.' }, + withinText: { name: 'within_text', detail: 'Der Text, der den zu suchenden Text enthält.' }, + startNum: { name: 'start_num', detail: 'Gibt das Zeichen an, an dem die Suche beginnt. Wenn start_num weggelassen wird, wird 1 angenommen.' }, + }, + }, + SEARCHB: { + description: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird nicht beachtet).', + abstract: 'Sucht eine Textzeichenfolge innerhalb einer anderen (Groß-/Kleinschreibung wird nicht beachtet).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Der Text, den Sie suchen möchten.' }, + withinText: { name: 'within_text', detail: 'Der Text, der den zu suchenden Text enthält.' }, + startNum: { name: 'start_num', detail: 'Gibt das Zeichen an, an dem die Suche beginnt. Wenn start_num weggelassen wird, wird 1 angenommen.' }, + }, + }, + SUBSTITUTE: { + description: 'Ersetzt new_text durch old_text in einer Textzeichenfolge. Verwenden Sie SUBSTITUTE, wenn Sie bestimmten Text in einer Textzeichenfolge ersetzen möchten. Verwenden Sie REPLACE, wenn Sie Text ersetzen möchten, der an einer bestimmten Stelle in einer Textzeichenfolge vorkommt.', + abstract: 'Ersetzt new_text durch old_text in einer Textzeichenfolge. Verwenden Sie SUBSTITUTE, wenn Sie bestimmten Text in einer Textzeichenfolge ersetzen möchten. Verwenden Sie REPLACE, wenn Sie Text ersetzen möchten, der an einer bestimmten Stelle in einer Textzeichenfolge vorkommt.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der in Anführungszeichen gesetzte Text oder der Bezug auf eine Zelle, die den Text enthält, in dem Zeichen ausgetauscht werden sollen' }, + oldText: { name: 'old_text', detail: 'Erforderlich. Der Text, den Sie ersetzen möchten' }, + newText: { name: 'new_text', detail: 'Erforderlich. Der Text, durch den Sie "Alter_Text" ersetzen möchten' }, + instanceNum: { name: 'instance_num', detail: 'Optional. Gibt an, an welchen Stellen "Alter Text" durch "Neuer_Text" ersetzt werden soll. Wenn Sie "ntes_Auftreten" angeben, wird nur dieses Vorkommen von "Alter_Text" ersetzt. Andernfalls wird "Alter_Text" an jeder Stelle, an der er in "Text" vorkommt, durch "Neuer_Text" ersetzt.' }, + }, + }, + T: { + description: 'Wandelt die Argumente in Text um.', + abstract: 'Wandelt die Argumente in Text um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Erforderlich. Der zu testende Wert' }, + }, + }, + TEXT: { + description: 'Mit der TEXT -Funktion können Sie durch das Anwenden einer Formatierung mithilfe von Formatcodes die Anzeige von Zahlen ändern. Diese Funktion ist in solchen Fällen nützlich, in denen Sie Zahlen in einem besser lesbaren Format anzeigen oder diese mit Text oder Symbolen kombinieren möchten.', + abstract: 'Mit der TEXT -Funktion können Sie durch das Anwenden einer Formatierung mithilfe von Formatcodes die Anzeige von Zahlen ändern. Diese Funktion ist in solchen Fällen nützlich, in denen Sie Zahlen in einem besser lesbaren Format anzeigen oder diese mit Text oder Symbolen kombinieren möchten.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Ein Zahlenwert, den Sie in Text umwandeln möchten.' }, + formatText: { name: 'format_text', detail: 'Eine Textzeichenfolge, die die Formatierung definiert, die auf den angegebenen Wert angewendet werden soll.' }, + }, + }, + TEXTAFTER: { + description: 'Gibt Text zurück, der nach einem bestimmten Zeichen oder einer Zeichenfolge auftritt. Sie ist das Gegenteil der Funktion TEXTBEFORE .', + abstract: 'Gibt Text zurück, der nach einem bestimmten Zeichen oder einer Zeichenfolge auftritt. Sie ist das Gegenteil der Funktion TEXTBEFORE .', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, in dem Sie suchen. Platzhalterzeichen sind nicht zulässig.' }, + delimiter: { name: 'delimiter', detail: 'Der Text, der die Stelle markiert, nach der Sie extrahieren möchten.' }, + instanceNum: { name: 'instance_num', detail: 'Das Vorkommen des Trennzeichens, nach dem Sie Text extrahieren möchten.' }, + matchMode: { name: 'match_mode', detail: 'Legt fest, ob bei der Textsuche Groß-/Kleinschreibung beachtet wird. Standardmäßig wird sie beachtet.' }, + matchEnd: { name: 'match_end', detail: 'Behandelt das Textende als Trennzeichen. Standardmäßig muss der Text exakt übereinstimmen.' }, + ifNotFound: { name: 'if_not_found', detail: 'Wert, der zurückgegeben wird, wenn keine Übereinstimmung gefunden wird. Standardmäßig wird #N/A zurückgegeben.' }, + }, + }, + TEXTBEFORE: { + description: 'Gibt Text zurück, der vor einem bestimmten Zeichen oder einer bestimmten Zeichenfolge auftritt. Es ist das Gegenteil der TEXTNACH-Funktion .', + abstract: 'Gibt Text zurück, der vor einem bestimmten Zeichen oder einer bestimmten Zeichenfolge auftritt. Es ist das Gegenteil der TEXTNACH-Funktion .', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, in dem Sie suchen. Platzhalterzeichen sind nicht zulässig.' }, + delimiter: { name: 'delimiter', detail: 'Der Text, der die Stelle markiert, vor der Sie extrahieren möchten.' }, + instanceNum: { name: 'instance_num', detail: 'Das Vorkommen des Trennzeichens, vor dem Sie Text extrahieren möchten.' }, + matchMode: { name: 'match_mode', detail: 'Legt fest, ob bei der Textsuche Groß-/Kleinschreibung beachtet wird. Standardmäßig wird sie beachtet.' }, + matchEnd: { name: 'match_end', detail: 'Behandelt den Textanfang als Trennzeichen. Standardmäßig muss der Text exakt übereinstimmen.' }, + ifNotFound: { name: 'if_not_found', detail: 'Wert, der zurückgegeben wird, wenn keine Übereinstimmung gefunden wird. Standardmäßig wird #N/A zurückgegeben.' }, + }, + }, + TEXTJOIN: { + description: 'Die Funktion "TEXTVERKETTEN" kombiniert den Text aus mehreren Bereichen und/oder Zeichenfolgen und fügt zwischen jedem zu kombinierenden Textwert ein von Ihnen angegebenes Trennzeichen ein. Wenn das Trennzeichen eine leere Textzeichenfolge ist, verkettet diese Funktion effektiv die Bereiche.', + abstract: 'Die Funktion "TEXTVERKETTEN" kombiniert den Text aus mehreren Bereichen und/oder Zeichenfolgen und fügt zwischen jedem zu kombinierenden Textwert ein von Ihnen angegebenes Trennzeichen ein. Wenn das Trennzeichen eine leere Textzeichenfolge ist, verkettet diese Funktion effektiv die Bereiche.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/de-de/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'Eine Textzeichenfolge, entweder leer oder mindestens ein Zeichen in doppelten Anführungszeichen oder aber ein Bezug auf eine gültige Textzeichenfolge. Eine eingegebene Zahl wird als Text behandelt.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Wenn WAHR, werden leere Zellen ignoriert.' }, + text1: { name: 'text1', detail: 'Das zu verkettende Textelement. Eine Textzeichenfolge oder ein Array von Zeichenfolgen, z. B. ein Zellbereich.' }, + text2: { name: 'text2', detail: 'Weitere zu verkettende Textelemente. Für die Textelemente sind maximal 252 Textargumente zulässig, einschließlich Text1 . Dabei kann es sich jeweils um eine Textzeichenfolge oder ein Array von Zeichenfolgen (z. B. um einen Zellbereich) handeln.' }, + }, + }, + TEXTSPLIT: { + description: 'Die TEXTTEILEN-Funktion funktioniert genauso wie der Text-zu-Spalten-Assistent , jedoch in Formelform. Sie ermöglicht Ihnen, spaltenweise oder zeilenweise nach unten aufzuteilen. Dies ist die Umkehrung der TEXTJOIN-Funktion .', + abstract: 'Die TEXTTEILEN-Funktion funktioniert genauso wie der Text-zu-Spalten-Assistent , jedoch in Formelform. Sie ermöglicht Ihnen, spaltenweise oder zeilenweise nach unten aufzuteilen. Dies ist die Umkehrung der TEXTJOIN-Funktion .', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, den Sie teilen möchten. Erforderlich.' }, + colDelimiter: { name: 'col_delimiter', detail: 'Der Text, der den Punkt markiert, an dem der Text spaltenübergreifend überschüttet werden soll.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'Der Text, der den Punkt markiert, an dem der Text zeilenweise nach unten geschüttet werden soll. Optional.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Geben Sie TRUE an, um aufeinander folgende Trennzeichen zu ignorieren. Der Standardwert ist FALSCH, wodurch eine leere Zelle erstellt wird. Optional.' }, + matchMode: { name: 'match_mode', detail: 'Geben Sie 1 an, um eine Übereinstimmung ohne Berücksichtigung der Groß-/Kleinschreibung durchzuführen. Der Standardwert ist 0, wodurch die Groß-/Kleinschreibung beachtet wird. Optional.' }, + padWith: { name: 'pad_with', detail: 'Der Wert, mit dem das Ergebnis auffüllt werden soll. Der Standardwert lautet #N/A.' }, + }, + }, + TRIM: { + description: 'Löscht Leerzeichen in einem Text, die nicht als jeweils einzelne zwischen Wörtern stehende Trennzeichen dienen. GLÄTTEN können Sie für Texte verwenden, die Sie aus anderen Anwendungsprogrammen übernommen haben und die eventuell unerwünschte Leerzeichen enthalten.', + abstract: 'Löscht Leerzeichen in einem Text, die nicht als jeweils einzelne zwischen Wörtern stehende Trennzeichen dienen. GLÄTTEN können Sie für Texte verwenden, die Sie aus anderen Anwendungsprogrammen übernommen haben und die eventuell unerwünschte Leerzeichen enthalten.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Der Text, aus dem Leerzeichen entfernt werden sollen. Der Text muss in Anführungszeichen enthalten sein.' }, + }, + }, + UNICHAR: { + description: 'Gibt das Unicode-Zeichen zurück, das durch den angegebenen Zahlenwert bezeichnet wird.', + abstract: 'Gibt das Unicode-Zeichen zurück, das durch den angegebenen Zahlenwert bezeichnet wird.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Erforderlich. Die Unicode-Zahl, die ein Zeichen darstellt.' }, + }, + }, + UNICODE: { + description: 'Gibt die Zahl (Codepoint) zurück, die dem ersten Zeichen des Texts entspricht.', + abstract: 'Gibt die Zahl (Codepoint) zurück, die dem ersten Zeichen des Texts entspricht.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Das Zeichen, dessen Unicode-Wert Sie bestimmen möchten.' }, + }, + }, + UPPER: { + description: 'Wandelt Text in Großbuchstaben um.', + abstract: 'Wandelt Text in Großbuchstaben um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Der Text, der in Großbuchstaben umgewandelt werden soll. "Text" kann sowohl ein Bezug als auch eine Zeichenfolge sein.' }, + }, + }, + VALUE: { + description: 'Wandelt ein als Text angegebenes Argument in eine Zahl um.', + abstract: 'Wandelt ein als Text angegebenes Argument in eine Zahl um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Erforderlich. Gibt den in Anführungszeichen eingeschlossenen Text oder einen Bezug auf eine Zelle an, die den Text enthält, den Sie umwandeln möchten' }, + }, + }, + VALUETOTEXT: { + description: 'Die WERTZUTEXT-Funktion gibt Text aus einem beliebigen Wert zurück. Er übergibt Textwerte unverändert und wandelt nicht Textwerte in Text um.', + abstract: 'Die WERTZUTEXT-Funktion gibt Text aus einem beliebigen Wert zurück. Er übergibt Textwerte unverändert und wandelt nicht Textwerte in Text um.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Der Wert, der als Text zurückgegeben werden soll. Erforderlich.' }, + format: { name: 'format', detail: 'Das Format der zurückgegebenen Daten. Optional. Es kann sich um einen von zwei Werten handeln: 0 Standardwert. Übersichtliches Format, das einfach zu lesen ist. Der zurückgegebene Text ist derselbe wie der Text, der in einer Zelle dargestellt wird, auf die die allgemeine Formatierung angewendet wurde. 1 Strenges Format, das Escapezeichen und Zeilentrennzeichen enthält. Generiert eine Zeichenfolge, die in der Bearbeitungsleiste eingegeben werden kann. Kapselt zurückgegebene Zeichenfolgen in Anführungszeichen mit Ausnahme von booleschen Werten, Zahlen und Fehlern.' }, + }, + }, + CALL: { + description: 'Ruft eine Prozedur in einer DLL (Dynamic Link Library)-Datei oder Coderessource auf. Für diese Funktion gibt es zwei Syntaxversionen. Syntax 1 können Sie nur für eine bereits angemeldete (registrierte) Coderessource einsetzen, die auf Argumente der REGISTER-Funktion zurückgreift. Syntax 2a oder 2b können Sie immer dann einsetzen, wenn Sie eine Coderessource gleichzeitig anmelden und aufrufen möchten.', + abstract: 'Ruft eine Prozedur in einer DLL (Dynamic Link Library)-Datei oder Coderessource auf. Für diese Funktion gibt es zwei Syntaxversionen. Syntax 1 können Sie nur für eine bereits angemeldete (registrierte) Coderessource einsetzen, die auf Argumente der REGISTER-Funktion zurückgreift. Syntax 2a oder 2b können Sie immer dann einsetzen, wenn Sie eine Coderessource gleichzeitig anmelden und aufrufen möchten.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Erforderlich. Eine in Anführungszeichen stehende Zeichenfolge, die den Namen der DLL-Datei (Dynamic Link Library, DLL) angibt, zu der die aufzurufende Prozedur in Microsoft Excel für Windows gehört.' }, + procedure: { name: 'Verfahren', detail: 'Erforderlich. Eine Zeichenfolge, die in Microsoft Excel für Windows den Namen angibt, unter dem die aufzurufende Funktion in der angegebenen DLL-Datei abgelegt ist. Sie können auch den Ordinalwert verwenden, der der Funktion in der EXPORTS-Anweisung der Moduldefinitionsdatei (.DEF) zugeordnet ist. Der Ordinalwert darf nicht in Form von Text vorkommen.' }, + typeText: { name: 'Type_text', detail: 'Erforderlich. Text, der sowohl den Datentyp des Rückgabewerts als auch die Datentypen aller Argumente der DLL oder Coderessource angibt. Der erste Buchstabe des Arguments "Typ" gibt den Rückgabewert an. Die Codes, die Sie für "Typ" verwenden, werden in Verwenden der Funktionen "AUFRUFEN" und "REGISTER" ausführlich beschrieben. Bei eigenständigen DLLs oder Coderessourcen (XLLs) können Sie dieses Argument weglassen.' }, + argument1: { name: 'Argument1,...', detail: 'Optional. Die Argumente, die an die jeweilige Prozedur übergeben werden sollen.' }, + }, + }, + EUROCONVERT: { + description: 'Sie können die EUROCONVERT-Funktion verwenden, um eine Zahl in Euro oder von Euro in eine beteiligte Währung umzuwandeln. Sie können die Funktion außerdem verwenden, um eine Zahl aus einer beteiligten Währung in eine andere umzuwandeln, indem Sie den Euro als Zwischenwert verwenden (Triangulieren). Die EUROCONVERT-Funktion verwendet feste Wechselkurse, die von der EU (Europäische Union) festgelegt wurden.', + abstract: 'Sie können die EUROCONVERT-Funktion verwenden, um eine Zahl in Euro oder von Euro in eine beteiligte Währung umzuwandeln. Sie können die Funktion außerdem verwenden, um eine Zahl aus einer beteiligten Währung in eine andere umzuwandeln, indem Sie den Euro als Zwischenwert verwenden (Triangulieren). Die EUROCONVERT-Funktion verwendet feste Wechselkurse, die von der EU (Europäische Union) festgelegt wurden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Zahl', detail: 'Erforderlich. Die Zahl, die Sie umwandeln möchten, oder eine Referenz auf eine Zelle, die die Zahl enthält' }, + source: { name: 'Quelle', detail: 'Erforderlich. Eine Zeichenfolge aus drei Zeichen oder eine Referenz auf eine Zelle, die die Zeichenfolge enthält, die mit dem ISO (International Standards Organization)-Code für die Quellwährung übereinstimmt, die umgewandelt werden soll. Die folgenden ISO-Codes stehen in der EUROCONVERT-Funktion zur Verfügung:' }, + target: { name: 'Ziel', detail: 'Erforderlich. Eine Zeichenfolge aus drei Zeichen oder eine Referenz auf eine Zelle, die die Zeichenfolge enthält, die mit dem ISO-Code für die Währung übereinstimmt, in die umgewandelt werden soll. Die ISO-Codes finden Sie in der Quelltabelle weiter oben.' }, + fullPrecision: { name: 'Full_precision', detail: 'Erforderlich. Ein Wahrheitswert (WAHR oder FALSCH) oder ein Ausdruck, der den Wert WAHR oder FALSCH ergibt und der festlegt, wie das Ergebnis angezeigt wird' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Erforderlich. Ein Integer größer als oder gleich 3, mit dem die Anzahl von signifikanten Ziffern der Berechnungsgenauigkeit festgelegt wird, die für den Eurozwischenwert verwendet wird, wenn zwischen zwei Währungen von Euromitgliedsländern umgewandelt wird. Wenn Sie dieses Argument weglassen, wird der Eurozwischenwert in Excel nicht gerundet. Wenn Sie dieses Argument beim Umwandeln der Währung eines Euromitgliedslandes in Euro angeben, wird der Eurozwischenwert in Excel berechnet, der dann in die Währung eines Euromitgliedslandes umgewandelt werden kann.' }, + }, + }, + REGISTER_ID: { + description: 'Gibt die Register-ID der angegebenen DLL (Dynamic Link Library) oder Coderessource zurück, die zuvor registriert wurde. Wenn die DLL- oder Coderessource nicht registriert wurde, registriert diese Funktion die DLL oder Coderessource und gibt dann die Register-ID zurück.', + abstract: 'Gibt die Register-ID der angegebenen DLL (Dynamic Link Library) oder Coderessource zurück, die zuvor registriert wurde. Wenn die DLL- oder Coderessource nicht registriert wurde, registriert diese Funktion die DLL oder Coderessource und gibt dann die Register-ID zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Erforderlich. Text, der den Namen der DLL angibt, die die Funktion in Microsoft Excel für Windows enthält' }, + procedure: { name: 'Verfahren', detail: 'Erforderlich. Eine Zeichenfolge, die in Microsoft Excel für Windows den Namen angibt, unter dem die aufzurufende Funktion in der angegebenen DLL-Datei abgelegt ist. Sie können auch die Ordnungszahl verwenden, die der Funktion innerhalb der Exporte-Anweisung der Moduldefinitionsdatei (.DEF) zugeordnet ist. Eine Ordnungszahl oder die Kennnummer einer Ressource darf nicht in Anführungszeichen stehen.' }, + typeText: { name: 'Type_text', detail: 'Optional. Text, der sowohl den Datentyp des Rückgabewerts als auch die Datentypen der Argumente der DLL angibt. Der erste Buchstabe des Arguments Datentyp gibt den Datentyp des Rückgabewerts an. Ist die Funktion oder Code-Ressource bereits angemeldet (registriert), darf dieses Argument fehlen.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/en-US.ts b/packages/sheets-formula/src/locale/function-list/text/en-US.ts index 50fc70d1e0..5c0d541295 100644 --- a/packages/sheets-formula/src/locale/function-list/text/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/text/en-US.ts @@ -21,7 +21,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/en-us/excel/functions/asc-function', }, ], functionParameter: { @@ -34,7 +34,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/en-us/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -48,7 +48,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/en-us/excel/functions/bahttext-function', }, ], functionParameter: { @@ -61,7 +61,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/en-us/excel/functions/char-function', }, ], functionParameter: { @@ -74,7 +74,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/en-us/excel/functions/clean-function', }, ], functionParameter: { @@ -87,7 +87,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/en-us/excel/functions/code-function', }, ], functionParameter: { @@ -100,7 +100,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/en-us/excel/functions/concat-function', }, ], functionParameter: { @@ -114,7 +114,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/en-us/excel/functions/concatenate-function', }, ], functionParameter: { @@ -128,7 +128,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/en-us/excel/functions/dbcs-function', }, ], functionParameter: { @@ -141,7 +141,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/en-us/excel/functions/dollar-function', }, ], functionParameter: { @@ -155,7 +155,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/en-us/excel/functions/exact-function', }, ], functionParameter: { @@ -169,7 +169,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/en-us/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -184,7 +184,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/en-us/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -199,7 +199,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/en-us/excel/functions/fixed-function', }, ], functionParameter: { @@ -214,7 +214,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/en-us/excel/functions/left-function', }, ], functionParameter: { @@ -228,7 +228,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/en-us/excel/functions/left-function', }, ], functionParameter: { @@ -242,7 +242,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/en-us/excel/functions/len-function', }, ], functionParameter: { @@ -255,7 +255,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/en-us/excel/functions/len-function', }, ], functionParameter: { @@ -268,7 +268,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/en-us/excel/functions/lower-function', }, ], functionParameter: { @@ -281,7 +281,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/en-us/excel/functions/mid-function', }, ], functionParameter: { @@ -296,7 +296,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/en-us/excel/functions/mid-function', }, ], functionParameter: { @@ -325,7 +325,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/en-us/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -340,12 +340,11 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/en-us/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: 'Reference', detail: 'Required. Text string or a reference to a single cell or a range of cells that contain a furigana text string.' }, }, }, PROPER: { @@ -354,7 +353,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/en-us/excel/functions/proper-function', }, ], functionParameter: { @@ -367,7 +366,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098244?hl=en', }, ], functionParameter: { @@ -381,7 +380,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098292?hl=en', }, ], functionParameter: { @@ -395,7 +394,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098245?hl=en', }, ], functionParameter: { @@ -410,7 +409,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/en-us/excel/functions/replace-function', }, ], functionParameter: { @@ -426,7 +425,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/en-us/excel/functions/replace-function', }, ], functionParameter: { @@ -442,7 +441,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/en-us/excel/functions/rept-function', }, ], functionParameter: { @@ -456,7 +455,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/en-us/excel/functions/right-function', }, ], functionParameter: { @@ -470,7 +469,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/en-us/excel/functions/right-function', }, ], functionParameter: { @@ -484,7 +483,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/en-us/excel/functions/search-function', }, ], functionParameter: { @@ -499,7 +498,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/en-us/excel/functions/search-function', }, ], functionParameter: { @@ -514,7 +513,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/en-us/excel/functions/substitute-function', }, ], functionParameter: { @@ -530,7 +529,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/t-function-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/en-us/excel/functions/t-function', }, ], functionParameter: { @@ -543,7 +542,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/en-us/excel/functions/text-function', }, ], functionParameter: { @@ -557,7 +556,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/en-us/excel/functions/textafter-function', }, ], functionParameter: { @@ -575,7 +574,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/en-us/excel/functions/textbefore-function', }, ], functionParameter: { @@ -593,7 +592,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/en-us/excel/functions/textjoin-function', }, ], functionParameter: { @@ -609,7 +608,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/en-us/excel/functions/textsplit-function', }, ], functionParameter: { @@ -627,7 +626,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/en-us/excel/functions/trim-function', }, ], functionParameter: { @@ -640,7 +639,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/en-us/excel/functions/unichar-function', }, ], functionParameter: { @@ -653,7 +652,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/en-us/excel/functions/unicode-function', }, ], functionParameter: { @@ -666,7 +665,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/en-us/excel/functions/upper-function', }, ], functionParameter: { @@ -679,7 +678,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/en-us/excel/functions/value-function', }, ], functionParameter: { @@ -692,7 +691,7 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/en-us/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -706,12 +705,14 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/en-us/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: 'Required. Quoted text specifying the name of the dynamic link library (DLL) that contains the procedure in Microsoft Excel for Windows.' }, + procedure: { name: 'Procedure', detail: 'Required. Text specifying the name of the function in the DLL in Microsoft Excel for Windows. You can also use the ordinal value of the function from the EXPORTS statement in the module-definition file (.DEF). The ordinal value must not be in the form of text.' }, + typeText: { name: 'Type_text', detail: 'Required. Text specifying the data type of the return value and the data types of all arguments to the DLL or code resource. The first letter of type_text specifies the return value. The codes you use for type_text are described in detail in Using the CALL and REGISTER functions . For stand-alone DLLs or code resources (XLLs), you can omit this argument.' }, + argument1: { name: 'Argument1,...', detail: 'Optional. The arguments to be passed to the procedure.' }, }, }, EUROCONVERT: { @@ -720,12 +721,15 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/en-us/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: 'Number', detail: 'Required. The currency value you want to convert, or a reference to a cell containing the value.' }, + source: { name: 'Source', detail: 'Required. A three-letter string, or reference to a cell containing the string, corresponding to the ISO code for the source currency. The following currency codes are available in the EUROCONVERT function:' }, + target: { name: 'Target', detail: 'Required. A three-letter string, or cell reference, corresponding to the ISO code of the currency to which you want to convert the number. See the previous Source table for the ISO codes.' }, + fullPrecision: { name: 'Full_precision', detail: 'Required. A logical value (TRUE or FALSE), or an expression that evaluates to a value of TRUE or FALSE, that specifies how to display the result.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Required. An integer equal to or greater than 3 that specifies the number of significant digits to be used for the intermediate euro value when converting between two euro member currencies. If you omit this argument, Excel does not round the intermediate euro value. If you include this argument when converting from a euro member currency to the euro, Excel calculates the intermediate euro value that could then be converted to a euro member currency.' }, }, }, REGISTER_ID: { @@ -734,12 +738,13 @@ const locale = { links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/en-us/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: 'Required. Text specifying the name of the DLL that contains the function in Microsoft Excel for Windows.' }, + procedure: { name: 'Procedure', detail: 'Required. Text specifying the name of the function in the DLL in Microsoft Excel for Windows. You can also use the ordinal value of the function from the EXPORTS statement in the module-definition file (.DEF). The ordinal value or resource ID number must not be in text form.' }, + typeText: { name: 'Type_text', detail: 'Optional. Text specifying the data type of the return value and the data types of all arguments to the DLL. The first letter of type_text specifies the return value. If the function or code resource is already registered, you can omit this argument.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/es-ES.ts b/packages/sheets-formula/src/locale/function-list/text/es-ES.ts index ea9ab8085f..b0a3e90fc6 100644 --- a/packages/sheets-formula/src/locale/function-list/text/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/text/es-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/es-es/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/es-es/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/es-es/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/es-es/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/es-es/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/es-es/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/es-es/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/es-es/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/es-es/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/es-es/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/es-es/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/es-es/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/es-es/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/es-es/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/es-es/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/es-es/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/es-es/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/es-es/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/es-es/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/es-es/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/es-es/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/es-es/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/es-es/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + reference: { name: 'Referencia', detail: 'Texto, rango o referencia que contiene el texto fonético que desea extraer.' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/es-es/excel/functions/proper-function', }, ], functionParameter: { @@ -364,46 +363,46 @@ const locale: typeof enUS = { }, }, REGEXEXTRACT: { - description: 'Extrae las primeras subcadenas coincidentes según una expresión regular.', - abstract: 'Extrae las primeras subcadenas coincidentes según una expresión regular.', + description: 'Extrae las primeras cadenas secundarias que coincidan con una expresión regular.', + abstract: 'Extrae las primeras cadenas secundarias que coincidan con una expresión regular.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=es', + url: 'https://support.google.com/docs/answer/3098244?hl=es', }, ], functionParameter: { - text: { name: 'texto', detail: 'El texto de entrada.' }, + text: { name: 'texto', detail: 'Nota: El ejemplo anterior devolverá dos columnas de datos, "extraer" en la primera y "valores" en la segunda.' }, regularExpression: { name: 'expresión_regular', detail: 'Se devolverá la primera parte del texto que coincida con esta expresión.' }, }, }, REGEXMATCH: { - description: 'Si un fragmento de texto coincide con una expresión regular.', - abstract: 'Si un fragmento de texto coincide con una expresión regular.', + description: 'Indica si parte de un texto coincide con una expresión regular.', + abstract: 'Indica si parte de un texto coincide con una expresión regular.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=es', + url: 'https://support.google.com/docs/answer/3098292?hl=es', }, ], functionParameter: { - text: { name: 'texto', detail: 'El texto que se probará con la expresión regular.' }, - regularExpression: { name: 'expresión_regular', detail: 'La expresión regular con la que se probará el texto.' }, + text: { name: 'texto', detail: 'texto que se va a comprobar con la expresión regular.' }, + regularExpression: { name: 'expresión_regular', detail: 'expresión regular que se va a usar para comprobar el texto.' }, }, }, REGEXREPLACE: { - description: 'Reemplaza parte de una cadena de texto con una cadena de texto diferente usando expresiones regulares.', - abstract: 'Reemplaza parte de una cadena de texto con una cadena de texto diferente usando expresiones regulares.', + description: 'Sustituye parte de una cadena de texto por otra cadena mediante expresiones regulares.', + abstract: 'Sustituye parte de una cadena de texto por otra cadena mediante expresiones regulares.', links: [ { title: 'Instrucciones', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=es', + url: 'https://support.google.com/docs/answer/3098245?hl=es', }, ], functionParameter: { - text: { name: 'texto', detail: 'El texto, del cual se reemplazará una parte.' }, - regularExpression: { name: 'expresión_regular', detail: 'La expresión regular. Todas las instancias coincidentes en el texto serán reemplazadas.' }, - replacement: { name: 'reemplazo', detail: 'El texto que se insertará en el texto original.' }, + text: { name: 'texto', detail: 'texto del que se va a sustituir una parte.' }, + regularExpression: { name: 'expresión_regular', detail: 'la expresión regular. Se sustituirán todas las instancias que coincidan con texto .' }, + replacement: { name: 'reemplazo', detail: 'texto que se insertará en el texto original.' }, }, }, REPLACE: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/es-es/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/es-es/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/es-es/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/es-es/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/es-es/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/es-es/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/es-es/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/es-es/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/t-function-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/es-es/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/es-es/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/es-es/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/es-es/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/es-es/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/es-es/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/es-es/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/es-es/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/es-es/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/es-es/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/es-es/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/es-es/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/es-es/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + moduleText: { name: 'Texto del módulo', detail: 'Nombre de la biblioteca de vínculos dinámicos (DLL) que contiene el procedimiento.' }, + procedure: { name: 'Procedimiento', detail: 'Nombre o número ordinal del procedimiento de la DLL.' }, + typeText: { name: 'Texto del tipo', detail: 'Texto que especifica los tipos de datos de los argumentos y del valor devuelto.' }, + argument1: { name: 'Argumento 1', detail: 'Opcional. Primer argumento que se pasa al procedimiento.' }, }, }, EUROCONVERT: { @@ -722,12 +723,15 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/es-es/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + number: { name: 'Número', detail: 'Valor de moneda que se va a convertir.' }, + source: { name: 'Origen', detail: 'Código de la moneda de origen.' }, + target: { name: 'Destino', detail: 'Código de la moneda de destino.' }, + fullPrecision: { name: 'Precisión completa', detail: 'Valor lógico que controla el redondeo según las reglas específicas de la moneda.' }, + triangulationPrecision: { name: 'Precisión de triangulación', detail: 'Opcional. Número de dígitos significativos de la conversión intermedia a euros.' }, }, }, REGISTER_ID: { @@ -736,12 +740,13 @@ const locale: typeof enUS = { links: [ { title: 'Instrucciones', - url: 'https://support.microsoft.com/es-es/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/es-es/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + moduleText: { name: 'Texto del módulo', detail: 'Nombre de la DLL o del recurso de código que contiene el procedimiento.' }, + procedure: { name: 'Procedimiento', detail: 'Nombre o número ordinal del procedimiento.' }, + typeText: { name: 'Texto del tipo', detail: 'Opcional. Texto que especifica los tipos de datos de los argumentos y del valor devuelto.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/text/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/text/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/text/fr-FR.ts index 60a22638e2..110dad4858 100644 --- a/packages/sheets-formula/src/locale/function-list/text/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/text/fr-FR.ts @@ -14,8 +14,741 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ASC: { + description: 'En ce qui concerne les langues à jeu de caractères codés sur deux octets (DBCS, Double-byte Character Set), la fonction remplace les caractères à pleine chasse (codés sur deux octets) en caractères à demi-chasse (codés sur un octet).', + abstract: 'En ce qui concerne les langues à jeu de caractères codés sur deux octets (DBCS, Double-byte Character Set), la fonction remplace les caractères à pleine chasse (codés sur deux octets) en caractères à demi-chasse (codés sur un octet).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte ou une référence à une cellule contenant le texte que vous souhaitez modifier. Si le texte ne contient pas de lettres à pleine chasse, il n’est pas modifié.' }, + }, + }, + ARRAYTOTEXT: { + description: 'La fonction ARRAYTOTEXT renvoie une matrice de valeurs de texte à partir de toute plage spécifiée. Elle transfère les valeurs de texte inchangées et convertit les valeurs non textuelles en texte.', + abstract: 'La fonction ARRAYTOTEXT renvoie une matrice de valeurs de texte à partir de toute plage spécifiée. Elle transfère les valeurs de texte inchangées et convertit les valeurs non textuelles en texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice à renvoyer comme texte. Obligatoire.' }, + format: { name: 'format', detail: 'Le format des données retournées. Facultatif. Il peut s’agir de l’une des deux valeurs : 0 Valeur par défaut. Format concis facile à lire. Le texte renvoyé est identique au texte rendu dans une cellule dans laquelle une mise en forme générale est appliquée. 1 Format strict qui inclut des caractères d’échappement et des délimiteurs de lignes. Génère une chaîne qui peut être analysée lors de la saisie dans la barre de formule. Encapsule les chaînes renvoyées entre guillemets, à l’exception des valeurs booléennes, des nombres et des erreurs.' }, + }, + }, + BAHTTEXT: { + description: 'Convertit un nombre en texte en langue thaï et ajoute le suffixe « Baht »', + abstract: 'Convertit un nombre en texte en langue thaï et ajoute le suffixe « Baht »', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Un nombre que vous convertissez en texte, une référence à une cellule contenant un nombre ou une formule qui retourne un nombre.' }, + }, + }, + CHAR: { + description: 'Renvoie le caractère spécifié par un nombre. Utilisez CAR pour convertir en caractères des numéros de pages de codes provenant de fichiers stockés sur d’autres types d’ordinateurs.', + abstract: 'Renvoie le caractère spécifié par un nombre. Utilisez CAR pour convertir en caractères des numéros de pages de codes provenant de fichiers stockés sur d’autres types d’ordinateurs.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre compris entre 1 et 255, indiquant le caractère recherché. Ce dernier provient du jeu de caractères utilisé par votre ordinateur. Remarque Excel sur le Web prend uniquement en charge CHAR(9), CHAR(10), CHAR(13) et CHAR(32) et versions ultérieures.' }, + }, + }, + CLEAN: { + description: 'Supprime tous les caractères de contrôle du texte. Utilisez EPURAGE pour du texte importé d’autres applications contenant des caractères qui ne pourront peut-être pas être imprimés sous votre système d’exploitation. Par exemple, la fonction EPURAGE vous permet de supprimer certains codes de bas niveau généralement placés par le système au début et à la fin des fichiers de données, et qui ne peuvent pas être imprimés.', + abstract: 'Supprime tous les caractères de contrôle du texte. Utilisez EPURAGE pour du texte importé d’autres applications contenant des caractères qui ne pourront peut-être pas être imprimés sous votre système d’exploitation. Par exemple, la fonction EPURAGE vous permet de supprimer certains codes de bas niveau généralement placés par le système au début et à la fin des fichiers de données, et qui ne peuvent pas être imprimés.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente toute information d’une feuille de calcul dont vous voulez supprimer les caractères non imprimables.' }, + }, + }, + CODE: { + description: 'Renvoie le numéro de code du premier caractère du texte. Le code renvoyé correspond au jeu de caractères utilisé par votre ordinateur.', + abstract: 'Renvoie le numéro de code du premier caractère du texte. Le code renvoyé correspond au jeu de caractères utilisé par votre ordinateur.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Texte dont vous voulez obtenir le code du premier caractère.' }, + }, + }, + CONCAT: { + description: 'La fonction CONCAT combine le texte de plusieurs plages et/ou chaînes, mais elle ne fournit pas d’arguments délimiteur ou IgnoreEmpty.', + abstract: 'La fonction CONCAT combine le texte de plusieurs plages et/ou chaînes, mais elle ne fournit pas d’arguments délimiteur ou IgnoreEmpty.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Élément de texte à joindre. Chaîne, ou tableau de chaînes, par exemple une plage de cellules.' }, + text2: { name: 'text2', detail: 'Autres éléments de texte à joindre. Vous pouvez faire figurer jusqu’à 253 arguments de texte. Il peut s’agir de chaînes ou de tableaux de chaînes, comme une plage de cellules.' }, + }, + }, + CONCATENATE: { + description: 'La fonction CONCATENER , qui fait partie des fonctions de texte permet de joindre plusieurs chaînes au sein d’une seule chaîne.', + abstract: 'La fonction CONCATENER , qui fait partie des fonctions de texte permet de joindre plusieurs chaînes au sein d’une seule chaîne.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Premier élément à joindre. Il peut s’agir d’une valeur texte, d’un nombre ou d’une référence de cellule.' }, + text2: { name: 'text2', detail: 'Éléments de texte supplémentaires à joindre. Vous pouvez avoir jusqu’à 255 éléments, pour un total de 8 192 caractères.' }, + }, + }, + DBCS: { + description: 'La fonction décrite dans cette rubrique d’aide convertit des lettres à demi-chasse (codées sur un octet) à l’intérieur d’une chaîne de caractères en caractères à pleine chasse (codés sur deux octets). Le nom de la fonction (et du caractère qu’elle ajoute) dépend de vos paramètres de langue.', + abstract: 'La fonction décrite dans cette rubrique d’aide convertit des lettres à demi-chasse (codées sur un octet) à l’intérieur d’une chaîne de caractères en caractères à pleine chasse (codés sur deux octets). Le nom de la fonction (et du caractère qu’elle ajoute) dépend de vos paramètres de langue.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte ou une référence à une cellule contenant le texte que vous souhaitez modifier. Si l’argument texte ne contient pas de caractères Anglais ou Katakana à demi-chasse, le texte n’est pas modifié.' }, + }, + }, + DOLLAR: { + description: 'La fonction DOLLAR , l’une des fonctions TEXT , convertit un nombre en texte à l’aide du format monétaire, avec les décimales arrondies au nombre d’emplacements que vous spécifiez. DOLLAR utilise $#,##0.00_) ; Format de nombre ($#,##0.00), bien que le symbole monétaire appliqué dépend de vos paramètres de langue locale.', + abstract: 'La fonction DOLLAR , l’une des fonctions TEXT , convertit un nombre en texte à l’aide du format monétaire, avec les décimales arrondies au nombre d’emplacements que vous spécifiez. DOLLAR utilise $#,##0.00_) ; Format de nombre ($#,##0.00), bien que le symbole monétaire appliqué dépend de vos paramètres de langue locale.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente un nombre, une référence à une cellule contenant un nombre ou une formule qui renvoie un nombre.' }, + decimals: { name: 'decimals', detail: 'Optionnel. Représente le nombre de chiffres après la virgule. Si cette valeur est négative, le nombre est arrondi à gauche de la virgule décimale. Si décimales est omis, le nombre de décimales par défaut est 2.' }, + }, + }, + EXACT: { + description: 'Compare deux chaînes de texte et renvoie la valeur VRAI si elles sont identiques ou la valeur FAUX dans le cas contraire. EXACT respecte la casse, mais ne tient pas compte des différences de mise en forme. Utilisez EXACT pour tester la conformité d’un texte tapé dans un document.', + abstract: 'Compare deux chaînes de texte et renvoie la valeur VRAI si elles sont identiques ou la valeur FAUX dans le cas contraire. EXACT respecte la casse, mais ne tient pas compte des différences de mise en forme. Utilisez EXACT pour tester la conformité d’un texte tapé dans un document.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Obligatoire. Représente la première chaîne de texte.' }, + text2: { name: 'text2', detail: 'Obligatoire. Représente la seconde chaîne de texte.' }, + }, + }, + FIND: { + description: 'Recherche une valeur textuelle dans une autre en respectant la casse.', + abstract: 'Recherche une valeur textuelle dans une autre en respectant la casse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Texte à rechercher.' }, + withinText: { name: 'within_text', detail: 'Texte contenant le texte à rechercher.' }, + startNum: { name: 'start_num', detail: 'Indique le caractère auquel commencer la recherche. Si start_num est omis, sa valeur est 1.' }, + }, + }, + FINDB: { + description: 'Recherche une valeur textuelle dans une autre en respectant la casse.', + abstract: 'Recherche une valeur textuelle dans une autre en respectant la casse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Texte à rechercher.' }, + withinText: { name: 'within_text', detail: 'Texte contenant le texte à rechercher.' }, + startNum: { name: 'start_num', detail: 'Indique le caractère auquel commencer la recherche. Si start_num est omis, sa valeur est 1.' }, + }, + }, + FIXED: { + description: 'Arrondit un nombre au nombre de décimales spécifié, lui applique le format décimal, à l’aide d’une virgule et d’espaces, et renvoie le résultat sous forme de texte.', + abstract: 'Arrondit un nombre au nombre de décimales spécifié, lui applique le format décimal, à l’aide d’une virgule et d’espaces, et renvoie le résultat sous forme de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Représente le nombre que vous voulez arrondir et convertir en texte.' }, + decimals: { name: 'decimals', detail: 'Optionnel. Représente le nombre de chiffres après la virgule.' }, + noCommas: { name: 'no_commas', detail: 'Optionnel. Représente une valeur logique qui, lorsqu’elle est VRAI, permet d’éviter que des virgules soient insérées dans le texte renvoyé par CTXT.' }, + }, + }, + LEFT: { + description: 'Renvoie les caractères les plus à gauche d’une valeur textuelle.', + abstract: 'Renvoie les caractères les plus à gauche d’une valeur textuelle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + numChars: { name: 'num_chars', detail: 'Indique le nombre de caractères que LEFT doit extraire.' }, + }, + }, + LEFTB: { + description: 'Renvoie les caractères les plus à gauche d’une valeur textuelle.', + abstract: 'Renvoie les caractères les plus à gauche d’une valeur textuelle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + numBytes: { name: 'num_bytes', detail: 'Indique le nombre de caractères que LEFTB doit extraire en fonction des octets.' }, + }, + }, + LEN: { + description: 'Renvoie le nombre de caractères d’une chaîne de texte.', + abstract: 'Renvoie le nombre de caractères d’une chaîne de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte dont vous souhaitez connaître la longueur. Les espaces comptent comme des caractères.' }, + }, + }, + LENB: { + description: 'Renvoie le nombre d’octets utilisés pour représenter les caractères d’une chaîne de texte.', + abstract: 'Renvoie le nombre d’octets utilisés pour représenter les caractères d’une chaîne de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte dont vous souhaitez connaître la longueur. Les espaces comptent comme des caractères.' }, + }, + }, + LOWER: { + description: 'Convertit toutes les lettres majuscules d’une chaîne de texte en lettres minuscules.', + abstract: 'Convertit toutes les lettres majuscules d’une chaîne de texte en lettres minuscules.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte à convertir en caractères minuscules. La fonction MINUSCULE ne modifie pas les caractères du texte qui ne sont pas des lettres.' }, + }, + }, + MID: { + description: 'Renvoie un nombre donné de caractères d’une chaîne de texte à partir de la position indiquée.', + abstract: 'Renvoie un nombre donné de caractères d’une chaîne de texte à partir de la position indiquée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + startNum: { name: 'start_num', detail: 'Position du premier caractère de text à extraire.' }, + numChars: { name: 'num_chars', detail: 'Indique le nombre de caractères que MID doit extraire.' }, + }, + }, + MIDB: { + description: 'Renvoie un nombre donné de caractères d’une chaîne de texte à partir de la position indiquée.', + abstract: 'Renvoie un nombre donné de caractères d’une chaîne de texte à partir de la position indiquée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + startNum: { name: 'start_num', detail: 'Position du premier caractère de text à extraire.' }, + numBytes: { name: 'num_bytes', detail: 'Indique le nombre de caractères que MIDB doit extraire en fonction des octets.' }, + }, + }, + NUMBERSTRING: { + description: 'Convertit des nombres en chaînes de caractères chinoises.', + abstract: 'Convertit des nombres en chaînes de caractères chinoises.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Valeur convertie en chaîne chinoise.' }, + type: { name: 'type', detail: 'Type du résultat renvoyé. \n1. Chinois en minuscules \n2. Chinois en majuscules \n3. Caractères chinois de lecture et d’écriture' }, + }, + }, + NUMBERVALUE: { + description: 'Convertit un texte en nombre en fonction de paramètres régionaux.', + abstract: 'Convertit un texte en nombre en fonction de paramètres régionaux.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Le texte à convertir en nombre.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Optionnel. Le caractère utilisé pour séparer l’entier et la partie fractionnaire du résultat.' }, + groupSeparator: { name: 'group_separator', detail: 'Optionnel. Le caractère utilisé pour séparer les regroupements de nombres, par exemple pour séparer les milliers des centaines et les millions des milliers.' }, + }, + }, + PHONETIC: { + description: 'Extrait les caractères phonétiques (furigana) d’une chaîne de texte.', + abstract: 'Extrait les caractères phonétiques (furigana) d’une chaîne de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Référence', detail: 'Obligatoire. Représente une chaîne de texte, ou une référence à une cellule unique ou à une plage de cellules contenant une chaîne de texte furigana.' }, + }, + }, + PROPER: { + description: 'Met en majuscule la première lettre de chaque chaîne de caractères et toute lettre d’un texte qui suit un caractère non alphabétique. Toutes les autres lettres sont converties en lettres minuscules.', + abstract: 'Met en majuscule la première lettre de chaque chaîne de caractères et toute lettre d’un texte qui suit un caractère non alphabétique. Toutes les autres lettres sont converties en lettres minuscules.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente un texte entre guillemets, une formule qui renvoie du texte ou une référence à une cellule contenant un texte dont vous voulez que certaines lettres soient en majuscules.' }, + }, + }, + REGEXEXTRACT: { + description: 'Extrait les premières sous-chaînes correspondant à une expression régulière.', + abstract: 'Extrait les premières sous-chaînes correspondant à une expression régulière.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=fr', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Astuce : L\'exemple ci-dessus renvoie deux colonnes de données, "extraire" (première) et "valeurs" (seconde).' }, + regularExpression: { name: 'regular_expression', detail: 'La première partie de text qui correspond à cette expression est renvoyée.' }, + }, + }, + REGEXMATCH: { + description: 'Indique si une partie d\'un texte correspond à une expression régulière.', + abstract: 'Indique si une partie d\'un texte correspond à une expression régulière.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=fr', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'texte à tester par rapport à l\'expression régulière.' }, + regularExpression: { name: 'regular_expression', detail: 'expression régulière à tester par rapport au texte.' }, + }, + }, + REGEXREPLACE: { + description: 'Remplace une partie d\'une chaîne de texte par une autre chaîne en utilisant des expressions régulières.', + abstract: 'Remplace une partie d\'une chaîne de texte par une autre chaîne en utilisant des expressions régulières.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=fr', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'texte dont une partie doit être remplacée.' }, + regularExpression: { name: 'regular_expression', detail: 'expression régulière. Toutes les instances présentant une correspondance avec texte seront remplacées.' }, + replacement: { name: 'replacement', detail: 'texte à insérer dans le texte d\'origine.' }, + }, + }, + REPLACE: { + description: 'Remplace des caractères dans un texte.', + abstract: 'Remplace des caractères dans un texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Texte dans lequel vous souhaitez remplacer certains caractères.' }, + startNum: { name: 'start_num', detail: 'Position du caractère dans old_text à remplacer par new_text.' }, + numChars: { name: 'num_chars', detail: 'Nombre de caractères dans old_text que REPLACE doit remplacer par new_text.' }, + newText: { name: 'new_text', detail: 'Texte qui remplace les caractères dans old_text.' }, + }, + }, + REPLACEB: { + description: 'Remplace des caractères dans un texte.', + abstract: 'Remplace des caractères dans un texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Texte dans lequel vous souhaitez remplacer certains caractères.' }, + startNum: { name: 'start_num', detail: 'Position du caractère dans old_text à remplacer par new_text.' }, + numBytes: { name: 'num_bytes', detail: 'Nombre d’octets dans old_text que REPLACEB doit remplacer par new_text.' }, + newText: { name: 'new_text', detail: 'Texte qui remplace les caractères dans old_text.' }, + }, + }, + REPT: { + description: 'Répète un texte un certain nombre de fois. Utilisez la fonction REPT pour remplir une cellule avec plusieurs instances d’une chaîne de texte.', + abstract: 'Répète un texte un certain nombre de fois. Utilisez la fonction REPT pour remplir une cellule avec plusieurs instances d’une chaîne de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte à répéter.' }, + numberTimes: { name: 'number_times', detail: 'Obligatoire. Représente un nombre positif indiquant le nombre de répétitions de la chaîne de texte.' }, + }, + }, + RIGHT: { + description: 'Renvoie les caractères les plus à droite d’une valeur textuelle.', + abstract: 'Renvoie les caractères les plus à droite d’une valeur textuelle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + numChars: { name: 'num_chars', detail: 'Indique le nombre de caractères que RIGHT doit extraire.' }, + }, + }, + RIGHTB: { + description: 'Renvoie les caractères les plus à droite d’une valeur textuelle.', + abstract: 'Renvoie les caractères les plus à droite d’une valeur textuelle.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne de texte contenant les caractères à extraire.' }, + numBytes: { name: 'num_bytes', detail: 'Indique le nombre de caractères que RIGHTB doit extraire en fonction des octets.' }, + }, + }, + SEARCH: { + description: 'Recherche une valeur textuelle dans une autre sans respecter la casse.', + abstract: 'Recherche une valeur textuelle dans une autre sans respecter la casse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Texte à rechercher.' }, + withinText: { name: 'within_text', detail: 'Texte contenant le texte à rechercher.' }, + startNum: { name: 'start_num', detail: 'Indique le caractère auquel commencer la recherche. Si start_num est omis, sa valeur est 1.' }, + }, + }, + SEARCHB: { + description: 'Recherche une valeur textuelle dans une autre sans respecter la casse.', + abstract: 'Recherche une valeur textuelle dans une autre sans respecter la casse.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Texte à rechercher.' }, + withinText: { name: 'within_text', detail: 'Texte contenant le texte à rechercher.' }, + startNum: { name: 'start_num', detail: 'Indique le caractère auquel commencer la recherche. Si start_num est omis, sa valeur est 1.' }, + }, + }, + SUBSTITUTE: { + description: 'Remplace new_text old_text dans une chaîne de texte. Utilisez SUBSTITUTE lorsque vous souhaitez remplacer du texte spécifique dans une chaîne de texte ; utilisez REPLACE lorsque vous souhaitez remplacer tout texte qui se trouve à un emplacement spécifique dans une chaîne de texte.', + abstract: 'Remplace new_text old_text dans une chaîne de texte. Utilisez SUBSTITUTE lorsque vous souhaitez remplacer du texte spécifique dans une chaîne de texte ; utilisez REPLACE lorsque vous souhaitez remplacer tout texte qui se trouve à un emplacement spécifique dans une chaîne de texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte ou la référence à une cellule contenant le texte dont vous voulez remplacer certains caractères.' }, + oldText: { name: 'old_text', detail: 'Obligatoire. Représente le texte à remplacer.' }, + newText: { name: 'new_text', detail: 'Obligatoire. Représente le texte qui doit remplacer ancien_texte.' }, + instanceNum: { name: 'instance_num', detail: 'Optionnel. Spécifie quelle occurrence de ancien_texte vous souhaitez remplacer par nouveau_texte. Si vous spécifiez no_position, seule l’occurrence correspondante de ancien_texte est remplacée. Sinon, toutes les occurrences de ancien_texte dans texte sont remplacées par nouveau_texte.' }, + }, + }, + T: { + description: 'Renvoie le texte auquel l’argument valeur fait référence.', + abstract: 'Renvoie le texte auquel l’argument valeur fait référence.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obligatoire. Représente la valeur à tester.' }, + }, + }, + TEXT: { + description: 'La fonction TEXTE vous permet de modifier la manière dont un nombre est affiché en lui appliquant une mise en forme qui utilise des codes de format . Cela peut vous être utile lorsque vous souhaitez afficher des nombres dans un format plus lisible, ou quand vous souhaitez combiner des nombres à du texte ou des symboles.', + abstract: 'La fonction TEXTE vous permet de modifier la manière dont un nombre est affiché en lui appliquant une mise en forme qui utilise des codes de format . Cela peut vous être utile lorsque vous souhaitez afficher des nombres dans un format plus lisible, ou quand vous souhaitez combiner des nombres à du texte ou des symboles.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valeur numérique que vous souhaitez convertir en texte.' }, + formatText: { name: 'format_text', detail: 'Chaîne de texte qui définit la mise en forme à appliquer à la valeur fournie.' }, + }, + }, + TEXTAFTER: { + description: 'Retourne le texte qui se trouve après le caractère ou la chaîne de caractères donnés. C’est l’opposé de la fonction TEXTE.AVANTE.', + abstract: 'Retourne le texte qui se trouve après le caractère ou la chaîne de caractères donnés. C’est l’opposé de la fonction TEXTE.AVANTE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte dans lequel effectuer la recherche. Les caractères génériques ne sont pas autorisés.' }, + delimiter: { name: 'delimiter', detail: 'Texte qui marque le point après lequel extraire.' }, + instanceNum: { name: 'instance_num', detail: 'Occurrence du délimiteur après laquelle extraire le texte.' }, + matchMode: { name: 'match_mode', detail: 'Détermine si la recherche respecte la casse. Par défaut, elle respecte la casse.' }, + matchEnd: { name: 'match_end', detail: 'Traite la fin du texte comme un délimiteur. Par défaut, le texte doit correspondre exactement.' }, + ifNotFound: { name: 'if_not_found', detail: 'Valeur renvoyée si aucune correspondance n’est trouvée. Par défaut, #N/A est renvoyé.' }, + }, + }, + TEXTBEFORE: { + description: 'Retourne le texte qui se trouve avant un caractère ou une chaîne de caractères donnés. C’est l’opposé de la fonction TEXTAFTER .', + abstract: 'Retourne le texte qui se trouve avant un caractère ou une chaîne de caractères donnés. C’est l’opposé de la fonction TEXTAFTER .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte dans lequel effectuer la recherche. Les caractères génériques ne sont pas autorisés.' }, + delimiter: { name: 'delimiter', detail: 'Texte qui marque le point avant lequel extraire.' }, + instanceNum: { name: 'instance_num', detail: 'Occurrence du délimiteur avant laquelle extraire le texte.' }, + matchMode: { name: 'match_mode', detail: 'Détermine si la recherche respecte la casse. Par défaut, elle respecte la casse.' }, + matchEnd: { name: 'match_end', detail: 'Traite le début du texte comme un délimiteur. Par défaut, le texte doit correspondre exactement.' }, + ifNotFound: { name: 'if_not_found', detail: 'Valeur renvoyée si aucune correspondance n’est trouvée. Par défaut, #N/A est renvoyé.' }, + }, + }, + TEXTJOIN: { + description: 'La fonction JOINDRE.TEXTE combine le texte à partir de plusieurs plages et/ou chaînes, et inclut un séparateur que vous spécifiez entre chaque valeur de texte à combiner. Si le séparateur est une chaîne de texte vide, cette fonction concatène effectivement les plages.', + abstract: 'La fonction JOINDRE.TEXTE combine le texte à partir de plusieurs plages et/ou chaînes, et inclut un séparateur que vous spécifiez entre chaque valeur de texte à combiner. Si le séparateur est une chaîne de texte vide, cette fonction concatène effectivement les plages.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'Chaîne de texte, vide ou constituée d’un ou plusieurs caractères entre guillemets, ou référence à une chaîne de texte valide. Si un nombre est fourni, il sera traité comme du texte.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Si la valeur est TRUE, ignore les cellules vides.' }, + text1: { name: 'text1', detail: 'Élément de texte à joindre. Chaîne de texte, ou tableau de chaînes, par exemple une plage de cellules.' }, + text2: { name: 'text2', detail: 'Autres éléments de texte à joindre. Vous pouvez faire figurer jusqu’à 252 arguments de texte, texte1 compris. Il peut s’agir de chaînes de texte ou de tableaux de chaînes, comme une plage de cellules.' }, + }, + }, + TEXTSPLIT: { + description: 'La fonction FRACTIONNER.TEXTE fonctionne de la même manière que l’Assistant Texte à colonnes , mais sous forme de formule. Il vous permet de fractionner les colonnes ou vers le bas par lignes. Il s’agit de l’inverse de la fonction TEXTJOIN .', + abstract: 'La fonction FRACTIONNER.TEXTE fonctionne de la même manière que l’Assistant Texte à colonnes , mais sous forme de formule. Il vous permet de fractionner les colonnes ou vers le bas par lignes. Il s’agit de l’inverse de la fonction TEXTJOIN .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte à fractionner. Obligatoire.' }, + colDelimiter: { name: 'col_delimiter', detail: 'Texte qui marque le point où le texte doit être renversé dans les colonnes.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'Texte qui marque le point où renverser le texte vers le bas des lignes. Facultatif.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Spécifiez TRUE pour ignorer les délimiteurs consécutifs. La valeur par défaut est FALSE, qui crée une cellule vide. Facultatif.' }, + matchMode: { name: 'match_mode', detail: 'Spécifiez 1 pour effectuer une correspondance ne respectant pas la casse. La valeur par défaut est 0, ce qui correspond à une correspondance respectant la casse. Facultatif.' }, + padWith: { name: 'pad_with', detail: 'Valeur avec laquelle compléter le résultat. La valeur par défaut est #N/A.' }, + }, + }, + TRIM: { + description: 'Supprime tous les espaces de texte à l’exception des espaces simples entre les mots. Exécutez la fonction SUPPRESPACE sur le texte provenant d’autres applications et dont l’espacement peut être irrégulier.', + abstract: 'Supprime tous les espaces de texte à l’exception des espaces simples entre les mots. Exécutez la fonction SUPPRESPACE sur le texte provenant d’autres applications et dont l’espacement peut être irrégulier.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Texte dont vous souhaitez supprimer les espaces. Le texte doit être contenu entre guillemets.' }, + }, + }, + UNICHAR: { + description: 'Renvoie le caractère unicode référencé par la valeur numérique donnée.', + abstract: 'Renvoie le caractère unicode référencé par la valeur numérique donnée.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obligatoire. Nombre est le nombre unicode qui représente le caractère.' }, + }, + }, + UNICODE: { + description: 'Renvoie le nombre (point de code) qui correspond au premier caractère du texte.', + abstract: 'Renvoie le nombre (point de code) qui correspond au premier caractère du texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Texte est le caractère pour lequel vous souhaitez obtenir la valeur unicode.' }, + }, + }, + UPPER: { + description: 'Convertit un texte en majuscules.', + abstract: 'Convertit un texte en majuscules.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte que vous voulez convertir en caractères majuscules. L’argument texte peut être une référence ou une chaîne de caractères.' }, + }, + }, + VALUE: { + description: 'Convertit en nombre une chaîne de caractères représentant un nombre.', + abstract: 'Convertit en nombre une chaîne de caractères représentant un nombre.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obligatoire. Représente le texte placé entre guillemets ou une référence à une cellule contenant le texte que vous voulez convertir.' }, + }, + }, + VALUETOTEXT: { + description: 'La fonction VALEUR.EN.TEXTE renvoie le texte d’une valeur spécifiée. Elle transfère les valeurs de texte inchangées et convertit les valeurs non textuelles en texte.', + abstract: 'La fonction VALEUR.EN.TEXTE renvoie le texte d’une valeur spécifiée. Elle transfère les valeurs de texte inchangées et convertit les valeurs non textuelles en texte.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'La valeur à renvoyer comme texte. Obligatoire.' }, + format: { name: 'format', detail: 'Le format des données retournées. Facultatif. Il peut s’agir de l’une des deux valeurs : 0 Valeur par défaut. Format concis facile à lire. Le texte renvoyé est identique au texte rendu dans une cellule dans laquelle une mise en forme générale est appliquée. 1 Format strict qui inclut des caractères d’échappement et des délimiteurs de lignes. Génère une chaîne qui peut être analysée lors de la saisie dans la barre de formule. Encapsule les chaînes renvoyées entre guillemets, à l’exception des valeurs booléennes, des nombres et des erreurs.' }, + }, + }, + CALL: { + description: 'Appelle une procédure dans la bibliothèque de liens dynamiques ou de ressource de code. Cette fonction adopte deux formes de syntaxe. Utilisez la première uniquement avec une ressource de code préalablement mise en registre et utilisant des arguments de la fonction REGISTRE. Utilisez la syntaxe 2a ou 2b pour appeler et mettre en registre simultanément une ressource de code.', + abstract: 'Appelle une procédure dans la bibliothèque de liens dynamiques ou de ressource de code. Cette fonction adopte deux formes de syntaxe. Utilisez la première uniquement avec une ressource de code préalablement mise en registre et utilisant des arguments de la fonction REGISTRE. Utilisez la syntaxe 2a ou 2b pour appeler et mettre en registre simultanément une ressource de code.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obligatoire. Représente un texte entre guillemets qui spécifie le nom de la bibliothèque de liens dynamiques contenant la procédure dans Microsoft Excel pour Windows.' }, + procedure: { name: 'Procédure', detail: 'Obligatoire. Représente un texte qui spécifie le nom de la fonction dans la DLL dans Microsoft Excel pour Windows. Vous pouvez aussi utiliser la valeur ordinale de la fonction à partir de l’instruction EXPORTS dans le fichier de définition de module (.DEF). La valeur ordinale ne doit pas être sous forme de texte.' }, + typeText: { name: 'Type_text', detail: 'Obligatoire. Représente un texte qui spécifie le type de données de la valeur renvoyée et les types de données de tous les arguments de la DLL ou de la ressource de code. La première lettre de l’argument type_texte spécifie la valeur renvoyée. Les codes utilisés pour l’argument type_texte sont décrits en détail dans la rubrique Utilisation des fonctions FONCTION.APPELANTE et REGISTRE . Pour des DLL ou des ressources de code (XML) autonomes, vous pouvez omettre cet argument.' }, + argument1: { name: 'Argument1 ,...', detail: 'Optionnel. Représentent les arguments à entrer dans la procédure.' }, + }, + }, + EUROCONVERT: { + description: 'Convertit un chiffre en euros, convertit dans les devises européennes un chiffre en euros ou convertit un chiffre d’une devise de la zone euro dans une autre en utilisant l’euro comme intermédiaire (triangulation). Les devises disponibles pour cette conversion sont celles des pays membres de l’Union Européenne (UE) qui ont adopté l’euro. Cette fonction utilise des taux de conversion fixes établis par l’UE.', + abstract: 'Convertit un chiffre en euros, convertit dans les devises européennes un chiffre en euros ou convertit un chiffre d’une devise de la zone euro dans une autre en utilisant l’euro comme intermédiaire (triangulation). Les devises disponibles pour cette conversion sont celles des pays membres de l’Union Européenne (UE) qui ont adopté l’euro. Cette fonction utilise des taux de conversion fixes établis par l’UE.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Nombre', detail: 'Obligatoire. Il s’agit de la valeur de la devise que vous souhaitez convertir, ou d’une référence à une cellule qui contient cette valeur.' }, + source: { name: 'Source', detail: 'Obligatoire. Il s’agit d’une chaîne de trois lettres ou une référence à une cellule contenant cette chaîne, qui correspond au code ISO de la devise source. Les codes de devises suivants sont disponibles dans la fonction EUROCONVERT :' }, + target: { name: 'Cible', detail: 'Obligatoire. Il s’agit d’une chaîne de trois lettres ou une référence de cellule, qui correspond au code ISO de la devise dans laquelle vous souhaitez convertir le nombre. Voir la table Source précédente pour obtenir les codes ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'Obligatoire. Représente une valeur logique (VRAI ou FAUX) ou une expression qui renvoie une valeur VRAI ou FAUX, qui indique comment afficher le résultat.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Obligatoire. Représente un entier supérieur ou égal à 3 qui indique le nombre de chiffres significatifs à utiliser pour la valeur intermédiaire en euros lors de la conversion entre deux devises faisant partie de la zone euro. Si vous ne spécifiez pas cet argument, Excel n’arrondit pas la valeur intermédiaire en euros. Si vous spécifiez cet argument lors de la conversion en euros d’une devise appartenant à la zone euro, Excel calcule la valeur intermédiaire en euros, qui peut ensuite être convertie en devise appartenant à la zone euro.' }, + }, + }, + REGISTER_ID: { + description: 'Renvoie l’identifiant d’inscription de la bibliothèque de liens dynamiques (DLL) ou de la ressource de code spécifiée précédemment inscrite.', + abstract: 'Renvoie l’identifiant d’inscription de la bibliothèque de liens dynamiques (DLL) ou de la ressource de code spécifiée précédemment inscrite.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obligatoire. Représente le texte spécifiant le nom de la DLL qui contient la fonction, dans Microsoft Excel pour Windows.' }, + procedure: { name: 'Procédure', detail: 'Obligatoire. Représente un texte qui spécifie le nom de la fonction dans la DLL dans Microsoft Excel pour Windows. Vous pouvez également utiliser la valeur ordinale de la fonction tirée de l’instruction EXPORTS du fichier de définition de module (.DEF). La valeur ordinale ou le numéro d’identification de la ressource ne doit pas être sous forme de texte.' }, + typeText: { name: 'Type_text', detail: 'Optionnel. Représente le texte indiquant à la DLL le type de données de la valeur renvoyée et celui de tous les arguments. La première lettre de l’argument type_texte spécifie la valeur de retour. Si la fonction ou la ressource de code est déjà mise en Registre, vous pouvez omettre cet argument.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/id-ID.ts b/packages/sheets-formula/src/locale/function-list/text/id-ID.ts new file mode 100644 index 0000000000..8881042753 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/id-ID.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'Untuk bahasa Perangkat karakter bit ganda (DBCS, Double-byte character set), fungsi tersebut mengubah karakter lebar penuh (bit ganda) menjadi lebar setengah (bit tunggal).', + abstract: 'Untuk bahasa Perangkat karakter bit ganda (DBCS, Double-byte character set), fungsi tersebut mengubah karakter lebar penuh (bit ganda) menjadi lebar setengah (bit tunggal).', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks atau referensi ke suatu sel yang berisi teks yang ingin Anda ubah. Jika teks tidak berisi huruf lebar penuh, teks tidak diubah.' }, + }, + }, + ARRAYTOTEXT: { + description: 'Fungsi ARRAYTOTEXT mengembalikan array nilai teks dari rentang tertentu. Ini melewati nilai teks tidak berubah, dan mengonversi nilai non-teks menjadi teks.', + abstract: 'Fungsi ARRAYTOTEXT mengembalikan array nilai teks dari rentang tertentu. Ini melewati nilai teks tidak berubah, dan mengonversi nilai non-teks menjadi teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Array untuk dikembalikan sebagai teks. Diperlukan.' }, + format: { name: 'format', detail: 'Format data yang dikembalikan. Opsional. Ini bisa menjadi salah satu dari dua nilai: 0 Default. Format ringkas yang mudah dibaca. Teks yang dikembalikan akan sama seperti teks yang disajikan dalam sel yang memiliki pemformatan umum yang diterapkan. 1 Format ketat yang menyertakan karakter escape dan pemisah baris. Menghasilkan string yang dapat diurai ketika dimasukkan ke bilah rumus. Enkapsulasi mengembalikan string dalam tanda petik kecuali untuk Boolean, Angka, dan Kesalahan.' }, + }, + }, + BAHTTEXT: { + description: 'Mengonversi angka menjadi teks bahasa Thailand dan menambahkan akhiran "Baht."', + abstract: 'Mengonversi angka menjadi teks bahasa Thailand dan menambahkan akhiran "Baht."', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda konversi menjadi teks, atau referensi ke sel berisi angka atau rumus yang mengevaluasi ke sebuah angka.' }, + }, + }, + CHAR: { + description: 'Mengembalikan karakter yang ditentukan oleh nomor kode.', + abstract: 'Mengembalikan karakter yang ditentukan oleh nomor kode.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Angka antara 1 dan 255 yang menentukan karakter yang Anda inginkan. Karakter berasal dari kumpulan karakter yang digunakan komputer Anda.' }, + }, + }, + CLEAN: { + description: 'Menghapus semua karakter tak dapat dicetak dari teks. Gunakan CLEAN pada teks yang diimpor dari aplikasi lain yang berisi karakter yang mungkin tidak tercetak pada sistem operasi Anda. Misalnya, Anda dapat menggunakan CLEAN untuk menghapus suatu kode komputer tingkat rendah yang sering berada di awal dan akhir file data dan tidak dapat dicetak.', + abstract: 'Menghapus semua karakter tak dapat dicetak dari teks. Gunakan CLEAN pada teks yang diimpor dari aplikasi lain yang berisi karakter yang mungkin tidak tercetak pada sistem operasi Anda. Misalnya, Anda dapat menggunakan CLEAN untuk menghapus suatu kode komputer tingkat rendah yang sering berada di awal dan akhir file data dan tidak dapat dicetak.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Informasi lembar kerja yang karakter tak dapat dicetaknya ingin Anda hapus .' }, + }, + }, + CODE: { + description: 'Mengembalikan kode numerik untuk karakter pertama dalam string teks.', + abstract: 'Mengembalikan kode numerik untuk karakter pertama dalam string teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang karakter pertamanya ingin Anda ketahui kodenya.' }, + }, + }, + CONCAT: { + description: 'Fungsi CONCAT menggabungkan teks dari beberapa rentang dan/atau string, tetapi tidak menyediakan argumen pemisah atau IgnoreEmpty.', + abstract: 'Fungsi CONCAT menggabungkan teks dari beberapa rentang dan/atau string, tetapi tidak menyediakan argumen pemisah atau IgnoreEmpty.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Item teks yang akan digabungkan. String, atau larik string, seperti rentang sel.' }, + text2: { name: 'text2', detail: 'Item teks tambahan yang akan digabungkan. Bisa ada maksimum 253 argumen teks untuk item teks. Masing-masing dapat berupa string atau larik string, seperti rentang sel.' }, + }, + }, + CONCATENATE: { + description: 'Gunakan CONCATENATE , salah satu dari fungsi teks , untuk menggabungkan dua atau beberapa string teks menjadi satu string.', + abstract: 'Gunakan CONCATENATE , salah satu dari fungsi teks , untuk menggabungkan dua atau beberapa string teks menjadi satu string.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Item pertama yang akan digabungkan. Item dapat berupa nilai teks, angka, atau referensi sel.' }, + text2: { name: 'text2', detail: 'Item teks tambahan yang akan digabungkan. Anda dapat memiliki hingga 255 item dengan total hingga 8.192 karakter.' }, + }, + }, + DBCS: { + description: 'Fungsi yang diuraikan dalam topik Bantuan ini mengonversi huruf kecil (bit tunggal) di dalam sebuah string karakter menjadi huruf besar (bit ganda). Nama fungsi (dan karakter yang dikonversikan) bergantung pada pengaturan bahasa Anda.', + abstract: 'Fungsi yang diuraikan dalam topik Bantuan ini mengonversi huruf kecil (bit tunggal) di dalam sebuah string karakter menjadi huruf besar (bit ganda). Nama fungsi (dan karakter yang dikonversikan) bergantung pada pengaturan bahasa Anda.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks atau referensi ke sel yang berisi teks yang ingin Anda ubah. Jika teks tidak berisi huruf Latin atau katakana kecil, maka teks tidak berubah.' }, + }, + }, + DOLLAR: { + description: 'Fungsi DOLLAR , salah satu fungsi TEXT , mengonversi angka menjadi teks menggunakan format mata uang, dengan desimal yang dibulatkan ke jumlah tempat yang Anda tentukan. DOLLAR menggunakan $#,##0.00_); ($#,##0.00) format angka, meskipun simbol mata uang yang diterapkan bergantung pada pengaturan bahasa lokal Anda.', + abstract: 'Fungsi DOLLAR , salah satu fungsi TEXT , mengonversi angka menjadi teks menggunakan format mata uang, dengan desimal yang dibulatkan ke jumlah tempat yang Anda tentukan. DOLLAR menggunakan $#,##0.00_); ($#,##0.00) format angka, meskipun simbol mata uang yang diterapkan bergantung pada pengaturan bahasa lokal Anda.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka, atau referensi ke sel berisi angka atau rumus yang mengevaluasi ke sebuah angka.' }, + decimals: { name: 'decimals', detail: 'Opsional. Jumlah digit di sebelah kanan koma desimal. Jika ini negatif, angka dibulatkan ke sebelah kiri koma desimal. Jika Anda menghilangkan desimal, diasumsikan menjadi 2.' }, + }, + }, + EXACT: { + description: 'Membandingkan dua string teks dan akan mengembalikan TRUE jika kedua string itu sama persis, jika tidak akan mengembalikan FALSE. EXACT peka huruf besar kecil tapi mengabaikan perbedaan pemformatan. Gunakan EXACT untuk menguji teks yang dimasukkan ke dalam dokumen.', + abstract: 'Membandingkan dua string teks dan akan mengembalikan TRUE jika kedua string itu sama persis, jika tidak akan mengembalikan FALSE. EXACT peka huruf besar kecil tapi mengabaikan perbedaan pemformatan. Gunakan EXACT untuk menguji teks yang dimasukkan ke dalam dokumen.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Diperlukan. String teks pertama.' }, + text2: { name: 'text2', detail: 'Diperlukan. String teks kedua.' }, + }, + }, + FIND: { + description: 'Menemukan satu nilai teks di dalam nilai teks lain dengan membedakan huruf besar dan kecil.', + abstract: 'Menemukan satu nilai teks di dalam nilai teks lain dengan membedakan huruf besar dan kecil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Teks yang ingin Anda temukan.' }, + withinText: { name: 'within_text', detail: 'Teks yang berisi teks yang ingin Anda temukan.' }, + startNum: { name: 'start_num', detail: 'Menentukan karakter untuk memulai pencarian. Jika start_num dihilangkan, nilainya dianggap 1.' }, + }, + }, + FINDB: { + description: 'Menemukan satu nilai teks di dalam nilai teks lain dengan membedakan huruf besar dan kecil.', + abstract: 'Menemukan satu nilai teks di dalam nilai teks lain dengan membedakan huruf besar dan kecil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Teks yang ingin Anda temukan.' }, + withinText: { name: 'within_text', detail: 'Teks yang berisi teks yang ingin Anda temukan.' }, + startNum: { name: 'start_num', detail: 'Menentukan karakter untuk memulai pencarian. Jika start_num dihilangkan, nilainya dianggap 1.' }, + }, + }, + FIXED: { + description: 'Membulatkan angka ke jumlah desimal yang ditentukan, memformat angka dalam format desimal dengan menggunakan titik dan koma, dan mengembalikan hasil sebagai teks.', + abstract: 'Membulatkan angka ke jumlah desimal yang ditentukan, memformat angka dalam format desimal dengan menggunakan titik dan koma, dan mengembalikan hasil sebagai teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka yang ingin Anda bulatkan dan konversikan menjadi teks.' }, + decimals: { name: 'decimals', detail: 'Opsional. Jumlah digit di sebelah kanan koma desimal.' }, + noCommas: { name: 'no_commas', detail: 'Opsional. Nilai logika yang, jika TRUE, mencegah agar FIXED tidak memasukkan koma ke dalam teks yang dikembalikan.' }, + }, + }, + LEFT: { + description: 'Mengembalikan karakter paling kiri dari nilai teks.', + abstract: 'Mengembalikan karakter paling kiri dari nilai teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + numChars: { name: 'num_chars', detail: 'Menentukan jumlah karakter yang ingin diekstrak LEFT.' }, + }, + }, + LEFTB: { + description: 'Mengembalikan karakter paling kiri dari nilai teks.', + abstract: 'Mengembalikan karakter paling kiri dari nilai teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + numBytes: { name: 'num_bytes', detail: 'Menentukan jumlah karakter yang ingin diekstrak LEFTB berdasarkan byte.' }, + }, + }, + LEN: { + description: 'Mengembalikan jumlah karakter dalam string teks.', + abstract: 'Mengembalikan jumlah karakter dalam string teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang panjangnya ingin Anda temukan. Spasi dihitung sebagai karakter.' }, + }, + }, + LENB: { + description: 'Mengembalikan jumlah byte yang digunakan untuk merepresentasikan karakter dalam string teks.', + abstract: 'Mengembalikan jumlah byte yang digunakan untuk merepresentasikan karakter dalam string teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang panjangnya ingin Anda temukan. Spasi dihitung sebagai karakter.' }, + }, + }, + LOWER: { + description: 'Mengonversi teks menjadi huruf kecil.', + abstract: 'Mengonversi teks menjadi huruf kecil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang ingin Anda konversi menjadi huruf kecil.' }, + }, + }, + MID: { + description: 'Mengembalikan sejumlah karakter tertentu dari string teks mulai dari posisi yang ditentukan.', + abstract: 'Mengembalikan sejumlah karakter tertentu dari string teks mulai dari posisi yang ditentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + startNum: { name: 'start_num', detail: 'Posisi karakter pertama dalam teks yang ingin Anda ekstrak.' }, + numChars: { name: 'num_chars', detail: 'Menentukan jumlah karakter yang ingin diekstrak MID.' }, + }, + }, + MIDB: { + description: 'Mengembalikan sejumlah karakter tertentu dari string teks mulai dari posisi yang ditentukan.', + abstract: 'Mengembalikan sejumlah karakter tertentu dari string teks mulai dari posisi yang ditentukan.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + startNum: { name: 'start_num', detail: 'Posisi karakter pertama dalam teks yang ingin Anda ekstrak.' }, + numBytes: { name: 'num_bytes', detail: 'Menentukan jumlah karakter yang ingin diekstrak MIDB berdasarkan byte.' }, + }, + }, + NUMBERSTRING: { + description: 'Mengonversi angka menjadi string bahasa Mandarin.', + abstract: 'Mengonversi angka menjadi string bahasa Mandarin.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Nilai yang dikonversi menjadi string bahasa Mandarin.' }, + type: { name: 'type', detail: 'Jenis hasil yang dikembalikan. \n1. Huruf kecil bahasa Mandarin \n2. Huruf besar bahasa Mandarin \n3. Karakter Mandarin untuk membaca dan menulis' }, + }, + }, + NUMBERVALUE: { + description: 'Mengonversi teks menjadi angka secara lokal independen.', + abstract: 'Mengonversi teks menjadi angka secara lokal independen.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks yang akan dikonversi menjadi angka.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Opsional. Karakter yang digunakan untuk memisahkan bilangan bulat dan bagian pecahan dari hasil.' }, + groupSeparator: { name: 'group_separator', detail: 'Opsional. Karakter yang digunakan untuk memisahkan pengelompokan angka, seperti ribuan dari ratusan dan jutaan dari ribuan.' }, + }, + }, + PHONETIC: { + description: 'Mengekstrak karakter fonetik (furigana) dari string teks.', + abstract: 'Mengekstrak karakter fonetik (furigana) dari string teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Referensi', detail: 'Diperlukan. String teks atau referensi ke sel tunggal atau rangkaian sel yang berisi string teks furigana.' }, + }, + }, + PROPER: { + description: 'Menjadikan huruf besar untuk huruf pertama dalam string teks dan huruf-huruf lain dalam teks yang mengikuti karakter selain huruf. Mengonversi semua huruf lain menjadi huruf kecil.', + abstract: 'Menjadikan huruf besar untuk huruf pertama dalam string teks dan huruf-huruf lain dalam teks yang mengikuti karakter selain huruf. Mengonversi semua huruf lain menjadi huruf kecil.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks yang berada di dalam tanda kutip, rumus yang mengembalikan teks, atau referensi ke sel yang berisi teks yang sebagiannya ingin Anda jadikan huruf besar.' }, + }, + }, + REGEXEXTRACT: { + description: 'Mengekstrak substring pertama yang cocok berdasarkan ekspresi reguler.', + abstract: 'Mengekstrak substring pertama yang cocok berdasarkan ekspresi reguler.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=id', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks masukan.' }, + regularExpression: { name: 'regular_expression', detail: 'Bagian pertama teks yang cocok dengan ekspresi ini akan dikembalikan.' }, + }, + }, + REGEXMATCH: { + description: 'Menentukan apakah suatu teks cocok dengan ekspresi reguler.', + abstract: 'Menentukan apakah suatu teks cocok dengan ekspresi reguler.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=id', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang akan diuji terhadap ekspresi reguler.' }, + regularExpression: { name: 'regular_expression', detail: 'Ekspresi reguler untuk menguji teks.' }, + }, + }, + REGEXREPLACE: { + description: 'Mengganti bagian dari string teks dengan string teks lain menggunakan ekspresi reguler.', + abstract: 'Mengganti bagian dari string teks dengan string teks lain menggunakan ekspresi reguler.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=id', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang sebagian isinya akan diganti.' }, + regularExpression: { name: 'regular_expression', detail: 'Ekspresi reguler. Semua bagian teks yang cocok akan diganti.' }, + replacement: { name: 'replacement', detail: 'Teks yang akan disisipkan ke dalam teks asli.' }, + }, + }, + REPLACE: { + description: 'Mengganti karakter dalam teks.', + abstract: 'Mengganti karakter dalam teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Teks yang beberapa karakternya ingin Anda ganti.' }, + startNum: { name: 'start_num', detail: 'Posisi karakter dalam old_text yang ingin Anda ganti dengan new_text.' }, + numChars: { name: 'num_chars', detail: 'Jumlah karakter dalam old_text yang ingin diganti REPLACE dengan new_text.' }, + newText: { name: 'new_text', detail: 'Teks yang akan menggantikan karakter dalam old_text.' }, + }, + }, + REPLACEB: { + description: 'Mengganti karakter dalam teks.', + abstract: 'Mengganti karakter dalam teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Teks yang beberapa karakternya ingin Anda ganti.' }, + startNum: { name: 'start_num', detail: 'Posisi karakter dalam old_text yang ingin Anda ganti dengan new_text.' }, + numBytes: { name: 'num_bytes', detail: 'Jumlah byte dalam old_text yang ingin diganti REPLACEB dengan new_text.' }, + newText: { name: 'new_text', detail: 'Teks yang akan menggantikan karakter dalam old_text.' }, + }, + }, + REPT: { + description: 'Mengulang teks sebanyak jumlah tertentu. Gunakan REPT untuk mengisi sel dengan jumlah item string teks.', + abstract: 'Mengulang teks sebanyak jumlah tertentu. Gunakan REPT untuk mengisi sel dengan jumlah item string teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks yang ingin Anda ulang.' }, + numberTimes: { name: 'number_times', detail: 'Diperlukan. Angka positif yang menentukan berapa kali teks diulang.' }, + }, + }, + RIGHT: { + description: 'Mengembalikan karakter paling kanan dari nilai teks.', + abstract: 'Mengembalikan karakter paling kanan dari nilai teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + numChars: { name: 'num_chars', detail: 'Menentukan jumlah karakter yang ingin diekstrak RIGHT.' }, + }, + }, + RIGHTB: { + description: 'Mengembalikan karakter paling kanan dari nilai teks.', + abstract: 'Mengembalikan karakter paling kanan dari nilai teks.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String teks yang berisi karakter yang ingin Anda ekstrak.' }, + numBytes: { name: 'num_bytes', detail: 'Menentukan jumlah karakter yang ingin diekstrak RIGHTB berdasarkan byte.' }, + }, + }, + SEARCH: { + description: 'Menemukan satu nilai teks di dalam nilai teks lain tanpa membedakan huruf besar dan kecil.', + abstract: 'Menemukan satu nilai teks di dalam nilai teks lain tanpa membedakan huruf besar dan kecil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Teks yang ingin Anda temukan.' }, + withinText: { name: 'within_text', detail: 'Teks yang berisi teks yang ingin Anda temukan.' }, + startNum: { name: 'start_num', detail: 'Menentukan karakter untuk memulai pencarian. Jika start_num dihilangkan, nilainya dianggap 1.' }, + }, + }, + SEARCHB: { + description: 'Menemukan satu nilai teks di dalam nilai teks lain tanpa membedakan huruf besar dan kecil.', + abstract: 'Menemukan satu nilai teks di dalam nilai teks lain tanpa membedakan huruf besar dan kecil.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Teks yang ingin Anda temukan.' }, + withinText: { name: 'within_text', detail: 'Teks yang berisi teks yang ingin Anda temukan.' }, + startNum: { name: 'start_num', detail: 'Menentukan karakter untuk memulai pencarian. Jika start_num dihilangkan, nilainya dianggap 1.' }, + }, + }, + SUBSTITUTE: { + description: 'Mengganti old_text dengan new_text di string teks. Gunakan SUBSTITUTE saat Anda ingin mengganti teks tertentu dalam string teks; gunakan REPLACE saat Anda ingin mengganti teks apa pun yang muncul di lokasi tertentu dalam string teks.', + abstract: 'Mengganti old_text dengan new_text di string teks. Gunakan SUBSTITUTE saat Anda ingin mengganti teks tertentu dalam string teks; gunakan REPLACE saat Anda ingin mengganti teks apa pun yang muncul di lokasi tertentu dalam string teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks atau referensi sel berisi teks yang ingin Anda ganti karakternya.' }, + oldText: { name: 'old_text', detail: 'Diperlukan. Teks yang ingin Anda ganti.' }, + newText: { name: 'new_text', detail: 'Diperlukan. Teks yang ingin Anda gunakan untuk mengganti old_text.' }, + instanceNum: { name: 'instance_num', detail: 'Opsional. Menentukan kemunculan old_text yang ingin Anda ganti dengan new_text. Jika Anda menentukan instance_num, hanya old_text itu yang diganti. Jika tidak, setiap kemunculan old_text dalam text diganti ke new_text.' }, + }, + }, + T: { + description: 'Mengembalikan teks yang dirujuk oleh nilai.', + abstract: 'Mengembalikan teks yang dirujuk oleh nilai.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Diperlukan. Nilai yang ingin Anda uji.' }, + }, + }, + TEXT: { + description: 'Fungsi TEXT memungkinkan Anda untuk mengubah cara angka muncul dengan menerapkan pemformatan ke dalamnya dengan kode format . Hal ini bermanfaat ketika Anda ingin menampilkan angka dalam format yang lebih mudah dibaca, atau ketika ingin menggabungkan angka dengan teks atau simbol.', + abstract: 'Fungsi TEXT memungkinkan Anda untuk mengubah cara angka muncul dengan menerapkan pemformatan ke dalamnya dengan kode format . Hal ini bermanfaat ketika Anda ingin menampilkan angka dalam format yang lebih mudah dibaca, atau ketika ingin menggabungkan angka dengan teks atau simbol.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Nilai angka yang ingin Anda konversi menjadi teks.' }, + formatText: { name: 'format_text', detail: 'String teks yang menentukan pemformatan yang ingin diterapkan pada nilai yang diberikan.' }, + }, + }, + TEXTAFTER: { + description: 'Mengembalikan teks yang muncul setelah karakter atau string tertentu. Fungsi ini merupakan kebalikan dari fungsi TEXTBEFORE .', + abstract: 'Mengembalikan teks yang muncul setelah karakter atau string tertentu. Fungsi ini merupakan kebalikan dari fungsi TEXTBEFORE .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks tempat Anda melakukan pencarian. Karakter wildcard tidak diperbolehkan.' }, + delimiter: { name: 'delimiter', detail: 'Teks yang menandai titik setelah teks yang ingin Anda ekstrak.' }, + instanceNum: { name: 'instance_num', detail: 'Kemunculan pemisah setelahnya teks akan diekstrak.' }, + matchMode: { name: 'match_mode', detail: 'Menentukan apakah pencarian teks peka huruf besar/kecil. Default-nya peka huruf besar/kecil.' }, + matchEnd: { name: 'match_end', detail: 'Memperlakukan akhir teks sebagai pemisah. Secara default, teks harus cocok persis.' }, + ifNotFound: { name: 'if_not_found', detail: 'Nilai yang dikembalikan jika tidak ditemukan kecocokan. Secara default, #N/A dikembalikan.' }, + }, + }, + TEXTBEFORE: { + description: 'Mengembalikan teks yang muncul sebelum karakter atau string tertentu. Fungsi ini merupakan kebalikan dari fungsi TEXTAFTER .', + abstract: 'Mengembalikan teks yang muncul sebelum karakter atau string tertentu. Fungsi ini merupakan kebalikan dari fungsi TEXTAFTER .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks tempat Anda melakukan pencarian. Karakter wildcard tidak diperbolehkan.' }, + delimiter: { name: 'delimiter', detail: 'Teks yang menandai titik sebelum teks yang ingin Anda ekstrak.' }, + instanceNum: { name: 'instance_num', detail: 'Kemunculan pemisah sebelumnya teks akan diekstrak.' }, + matchMode: { name: 'match_mode', detail: 'Menentukan apakah pencarian teks peka huruf besar/kecil. Default-nya peka huruf besar/kecil.' }, + matchEnd: { name: 'match_end', detail: 'Memperlakukan awal teks sebagai pemisah. Secara default, teks harus cocok persis.' }, + ifNotFound: { name: 'if_not_found', detail: 'Nilai yang dikembalikan jika tidak ditemukan kecocokan. Secara default, #N/A dikembalikan.' }, + }, + }, + TEXTJOIN: { + description: 'Fungsi TEXTJOIN menggabungkan teks dari beberapa rentang dan/atau string, serta menyertakan pemisah yang Anda tentukan antara tiap nilai teks yang akan digabungkan. Jika pemisah adalah string teks kosong, fungsi ini akan secara efektif menggabungkan rentang.', + abstract: 'Fungsi TEXTJOIN menggabungkan teks dari beberapa rentang dan/atau string, serta menyertakan pemisah yang Anda tentukan antara tiap nilai teks yang akan digabungkan. Jika pemisah adalah string teks kosong, fungsi ini akan secara efektif menggabungkan rentang.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/id-id/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'String teks, salah satu kosong, atau satu atau beberapa karakter diapit oleh tanda kutip ganda, atau referensi ke sebuah string teks yang valid. Jika angka dimasukkan, maka akan dianggap sebagai teks.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Jika TRUE, sel kosong diabaikan.' }, + text1: { name: 'text1', detail: 'Item teks yang digabungkan. String teks, atau larik string, seperti rentang sel.' }, + text2: { name: 'text2', detail: 'Item teks tambahan untuk digabungkan. Bisa ada maksimum 252 argumen teks untuk item teks, termasuk text1 . Setiap argumen dapat berupa string teks, atau larik string, seperti rentang sel.' }, + }, + }, + TEXTSPLIT: { + description: 'Fungsi TEXTSPLIT berfungsi sama seperti Wizard Teks-ke-Kolom , tetapi dalam bentuk rumus. Fungsi ini memungkinkan Anda memisahkan menurut kolom atau ke bawah menurut baris. Ini adalah kebalikan dari fungsi TEXTJOIN .', + abstract: 'Fungsi TEXTSPLIT berfungsi sama seperti Wizard Teks-ke-Kolom , tetapi dalam bentuk rumus. Fungsi ini memungkinkan Anda memisahkan menurut kolom atau ke bawah menurut baris. Ini adalah kebalikan dari fungsi TEXTJOIN .', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang ingin Anda pisahkan. Diperlukan.' }, + colDelimiter: { name: 'col_delimiter', detail: 'Teks yang menandai titik tempat untuk menumpahkan teks di seluruh kolom.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'Teks yang menandai titik tempat untuk menumpahkan teks ke bawah baris. Opsional.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Tentukan TRUE untuk mengabaikan pemisah berurutan. Default ke FALSE, yang membuat sel kosong. Opsional.' }, + matchMode: { name: 'match_mode', detail: 'Tentukan 1 untuk melakukan kecocokan yang tidak peka huruf besar kecil. Default ke 0, yang melakukan kecocokan peka huruf besar kecil. Opsional.' }, + padWith: { name: 'pad_with', detail: 'Nilai untuk mengalihkan hasil. Defaultnya adalah #N/A.' }, + }, + }, + TRIM: { + description: 'Menghapus semua spasi dari teks kecuali spasi tunggal di antara kata. Gunakan TRIM pada teks yang Anda terima dari aplikasi lain yang mungkin memiliki penspasian tak tentu.', + abstract: 'Menghapus semua spasi dari teks kecuali spasi tunggal di antara kata. Gunakan TRIM pada teks yang Anda terima dari aplikasi lain yang mungkin memiliki penspasian tak tentu.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Teks yang ingin Anda hapus spasinya. Teks harus dimuat dalam tanda petik.' }, + }, + }, + UNICHAR: { + description: 'Mengembalikan karakter Unicode yang dirujuk oleh nilai numerik yang diberikan.', + abstract: 'Mengembalikan karakter Unicode yang dirujuk oleh nilai numerik yang diberikan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Diperlukan. Angka adalah angka Unicode yang menyatakan karakter tersebut.' }, + }, + }, + UNICODE: { + description: 'Mengembalikan angka (titik kode) yang terkait dengan karakter pertama dari teks.', + abstract: 'Mengembalikan angka (titik kode) yang terkait dengan karakter pertama dari teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks adalah karakter yang Anda inginkan nilai Unicode-nya.' }, + }, + }, + UPPER: { + description: 'Mengonversi teks menjadi huruf besar.', + abstract: 'Mengonversi teks menjadi huruf besar.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks yang ingin Anda konversi ke huruf besar. Teks dapat berupa referensi atau string teks.' }, + }, + }, + VALUE: { + description: 'Mengonversi string teks yang menyatakan angka menjadi angka.', + abstract: 'Mengonversi string teks yang menyatakan angka menjadi angka.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Diperlukan. Teks dalam tanda kutip atau referensi ke sel yang berisi teks yang akan dikonversi.' }, + }, + }, + VALUETOTEXT: { + description: 'Fungsi VALUETOTEXT mengembalikan teks dari nilai tertentu. Ini melewati nilai teks tidak berubah, dan mengonversi nilai non-teks menjadi teks.', + abstract: 'Fungsi VALUETOTEXT mengembalikan teks dari nilai tertentu. Ini melewati nilai teks tidak berubah, dan mengonversi nilai non-teks menjadi teks.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Nilai untuk dikembalikan sebagai teks. Diperlukan.' }, + format: { name: 'format', detail: 'Format data yang dikembalikan. Opsional. Ini bisa menjadi salah satu dari dua nilai: 0 Default. Format ringkas yang mudah dibaca. Teks yang dikembalikan akan sama seperti teks yang disajikan dalam sel yang memiliki pemformatan umum yang diterapkan. 1 Format ketat yang menyertakan karakter escape dan pemisah baris. Menghasilkan string yang dapat diurai ketika dimasukkan ke bilah rumus. Enkapsulasi mengembalikan string dalam tanda petik kecuali untuk Boolean, Angka, dan Kesalahan.' }, + }, + }, + CALL: { + description: 'Memanggil prosedur dalam pustaka link dinamis atau sumber daya kode. Terdapat dua bentuk sintaks fungsi ini. Gunakan sintaks 1 hanya dengan sumber daya kode yang terdaftar sebelumnya, yang menggunakan argumen dari fungsi REGISTER. Gunakan sintaks 2a atau 2b pada daftar secara bersamaan dan memanggil sumber daya kode.', + abstract: 'Memanggil prosedur dalam pustaka link dinamis atau sumber daya kode. Terdapat dua bentuk sintaks fungsi ini. Gunakan sintaks 1 hanya dengan sumber daya kode yang terdaftar sebelumnya, yang menggunakan argumen dari fungsi REGISTER. Gunakan sintaks 2a atau 2b pada daftar secara bersamaan dan memanggil sumber daya kode.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Diperlukan. Teks kutipan yang menentukan nama pustaka link dinamis (DLL) yang berisi prosedur di Microsoft Excel untuk Windows.' }, + procedure: { name: 'Prosedur', detail: 'Diperlukan. Teks yang menentukan nama fungsi dalam DLL di Microsoft Excel untuk Windows. Anda juga dapat menggunakan nilai ordinal fungsi dari pernyataan EXPORTS dalam file definisi modul (.DEF). Nilai ordinal harus dalam bentuk teks.' }, + typeText: { name: 'Type_text', detail: 'Diperlukan. Teks yang menyatakan tipe data dari nilai yang dikembalikan dan tipe data dari semua argumen pada DLL atau sumber daya kode. Huruf pertama type_text menyatakan nilai yang dikembalikan. Kode yang Anda gunakan untuk type_text diuraikan secara detail dalam Penggunaan fungsi CALL dan REGISTER . Untuk DLL atau sumber daya kode (XLL) yang berdiri sendiri, Anda dapat menghapus argumen ini.' }, + argument1: { name: 'Argumen1,...', detail: 'Opsional. Argumen yang akan dikirim ke prosedur.' }, + }, + }, + EUROCONVERT: { + description: 'Mengonversi angka ke euro, mengonversi angka dari euro ke mata uang anggota euro, atau mengonversi angka dari satu mata uang anggota euro ke mata uang lain dengan menggunakan euro sebagai perantara (triangulasi). Mata uang yang tersedia untuk dikonversi adalah mata uang negara-negara anggota Uni Eropa (UE) yang telah mengadopsi euro. Fungsi ini menggunakan nilai konversi tetap yang dibuat oleh UE.', + abstract: 'Mengonversi angka ke euro, mengonversi angka dari euro ke mata uang anggota euro, atau mengonversi angka dari satu mata uang anggota euro ke mata uang lain dengan menggunakan euro sebagai perantara (triangulasi). Mata uang yang tersedia untuk dikonversi adalah mata uang negara-negara anggota Uni Eropa (UE) yang telah mengadopsi euro. Fungsi ini menggunakan nilai konversi tetap yang dibuat oleh UE.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Angka', detail: 'Diperlukan. Nilai mata uang yang ingin Anda konversi, atau referensi ke sebuah sel yang berisi nilai tersebut.' }, + source: { name: 'Sumber', detail: 'Diperlukan. String tiga huruf, atau referensi ke sel yang berisi string tersebut, yang terkait kode ISO untuk mata uang sumber. Kode mata uang berikut tersedia dalam fungsi EUROCONVERT:' }, + target: { name: 'Target', detail: 'Diperlukan. String tiga huruf, atau referensi sel, yang terkait dengan kode ISO mata uang hasil konversi angka. Lihat tabel Sumber sebelumnya untuk melihat kode ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'Diperlukan. Sebuah nilai logika (TRUE atau FALSE), atau ekspresi yang mengevaluasi sebuah nilai sebagai TRUE atau FALSE, yang menentukan cara menampilkan hasilnya.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Diperlukan. Sebuah bilangan bulat sama dengan atau lebih dari 3 yang menentukan jumlah digit signifikan yang akan digunakan untuk nilai euro langsung ketika mengonversi antara dua mata uang anggota euro. Jika Anda menghilangkan argumen ini, Excel tidak membulatkan nilai euro perantara tersebut. Jika Anda memasukkan argumen ini ketika mengonversi dari suatu mata uang anggota euro ke euro, Excel menghitung nilai euro perantara yang kemudian dapat dikonversi ke mata uang anggota euro.' }, + }, + }, + REGISTER_ID: { + description: 'Mengembalikan ID pendaftaran dari pustaka link dinamis (DLL, Dynamic Link Library) yang ditentukan atau sumber daya kode yang telah didaftarkan sebelumnya. Jika DLL atau sumber daya kode belum didaftarkan, fungsi ini mendaftarkan DLL atau sumber daya kode lalu mengembalikan ID pendaftaran.', + abstract: 'Mengembalikan ID pendaftaran dari pustaka link dinamis (DLL, Dynamic Link Library) yang ditentukan atau sumber daya kode yang telah didaftarkan sebelumnya. Jika DLL atau sumber daya kode belum didaftarkan, fungsi ini mendaftarkan DLL atau sumber daya kode lalu mengembalikan ID pendaftaran.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Diperlukan. Teks yang menyatakan nama DLL yang memuat fungsi dalam Microsoft Excel untuk Windows.' }, + procedure: { name: 'Prosedur', detail: 'Diperlukan. Teks yang menentukan nama fungsi dalam DLL di Microsoft Excel untuk Windows. Anda juga dapat menggunakan nilai ordinal fungsi dari pernyataan EXPORTS dalam file definisi modul (.DEF). Nilai ordinal atau nomor ID sumber daya tidak boleh dalam bentuk teks.' }, + typeText: { name: 'Type_text', detail: 'Opsional. Teks yang menyatakan tipe data nilai yang dikembalikan dan tipe data semua argumen ke DLL. Huruf pertama type_text menyatakan nilai yang dikembalikan. Jika fungsi atau sumber daya kode sudah didaftarkan, Anda dapat menghilangkan argumen ini.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/it-IT.ts b/packages/sheets-formula/src/locale/function-list/text/it-IT.ts new file mode 100644 index 0000000000..80329cb374 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/it-IT.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'Nelle lingue che utilizzano set di caratteri a byte doppio (DBCS, Double-Byte Character Set), la funzione converte i caratteri latini a byte doppio (DB, Double-Byte) in caratteri a byte singolo (SB, Single-Byte).', + abstract: 'Nelle lingue che utilizzano set di caratteri a byte doppio (DBCS, Double-Byte Character Set), la funzione converte i caratteri latini a byte doppio (DB, Double-Byte) in caratteri a byte singolo (SB, Single-Byte).', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo o riferimento a una cella che contiene il testo che si desidera modificare. Se il testo non contiene caratteri a byte doppio, non verrà modificato.' }, + }, + }, + ARRAYTOTEXT: { + description: 'La funzione MATRICE.A.TESTO restituisce una matrice di valori di testo da qualsiasi intervallo specificato. Passa i valori testuali invariati e converte i valori non testuali in testo.', + abstract: 'La funzione MATRICE.A.TESTO restituisce una matrice di valori di testo da qualsiasi intervallo specificato. Passa i valori testuali invariati e converte i valori non testuali in testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Matrice da restituire come testo. Obbligatorio.' }, + format: { name: 'format', detail: 'Il formato dei dati restituiti. Facoltativo. Può essere uno dei due valori seguenti: 0 Impostazione predefinita. Formato conciso semplice da leggere. Il testo restituito sarà uguale al testo visualizzato in una cella a cui è applicata la formattazione generale. 1 Formato Strict che include caratteri di escape e delimitatori di riga. Genera una stringa che può essere analizzata quando viene immessa nella barra della formula. Incapsula le stringhe restituite tra virgolette, esclusi valori booleani, numeri ed errori.' }, + }, + }, + BAHTTEXT: { + description: 'Converte un numero in testo Thai e aggiunge il suffisso "Baht".', + abstract: 'Converte un numero in testo Thai e aggiunge il suffisso "Baht".', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero che si desidera convertire in testo, riferimento a una cella contenente un numero o formula che restituisce un numero.' }, + }, + }, + CHAR: { + description: 'Restituisce il carattere specificato da un numero. Utilizzare CODICE.CARATT per convertire in caratteri i numeri della tabella codici eventualmente ottenuti da file residenti in altri tipi di computer.', + abstract: 'Restituisce il carattere specificato da un numero. Utilizzare CODICE.CARATT per convertire in caratteri i numeri della tabella codici eventualmente ottenuti da file residenti in altri tipi di computer.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero compreso tra 1 e 255 che specifica il carattere desiderato. Il carattere fa parte del set di caratteri utilizzato dal computer. Nota Excel per il Web supporta solo CODICE.CARATT(9), CODICE.CARATT(10), CODICE.CARATT(13) e CODICE.CARATT(32) e versioni successive.' }, + }, + }, + CLEAN: { + description: 'Rimuove dal testo tutti i caratteri che non possono essere stampati. Applicare la funzione LIBERA a un testo importato da altre applicazioni contenente caratteri che potrebbero non essere stampati tramite il sistema operativo in uso. È possibile, ad esempio, utilizzare LIBERA per rimuovere codici a basso livello che si trovano di frequente all\'inizio e alla fine dei file di dati e che non possono essere stampati.', + abstract: 'Rimuove dal testo tutti i caratteri che non possono essere stampati. Applicare la funzione LIBERA a un testo importato da altre applicazioni contenente caratteri che potrebbero non essere stampati tramite il sistema operativo in uso. È possibile, ad esempio, utilizzare LIBERA per rimuovere codici a basso livello che si trovano di frequente all\'inizio e alla fine dei file di dati e che non possono essere stampati.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Qualsiasi informazione del foglio di lavoro dalla quale si desidera rimuovere i caratteri che non possono essere stampati.' }, + }, + }, + CODE: { + description: 'Restituisce un codice numerico per il primo carattere di una stringa di testo. Il codice restituito corrisponde al set di caratteri utilizzato dal computer.', + abstract: 'Restituisce un codice numerico per il primo carattere di una stringa di testo. Il codice restituito corrisponde al set di caratteri utilizzato dal computer.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo di cui si desidera il codice del primo carattere.' }, + }, + }, + CONCAT: { + description: 'La funzione CONCAT combina il testo di più intervalli e/o stringhe, ma non fornisce delimitatore o argomenti IgnoraEmpty.', + abstract: 'La funzione CONCAT combina il testo di più intervalli e/o stringhe, ma non fornisce delimitatore o argomenti IgnoraEmpty.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'L\'elemento di testo da unire. Una stringa o una matrice di stringhe, ad esempio un intervallo di celle.' }, + text2: { name: 'text2', detail: 'Altri elementi di testo da unire. Per gli elementi di testo è possibile usare un massimo di 253 argomenti di testo. Ognuno può essere una stringa o una matrice di stringhe, ad esempio un intervallo di celle.' }, + }, + }, + CONCATENATE: { + description: 'Usare CONCATENA , una delle funzioni di testo , per unire due o più stringhe di testo in una sola stringa.', + abstract: 'Usare CONCATENA , una delle funzioni di testo , per unire due o più stringhe di testo in una sola stringa.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Primo elemento da unire. Può essere testo, numero o riferimento di cella.' }, + text2: { name: 'text2', detail: 'Elementi di testo aggiuntivi da unire. Sono consentiti fino a 255 elementi, per un totale massimo di 8.192 caratteri.' }, + }, + }, + DBCS: { + description: 'La funzione descritta in questo argomento della Guida converte i caratteri ridotti (a singolo byte) di una stringa di caratteri in caratteri interi (a doppio byte). Il nome della funzione e i caratteri oggetto della conversione dipendono dalle impostazioni della lingua.', + abstract: 'La funzione descritta in questo argomento della Guida converte i caratteri ridotti (a singolo byte) di una stringa di caratteri in caratteri interi (a doppio byte). Il nome della funzione e i caratteri oggetto della conversione dipendono dalle impostazioni della lingua.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo o riferimento a una cella contenente il testo da modificare. Se il testo non contiene caratteri latini o katakana a byte singolo, non verrà modificato.' }, + }, + }, + DOLLAR: { + description: 'La funzione VALUTA , una delle funzioni TESTO , converte un numero in testo usando il formato valuta, con i decimali arrotondati al numero di posizioni specificato. VALUTA usa il valore $#.##0,00_); Formato numero ($#,##0,00), anche se il simbolo di valuta applicato dipende dalle impostazioni della lingua locale.', + abstract: 'La funzione VALUTA , una delle funzioni TESTO , converte un numero in testo usando il formato valuta, con i decimali arrotondati al numero di posizioni specificato. VALUTA usa il valore $#.##0,00_); Formato numero ($#,##0,00), anche se il simbolo di valuta applicato dipende dalle impostazioni della lingua locale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero, riferimento a una cella che contiene un numero oppure formula che restituisce un numero.' }, + decimals: { name: 'decimals', detail: 'Opzionale. Numero di cifre a destra della virgola decimale. Se questo valore è negativo, il numero viene arrotondato a sinistra della virgola decimale. Se decimali è omesso, verrà considerato uguale a 2.' }, + }, + }, + EXACT: { + description: 'Confronta due stringhe di testo e restituisce VERO se le stringhe sono identiche e FALSO in caso contrario. IDENTICO rileva le maiuscole, ma ignora le differenze di formattazione. Utilizzare la funzione IDENTICO per esaminare il testo immesso in un documento.', + abstract: 'Confronta due stringhe di testo e restituisce VERO se le stringhe sono identiche e FALSO in caso contrario. IDENTICO rileva le maiuscole, ma ignora le differenze di formattazione. Utilizzare la funzione IDENTICO per esaminare il testo immesso in un documento.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Obbligatorio. Prima stringa di testo.' }, + text2: { name: 'text2', detail: 'Obbligatorio. Seconda stringa di testo.' }, + }, + }, + FIND: { + description: 'Trova un valore di testo all\'interno di un altro (con distinzione tra maiuscole e minuscole).', + abstract: 'Trova un valore di testo all\'interno di un altro (con distinzione tra maiuscole e minuscole).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Testo che si desidera trovare.' }, + withinText: { name: 'within_text', detail: 'Testo che contiene il testo da trovare.' }, + startNum: { name: 'start_num', detail: 'Specifica il carattere da cui iniziare la ricerca. Se omesso, è considerato 1.' }, + }, + }, + FINDB: { + description: 'Trova un valore di testo all\'interno di un altro (con distinzione tra maiuscole e minuscole).', + abstract: 'Trova un valore di testo all\'interno di un altro (con distinzione tra maiuscole e minuscole).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Testo che si desidera trovare.' }, + withinText: { name: 'within_text', detail: 'Testo che contiene il testo da trovare.' }, + startNum: { name: 'start_num', detail: 'Specifica il carattere da cui iniziare la ricerca. Se omesso, è considerato 1.' }, + }, + }, + FIXED: { + description: 'Arrotonda un numero al numero specificato di decimali, formattandolo con i separatori delle migliaia e la virgola decimale, e restituisce il risultato in forma di testo.', + abstract: 'Arrotonda un numero al numero specificato di decimali, formattandolo con i separatori delle migliaia e la virgola decimale, e restituisce il risultato in forma di testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Numero che si desidera arrotondare e convertire in testo.' }, + decimals: { name: 'decimals', detail: 'Opzionale. Numero di cifre a destra della virgola decimale.' }, + noCommas: { name: 'no_commas', detail: 'Opzionale. Un valore logico che, se VERO, non consente a FISSO di includere i separatori delle migliaia nel testo restituito.' }, + }, + }, + LEFT: { + description: 'Restituisce i caratteri più a sinistra di un valore di testo.', + abstract: 'Restituisce i caratteri più a sinistra di un valore di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + numChars: { name: 'num_chars', detail: 'Specifica il numero di caratteri che SINISTRA deve estrarre.' }, + }, + }, + LEFTB: { + description: 'Restituisce i caratteri più a sinistra di un valore di testo.', + abstract: 'Restituisce i caratteri più a sinistra di un valore di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + numBytes: { name: 'num_bytes', detail: 'Specifica il numero di caratteri che SINISTRA.B deve estrarre, in base ai byte.' }, + }, + }, + LEN: { + description: 'Restituisce il numero di caratteri in una stringa di testo.', + abstract: 'Restituisce il numero di caratteri in una stringa di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo di cui si desidera trovare la lunghezza. Gli spazi contano come caratteri.' }, + }, + }, + LENB: { + description: 'Restituisce il numero di byte usati per rappresentare i caratteri in una stringa di testo.', + abstract: 'Restituisce il numero di byte usati per rappresentare i caratteri in una stringa di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo di cui si desidera trovare la lunghezza. Gli spazi contano come caratteri.' }, + }, + }, + LOWER: { + description: 'Converte in minuscolo tutte le lettere maiuscole contenute in una stringa di testo.', + abstract: 'Converte in minuscolo tutte le lettere maiuscole contenute in una stringa di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo che si desidera convertire in minuscolo. La funzione MINUSC modifica solo le lettere presenti nel testo e non altri tipi di carattere.' }, + }, + }, + MID: { + description: 'Restituisce un numero specificato di caratteri da una stringa di testo, a partire dalla posizione indicata.', + abstract: 'Restituisce un numero specificato di caratteri da una stringa di testo, a partire dalla posizione indicata.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + startNum: { name: 'start_num', detail: 'Posizione, nel testo, del primo carattere da estrarre.' }, + numChars: { name: 'num_chars', detail: 'Specifica il numero di caratteri che STRINGA.ESTRAI deve estrarre.' }, + }, + }, + MIDB: { + description: 'Restituisce un numero specificato di caratteri da una stringa di testo, a partire dalla posizione indicata.', + abstract: 'Restituisce un numero specificato di caratteri da una stringa di testo, a partire dalla posizione indicata.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + startNum: { name: 'start_num', detail: 'Posizione, nel testo, del primo carattere da estrarre.' }, + numBytes: { name: 'num_bytes', detail: 'Specifica il numero di caratteri che STRINGA.ESTRAI.B deve estrarre, in base ai byte.' }, + }, + }, + NUMBERSTRING: { + description: 'Converte i numeri in stringhe cinesi.', + abstract: 'Converte i numeri in stringhe cinesi.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Valore convertito in una stringa cinese.' }, + type: { name: 'type', detail: 'Tipo di risultato restituito: 1, cinese minuscolo; 2, cinese maiuscolo; 3, caratteri cinesi di lettura e scrittura.' }, + }, + }, + NUMBERVALUE: { + description: 'Converte il testo in numero in modo indipendente dalle impostazioni locali.', + abstract: 'Converte il testo in numero in modo indipendente dalle impostazioni locali.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo da convertire in numero.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Opzionale. Carattere usato per separare la parte intera e frazionaria del risultato.' }, + groupSeparator: { name: 'group_separator', detail: 'Opzionale. Carattere usato per separare i raggruppamenti di numeri, come le migliaia dalla centinaia e i milioni dalle migliaia.' }, + }, + }, + PHONETIC: { + description: 'Estrae i caratteri fonetici (furigana) da una stringa di testo.', + abstract: 'Estrae i caratteri fonetici (furigana) da una stringa di testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Riferimento', detail: 'Obbligatorio. Stringa di testo o riferimento a una singola cella o a un intervallo di celle contenenti una stringa di testo furigana.' }, + }, + }, + PROPER: { + description: 'Converte in maiuscolo la prima lettera di una stringa di testo e tutte le altre lettere che seguono un qualsiasi carattere diverso da una lettera. Le rimanenti lettere vengono convertite in minuscolo.', + abstract: 'Converte in maiuscolo la prima lettera di una stringa di testo e tutte le altre lettere che seguono un qualsiasi carattere diverso da una lettera. Le rimanenti lettere vengono convertite in minuscolo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo racchiuso tra virgolette, formula che restituisce del testo o riferimento a una cella contenente del testo che si desidera convertire parzialmente in maiuscolo.' }, + }, + }, + REGEXEXTRACT: { + description: 'Estrae la prima sottostringa che corrisponde a un\'espressione regolare.', + abstract: 'Estrae la prima sottostringa che corrisponde a un\'espressione regolare.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=it', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo di input.' }, + regularExpression: { name: 'regular_expression', detail: 'Viene restituita la prima parte del testo che corrisponde a questa espressione.' }, + }, + }, + REGEXMATCH: { + description: 'Indica se un testo corrisponde a un\'espressione regolare.', + abstract: 'Indica se un testo corrisponde a un\'espressione regolare.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=it', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo da verificare rispetto all\'espressione regolare.' }, + regularExpression: { name: 'regular_expression', detail: 'Espressione regolare con cui verificare il testo.' }, + }, + }, + REGEXREPLACE: { + description: 'Sostituisce una parte di una stringa di testo con un\'altra stringa usando espressioni regolari.', + abstract: 'Sostituisce una parte di una stringa di testo con un\'altra stringa usando espressioni regolari.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=it', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo di cui verrà sostituita una parte.' }, + regularExpression: { name: 'regular_expression', detail: 'Espressione regolare. Tutte le occorrenze corrispondenti nel testo verranno sostituite.' }, + replacement: { name: 'replacement', detail: 'Testo che verrà inserito nel testo originale.' }, + }, + }, + REPLACE: { + description: 'Sostituisce caratteri all\'interno di un testo.', + abstract: 'Sostituisce caratteri all\'interno di un testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Testo in cui si desidera sostituire alcuni caratteri.' }, + startNum: { name: 'start_num', detail: 'Posizione in old_text del carattere che si desidera sostituire con new_text.' }, + numChars: { name: 'num_chars', detail: 'Numero di caratteri in old_text che SOSTITUISCI deve sostituire con new_text.' }, + newText: { name: 'new_text', detail: 'Testo che sostituirà i caratteri in old_text.' }, + }, + }, + REPLACEB: { + description: 'Sostituisce caratteri all\'interno di un testo.', + abstract: 'Sostituisce caratteri all\'interno di un testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Testo in cui si desidera sostituire alcuni caratteri.' }, + startNum: { name: 'start_num', detail: 'Posizione in old_text del carattere che si desidera sostituire con new_text.' }, + numBytes: { name: 'num_bytes', detail: 'Numero di byte in old_text che SOSTITUISCI.B deve sostituire con new_text.' }, + newText: { name: 'new_text', detail: 'Testo che sostituirà i caratteri in old_text.' }, + }, + }, + REPT: { + description: 'Ripete un testo per il numero di volte specificato. Utilizzare la funzione RIPETI per riempire una cella con una stringa di testo ripetuta più volte.', + abstract: 'Ripete un testo per il numero di volte specificato. Utilizzare la funzione RIPETI per riempire una cella con una stringa di testo ripetuta più volte.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo che si desidera ripetere.' }, + numberTimes: { name: 'number_times', detail: 'Obbligatorio. Numero positivo che specifica il numero di volte che si desidera ripetere il testo.' }, + }, + }, + RIGHT: { + description: 'Restituisce i caratteri più a destra di un valore di testo.', + abstract: 'Restituisce i caratteri più a destra di un valore di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + numChars: { name: 'num_chars', detail: 'Specifica il numero di caratteri che DESTRA deve estrarre.' }, + }, + }, + RIGHTB: { + description: 'Restituisce i caratteri più a destra di un valore di testo.', + abstract: 'Restituisce i caratteri più a destra di un valore di testo.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa di testo contenente i caratteri da estrarre.' }, + numBytes: { name: 'num_bytes', detail: 'Specifica il numero di caratteri che DESTRA.B deve estrarre, in base ai byte.' }, + }, + }, + SEARCH: { + description: 'Trova un valore di testo all\'interno di un altro (senza distinzione tra maiuscole e minuscole).', + abstract: 'Trova un valore di testo all\'interno di un altro (senza distinzione tra maiuscole e minuscole).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Testo che si desidera trovare.' }, + withinText: { name: 'within_text', detail: 'Testo che contiene il testo da trovare.' }, + startNum: { name: 'start_num', detail: 'Specifica il carattere da cui iniziare la ricerca. Se omesso, è considerato 1.' }, + }, + }, + SEARCHB: { + description: 'Trova un valore di testo all\'interno di un altro (senza distinzione tra maiuscole e minuscole).', + abstract: 'Trova un valore di testo all\'interno di un altro (senza distinzione tra maiuscole e minuscole).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Testo che si desidera trovare.' }, + withinText: { name: 'within_text', detail: 'Testo che contiene il testo da trovare.' }, + startNum: { name: 'start_num', detail: 'Specifica il carattere da cui iniziare la ricerca. Se omesso, è considerato 1.' }, + }, + }, + SUBSTITUTE: { + description: 'Sostituisce new_text a old_text in una stringa di testo. Usare SOSTITUISCI quando si vuole sostituire testo specifico in una stringa di testo; usare SOSTITUISCI quando si vuole sostituire il testo presente in una posizione specifica di una stringa di testo.', + abstract: 'Sostituisce new_text a old_text in una stringa di testo. Usare SOSTITUISCI quando si vuole sostituire testo specifico in una stringa di testo; usare SOSTITUISCI quando si vuole sostituire il testo presente in una posizione specifica di una stringa di testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo o riferimento a una cella contenente testo di cui si desidera sostituire i caratteri.' }, + oldText: { name: 'old_text', detail: 'Obbligatorio. Testo che si desidera sostituire.' }, + newText: { name: 'new_text', detail: 'Obbligatorio. Testo che si desidera sostituire a testo_prec.' }, + instanceNum: { name: 'instance_num', detail: 'Opzionale. Occorrenza di testo_prec che si desidera sostituire con nuovo_testo. Se occorrenza viene specificata, verrà sostituita solo l\'istanza di testo_prec specificata. In caso contrario, tutte le occorrenze di testo_prec contenute in testo verranno sostituite con nuovo_testo.' }, + }, + }, + T: { + description: 'Restituisce il testo a cui si riferisce val.', + abstract: 'Restituisce il testo a cui si riferisce val.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Obbligatorio. Valore che si desidera esaminare.' }, + }, + }, + TEXT: { + description: 'La funzione TESTO permette di modificare il modo di visualizzare un numero tramite l\'applicazione di formattazione con codici formato . È una funzione utile in situazioni in cui si vuole visualizzare i numeri in un formato più leggibile o combinarli con testo o simboli.', + abstract: 'La funzione TESTO permette di modificare il modo di visualizzare un numero tramite l\'applicazione di formattazione con codici formato . È una funzione utile in situazioni in cui si vuole visualizzare i numeri in un formato più leggibile o combinarli con testo o simboli.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Valore numerico da convertire in testo.' }, + formatText: { name: 'format_text', detail: 'Stringa di testo che definisce la formattazione da applicare al valore fornito.' }, + }, + }, + TEXTAFTER: { + description: 'Restituisce il testo che si verifica dopo il carattere o la stringa specificata. È l\'opposto della funzione TESTO.DOPO .', + abstract: 'Restituisce il testo che si verifica dopo il carattere o la stringa specificata. È l\'opposto della funzione TESTO.DOPO .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo in cui effettuare la ricerca. I caratteri jolly non sono consentiti.' }, + delimiter: { name: 'delimiter', detail: 'Testo che indica il punto dopo il quale si desidera estrarre.' }, + instanceNum: { name: 'instance_num', detail: 'Occorrenza del delimitatore dopo la quale si desidera estrarre il testo.' }, + matchMode: { name: 'match_mode', detail: 'Determina se la ricerca distingue tra maiuscole e minuscole. Per impostazione predefinita, la distinzione è attiva.' }, + matchEnd: { name: 'match_end', detail: 'Tratta la fine del testo come delimitatore. Per impostazione predefinita, il testo deve corrispondere esattamente.' }, + ifNotFound: { name: 'if_not_found', detail: 'Valore restituito se non viene trovata alcuna corrispondenza. Per impostazione predefinita viene restituito #N/D.' }, + }, + }, + TEXTBEFORE: { + description: 'Restituisce il testo che si verifica prima di un carattere o di una stringa specificata. È l\'opposto della funzione TESTO.DOPO .', + abstract: 'Restituisce il testo che si verifica prima di un carattere o di una stringa specificata. È l\'opposto della funzione TESTO.DOPO .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/it-it/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo in cui effettuare la ricerca. I caratteri jolly non sono consentiti.' }, + delimiter: { name: 'delimiter', detail: 'Testo che indica il punto prima del quale si desidera estrarre.' }, + instanceNum: { name: 'instance_num', detail: 'Occorrenza del delimitatore prima della quale si desidera estrarre il testo.' }, + matchMode: { name: 'match_mode', detail: 'Determina se la ricerca distingue tra maiuscole e minuscole. Per impostazione predefinita, la distinzione è attiva.' }, + matchEnd: { name: 'match_end', detail: 'Tratta la fine del testo come delimitatore. Per impostazione predefinita, il testo deve corrispondere esattamente.' }, + ifNotFound: { name: 'if_not_found', detail: 'Valore restituito se non viene trovata alcuna corrispondenza. Per impostazione predefinita viene restituito #N/D.' }, + }, + }, + TEXTJOIN: { + description: 'La funzione TESTO.UNISCI combina il testo di più intervalli e/o stringhe e include un delimitatore specificato dall\'utente tra ogni valore di testo da unire. Se il delimitatore è una stringa di testo vuota, la funzione concatena correttamente gli intervalli.', + abstract: 'La funzione TESTO.UNISCI combina il testo di più intervalli e/o stringhe e include un delimitatore specificato dall\'utente tra ogni valore di testo da unire. Se il delimitatore è una stringa di testo vuota, la funzione concatena correttamente gli intervalli.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'Stringa di testo, vuota o costituita da uno o più caratteri racchiusi tra virgolette doppie oppure riferimento a una stringa di testo valida. Se si specifica un numero, viene trattato come testo.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Se VERO, ignora le celle vuote.' }, + text1: { name: 'text1', detail: 'L\'elemento di testo da unire. Una stringa di testo o una matrice di stringhe, ad esempio un intervallo di celle.' }, + text2: { name: 'text2', detail: 'Altri elementi di testo da unire. Per gli elementi di testo è possibile usare un massimo di 252 argomenti di testo, incluso testo1 . Ognuno può essere una stringa di testo o una matrice di stringhe, come un intervallo di celle.' }, + }, + }, + TEXTSPLIT: { + description: 'La funzione DIVIDI.TESTO funziona come la procedura guidata Text-to-Columns , ma in forma di formula. Consente di dividere le colonne o per righe. È l\'inversa della funzione TESTO.UNISCI .', + abstract: 'La funzione DIVIDI.TESTO funziona come la procedura guidata Text-to-Columns , ma in forma di formula. Consente di dividere le colonne o per righe. È l\'inversa della funzione TESTO.UNISCI .', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo da dividere. Obbligatorio.' }, + colDelimiter: { name: 'col_delimiter', detail: 'Testo che indica il punto in cui si espande il testo tra le colonne.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'Testo che contrassegna il punto in cui si espande il testo verso il basso nelle righe. Facoltativo.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Specificare VERO per ignorare i delimitatori consecutivi. Il valore predefinito è FALSE che crea una cella vuota. Facoltativo.' }, + matchMode: { name: 'match_mode', detail: 'Specificare 1 per eseguire una corrispondenza senza distinzione tra maiuscole e minuscole. Il valore predefinito è 0 che esegue una corrispondenza con distinzione tra maiuscole e minuscole. Facoltativo.' }, + padWith: { name: 'pad_with', detail: 'Valore con cui riempire il risultato. L\'impostazione predefinita è #N/A.' }, + }, + }, + TRIM: { + description: 'Rimuove tutti gli spazi dal testo ad eccezione dei singoli spazi tra le parole. Utilizzare la funzione ANNULLA.SPAZI sul testo creato con altre applicazioni che può presentare una distribuzione irregolare degli spazi.', + abstract: 'Rimuove tutti gli spazi dal testo ad eccezione dei singoli spazi tra le parole. Utilizzare la funzione ANNULLA.SPAZI sul testo creato con altre applicazioni che può presentare una distribuzione irregolare degli spazi.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Testo da cui si desidera rimuovere gli spazi. Il testo deve essere racchiuso tra virgolette.' }, + }, + }, + UNICHAR: { + description: 'Restituisce il carattere Unicode a cui fa riferimento il valore numerico assegnato.', + abstract: 'Restituisce il carattere Unicode a cui fa riferimento il valore numerico assegnato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obbligatorio. Num è il numero Unicode che rappresenta il carattere.' }, + }, + }, + UNICODE: { + description: 'Restituisce il numero (punto di codice) corrispondente al primo carattere del testo.', + abstract: 'Restituisce il numero (punto di codice) corrispondente al primo carattere del testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo è il carattere per cui si desidera il valore Unicode.' }, + }, + }, + UPPER: { + description: 'Converte il testo in maiuscolo.', + abstract: 'Converte il testo in maiuscolo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo che si desidera convertire in maiuscolo. Può essere un riferimento o una stringa di testo.' }, + }, + }, + VALUE: { + description: 'Converte una stringa di testo rappresentante un numero nel numero corrispondente.', + abstract: 'Converte una stringa di testo rappresentante un numero nel numero corrispondente.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obbligatorio. Testo racchiuso tra virgolette o riferimento a una cella contenente il testo che si desidera convertire.' }, + }, + }, + VALUETOTEXT: { + description: 'La funzione VALUETOTEXT restituisce del testo da qualsiasi valore specificato. Passa i valori testuali invariati e converte i valori non testuali in testo.', + abstract: 'La funzione VALUETOTEXT restituisce del testo da qualsiasi valore specificato. Passa i valori testuali invariati e converte i valori non testuali in testo.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Il valore da restituire come testo. Obbligatorio.' }, + format: { name: 'format', detail: 'Il formato dei dati restituiti. Facoltativo. Può essere uno dei due valori seguenti: 0 Impostazione predefinita. Formato conciso semplice da leggere. Il testo restituito sarà uguale al testo visualizzato in una cella a cui è applicata la formattazione generale. 1 Formato Strict che include caratteri di escape e delimitatori di riga. Genera una stringa che può essere analizzata quando viene immessa nella barra della formula. Incapsula le stringhe restituite tra virgolette, esclusi valori booleani, numeri ed errori.' }, + }, + }, + CALL: { + description: 'Richiama una procedura da una libreria a collegamento dinamico o da una risorsa codice. Questa funzione dispone di due sintassi. Utilizzare la sintassi 1 solo con una risorsa codice registrata precedentemente, che utilizza gli argomenti della funzione REGISTRO. Utilizzare la sintassi 2a o 2b per registrare e contemporaneamente richiamare una risorsa codice.', + abstract: 'Richiama una procedura da una libreria a collegamento dinamico o da una risorsa codice. Questa funzione dispone di due sintassi. Utilizzare la sintassi 1 solo con una risorsa codice registrata precedentemente, che utilizza gli argomenti della funzione REGISTRO. Utilizzare la sintassi 2a o 2b per registrare e contemporaneamente richiamare una risorsa codice.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obbligatorio. Testo racchiuso tra virgolette nel quale è specificato il nome della DLL che contiene la procedura in Microsoft Excel per Windows.' }, + procedure: { name: 'Procedura', detail: 'Obbligatorio. Testo che specifica il nome della funzione nella DLL di Microsoft Excel per Windows. È inoltre possibile utilizzare il valore ordinale della funzione proveniente dall\'istruzione EXPORTS del file DEF (File di definizione dei moduli, Module-Definition File). Il valore ordinale non deve essere in formato testo.' }, + typeText: { name: 'Type_text', detail: 'Obbligatorio. Testo che specifica il tipo di dati del valore restituito e i tipi di dati di tutti gli argomenti nella DLL o risorsa codice. La prima lettera di tipo specifica il valore restituito. I codici da utilizzare per tipo sono descritti in dettaglio in Utilizzo delle funzioni RICHIAMA e REGISTRO . Nel caso di file DLL autonomi o di risorse codice autonome (XLL), è possibile omettere questo argomento.' }, + argument1: { name: 'Argomento1,...', detail: 'Opzionale. Argomenti da sottoporre alla procedura.' }, + }, + }, + EUROCONVERT: { + description: 'Consente di convertire un numero in euro, un valore dal formato euro a un formato in una valuta dei paesi membri dell\'Unione Europea, oppure un valore da una delle valute dei paesi dell\'Unione Europea in quella di un altro stato utilizzando l\'euro come intermediario (triangolazione). Le valute disponibili per la conversione sono quelle dei paesi membri dell\'Unione Europea che hanno adottato l\'euro. La funzione utilizza tassi di conversione fissi stabiliti dall\'Unione Europea.', + abstract: 'Consente di convertire un numero in euro, un valore dal formato euro a un formato in una valuta dei paesi membri dell\'Unione Europea, oppure un valore da una delle valute dei paesi dell\'Unione Europea in quella di un altro stato utilizzando l\'euro come intermediario (triangolazione). Le valute disponibili per la conversione sono quelle dei paesi membri dell\'Unione Europea che hanno adottato l\'euro. La funzione utilizza tassi di conversione fissi stabiliti dall\'Unione Europea.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'num', detail: 'Obbligatorio. Valore in valuta da convertire oppure riferimento a una cella che contiene il valore.' }, + source: { name: 'Fonte', detail: 'Obbligatorio. Stringa di tre lettere oppure riferimento a una cella che contiene la stringa che corrisponde al codice ISO della valuta di origine. Di seguito è riportato un elenco dei codici disponibili per la funzione EUROCONVERT:' }, + target: { name: 'Bersaglio', detail: 'Obbligatorio. Stringa di tre lettere o riferimento a una cella che corrisponde al codice ISO della valuta in cui convertire il valore di origine. Per un elenco dei codici ISO, vedere la tabella precedente relativa ai codici di origine.' }, + fullPrecision: { name: 'Full_precision', detail: 'Obbligatorio. Valore logico (VERO o FALSO) oppure espressione che dà come risultato un valore VERO o FALSO, in relazione all\'arrotondamento del risultato.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Obbligatorio. Intero uguale o maggiore di 3 che specifica il numero di cifre significative da utilizzare per il valore intermedio dell\'euro in caso di conversione tra due valute di paesi membri dell\'Unione Europea che hanno adottato l\'euro. Se si omette tale argomento, il valore intermedio dell\'euro non verrà arrotondato. Se si include questo argomento per la conversione in euro da una valuta di uno stato membro, verrà calcolato il valore intermedio dell\'euro che potrà quindi essere utilizzato per la conversione nella valuta di un altro stato membro.' }, + }, + }, + REGISTER_ID: { + description: 'Restituisce l\'identificatore della DLL (Libreria a collegamento dinamico, Dynamic Link Library) o della risorsa codice specificata che è stata registrata in precedenza. Qualora la registrazione del DLL o della risorsa non sia stata effettuata, la funzione provvederà ad eseguire l\'operazione, quindi visualizzerà l\'identificatore.', + abstract: 'Restituisce l\'identificatore della DLL (Libreria a collegamento dinamico, Dynamic Link Library) o della risorsa codice specificata che è stata registrata in precedenza. Qualora la registrazione del DLL o della risorsa non sia stata effettuata, la funzione provvederà ad eseguire l\'operazione, quindi visualizzerà l\'identificatore.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obbligatorio. Testo che specifica il nome della DLL che contiene la funzione in Microsoft Excel per Windows.' }, + procedure: { name: 'Procedura', detail: 'Obbligatorio. Testo che specifica il nome della funzione nella DLL di Microsoft Excel per Windows. È inoltre possibile utilizzare il valore ordinale della funzione proveniente dall\'istruzione EXPORTS nel file DEF (File di definizione dei moduli, Module-Definition File). Il valore ordinale o il numero ID della risorsa non devono essere in formato testo.' }, + typeText: { name: 'Type_text', detail: 'Opzionale. Testo che specifica il tipo di dati del valore restituito e i tipi di dati di tutti gli argomenti per la DLL. La prima lettera di tipo specifica il valore restituito. Se la funzione o la risorsa codice è già stata registrata, sarà possibile omettere questo argomento.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/text/ja-JP.ts index 51834da52a..2c13470060 100644 --- a/packages/sheets-formula/src/locale/function-list/text/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/text/ja-JP.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/asc-%E9%96%A2%E6%95%B0-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/ja-jp/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/arraytotext-%E9%96%A2%E6%95%B0-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/ja-jp/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/bahttext-%E9%96%A2%E6%95%B0-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/char-%E9%96%A2%E6%95%B0-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/clean-%E9%96%A2%E6%95%B0-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/ja-jp/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/code-%E9%96%A2%E6%95%B0-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/ja-jp/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/concat-%E9%96%A2%E6%95%B0-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/concatenate-%E9%96%A2%E6%95%B0-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/ja-jp/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dbcs-%E9%96%A2%E6%95%B0-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/dollar-%E9%96%A2%E6%95%B0-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/ja-jp/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/exact-%E9%96%A2%E6%95%B0-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/ja-jp/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/find-%E9%96%A2%E6%95%B0-findb-%E9%96%A2%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ja-jp/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/find-%E9%96%A2%E6%95%B0-findb-%E9%96%A2%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ja-jp/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/fixed-%E9%96%A2%E6%95%B0-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/left-%E9%96%A2%E6%95%B0-leftb-%E9%96%A2%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/left-%E9%96%A2%E6%95%B0-leftb-%E9%96%A2%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/len-%E9%96%A2%E6%95%B0-lenb-%E9%96%A2%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/len-%E9%96%A2%E6%95%B0-lenb-%E9%96%A2%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ja-jp/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/lower-%E9%96%A2%E6%95%B0-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mid-%E9%96%A2%E6%95%B0-midb-%E9%96%A2%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/mid-%E9%96%A2%E6%95%B0-midb-%E9%96%A2%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ja-jp/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/numbervalue-%E9%96%A2%E6%95%B0-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/ja-jp/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/phonetic-%E9%96%A2%E6%95%B0-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/ja-jp/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: '参照', detail: 'ふりがなを取り出す文字列、セル範囲、または参照です。' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/proper-%E9%96%A2%E6%95%B0-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/ja-jp/excel/functions/proper-function', }, ], functionParameter: { @@ -369,11 +368,11 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=ja', + url: 'https://support.google.com/docs/answer/3098244?hl=ja', }, ], functionParameter: { - text: { name: 'テキスト', detail: '代入するテキストです。' }, + text: { name: 'テキスト', detail: 'ヒント: 上の例では 2 列のデータが返されます(最初に「値」、2 番目に「抽出」)。' }, regularExpression: { name: '正規表現', detail: 'この正規表現に一致する最初のテキスト部分が返されます。' }, }, }, @@ -383,7 +382,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=ja', + url: 'https://support.google.com/docs/answer/3098292?hl=ja', }, ], functionParameter: { @@ -397,7 +396,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=ja', + url: 'https://support.google.com/docs/answer/3098245?hl=ja', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ja-jp/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/rept-%E9%96%A2%E6%95%B0-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/ja-jp/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/right-%E9%96%A2%E6%95%B0-rightb-%E9%96%A2%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/right-%E9%96%A2%E6%95%B0-rightb-%E9%96%A2%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/search-%E9%96%A2%E6%95%B0-searchb-%E9%96%A2%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ja-jp/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/search-%E9%96%A2%E6%95%B0-searchb-%E9%96%A2%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ja-jp/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/substitute-%E9%96%A2%E6%95%B0-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/ja-jp/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/t-%E9%96%A2%E6%95%B0-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/ja-jp/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/text-%E9%96%A2%E6%95%B0-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/textafter-%E9%96%A2%E6%95%B0-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/textbefore-%E9%96%A2%E6%95%B0-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/ja-jp/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/textjoin-%E9%96%A2%E6%95%B0-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/textsplit-%E9%96%A2%E6%95%B0-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/trim-%E9%96%A2%E6%95%B0-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/ja-jp/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/unichar-%E9%96%A2%E6%95%B0-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/ja-jp/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/unicode-%E9%96%A2%E6%95%B0-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/ja-jp/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/upper-%E9%96%A2%E6%95%B0-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/ja-jp/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/value-%E9%96%A2%E6%95%B0-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/ja-jp/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/valetotext-%E9%96%A2%E6%95%B0-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/ja-jp/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/call-%E9%96%A2%E6%95%B0-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/ja-jp/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'モジュール文字列', detail: 'プロシージャを含むダイナミック リンク ライブラリ (DLL) の名前です。' }, + procedure: { name: 'プロシージャ', detail: 'DLL 内のプロシージャ名または序数です。' }, + typeText: { name: '型文字列', detail: '引数と戻り値のデータ型を指定する文字列です。' }, + argument1: { name: '引数 1', detail: '省略可能。プロシージャに渡す最初の引数です。' }, }, }, EUROCONVERT: { @@ -722,12 +723,15 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/euroconvert-%E9%96%A2%E6%95%B0-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/ja-jp/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '数値', detail: '換算する通貨の値です。' }, + source: { name: '換算元', detail: '換算元通貨のコードです。' }, + target: { name: '換算先', detail: '換算先通貨のコードです。' }, + fullPrecision: { name: '完全精度', detail: '通貨固有の丸め規則を使用するかどうかを指定する論理値です。' }, + triangulationPrecision: { name: '三角換算精度', detail: '省略可能。ユーロを介した中間換算の有効桁数です。' }, }, }, REGISTER_ID: { @@ -736,12 +740,13 @@ const locale: typeof enUS = { links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/register-id-%E9%96%A2%E6%95%B0-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/ja-jp/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'モジュール文字列', detail: 'プロシージャを含む DLL またはコード リソースの名前です。' }, + procedure: { name: 'プロシージャ', detail: 'プロシージャ名または序数です。' }, + typeText: { name: '型文字列', detail: '省略可能。引数と戻り値のデータ型を指定する文字列です。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/text/ko-KR.ts index aec7ff70c7..bd1e6019f8 100644 --- a/packages/sheets-formula/src/locale/function-list/text/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/text/ko-KR.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/asc-함수-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/ko-kr/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/arraytotext-함수-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/ko-kr/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/bahttext-함수-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/char-함수-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/clean-함수-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/ko-kr/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/code-함수-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/ko-kr/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/concat-함수-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/concatenate-함수-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/ko-kr/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dbcs-함수-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/dollar-함수-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/ko-kr/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/exact-함수-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/ko-kr/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/find-findb-함수-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ko-kr/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/find-findb-함수-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ko-kr/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/fixed-함수-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/left-leftb-함수-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/left-leftb-함수-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/len-lenb-함수-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/len-lenb-함수-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ko-kr/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/lower-함수-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mid-midb-함수-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/mid-midb-함수-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ko-kr/excel/functions/mid-function', }, ], functionParameter: { @@ -308,8 +308,8 @@ const locale: typeof enUS = { }, }, NUMBERSTRING: { - description: 'Convert numbers to Chinese strings', - abstract: 'Convert numbers to Chinese strings', + description: '숫자를 중국어 문자열로 변환합니다.', + abstract: '숫자를 중국어 문자열로 변환합니다.', links: [ { title: 'Instruction', @@ -317,8 +317,8 @@ const locale: typeof enUS = { }, ], functionParameter: { - number: { name: 'number', detail: 'The value converted to a Chinese string.' }, - type: { name: 'type', detail: 'The type of the returned result. \n1. Chinese lowercase \n2. Chinese uppercase \n3. Reading and Writing Chinese Characters' }, + number: { name: 'number', detail: '중국어 문자열로 변환할 값입니다.' }, + type: { name: 'type', detail: '반환할 결과의 유형입니다. 1은 중국어 소문자, 2는 중국어 대문자, 3은 중국어 읽기 및 쓰기 문자입니다.' }, }, }, NUMBERVALUE: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/numbervalue-함수-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/ko-kr/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/phonetic-함수-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/ko-kr/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: '참조', detail: '추출할 윗주 텍스트가 포함된 텍스트, 범위 또는 참조입니다.' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/proper-함수-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/ko-kr/excel/functions/proper-function', }, ], functionParameter: { @@ -364,26 +363,26 @@ const locale: typeof enUS = { }, }, REGEXEXTRACT: { - description: '정규식과 일치하는 텍스트의 첫 번째 부분을 추출합니다', - abstract: '정규식과 일치하는 텍스트의 첫 번째 부분을 추출합니다', + description: '정규 표현식에 따라 첫 번째로 일치하는 하위 문자열을 추출합니다.', + abstract: '정규 표현식에 따라 첫 번째로 일치하는 하위 문자열을 추출합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3098244?hl=ko&sjid=10110901065663498429-AP', + url: 'https://support.google.com/docs/answer/3098244?hl=ko', }, ], functionParameter: { - text: { name: 'text', detail: '입력 텍스트입니다.' }, + text: { name: 'text', detail: '도움말: 위의 예에서는 데이터의 열 2개가 반환되며 첫 번째 열에는 \'값\', 두 번째 열에는 \'추출\'이 반환됩니다.' }, regularExpression: { name: 'regular_expression', detail: '추출할 텍스트의 일부입니다.' }, }, }, REGEXMATCH: { - description: '텍스트의 일부가 정규식과 일치하는지 확인합니다', - abstract: '텍스트의 일부가 정규식과 일치하는지 확인합니다', + description: '텍스트 일부가 정규 표현식과 일치하는지 여부입니다.', + abstract: '텍스트 일부가 정규 표현식과 일치하는지 여부입니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3098292?hl=ko&sjid=10110901065663498429-AP', + url: 'https://support.google.com/docs/answer/3098292?hl=ko', }, ], functionParameter: { @@ -392,12 +391,12 @@ const locale: typeof enUS = { }, }, REGEXREPLACE: { - description: '정규식을 사용하여 텍스트 문자열의 일부를 다른 텍스트 문자열로 바꿉니다', - abstract: '정규식을 사용하여 텍스트 문자열의 일부를 다른 텍스트 문자열로 바꿉니다', + description: '정규 표현식을 사용하여 텍스트 문자열의 일부를 다른 텍스트 문자열로 대체합니다.', + abstract: '정규 표현식을 사용하여 텍스트 문자열의 일부를 다른 텍스트 문자열로 대체합니다.', links: [ { title: '사용법', - url: 'https://support.google.com/docs/answer/3098245?hl=ko&sjid=10110901065663498429-AP', + url: 'https://support.google.com/docs/answer/3098245?hl=ko', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/replace-replaceb-함수-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/replace-replaceb-함수-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ko-kr/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/rept-함수-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/ko-kr/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/right-rightb-함수-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/right-rightb-함수-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/search-searchb-함수-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ko-kr/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/search-searchb-함수-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ko-kr/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/substitute-함수-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/ko-kr/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/t-함수-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/ko-kr/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/text-함수-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/textafter-함수-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/textbefore-함수-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/ko-kr/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/textjoin-함수-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/textsplit-함수-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/trim-함수-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/ko-kr/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/unichar-함수-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/ko-kr/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/unicode-함수-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/ko-kr/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/upper-함수-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/ko-kr/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/value-함수-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/ko-kr/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: '사용법', - url: 'https://support.microsoft.com/ko-kr/office/valuetotext-함수-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/ko-kr/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -703,45 +702,51 @@ const locale: typeof enUS = { }, }, 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', + description: '동적 링크 라이브러리 또는 코드 리소스에서 프로시저를 호출합니다. 이 함수에는 두 가지 구문 형식이 있습니다. REGISTER 함수의 인수를 사용하는 이전에 등록된 코드 리소스에서만 구문 1을 사용합니다. 구문 2a 또는 2b를 사용하여 코드 리소스를 동시에 등록하고 호출합니다.', + abstract: '동적 링크 라이브러리 또는 코드 리소스에서 프로시저를 호출합니다. 이 함수에는 두 가지 구문 형식이 있습니다. REGISTER 함수의 인수를 사용하는 이전에 등록된 코드 리소스에서만 구문 1을 사용합니다. 구문 2a 또는 2b를 사용하여 코드 리소스를 동시에 등록하고 호출합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/ko-kr/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: '필수. 따옴표 붙은 텍스트로서, Windows용 Microsoft Excel의 프로시저를 포함하는 동적 연결 라이브러리의 이름을 지정합니다.' }, + procedure: { name: '절차', detail: '필수. Windows용 Microsoft Excel의 DLL에서 함수의 이름을 지정하는 텍스트입니다. 모듈 정의 파일(.DEF)의 EXPORTS 문에 지정되어 있는 함수의 순서 값을 사용할 수도 있습니다. 순서 값은 텍스트 형식이 될 수 없습니다.' }, + typeText: { name: 'Type_text', detail: '필수. 반환 값의 데이터 형식과 DLL 또는 코드 리소스의 모든 인수 데이터 형식을 지정하는 텍스트입니다. type_text의 첫째 문자는 반환 값을 지정합니다. type_text에 사용하는 코드에 대한 자세한 내용을 보려면 CALL 및 REGISTER 함수 사용 을 참조하세요. 독립 실행형 DLL이나 코드 리소스(XLL)의 경우 이 인수를 생략할 수 있습니다.' }, + argument1: { name: 'Argument1,...', detail: '선택적. 프로시저에 전달될 인수입니다.' }, }, }, 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)', + description: '숫자를 유로화로, 유로화에서 유로 회원국 통화로 또는 유로화를 매개 통화로 사용하여 숫자를 현재 유로 회원국 통화에서 다른 유로 회원국 통화로 변환(3각 변환)합니다. 변환할 수 있는 통화는 유로화를 채택한 유럽 연합(EU) 회원국들의 통화입니다. 이 함수는 EU에서 설정한 고정 변환율을 사용합니다.', + abstract: '숫자를 유로화로, 유로화에서 유로 회원국 통화로 또는 유로화를 매개 통화로 사용하여 숫자를 현재 유로 회원국 통화에서 다른 유로 회원국 통화로 변환(3각 변환)합니다. 변환할 수 있는 통화는 유로화를 채택한 유럽 연합(EU) 회원국들의 통화입니다. 이 함수는 EU에서 설정한 고정 변환율을 사용합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/ko-kr/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: 'number', detail: '필수 요소입니다. 변환할 통화 값 또는 값이 들어 있는 셀에 대한 참조입니다.' }, + source: { name: '소스', detail: '필수. 원본 통화에 대한 ISO 코드에 해당하는 세 자리 문자열 또는 그 문자열이 들어 있는 셀에 대한 참조입니다. EUROCONVERT 함수에서 사용할 수 있는 통화 코드는 다음과 같습니다.' }, + target: { name: '대상', detail: '필수. 숫자를 변환할 대상 통화의 ISO 코드에 해당하는 세 자리 문자열 또는 셀 참조입니다. ISO 코드에 대해서는 앞에 나오는 원본 통화 관련 표를 참조하세요.' }, + fullPrecision: { name: 'Full_precision', detail: '필수. 결과를 표시하는 방법을 지정하는 논리값(TRUE, FALSE) 또는 TRUE나 FALSE 값을 나타내는 식입니다.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: '필수. 두 유로 회원국 통화 간 변환을 할 때 매개 유로 값에 사용될 유효 자릿수를 지정하는 3보다 크거나 같은 정수입니다. 이 인수를 생략하면 Excel에서 매개 유로 값은 반올림되지 않습니다. 유로 회원국 통화를 유로화로 변환할 때 이 인수를 포함하면 유로 회원국 통화로 변환될 수 있는 매개 유로 값이 계산됩니다.' }, }, }, 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', + description: '지정한 DLL(동적 연결 라이브러리) 또는 이전에 등록한 코드 리소스의 레지스터 ID를 반환합니다. DLL이나 코드 리소스가 등록되지 않았으면 DLL이나 코드 리소스를 등록한 후 레지스터 ID를 반환합니다.', + abstract: '지정한 DLL(동적 연결 라이브러리) 또는 이전에 등록한 코드 리소스의 레지스터 ID를 반환합니다. DLL이나 코드 리소스가 등록되지 않았으면 DLL이나 코드 리소스를 등록한 후 레지스터 ID를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/ko-kr/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: '필수. Windows용 Microsoft Excel에서 함수가 포함된 DLL의 이름을 지정하는 텍스트입니다.' }, + procedure: { name: '절차', detail: '필수. Windows용 Microsoft Excel의 DLL에서 함수의 이름을 지정하는 텍스트입니다. 모듈 정의 파일(.DEF)의 EXPORTS 문에 지정되어 있는 함수의 순서 값을 사용할 수도 있습니다. 서수 값이나 리소스 ID 번호는 텍스트 형식이 될 수 없습니다.' }, + typeText: { name: 'Type_text', detail: '선택적. 반환 값의 데이터 형식과 DLL의 모든 인수 데이터 형식을 지정하는 텍스트입니다. type_text의 첫째 문자는 반환 값을 지정합니다. 함수나 코드 리소스가 이미 등록된 경우에는 이 인수를 생략할 수 있습니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/text/pl-PL.ts new file mode 100644 index 0000000000..e948056e75 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/pl-PL.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'W językach korzystających z dwubajtowego zestawu znaków (DBCS) funkcja zmienia znaki o pełnej szerokości (dwubajtowe) na znaki o połówkowej szerokości (jednobajtowe).', + abstract: 'W językach korzystających z dwubajtowego zestawu znaków (DBCS) funkcja zmienia znaki o pełnej szerokości (dwubajtowe) na znaki o połówkowej szerokości (jednobajtowe).', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst lub odwołanie do komórki zawierającej tekst, który ma zostać zmieniony. Jeśli tekst nie zawiera żadnych znaków o pełnej szerokości, nie zostanie zmieniony.' }, + }, + }, + ARRAYTOTEXT: { + description: 'Funkcja TABLICA.NA.TEKST pozwala wyświetlić tablicę wartości tekstowych z dowolnego określonego zakresu. Przekazuje wartości tekstowe bez zmian i konwertuje pozostałe wartości na tekst.', + abstract: 'Funkcja TABLICA.NA.TEKST pozwala wyświetlić tablicę wartości tekstowych z dowolnego określonego zakresu. Przekazuje wartości tekstowe bez zmian i konwertuje pozostałe wartości na tekst.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'Tablica do wyświetlenia jako tekst. Argument wymagany.' }, + format: { name: 'format', detail: 'Format zwracanych danych. Argument opcjonalny. Może to być jedna z dwóch wartości: 0 Domyślne. Zwięzły format, który jest łatwy do odczytania. Zwracany tekst będzie taki sam jak tekst odwzorowany w komórce, w której zastosowano ogólne formatowanie. 1 Format ścisły, który zawiera znaki ucieczki i ograniczniki wierszy. Generuje ciąg, który może zostać przeanalizowany po wprowadzeniu na pasku formuły. Zwracane ciągi umieszcza w cudzysłowie, z wyjątkiem wartości logicznych, liczb i błędów.' }, + }, + }, + BAHTTEXT: { + description: 'Konwertuje liczbę na tekst w języku tajskim i dodaje sufiks waluty bat.', + abstract: 'Konwertuje liczbę na tekst w języku tajskim i dodaje sufiks waluty bat.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba konwertowana na tekst, odwołanie do komórki zawierającej liczbę lub formuła dająca w wyniku liczbę.' }, + }, + }, + CHAR: { + description: 'Zwraca znak określony za pomocą liczby. Funkcja ZNAK służy do translacji liczb strony kodowej, które można uzyskać wśród znaków z plików na innych typach komputerów.', + abstract: 'Zwraca znak określony za pomocą liczby. Funkcja ZNAK służy do translacji liczb strony kodowej, które można uzyskać wśród znaków z plików na innych typach komputerów.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba od 1 do 255 określająca żądany znak. Znak pochodzi z zestawu znaków używanego na danym komputerze. Uwaga Program Excel dla sieci Web obsługuje tylko ZNAKI(9), ZNAK(10), ZNAK(13) i ZNAK(32) i nowsze.' }, + }, + }, + CLEAN: { + description: 'Usuwa z tekstu wszystkie znaki, które nie mogą zostać wydrukowane. Funkcji OCZYŚĆ należy używać do tekstów importowanych z innych aplikacji, zawierających znaki, których być może nie da się wydrukować w danym systemie operacyjnym. Na przykład funkcji OCZYŚĆ można użyć do usunięcia niektórych kodów komputerowych niskiego poziomu, których nie da się wydrukować, a nierzadko kończą one i rozpoczynają pliki danych.', + abstract: 'Usuwa z tekstu wszystkie znaki, które nie mogą zostać wydrukowane. Funkcji OCZYŚĆ należy używać do tekstów importowanych z innych aplikacji, zawierających znaki, których być może nie da się wydrukować w danym systemie operacyjnym. Na przykład funkcji OCZYŚĆ można użyć do usunięcia niektórych kodów komputerowych niskiego poziomu, których nie da się wydrukować, a nierzadko kończą one i rozpoczynają pliki danych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Dowolne informacje arkusza, z których mają zostać usunięte znaki niedrukowane.' }, + }, + }, + CODE: { + description: 'Zwraca wartość kodu liczbowego pierwszego znaku w ciągu tekstowym. Zwracany jest kod stosowny do zestawu znaków używanego na komputerze.', + abstract: 'Zwraca wartość kodu liczbowego pierwszego znaku w ciągu tekstowym. Zwracany jest kod stosowny do zestawu znaków używanego na komputerze.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst, dla którego ma zostać zwrócony kod pierwszego znaku.' }, + }, + }, + CONCAT: { + description: 'Funkcja ZŁĄCZ.TEKST łączy tekst z wielu zakresów i(lub ciągów), ale nie udostępnia argumentów ignorowania ani ogranicznika.', + abstract: 'Funkcja ZŁĄCZ.TEKST łączy tekst z wielu zakresów i(lub ciągów), ale nie udostępnia argumentów ignorowania ani ogranicznika.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Element tekstowy do połączenia. Ciąg lub tablica ciągów, na przykład zakres komórek.' }, + text2: { name: 'text2', detail: 'Dodatkowe elementy tekstowe do połączenia. Elementy tekstowe można podać w maksymalnie 253 argumentach tekstowych. Każdy z nich może być ciągiem lub tablicą ciągów, na przykład zakresem komórek.' }, + }, + }, + CONCATENATE: { + description: 'Funkcja ZŁĄCZ.TEKSTY , jedna z dostępnych funkcji tekstowych , umożliwia połączenie dwóch lub więcej ciągów tekstowych w jeden ciąg.', + abstract: 'Funkcja ZŁĄCZ.TEKSTY , jedna z dostępnych funkcji tekstowych , umożliwia połączenie dwóch lub więcej ciągów tekstowych w jeden ciąg.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Pierwszy element do połączenia. Może to być wartość tekstowa, liczba lub odwołanie do komórki.' }, + text2: { name: 'text2', detail: 'Dodatkowe elementy tekstowe do połączenia. Można podać maksymalnie 255 elementów, o łącznej długości do 8192 znaków.' }, + }, + }, + DBCS: { + description: 'Funkcja opisana w tym temacie Pomocy konwertuje litery o szerokości połówkowej (jednobajtowe) w ciągu znakowym na znaki o pełnej szerokości (dwubajtowe). Nazwa funkcji (i konwertowane znaki) są zależne od ustawień języka.', + abstract: 'Funkcja opisana w tym temacie Pomocy konwertuje litery o szerokości połówkowej (jednobajtowe) w ciągu znakowym na znaki o pełnej szerokości (dwubajtowe). Nazwa funkcji (i konwertowane znaki) są zależne od ustawień języka.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst lub odwołanie do komórki zawierającej tekst, który należy zmienić. Jeśli tekst nie zawiera angielskich liter lub katakany połówkowej szerokości, nie zostanie zmieniony.' }, + }, + }, + DOLLAR: { + description: 'Funkcja KWOTA , jedna z funkcji TEKST , konwertuje liczbę na tekst przy użyciu formatu walutowego, a liczba miejsc dziesiętnych jest zaokrąglana do określonej liczby miejsc. Funkcja KWOTA używa wartości $#,#0,00_); Format liczb (###0,00 zł), chociaż zastosowany symbol waluty zależy od ustawień języka lokalnego.', + abstract: 'Funkcja KWOTA , jedna z funkcji TEKST , konwertuje liczbę na tekst przy użyciu formatu walutowego, a liczba miejsc dziesiętnych jest zaokrąglana do określonej liczby miejsc. Funkcja KWOTA używa wartości $#,#0,00_); Format liczb (###0,00 zł), chociaż zastosowany symbol waluty zależy od ustawień języka lokalnego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba lub odwołanie do komórki zawierającej liczbę albo formułę dającą w wyniku liczbę.' }, + decimals: { name: 'decimals', detail: 'Opcjonalne. Liczba cyfr po prawej stronie separatora dziesiętnego. Jeśli jest to wartość ujemna, liczba jest zaokrąglana w lewo od separatora dziesiętnego. Jeśli argument miejsca_dziesiętne nie zostanie określony, domyślnie przyjmowana jest wartość 2.' }, + }, + }, + EXACT: { + description: 'Porównuje dwa teksty i zwraca wartość PRAWDA, jeśli są dokładnie takie same; w przeciwnym przypadku zwraca wartość FAŁSZ. Funkcja PORÓWNAJ uwzględnia wielkość liter, ale ignoruje różnice w formatowaniu. Funkcja PORÓWNAJ umożliwia sprawdzanie tekstu wprowadzanego do dokumentu.', + abstract: 'Porównuje dwa teksty i zwraca wartość PRAWDA, jeśli są dokładnie takie same; w przeciwnym przypadku zwraca wartość FAŁSZ. Funkcja PORÓWNAJ uwzględnia wielkość liter, ale ignoruje różnice w formatowaniu. Funkcja PORÓWNAJ umożliwia sprawdzanie tekstu wprowadzanego do dokumentu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Wymagane. Pierwszy ciąg tekstowy.' }, + text2: { name: 'text2', detail: 'Wymagane. Drugi ciąg tekstowy.' }, + }, + }, + FIND: { + description: 'Znajduje jedną wartość tekstową w innej (z rozróżnianiem wielkości liter).', + abstract: 'Znajduje jedną wartość tekstową w innej (z rozróżnianiem wielkości liter).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Tekst, który chcesz znaleźć.' }, + withinText: { name: 'within_text', detail: 'Tekst zawierający tekst, który chcesz znaleźć.' }, + startNum: { name: 'start_num', detail: 'Określa znak, od którego ma się rozpocząć wyszukiwanie. Jeśli pominiesz argument start_num, przyjmowana jest wartość 1.' }, + }, + }, + FINDB: { + description: 'Znajduje jedną wartość tekstową w innej (z rozróżnianiem wielkości liter).', + abstract: 'Znajduje jedną wartość tekstową w innej (z rozróżnianiem wielkości liter).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Tekst, który chcesz znaleźć.' }, + withinText: { name: 'within_text', detail: 'Tekst zawierający tekst, który chcesz znaleźć.' }, + startNum: { name: 'start_num', detail: 'Określa znak, od którego ma się rozpocząć wyszukiwanie. Jeśli pominiesz argument start_num, przyjmowana jest wartość 1.' }, + }, + }, + FIXED: { + description: 'Zaokrągla liczbę do podanej liczby miejsc dziesiętnych, formatuje liczbę do postaci dziesiętnej z użyciem przecinka i spacji, oraz zwraca wynik w postaci tekstowej.', + abstract: 'Zaokrągla liczbę do podanej liczby miejsc dziesiętnych, formatuje liczbę do postaci dziesiętnej z użyciem przecinka i spacji, oraz zwraca wynik w postaci tekstowej.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Liczba, która ma zostać zaokrąglona i przekonwertowana na tekst.' }, + decimals: { name: 'decimals', detail: 'Opcjonalne. Liczba cyfr po prawej stronie separatora dziesiętnego.' }, + noCommas: { name: 'no_commas', detail: 'Opcjonalne. Wartość logiczna, która, jeśli ma wartość PRAWDA, zapobiega umieszczaniu przez funkcję ZAOKR.DO.TEKST separatorów tysięcy w zwróconym tekście.' }, + }, + }, + LEFT: { + description: 'Zwraca skrajnie lewe znaki wartości tekstowej.', + abstract: 'Zwraca skrajnie lewe znaki wartości tekstowej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + numChars: { name: 'num_chars', detail: 'Określa liczbę znaków, które funkcja LEFT ma wyodrębnić.' }, + }, + }, + LEFTB: { + description: 'Zwraca skrajnie lewe znaki wartości tekstowej.', + abstract: 'Zwraca skrajnie lewe znaki wartości tekstowej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + numBytes: { name: 'num_bytes', detail: 'Określa liczbę bajtów, które funkcja LEFTB ma wyodrębnić.' }, + }, + }, + LEN: { + description: 'Zwraca liczbę znaków w ciągu tekstowym.', + abstract: 'Zwraca liczbę znaków w ciągu tekstowym.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, którego długość chcesz znaleźć. Spacje są liczone jako znaki.' }, + }, + }, + LENB: { + description: 'Zwraca liczbę bajtów użytych do reprezentowania znaków w ciągu tekstowym.', + abstract: 'Zwraca liczbę bajtów użytych do reprezentowania znaków w ciągu tekstowym.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, którego długość chcesz znaleźć. Spacje są liczone jako znaki.' }, + }, + }, + LOWER: { + description: 'Konwertuje wszystkie duże litery w ciągu tekstowym na małe.', + abstract: 'Konwertuje wszystkie duże litery w ciągu tekstowym na małe.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst, który należy przekonwertować na małe litery. Funkcja LITERY.MAŁE nie zmienia tych znaków w tekście, które nie są literami.' }, + }, + }, + MID: { + description: 'Zwraca określoną liczbę znaków z ciągu tekstowego, zaczynając od wskazanej pozycji.', + abstract: 'Zwraca określoną liczbę znaków z ciągu tekstowego, zaczynając od wskazanej pozycji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + startNum: { name: 'start_num', detail: 'Pozycja pierwszego znaku, który chcesz wyodrębnić z tekstu.' }, + numChars: { name: 'num_chars', detail: 'Określa liczbę znaków, które funkcja MID ma wyodrębnić.' }, + }, + }, + MIDB: { + description: 'Zwraca określoną liczbę znaków z ciągu tekstowego, zaczynając od wskazanej pozycji.', + abstract: 'Zwraca określoną liczbę znaków z ciągu tekstowego, zaczynając od wskazanej pozycji.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + startNum: { name: 'start_num', detail: 'Pozycja pierwszego znaku, który chcesz wyodrębnić z tekstu.' }, + numBytes: { name: 'num_bytes', detail: 'Określa liczbę bajtów, które funkcja MIDB ma wyodrębnić.' }, + }, + }, + NUMBERSTRING: { + description: 'Konwertuje liczby na chińskie ciągi tekstowe.', + abstract: 'Konwertuje liczby na chińskie ciągi tekstowe.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Wartość konwertowana na chiński ciąg tekstowy.' }, + type: { name: 'type', detail: 'Typ zwracanego wyniku. \n1. Chińskie małe litery \n2. Chińskie wielkie litery \n3. Odczytywanie i zapisywanie chińskich znaków' }, + }, + }, + NUMBERVALUE: { + description: 'Konwertuje tekst na liczbę w sposób niezależny od ustawień regionalnych.', + abstract: 'Konwertuje tekst na liczbę w sposób niezależny od ustawień regionalnych.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst, który ma zostać przekonwertowany na liczbę.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Opcjonalne. Znak używany do oddzielenia części całkowitej i ułamkowej wyniku.' }, + groupSeparator: { name: 'group_separator', detail: 'Opcjonalne. Znak używany do oddzielenia grup liczb, na przykład tysięcy od setek oraz milionów od tysięcy.' }, + }, + }, + PHONETIC: { + description: 'Wybiera znaki fonetyczne (furigana) z ciągu tekstowego.', + abstract: 'Wybiera znaki fonetyczne (furigana) z ciągu tekstowego.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Odwołanie', detail: 'Wymagane. Ciąg tekstowy lub odwołanie do pojedynczej komórki albo do zakresu komórek, które zawierają ciąg tekstowy furigana.' }, + }, + }, + PROPER: { + description: 'Zmienia w wielką literę pierwszą małą literę tekstu i wszystkie inne litery w tekście następujące po znaku innym niż litera. Wszystkie inne litery są konwertowane na małe litery.', + abstract: 'Zmienia w wielką literę pierwszą małą literę tekstu i wszystkie inne litery w tekście następujące po znaku innym niż litera. Wszystkie inne litery są konwertowane na małe litery.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst ujęty w cudzysłów, formuła, której wynikiem jest tekst, lub odwołanie do komórki zawierającej tekst do częściowego przekształcenia w tekst pisany wielkimi literami.' }, + }, + }, + REGEXEXTRACT: { + description: 'Wyodrębnia pierwszy pasujący podciąg zgodnie z wyrażeniem regularnym.', + abstract: 'Wyodrębnia pierwszy pasujący podciąg zgodnie z wyrażeniem regularnym.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=pl', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst wejściowy.' }, + regularExpression: { name: 'regular_expression', detail: 'Zwracana jest pierwsza część tekstu pasująca do tego wyrażenia.' }, + }, + }, + REGEXMATCH: { + description: 'Sprawdza, czy fragment tekstu pasuje do wyrażenia regularnego.', + abstract: 'Sprawdza, czy fragment tekstu pasuje do wyrażenia regularnego.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=pl', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, który ma zostać sprawdzony względem wyrażenia regularnego.' }, + regularExpression: { name: 'regular_expression', detail: 'Wyrażenie regularne używane do sprawdzenia tekstu.' }, + }, + }, + REGEXREPLACE: { + description: 'Zastępuje część ciągu tekstowego innym ciągiem tekstowym przy użyciu wyrażeń regularnych.', + abstract: 'Zastępuje część ciągu tekstowego innym ciągiem tekstowym przy użyciu wyrażeń regularnych.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=pl', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, którego część zostanie zastąpiona.' }, + regularExpression: { name: 'regular_expression', detail: 'Wyrażenie regularne. Wszystkie pasujące wystąpienia w tekście zostaną zastąpione.' }, + replacement: { name: 'replacement', detail: 'Tekst, który zostanie wstawiony do tekstu oryginalnego.' }, + }, + }, + REPLACE: { + description: 'Zastępuje znaki w tekście.', + abstract: 'Zastępuje znaki w tekście.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Tekst, w którym chcesz zastąpić znaki.' }, + startNum: { name: 'start_num', detail: 'Pozycja znaku w old_text, który chcesz zastąpić tekstem new_text.' }, + numChars: { name: 'num_chars', detail: 'Liczba znaków w old_text, które funkcja REPLACE ma zastąpić tekstem new_text.' }, + newText: { name: 'new_text', detail: 'Tekst, który zastąpi znaki w old_text.' }, + }, + }, + REPLACEB: { + description: 'Zastępuje znaki w tekście.', + abstract: 'Zastępuje znaki w tekście.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'Tekst, w którym chcesz zastąpić znaki.' }, + startNum: { name: 'start_num', detail: 'Pozycja znaku w old_text, który chcesz zastąpić tekstem new_text.' }, + numBytes: { name: 'num_bytes', detail: 'Liczba bajtów w old_text, które funkcja REPLACEB ma zastąpić tekstem new_text.' }, + newText: { name: 'new_text', detail: 'Tekst, który zastąpi znaki w old_text.' }, + }, + }, + REPT: { + description: 'Wykonuje określoną liczbę powtórzeń tekstu. Użyj funkcji POWT, aby wypełnić komórkę konkretną liczbą ciągów tekstowych.', + abstract: 'Wykonuje określoną liczbę powtórzeń tekstu. Użyj funkcji POWT, aby wypełnić komórkę konkretną liczbą ciągów tekstowych.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst, który ma być powtarzany.' }, + numberTimes: { name: 'number_times', detail: 'Wymagane. Liczba dodatnia określająca liczbę powtórzeń tekstu.' }, + }, + }, + RIGHT: { + description: 'Zwraca skrajnie prawe znaki wartości tekstowej.', + abstract: 'Zwraca skrajnie prawe znaki wartości tekstowej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + numChars: { name: 'num_chars', detail: 'Określa liczbę znaków, które funkcja RIGHT ma wyodrębnić.' }, + }, + }, + RIGHTB: { + description: 'Zwraca skrajnie prawe znaki wartości tekstowej.', + abstract: 'Zwraca skrajnie prawe znaki wartości tekstowej.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg tekstowy zawierający znaki, które chcesz wyodrębnić.' }, + numBytes: { name: 'num_bytes', detail: 'Określa liczbę bajtów, które funkcja RIGHTB ma wyodrębnić.' }, + }, + }, + SEARCH: { + description: 'Znajduje jedną wartość tekstową w innej (bez rozróżniania wielkości liter).', + abstract: 'Znajduje jedną wartość tekstową w innej (bez rozróżniania wielkości liter).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Tekst, który chcesz znaleźć.' }, + withinText: { name: 'within_text', detail: 'Tekst zawierający tekst, który chcesz znaleźć.' }, + startNum: { name: 'start_num', detail: 'Określa znak, od którego ma się rozpocząć wyszukiwanie. Jeśli pominiesz argument start_num, przyjmowana jest wartość 1.' }, + }, + }, + SEARCHB: { + description: 'Znajduje jedną wartość tekstową w innej (bez rozróżniania wielkości liter).', + abstract: 'Znajduje jedną wartość tekstową w innej (bez rozróżniania wielkości liter).', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'Tekst, który chcesz znaleźć.' }, + withinText: { name: 'within_text', detail: 'Tekst zawierający tekst, który chcesz znaleźć.' }, + startNum: { name: 'start_num', detail: 'Określa znak, od którego ma się rozpocząć wyszukiwanie. Jeśli pominiesz argument start_num, przyjmowana jest wartość 1.' }, + }, + }, + SUBSTITUTE: { + description: 'Podstawia w ciągu tekstowym w miejsce argumentu stary_tekst argument nowy_tekst. Funkcji PODSTAW należy używać wtedy, gdy trzeba zamienić określony tekst pojawiający się w ciągu tekstowym na inny tekst; funkcji ZASTĄP należy natomiast używać wtedy, gdy trzeba zamienić dowolny tekst pojawiający się w określonym miejscu ciągu tekstowego.', + abstract: 'Podstawia w ciągu tekstowym w miejsce argumentu stary_tekst argument nowy_tekst. Funkcji PODSTAW należy używać wtedy, gdy trzeba zamienić określony tekst pojawiający się w ciągu tekstowym na inny tekst; funkcji ZASTĄP należy natomiast używać wtedy, gdy trzeba zamienić dowolny tekst pojawiający się w określonym miejscu ciągu tekstowego.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst lub odwołanie do komórki zawierającej tekst, w którym zostaną zastąpione znaki.' }, + oldText: { name: 'old_text', detail: 'Wymagane. Tekst, który zostanie zastąpiony.' }, + newText: { name: 'new_text', detail: 'Wymagane. Tekst, którym zostanie zastąpiony tekst określony przez argument stary_tekst.' }, + instanceNum: { name: 'instance_num', detail: 'Opcjonalne. Określa, które wystąpienie argumentu stary_tekst zostanie zastąpione przez argument nowy_tekst. Jeśli argument wystąpienie_liczba jest podany, to tylko to konkretne wystąpienie argumentu stary_tekst zostanie zastąpione. W innym przypadku każde pojawienie się w tekście argumentu stary_tekst jest zamieniane na argument nowy_tekst.' }, + }, + }, + T: { + description: 'Zwraca tekst, do którego odnosi się wartość.', + abstract: 'Zwraca tekst, do którego odnosi się wartość.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wymagane. Wartość, którą należy przetestować.' }, + }, + }, + TEXT: { + description: 'Funkcja TEKST umożliwia zmianę sposobu wyświetlania liczby przez zastosowanie do niej formatowania za pomocą kodów formatów . Jest to przydatne w sytuacjach, w których chcesz wyświetlić liczby w bardziej czytelnym formacie lub połączyć liczby z tekstem lub symbolami.', + abstract: 'Funkcja TEKST umożliwia zmianę sposobu wyświetlania liczby przez zastosowanie do niej formatowania za pomocą kodów formatów . Jest to przydatne w sytuacjach, w których chcesz wyświetlić liczby w bardziej czytelnym formacie lub połączyć liczby z tekstem lub symbolami.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wartość liczbowa, którą chcesz przekonwertować na tekst.' }, + formatText: { name: 'format_text', detail: 'Ciąg tekstowy określający formatowanie, które ma zostać zastosowane do podanej wartości.' }, + }, + }, + TEXTAFTER: { + description: 'Zwraca tekst występujący po danym znaku lub ciągu. Jest to przeciwieństwo funkcji TEKST.PRZED.', + abstract: 'Zwraca tekst występujący po danym znaku lub ciągu. Jest to przeciwieństwo funkcji TEKST.PRZED.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, w którym odbywa się wyszukiwanie. Znaki wieloznaczne nie są dozwolone.' }, + delimiter: { name: 'delimiter', detail: 'Tekst oznaczający punkt, po którym chcesz wyodrębnić tekst.' }, + instanceNum: { name: 'instance_num', detail: 'Wystąpienie ogranicznika, po którym chcesz wyodrębnić tekst.' }, + matchMode: { name: 'match_mode', detail: 'Określa, czy przy wyszukiwaniu tekstu jest rozróżniana wielkość liter. Domyślnie jest rozróżniana.' }, + matchEnd: { name: 'match_end', detail: 'Traktuje koniec tekstu jako ogranicznik. Domyślnie tekst musi być dokładnie dopasowany.' }, + ifNotFound: { name: 'if_not_found', detail: 'Wartość zwracana, jeśli nie znaleziono dopasowania. Domyślnie zwracany jest błąd #N/A.' }, + }, + }, + TEXTBEFORE: { + description: 'Zwraca tekst występujący przed danym znakiem lub ciągiem. Jest to przeciwieństwo funkcji TEKST.PO .', + abstract: 'Zwraca tekst występujący przed danym znakiem lub ciągiem. Jest to przeciwieństwo funkcji TEKST.PO .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, w którym odbywa się wyszukiwanie. Znaki wieloznaczne nie są dozwolone.' }, + delimiter: { name: 'delimiter', detail: 'Tekst oznaczający punkt, przed którym chcesz wyodrębnić tekst.' }, + instanceNum: { name: 'instance_num', detail: 'Wystąpienie ogranicznika, przed którym chcesz wyodrębnić tekst.' }, + matchMode: { name: 'match_mode', detail: 'Określa, czy przy wyszukiwaniu tekstu jest rozróżniana wielkość liter. Domyślnie jest rozróżniana.' }, + matchEnd: { name: 'match_end', detail: 'Traktuje koniec tekstu jako ogranicznik. Domyślnie tekst musi być dokładnie dopasowany.' }, + ifNotFound: { name: 'if_not_found', detail: 'Wartość zwracana, jeśli nie znaleziono dopasowania. Domyślnie zwracany jest błąd #N/A.' }, + }, + }, + TEXTJOIN: { + description: 'Funkcja POŁĄCZ.TEKSTY łączy tekst z wielu zakresów i (lub) ciągów oraz uwzględnia określany ogranicznik między poszczególnymi wartościami tekstowymi do połączenia. Jeśli ogranicznik jest pustym ciągiem tekstowym, funkcja sklei zakresy.', + abstract: 'Funkcja POŁĄCZ.TEKSTY łączy tekst z wielu zakresów i (lub) ciągów oraz uwzględnia określany ogranicznik między poszczególnymi wartościami tekstowymi do połączenia. Jeśli ogranicznik jest pustym ciągiem tekstowym, funkcja sklei zakresy.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'Ciąg tekstowy, pusty lub zawierający co najmniej jeden znak w cudzysłowach podwójnych, albo odwołanie do prawidłowego ciągu tekstowego. W razie podania liczby będzie ona traktowana jak tekst.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Jeśli ten argument ma wartość PRAWDA, komórki puste są ignorowane.' }, + text1: { name: 'text1', detail: 'Element tekstowy do połączenia. Ciąg tekstowy lub tablica ciągów, na przykład zakres komórek.' }, + text2: { name: 'text2', detail: 'Dodatkowe elementy tekstowe do połączenia. Elementy tekstowe można podać w maksymalnie 252 argumentach tekstowych, z argumentem tekst1 włącznie. Każdy z nich może być ciągiem tekstowym lub tablicą ciągów, na przykład zakresem komórek.' }, + }, + }, + TEXTSPLIT: { + description: 'Funkcja PODZIEL.TEKST działa tak samo jak Kreator Tekst na kolumny , ale w formie formuły. Umożliwia dzielenie między kolumny lub w dół według wierszy. Jest to przeciwieństwo funkcji TEXTJOIN .', + abstract: 'Funkcja PODZIEL.TEKST działa tak samo jak Kreator Tekst na kolumny , ale w formie formuły. Umożliwia dzielenie między kolumny lub w dół według wierszy. Jest to przeciwieństwo funkcji TEXTJOIN .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pl-pl/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, który chcesz podzielić. Argument wymagany.' }, + colDelimiter: { name: 'col_delimiter', detail: 'Tekst oznaczający punkt rozlania tekstu między kolumny.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'Tekst oznaczający punkt rozlania tekstu w dół wierszy. Argument opcjonalny.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Określ wartość PRAWDA, aby zignorować następujące po sobie ograniczniki. Wartość domyślna to PRAWDA, co powoduje utworzenie pustej komórki. Argument opcjonalny.' }, + matchMode: { name: 'match_mode', detail: 'Określ 1, aby dopasować bez uwzględniania wielkości liter. Wartość domyślna to 0, co powoduje dopasowanie z uwzględnieniem wielkości liter. Argument opcjonalny.' }, + padWith: { name: 'pad_with', detail: 'Wartość, której wyniki mają zostać wypełnione. Wartość domyślna to #N/D.' }, + }, + }, + TRIM: { + description: 'Usuwa wszystkie spacje z tekstu, oprócz pojedynczych spacji występujących między słowami. Funkcję USUŃ.ZBĘDNE.ODSTĘPY należy stosować w przypadku tekstu uzyskanego z innej aplikacji, w którym mogą występować nieregularne spacje.', + abstract: 'Usuwa wszystkie spacje z tekstu, oprócz pojedynczych spacji występujących między słowami. Funkcję USUŃ.ZBĘDNE.ODSTĘPY należy stosować w przypadku tekstu uzyskanego z innej aplikacji, w którym mogą występować nieregularne spacje.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Tekst, z którego chcesz usunąć spacje. Tekst musi być zawarty w cudzysłowie.' }, + }, + }, + UNICHAR: { + description: 'Zwraca znak Unicode, do którego odwołuje się określona wartość liczbowa.', + abstract: 'Zwraca znak Unicode, do którego odwołuje się określona wartość liczbowa.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Argument wymagany. Numer znaku Unicode odpowiadający określonemu znakowi.' }, + }, + }, + UNICODE: { + description: 'Zwraca numer (kod znaku) odpowiadający pierwszemu znakowi tekstu.', + abstract: 'Zwraca numer (kod znaku) odpowiadający pierwszemu znakowi tekstu.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst jest znakiem, dla którego ma zostać zwrócona wartość Unicode.' }, + }, + }, + UPPER: { + description: 'Konwertuje małe litery na wielkie litery.', + abstract: 'Konwertuje małe litery na wielkie litery.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst, który należy przekonwertować na wielkie litery. Tekst może być odwołaniem lub ciągiem tekstowym.' }, + }, + }, + VALUE: { + description: 'Konwertuje ciąg tekstowy reprezentujący liczbę na liczbę.', + abstract: 'Konwertuje ciąg tekstowy reprezentujący liczbę na liczbę.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Argument wymagany. Tekst zamknięty znakami cudzysłowu lub odwołanie do komórki zawierającej tekst, który należy przekonwertować.' }, + }, + }, + VALUETOTEXT: { + description: 'Funkcja WARTOŚĆ.NA.TEKST zwraca tekst z dowolnej określonej wartości. Przekazuje wartości tekstowe bez zmian i konwertuje pozostałe wartości na tekst.', + abstract: 'Funkcja WARTOŚĆ.NA.TEKST zwraca tekst z dowolnej określonej wartości. Przekazuje wartości tekstowe bez zmian i konwertuje pozostałe wartości na tekst.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Wartość do wyświetlenia jako tekst. Argument wymagany.' }, + format: { name: 'format', detail: 'Format zwracanych danych. Argument opcjonalny. Może to być jedna z dwóch wartości: 0 Domyślne. Zwięzły format, który jest łatwy do odczytania. Zwracany tekst będzie taki sam jak tekst odwzorowany w komórce, w której zastosowano ogólne formatowanie. 1 Format ścisły, który zawiera znaki ucieczki i ograniczniki wierszy. Generuje ciąg, który może zostać przeanalizowany po wprowadzeniu na pasku formuły. Zwracane ciągi umieszcza w cudzysłowie, z wyjątkiem wartości logicznych, liczb i błędów.' }, + }, + }, + CALL: { + description: 'Wywołuje procedurę w bibliotece linków dynamicznych lub w zasobie kodów. Istnieją dwie formy składni tej funkcji. Używaj składni 1 tylko w przypadku wcześniej zarejestrowanego zasobu kodów, w którym są używane argumenty z funkcji REJESTRUJ. Aby jednocześnie zarejestrować i zadzwonić do zasobu kodów, użyj składni 2a lub 2b.', + abstract: 'Wywołuje procedurę w bibliotece linków dynamicznych lub w zasobie kodów. Istnieją dwie formy składni tej funkcji. Używaj składni 1 tylko w przypadku wcześniej zarejestrowanego zasobu kodów, w którym są używane argumenty z funkcji REJESTRUJ. Aby jednocześnie zarejestrować i zadzwonić do zasobu kodów, użyj składni 2a lub 2b.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Wymagane. Tekst umieszczony w cudzysłowie, określający nazwę biblioteki dołączanej dynamicznie (DLL) zawierającej procedurę w programie Microsoft Excel dla Windows.' }, + procedure: { name: 'Procedura', detail: 'Wymagane. Tekst określający nazwę funkcji w bibliotece DLL w programie Microsoft Excel dla Windows. Można także używać wartości porządkowej funkcji otrzymanej z instrukcji EXPORTS w pliku definicji modułów (DEF). Wartość porządkowa nie może występować w postaci tekstu.' }, + typeText: { name: 'Typ_tekst', detail: 'Wymagane. Tekst określający typ danych zwróconej wartości oraz typy danych wszystkich argumentów do biblioteki DLL lub zasobu kodów. Pierwsza litera argumentu typ_tekst określa zwróconą wartość. Kody używane dla argumentu typ_tekst opisano szczegółowo w temacie Korzystanie z funkcji WYWOŁAJ i REJESTRUJ . Argument ten można pominąć w przypadku autonomicznych bibliotek DLL oraz zasobów kodów (XLL).' }, + argument1: { name: 'Argument1,...', detail: 'Opcjonalne. Argumenty przekazywane do procedury.' }, + }, + }, + EUROCONVERT: { + description: 'Konwertuje liczbę na euro, daną wartość w euro na wartość w walucie kraju członkowskiego euro lub wartość w walucie jednego kraju członkowskiego na wartość w walucie innego kraju członkowskiego za pomocą euro jako waluty pośredniej (triangulacja). Waluty dostępne dla konwersji to waluty krajów należących do Unii Europejskiej, które przyjęły euro. Funkcja stosuje podczas konwersji kursy walut ustanowione przez Unię Europejską.', + abstract: 'Konwertuje liczbę na euro, daną wartość w euro na wartość w walucie kraju członkowskiego euro lub wartość w walucie jednego kraju członkowskiego na wartość w walucie innego kraju członkowskiego za pomocą euro jako waluty pośredniej (triangulacja). Waluty dostępne dla konwersji to waluty krajów należących do Unii Europejskiej, które przyjęły euro. Funkcja stosuje podczas konwersji kursy walut ustanowione przez Unię Europejską.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Liczba', detail: 'Argument wymagany. Wartość walutowa, która ma zostać przekonwertowana, lub odwołanie do komórki zawierającej taką wartość.' }, + source: { name: 'Źródła', detail: 'Wymagane. Trzyliterowy ciąg lub odwołanie do komórki zawierającej ten ciąg, odpowiadające kodowi ISO waluty źródłowej. W funkcji EUROCONVERT dostępne są następujące kody walut:' }, + target: { name: 'Docelowego', detail: 'Wymagane. Trzyliterowy ciąg lub odwołanie do komórki odpowiadające kodowi ISO waluty, na którą ma zostać przekonwertowana liczba. Zobacz poprzednią tabelę źródłową kodów ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'Wymagane. Wartość logiczna (PRAWDA lub FAŁSZ) albo wyrażenie zwracające wartość PRAWDA lub FAŁSZ określające sposób wyświetlania wyniku.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Wymagane. Liczba całkowita równa 3 lub większa niż 3, która określa liczbę cyfr znaczących używanych dla pośredniej wartości euro podczas konwersji między dwiema walutami krajów członkowskich euro. Jeśli ten argument zostanie pominięty, program Excel nie zaokrągli pośredniej wartości euro. Jeśli argument zostanie podany podczas konwersji z waluty kraju członkowskiego na euro, program Excel obliczy pośrednią wartość euro, która może być następnie przekonwertowana na walutę innego kraju członkowskiego euro.' }, + }, + }, + REGISTER_ID: { + description: 'Zwraca identyfikator rejestru określonej biblioteki dołączanej dynamicznie (DLL) lub wcześniej zarejestrowanego zasobu kodów. Jeśli biblioteka DLL lub zasób kodów nie zostały zarejestrowane, funkcja rejestruje bibliotekę DLL lub zasób kodów, a następnie zwraca identyfikator rejestru.', + abstract: 'Zwraca identyfikator rejestru określonej biblioteki dołączanej dynamicznie (DLL) lub wcześniej zarejestrowanego zasobu kodów. Jeśli biblioteka DLL lub zasób kodów nie zostały zarejestrowane, funkcja rejestruje bibliotekę DLL lub zasób kodów, a następnie zwraca identyfikator rejestru.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Wymagane. Tekst określający nazwę biblioteki DLL zawierającej funkcje w programie Microsoft Excel dla Windows.' }, + procedure: { name: 'Procedura', detail: 'Wymagane. Tekst określający nazwę funkcji w bibliotece DLL w programie Microsoft Excel dla Windows. Można także używać wartości porządkowej funkcji uzyskanej za pomocą instrukcji EXPORTS w pliku definicji modułów (DEF). Wartość porządkowa lub identyfikator zasobu nie mogą występować w postaci tekstu.' }, + typeText: { name: 'Typ_tekst', detail: 'Opcjonalne. Tekst określający typ danych wartości zwróconej oraz typy danych wszystkich argumentów biblioteki DLL. Pierwsza litera argumentu typ_tekst określa wartość zwróconą. Jeśli funkcja lub zasób kodów są już zarejestrowane, ten argument można pominąć.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/text/pt-BR.ts new file mode 100644 index 0000000000..bb59599db9 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/text/pt-BR.ts @@ -0,0 +1,754 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ASC: { + description: 'Para idiomas do conjunto de caracteres de dois bytes (DBCS), a função altera os caracteres de largura total (byte duplo) para caracteres de meia largura (byte único).', + abstract: 'Para idiomas do conjunto de caracteres de dois bytes (DBCS), a função altera os caracteres de largura total (byte duplo) para caracteres de meia largura (byte único).', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/asc-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto ou uma referência a uma célula que contém o texto a ser alterado. Se o texto não contiver letras de largura total, ele não será alterado.' }, + }, + }, + ARRAYTOTEXT: { + description: 'A função MATRIZPARATEXTO retorna uma matriz de valores de texto de qualquer intervalo especificado. Ele passa valores de texto inalterados e converte valores não textuais em texto.', + abstract: 'A função MATRIZPARATEXTO retorna uma matriz de valores de texto de qualquer intervalo especificado. Ele passa valores de texto inalterados e converte valores não textuais em texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/arraytotext-function', + }, + ], + functionParameter: { + array: { name: 'array', detail: 'A matriz para retornar como texto. Obrigatório.' }, + format: { name: 'format', detail: 'O formato dos dados retornados. Opcional. Pode ser um dos dois valores: 0 Padrão. Formato conciso e fácil de ler. O texto retornado será o mesmo que o texto renderizado em uma célula que possui formatação geral aplicada. 1 Formato estrito que inclui caracteres de escape e delimitadores de linha. Gera uma cadeia de caracteres que pode ser analisada quando inserida na barra de fórmulas. Encapsula cadeia de caracteres retornadas entre aspas, exceto para Booleanos, Números e Erros.' }, + }, + }, + BAHTTEXT: { + description: 'Converte um número em texto em tailandês e adiciona o sufixo "Baht".', + abstract: 'Converte um número em texto em tailandês e adiciona o sufixo "Baht".', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/bahttext-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Um número que você deseja converter em texto, a referência a uma célula que contenha um número ou uma fórmula que retornará um número.' }, + }, + }, + CHAR: { + description: 'Retorna o caractere especificado por um número. Use CARACT para converter em caracteres números de páginas de código que você pode obter em arquivos de outros tipos de computador.', + abstract: 'Retorna o caractere especificado por um número. Use CARACT para converter em caracteres números de páginas de código que você pode obter em arquivos de outros tipos de computador.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/char-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Um número entre 1 e 255 que especifica o caractere desejado. O caractere pertence ao conjunto de caracteres usado pelo seu computador. Observação O Excel para a Web suporta apenas CHAR(9), CHAR(10), CHAR(13) e CHAR(32) e superior.' }, + }, + }, + CLEAN: { + description: 'Remove todos os caracteres do texto que não podem ser impressos. Use TIRAR em textos importados de outros aplicativos que contêm caracteres que talvez não possam ser impressos no seu sistema operacional. Por exemplo, você pode utilizar TIRAR para remover um código de computador de baixo nível frequentemente localizado no início e no fim de arquivos de dados e que não pode ser impresso.', + abstract: 'Remove todos os caracteres do texto que não podem ser impressos. Use TIRAR em textos importados de outros aplicativos que contêm caracteres que talvez não possam ser impressos no seu sistema operacional. Por exemplo, você pode utilizar TIRAR para remover um código de computador de baixo nível frequentemente localizado no início e no fim de arquivos de dados e que não pode ser impresso.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/clean-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. Qualquer informação na planilha da qual você deseja remover caracteres não imprimíveis.' }, + }, + }, + CODE: { + description: 'Retorna um código numérico para o primeiro caractere de uma cadeia de texto. O código retornado corresponde ao conjunto de caracteres usado pelo seu computador.', + abstract: 'Retorna um código numérico para o primeiro caractere de uma cadeia de texto. O código retornado corresponde ao conjunto de caracteres usado pelo seu computador.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/code-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto cujo código do primeiro caractere você deseja obter.' }, + }, + }, + CONCAT: { + description: 'A função CONCAT combina o texto de vários intervalos e/ou cadeias de caracteres, mas não fornece argumentos delimitadores ou IgnoreEmpty.', + abstract: 'A função CONCAT combina o texto de vários intervalos e/ou cadeias de caracteres, mas não fornece argumentos delimitadores ou IgnoreEmpty.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/concat-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Item de texto a ser unido. Uma cadeia de caracteres ou uma matriz de cadeias de caracteres, como um intervalo de células.' }, + text2: { name: 'text2', detail: 'Itens de texto adicionais a serem unidos. Pode haver um máximo de 253 argumentos de texto para os itens de texto. Cada um pode ser uma cadeia de caracteres ou uma matriz de cadeias de caracteres, como um intervalo de células.' }, + }, + }, + CONCATENATE: { + description: 'Use CONCATENAR , umas das funções de texto , para unir duas ou mais cadeias de texto em uma única cadeia.', + abstract: 'Use CONCATENAR , umas das funções de texto , para unir duas ou mais cadeias de texto em uma única cadeia.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/concatenate-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'O primeiro item a unir. Pode ser texto, número ou referência de célula.' }, + text2: { name: 'text2', detail: 'Itens de texto adicionais a unir. Você pode ter até 255 itens, totalizando até 8.192 caracteres.' }, + }, + }, + DBCS: { + description: 'A função descrita neste tópico da Ajuda converte letras de meia largura (byte único) dentro de uma cadeia de caracteres em caracteres de largura total (bytes duplos). O nome da função (e os caracteres que ela converte) depende das suas configurações de idioma.', + abstract: 'A função descrita neste tópico da Ajuda converte letras de meia largura (byte único) dentro de uma cadeia de caracteres em caracteres de largura total (bytes duplos). O nome da função (e os caracteres que ela converte) depende das suas configurações de idioma.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dbcs-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto ou uma referência a uma célula que contém o texto a ser alterado. Se o texto não contiver qualquer letra de meia largura do inglês ou katakana, ele não será alterado.' }, + }, + }, + DOLLAR: { + description: 'A função DOLLAR , uma das funções TEXT , converte um número em texto usando o formato de moeda, com os decimais arredondados para o número de lugares especificados. DOLLAR usa o $#,##0.00_); Formato de número ($#,##0.00), embora o símbolo de moeda aplicado dependa das configurações de idioma local.', + abstract: 'A função DOLLAR , uma das funções TEXT , converte um número em texto usando o formato de moeda, com os decimais arredondados para o número de lugares especificados. DOLLAR usa o $#,##0.00_); Formato de número ($#,##0.00), embora o símbolo de moeda aplicado dependa das configurações de idioma local.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/dollar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Um número, uma referência a uma célula contendo um número ou uma fórmula que avalia um número.' }, + decimals: { name: 'decimals', detail: 'Opcional. O número de dígitos à direita da vírgula decimal. Se isso for negativo, o número será arredondado para a esquerda do ponto decimal. Se você omitir decimais, ele será considerado 2.' }, + }, + }, + EXACT: { + description: 'Compara duas cadeias de texto e retorna VERDADEIRO se elas forem exatamente iguais e FALSO caso contrário. EXATO faz diferenciação entre maiúsculas e minúsculas, mas ignora diferenças de formatação. Use EXATO para testar o texto inserido em um documento.', + abstract: 'Compara duas cadeias de texto e retorna VERDADEIRO se elas forem exatamente iguais e FALSO caso contrário. EXATO faz diferenciação entre maiúsculas e minúsculas, mas ignora diferenças de formatação. Use EXATO para testar o texto inserido em um documento.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/exact-function', + }, + ], + functionParameter: { + text1: { name: 'text1', detail: 'Necessário. A primeira cadeia de texto.' }, + text2: { name: 'text2', detail: 'Necessário. A segunda cadeia de texto.' }, + }, + }, + FIND: { + description: 'Localiza um valor de texto dentro de outro, diferenciando maiúsculas de minúsculas.', + abstract: 'Localiza um valor de texto dentro de outro, diferenciando maiúsculas de minúsculas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'O texto que você deseja localizar.' }, + withinText: { name: 'within_text', detail: 'O texto que contém o texto que você deseja localizar.' }, + startNum: { name: 'start_num', detail: 'Especifica o caractere no qual iniciar a pesquisa. Se omitido, será considerado 1.' }, + }, + }, + FINDB: { + description: 'Localiza um valor de texto dentro de outro, diferenciando maiúsculas de minúsculas.', + abstract: 'Localiza um valor de texto dentro de outro, diferenciando maiúsculas de minúsculas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/this-article-has-been-retired', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'O texto que você deseja localizar.' }, + withinText: { name: 'within_text', detail: 'O texto que contém o texto que você deseja localizar.' }, + startNum: { name: 'start_num', detail: 'Especifica o caractere no qual iniciar a pesquisa. Se omitido, será considerado 1.' }, + }, + }, + FIXED: { + description: 'Arredonda o número para o número especificado de decimais, formata o número no formato decimal usando vírgula e pontos e retorna o resultado como texto.', + abstract: 'Arredonda o número para o número especificado de decimais, formata o número no formato decimal usando vírgula e pontos e retorna o resultado como texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/fixed-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. O número que você deseja arredondar e converter em texto.' }, + decimals: { name: 'decimals', detail: 'Opcional. O número de dígitos à direita da vírgula decimal.' }, + noCommas: { name: 'no_commas', detail: 'Opcional. Um valor lógico que, se VERDADEIRO, impede que DEF.NÚM.DEC inclua vírgulas no texto retornado.' }, + }, + }, + LEFT: { + description: 'Retorna os caracteres mais à esquerda de um valor de texto.', + abstract: 'Retorna os caracteres mais à esquerda de um valor de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + numChars: { name: 'num_chars', detail: 'Especifica o número de caracteres que você deseja que ESQUERDA extraia.' }, + }, + }, + LEFTB: { + description: 'Retorna os caracteres mais à esquerda de um valor de texto.', + abstract: 'Retorna os caracteres mais à esquerda de um valor de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/left-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + numBytes: { name: 'num_bytes', detail: 'Especifica o número de caracteres que você deseja que ESQUERDAB extraia, com base em bytes.' }, + }, + }, + LEN: { + description: 'Retorna o número de caracteres em uma cadeia de texto.', + abstract: 'Retorna o número de caracteres em uma cadeia de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto cujo comprimento você deseja encontrar. Espaços contam como caracteres.' }, + }, + }, + LENB: { + description: 'Retorna o número de bytes usados para representar os caracteres em uma cadeia de texto.', + abstract: 'Retorna o número de bytes usados para representar os caracteres em uma cadeia de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/len-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto cujo comprimento você deseja encontrar. Espaços contam como caracteres.' }, + }, + }, + LOWER: { + description: 'Converte todas as letras maiúsculas em uma cadeia de texto para minúsculas.', + abstract: 'Converte todas as letras maiúsculas em uma cadeia de texto para minúsculas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/lower-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto que você deseja converter para minúscula. MINÚSCULA só muda caracteres de letras para texto.' }, + }, + }, + MID: { + description: 'Retorna um número específico de caracteres de uma cadeia de texto, a partir da posição indicada.', + abstract: 'Retorna um número específico de caracteres de uma cadeia de texto, a partir da posição indicada.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + startNum: { name: 'start_num', detail: 'A posição, em texto, do primeiro caractere que você deseja extrair.' }, + numChars: { name: 'num_chars', detail: 'Especifica o número de caracteres que você deseja que EXT.TEXTO extraia.' }, + }, + }, + MIDB: { + description: 'Retorna um número específico de caracteres de uma cadeia de texto, a partir da posição indicada.', + abstract: 'Retorna um número específico de caracteres de uma cadeia de texto, a partir da posição indicada.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/mid-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + startNum: { name: 'start_num', detail: 'A posição, em texto, do primeiro caractere que você deseja extrair.' }, + numBytes: { name: 'num_bytes', detail: 'Especifica o número de caracteres que você deseja que EXT.TEXTOB extraia, com base em bytes.' }, + }, + }, + NUMBERSTRING: { + description: 'Converte números em cadeias de caracteres chinesas.', + abstract: 'Converte números em cadeias de caracteres chinesas.', + links: [ + { + title: 'Instruction', + url: 'https://www.wps.cn/learning/course/detail/id/340.html?chan=pc_kdocs_function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'O valor convertido em uma cadeia de caracteres chinesa.' }, + type: { name: 'type', detail: 'O tipo do resultado retornado: 1, chinês em minúsculas; 2, chinês em maiúsculas; 3, caracteres chineses de leitura e escrita.' }, + }, + }, + NUMBERVALUE: { + description: 'Converte texto em um número, de maneira independente de localidade.', + abstract: 'Converte texto em um número, de maneira independente de localidade.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/numbervalue-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto a ser convertido em um número.' }, + decimalSeparator: { name: 'decimal_separator', detail: 'Opcional. O caractere usado para separar o inteiro e a parte fracional do resultado.' }, + groupSeparator: { name: 'group_separator', detail: 'Opcional. O caractere usado para separar agrupamentos de números, como milhares de centenas e milhões de milhares.' }, + }, + }, + PHONETIC: { + description: 'Extrai os caracteres fonéticos (furigana) de uma cadeia de texto.', + abstract: 'Extrai os caracteres fonéticos (furigana) de uma cadeia de texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/phonetic-function', + }, + ], + functionParameter: { + reference: { name: 'Referência', detail: 'Necessário. Uma cadeia de texto ou uma referência a uma única célula ou a um intervalo de células que contém uma cadeia de texto furigana.' }, + }, + }, + PROPER: { + description: 'Coloca a primeira letra de uma cadeia de texto em maiúscula e todas as outras letras do texto depois de qualquer caractere diferente de uma letra. Converte todas as outras letras para minúsculas.', + abstract: 'Coloca a primeira letra de uma cadeia de texto em maiúscula e todas as outras letras do texto depois de qualquer caractere diferente de uma letra. Converte todas as outras letras para minúsculas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/proper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto entre aspas, uma fórmula que retorna o texto ou uma referência a uma célula que contenha o texto que você deseja colocar parcialmente em maiúscula.' }, + }, + }, + REGEXEXTRACT: { + description: 'Extrai a primeira substring correspondente de acordo com uma expressão regular.', + abstract: 'Extrai a primeira substring correspondente de acordo com uma expressão regular.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098244?hl=pt-BR', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto de entrada.' }, + regularExpression: { name: 'regular_expression', detail: 'A primeira parte do texto que corresponder a esta expressão será retornada.' }, + }, + }, + REGEXMATCH: { + description: 'Indica se um trecho de texto corresponde a uma expressão regular.', + abstract: 'Indica se um trecho de texto corresponde a uma expressão regular.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098292?hl=pt-BR', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto a ser testado em relação à expressão regular.' }, + regularExpression: { name: 'regular_expression', detail: 'A expressão regular usada para testar o texto.' }, + }, + }, + REGEXREPLACE: { + description: 'Substitui parte de uma cadeia de texto por outra usando expressões regulares.', + abstract: 'Substitui parte de uma cadeia de texto por outra usando expressões regulares.', + links: [ + { + title: 'Instruction', + url: 'https://support.google.com/docs/answer/3098245?hl=pt-BR', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto cuja parte será substituída.' }, + regularExpression: { name: 'regular_expression', detail: 'A expressão regular. Todas as ocorrências correspondentes no texto serão substituídas.' }, + replacement: { name: 'replacement', detail: 'O texto que será inserido no texto original.' }, + }, + }, + REPLACE: { + description: 'Substitui caracteres dentro de um texto.', + abstract: 'Substitui caracteres dentro de um texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'O texto no qual você deseja substituir alguns caracteres.' }, + startNum: { name: 'start_num', detail: 'A posição em old_text do caractere que você deseja substituir por new_text.' }, + numChars: { name: 'num_chars', detail: 'O número de caracteres em old_text que SUBSTITUIR deve trocar por new_text.' }, + newText: { name: 'new_text', detail: 'O texto que substituirá caracteres em old_text.' }, + }, + }, + REPLACEB: { + description: 'Substitui caracteres dentro de um texto.', + abstract: 'Substitui caracteres dentro de um texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/replace-function', + }, + ], + functionParameter: { + oldText: { name: 'old_text', detail: 'O texto no qual você deseja substituir alguns caracteres.' }, + startNum: { name: 'start_num', detail: 'A posição em old_text do caractere que você deseja substituir por new_text.' }, + numBytes: { name: 'num_bytes', detail: 'O número de bytes em old_text que SUBSTITUIRB deve trocar por new_text.' }, + newText: { name: 'new_text', detail: 'O texto que substituirá caracteres em old_text.' }, + }, + }, + REPT: { + description: 'Repete o texto um determinado número de vezes. Utilize REPT para preencher uma célula com um número de repetições de uma cadeia de texto.', + abstract: 'Repete o texto um determinado número de vezes. Utilize REPT para preencher uma célula com um número de repetições de uma cadeia de texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/rept-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto que você deseja repetir.' }, + numberTimes: { name: 'number_times', detail: 'Obrigatório. Um número positivo que especifica o número de vezes que você deseja repetir texto.' }, + }, + }, + RIGHT: { + description: 'Retorna os caracteres mais à direita de um valor de texto.', + abstract: 'Retorna os caracteres mais à direita de um valor de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + numChars: { name: 'num_chars', detail: 'Especifica o número de caracteres que você deseja que DIREITA extraia.' }, + }, + }, + RIGHTB: { + description: 'Retorna os caracteres mais à direita de um valor de texto.', + abstract: 'Retorna os caracteres mais à direita de um valor de texto.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/right-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'A cadeia de texto que contém os caracteres que você deseja extrair.' }, + numBytes: { name: 'num_bytes', detail: 'Especifica o número de caracteres que você deseja que DIREITAB extraia, com base em bytes.' }, + }, + }, + SEARCH: { + description: 'Localiza um valor de texto dentro de outro, sem diferenciar maiúsculas de minúsculas.', + abstract: 'Localiza um valor de texto dentro de outro, sem diferenciar maiúsculas de minúsculas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'O texto que você deseja localizar.' }, + withinText: { name: 'within_text', detail: 'O texto que contém o texto que você deseja localizar.' }, + startNum: { name: 'start_num', detail: 'Especifica o caractere no qual iniciar a pesquisa. Se omitido, será considerado 1.' }, + }, + }, + SEARCHB: { + description: 'Localiza um valor de texto dentro de outro, sem diferenciar maiúsculas de minúsculas.', + abstract: 'Localiza um valor de texto dentro de outro, sem diferenciar maiúsculas de minúsculas.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/search-function', + }, + ], + functionParameter: { + findText: { name: 'find_text', detail: 'O texto que você deseja localizar.' }, + withinText: { name: 'within_text', detail: 'O texto que contém o texto que você deseja localizar.' }, + startNum: { name: 'start_num', detail: 'Especifica o caractere no qual iniciar a pesquisa. Se omitido, será considerado 1.' }, + }, + }, + SUBSTITUTE: { + description: 'Coloca novo_texto no lugar de texto_antigo em uma cadeia de texto. Use SUBSTITUIR quando quiser substituir texto específico em uma cadeia de texto; use MUDAR quando quiser substituir qualquer texto que ocorra em um local específico de uma cadeia de texto.', + abstract: 'Coloca novo_texto no lugar de texto_antigo em uma cadeia de texto. Use SUBSTITUIR quando quiser substituir texto específico em uma cadeia de texto; use MUDAR quando quiser substituir qualquer texto que ocorra em um local específico de uma cadeia de texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/substitute-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto ou a referência a uma célula que contém o texto no qual deseja substituir caracteres.' }, + oldText: { name: 'old_text', detail: 'Obrigatório. O texto que se deseja substituir.' }, + newText: { name: 'new_text', detail: 'Obrigatório. O texto pelo qual deseja substituir texto_antigo.' }, + instanceNum: { name: 'instance_num', detail: 'Opcional. Especifica que ocorrência de texto_antigo se deseja substituir por novo_texto. Se especificar núm_da_ocorrência, apenas aquela ocorrência de texto_antigo será substituída. Caso contrário, cada ocorrência de texto_antigo no texto é alterada para novo_texto.' }, + }, + }, + T: { + description: 'Retorna o texto referido por valor.', + abstract: 'Retorna o texto referido por valor.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/t-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Necessário. O valor que você deseja testar.' }, + }, + }, + TEXT: { + description: 'A função TEXTO permite que você altere a maneira de exibir um número aplicando formatação a ele com códigos de formatação . Isso é útil quando você deseja exibir números em um formato mais legível ou deseja combinar números com texto ou símbolos.', + abstract: 'A função TEXTO permite que você altere a maneira de exibir um número aplicando formatação a ele com códigos de formatação . Isso é útil quando você deseja exibir números em um formato mais legível ou deseja combinar números com texto ou símbolos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/text-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'Um valor numérico que você deseja converter em texto.' }, + formatText: { name: 'format_text', detail: 'Uma cadeia de texto que define a formatação a aplicar ao valor fornecido.' }, + }, + }, + TEXTAFTER: { + description: 'Retorna o texto que ocorre depois de um caractere ou cadeia fornecida.', + abstract: 'Retorna o texto que ocorre depois de um caractere ou cadeia fornecida.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/textafter-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto no qual pesquisar. Caracteres curinga não são permitidos.' }, + delimiter: { name: 'delimiter', detail: 'O texto que marca o ponto após o qual você deseja extrair.' }, + instanceNum: { name: 'instance_num', detail: 'A ocorrência do delimitador após a qual você deseja extrair o texto.' }, + matchMode: { name: 'match_mode', detail: 'Determina se a pesquisa diferencia maiúsculas de minúsculas. Por padrão, diferencia.' }, + matchEnd: { name: 'match_end', detail: 'Trata o fim do texto como delimitador. Por padrão, o texto deve corresponder exatamente.' }, + ifNotFound: { name: 'if_not_found', detail: 'O valor retornado se nenhuma correspondência for encontrada. Por padrão, retorna #N/D.' }, + }, + }, + TEXTBEFORE: { + description: 'Retorna o texto que ocorre antes de um determinado caractere ou cadeia de caracteres. É o oposto da função TEXTWAFTER .', + abstract: 'Retorna o texto que ocorre antes de um determinado caractere ou cadeia de caracteres. É o oposto da função TEXTWAFTER .', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/pt-br/excel/functions/textbefore-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto no qual pesquisar. Caracteres curinga não são permitidos.' }, + delimiter: { name: 'delimiter', detail: 'O texto que marca o ponto antes do qual você deseja extrair.' }, + instanceNum: { name: 'instance_num', detail: 'A ocorrência do delimitador antes da qual você deseja extrair o texto.' }, + matchMode: { name: 'match_mode', detail: 'Determina se a pesquisa diferencia maiúsculas de minúsculas. Por padrão, diferencia.' }, + matchEnd: { name: 'match_end', detail: 'Trata o fim do texto como delimitador. Por padrão, o texto deve corresponder exatamente.' }, + ifNotFound: { name: 'if_not_found', detail: 'O valor retornado se nenhuma correspondência for encontrada. Por padrão, retorna #N/D.' }, + }, + }, + TEXTJOIN: { + description: 'A função UNIRTEXTO combina o texto de vários intervalos e/ou cadeias de caracteres e inclui um delimitador especificado por você entre cada valor de texto que será combinado. Se o delimitador for uma cadeia de caracteres de texto vazia, essa função concatenará efetivamente os intervalos.', + abstract: 'A função UNIRTEXTO combina o texto de vários intervalos e/ou cadeias de caracteres e inclui um delimitador especificado por você entre cada valor de texto que será combinado. Se o delimitador for uma cadeia de caracteres de texto vazia, essa função concatenará efetivamente os intervalos.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/textjoin-function', + }, + ], + functionParameter: { + delimiter: { name: 'delimiter', detail: 'Uma cadeia de texto, seja vazia ou com um ou mais caracteres delimitados por aspas duplas, ou uma referência a uma cadeia de texto válida. Se for fornecido um número, ele será tratado como texto.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Se VERDADEIRO, ignora as células vazias.' }, + text1: { name: 'text1', detail: 'Item de texto a ser unido. Uma cadeia de texto ou uma matriz de cadeias de caracteres, como um intervalo de células.' }, + text2: { name: 'text2', detail: 'Itens de texto adicionais a serem unidos. Pode haver, no máximo, 252 argumentos de texto para os itens de texto, incluindo texto1 . Cada um pode ser uma cadeia de caracteres ou uma matriz de cadeias de caracteres, como um intervalo de células.' }, + }, + }, + TEXTSPLIT: { + description: 'A função DIVIDIRTEXTO funciona da mesma forma que o assistente de Texto para Colunas , mas na forma de fórmula. Ele permite dividir entre colunas ou para baixo por linhas. É o inverso da função TEXTJOIN .', + abstract: 'A função DIVIDIRTEXTO funciona da mesma forma que o assistente de Texto para Colunas , mas na forma de fórmula. Ele permite dividir entre colunas ou para baixo por linhas. É o inverso da função TEXTJOIN .', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/textsplit-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto que você deseja dividir. Obrigatório.' }, + colDelimiter: { name: 'col_delimiter', detail: 'O texto que marca o ponto em que o texto é derramado entre colunas.' }, + rowDelimiter: { name: 'row_delimiter', detail: 'O texto que marca o ponto em que o texto é derramado para baixo das linhas. Opcional.' }, + ignoreEmpty: { name: 'ignore_empty', detail: 'Especifique TRUE para ignorar delimitadores consecutivos. O padrão é FALSO, que cria uma célula vazia. Opcional.' }, + matchMode: { name: 'match_mode', detail: 'Especifique 1 para executar uma correspondência sem maiúsculas de maiúsculas de minúsculas. O padrão é 0, que faz uma correspondência que diferencia maiúsculas de minúsculas. Opcional.' }, + padWith: { name: 'pad_with', detail: 'O valor com o qual adicionar o resultado. O padrão é #N/A.' }, + }, + }, + TRIM: { + description: 'Remove todos os espaços do texto exceto os espaços únicos entre palavras. Use ARRUMAR no texto que recebeu de outro aplicativo que pode ter espaçamento irregular.', + abstract: 'Remove todos os espaços do texto exceto os espaços únicos entre palavras. Use ARRUMAR no texto que recebeu de outro aplicativo que pode ter espaçamento irregular.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/trim-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'O texto do qual você deseja que os espaços sejam removidos. O texto deve ser contido entre aspas.' }, + }, + }, + UNICHAR: { + description: 'Retorna o caractere Unicode referenciado pelo determinado valor numérico.', + abstract: 'Retorna o caractere Unicode referenciado pelo determinado valor numérico.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/unichar-function', + }, + ], + functionParameter: { + number: { name: 'number', detail: 'Obrigatório. Número é o número Unicode que representa o caractere.' }, + }, + }, + UNICODE: { + description: 'Retorna o número (ponto de código) correspondente ao primeiro caractere do texto.', + abstract: 'Retorna o número (ponto de código) correspondente ao primeiro caractere do texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/unicode-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. Texto é o caractere para o qual você deseja o valor Unicode.' }, + }, + }, + UPPER: { + description: 'Converte o texto em maiúsculas.', + abstract: 'Converte o texto em maiúsculas.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/upper-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto que se deseja converter para maiúsculas. Texto pode ser uma referência ou uma cadeia de texto.' }, + }, + }, + VALUE: { + description: 'Converte em um número uma cadeia de texto que representa um número.', + abstract: 'Converte em um número uma cadeia de texto que representa um número.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/value-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Obrigatório. O texto entre aspas ou uma referência a uma célula que contém o texto a ser convertido.' }, + }, + }, + VALUETOTEXT: { + description: 'A função VALORPARATEXTO retorna um texto a partir de qualquer valor especificado. Ele passa valores de texto inalterados e converte valores não textuais em texto.', + abstract: 'A função VALORPARATEXTO retorna um texto a partir de qualquer valor especificado. Ele passa valores de texto inalterados e converte valores não textuais em texto.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/valuetotext-function', + }, + ], + functionParameter: { + value: { name: 'value', detail: 'O valor para retornar como texto. Obrigatório.' }, + format: { name: 'format', detail: 'O formato dos dados retornados. Opcional. Pode ser um dos dois valores: 0 Padrão. Formato conciso e fácil de ler. O texto retornado será o mesmo que o texto renderizado em uma célula que possui formatação geral aplicada. 1 Formato estrito que inclui caracteres de escape e delimitadores de linha. Gera uma cadeia de caracteres que pode ser analisada quando inserida na barra de fórmulas. Encapsula cadeia de caracteres retornadas entre aspas, exceto para Booleanos, Números e Erros.' }, + }, + }, + CALL: { + description: 'Chama um procedimento em uma biblioteca de vínculos dinâmicos ou recurso de código. Há duas formas de sintaxe desta função. Use a sintaxe 1 apenas com um recurso de código previamente registrado que use argumentos da função REGISTRO. Use a sintaxe 2a ou 2b para registrar e chamar simultaneamente um recurso de código.', + abstract: 'Chama um procedimento em uma biblioteca de vínculos dinâmicos ou recurso de código. Há duas formas de sintaxe desta função. Use a sintaxe 1 apenas com um recurso de código previamente registrado que use argumentos da função REGISTRO. Use a sintaxe 2a ou 2b para registrar e chamar simultaneamente um recurso de código.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/call-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obrigatório. Texto entre aspas que especifica o nome da DLL (biblioteca de vínculo dinâmico) que contém o procedimento no Microsoft Excel para Windows.' }, + procedure: { name: 'Procedimento', detail: 'Obrigatório. Texto que especifica o nome da função da DLL no Microsoft Excel para Windows. Você também pode usar o valor ordinal da função da instrução EXPORTS do arquivo de definição de módulo (.DEF). O valor ordinal não deve estar em forma de texto.' }, + typeText: { name: 'Type_text', detail: 'Obrigatório. Texto que especifica o tipo de dados do valor de retorno e os tipos de dados de todos os argumentos para a DLL ou o recurso de código. A primeira letra de tipo_texto especifica o valor de retorno. Os códigos usados para tipo_texto encontram-se descritos de forma detalhada em Usando as funções CHAMAR e REGISTRO . No caso de DLLs autônomas ou recursos de código (XLLs), você pode omitir este argumento.' }, + argument1: { name: 'Argumento1,...', detail: 'Opcional. Os argumentos a serem passados ao procedimento.' }, + }, + }, + EUROCONVERT: { + description: 'Converte um número em euros, converte um número de euros em uma moeda de um membro do euro ou converte um número de uma moeda de um membro do euro em outra moeda usando o euro como intermediário (triangulação). As moedas disponíveis para conversão são aquelas de membros da União Europeia (UE) que adotaram o Euro. A função usa taxas fixas de conversão, estabelecidas pela UE.', + abstract: 'Converte um número em euros, converte um número de euros em uma moeda de um membro do euro ou converte um número de uma moeda de um membro do euro em outra moeda usando o euro como intermediário (triangulação). As moedas disponíveis para conversão são aquelas de membros da União Europeia (UE) que adotaram o Euro. A função usa taxas fixas de conversão, estabelecidas pela UE.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/euroconvert-function', + }, + ], + functionParameter: { + number: { name: 'Número', detail: 'Obrigatório. O valor da moeda que você deseja converter ou a referência à célula contendo o valor.' }, + source: { name: 'Origem', detail: 'Obrigatório. Uma cadeia de três letras ou referência à célula contendo a cadeia correspondente ao código ISO para a moeda fonte. Os seguintes códigos de moeda estão disponíveis na função EUROCONVERT:' }, + target: { name: 'Destino', detail: 'Obrigatório. Uma cadeia de três letras ou referência de célula correspondente ao código ISO da moeda que você deseja converter em número. Consulte a tabela Fonte anterior para os códigos ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'Obrigatório. Um valor lógico (VERDADEIRO ou FALSO) ou uma expressão que avalia o valor de VERDADEIRO ou FALSO e que especifica como o resultado é mostrado.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Necessário. Um número inteiro igual ou maior que 3 que especifica o número de dígitos significativos a ser usado para o valor intermediário do euro ao convertê-lo entre as duas moedas de membros do euro. Se você omitir esse argumento, o Excel arredondará o valor intermediário do euro. Se você incluir este argumento ao converter de uma moeda de um membro do euro para o euro, o Excel calcula o valor intermediário do euro que poderia ser convertido para uma moeda de um membro do euro.' }, + }, + }, + REGISTER_ID: { + description: 'Retorna a identificação de registro da DLL (biblioteca de vínculo dinâmico) especificada ou o recurso de código anteriormente registrado. Se a DLL ou o recurso de código não tiver sido registrado, essa função registrará a DLL ou o recurso de código e retornará a identificação do registro.', + abstract: 'Retorna a identificação de registro da DLL (biblioteca de vínculo dinâmico) especificada ou o recurso de código anteriormente registrado. Se a DLL ou o recurso de código não tiver sido registrado, essa função registrará a DLL ou o recurso de código e retornará a identificação do registro.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/register-id-function', + }, + ], + functionParameter: { + moduleText: { name: 'Module_text', detail: 'Obrigatório. O texto que especifica o nome da DLL que contém a função no Microsoft Excel para Windows.' }, + procedure: { name: 'Procedimento', detail: 'Obrigatório. Texto que especifica o nome da função da DLL no Microsoft Excel para Windows. Você também pode usar o valor ordinal da função na instrução EXPORTS no arquivo de definição de módulo (.DEF). O valor ordinal ou o número da identificação do recurso não deve estar na forma de texto.' }, + typeText: { name: 'Type_text', detail: 'Opcional. O texto que especifica o tipo de dados do valor de retorno e os tipos de dados de todos os argumentos para a DLL. A primeira letra de tipo_texto especifica o valor de retorno. Se a função ou o recurso de código já estiver registrado, você poderá omitir esse argumento.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/text/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/text/ru-RU.ts index 74e4803503..5f0e766934 100644 --- a/packages/sheets-formula/src/locale/function-list/text/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/text/ru-RU.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/ru-ru/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/ru-ru/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/ru-ru/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/ru-ru/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/ru-ru/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/ru-ru/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/ru-ru/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ru-ru/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/ru-ru/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/ru-ru/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/ru-ru/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/ru-ru/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/ru-ru/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + reference: { name: 'Ссылка', detail: 'Текст, диапазон или ссылка, содержащие извлекаемый фонетический текст.' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/ru-ru/excel/functions/proper-function', }, ], functionParameter: { @@ -369,11 +368,11 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=ru-Ru', + url: 'https://support.google.com/docs/answer/3098244?hl=ru', }, ], functionParameter: { - text: { name: 'текст', detail: 'исходный текст.' }, + text: { name: 'текст', detail: 'Примечание. Для приведенного выше примера будет возвращено два столбца с данными: один для варианта "извлечь", а второй – для варианта "значений".' }, regularExpression: { name: 'регулярное_выражение', detail: 'заданное выражение. Будет показано первое совпадение с ним в тексте.' }, }, }, @@ -383,7 +382,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=ru-Ru', + url: 'https://support.google.com/docs/answer/3098292?hl=ru', }, ], functionParameter: { @@ -397,7 +396,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=ru-Ru', + url: 'https://support.google.com/docs/answer/3098245?hl=ru', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/ru-ru/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/ru-ru/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ru-ru/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/ru-ru/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/ru-ru/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/t-function-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/ru-ru/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/ru-ru/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/ru-ru/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/ru-ru/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/ru-ru/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/ru-ru/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/ru-ru/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/ru-ru/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/ru-ru/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + moduleText: { name: 'Текст модуля', detail: 'Имя библиотеки DLL, содержащей процедуру.' }, + procedure: { name: 'Процедура', detail: 'Имя или порядковый номер процедуры в DLL.' }, + typeText: { name: 'Текст типа', detail: 'Строка, задающая типы данных аргументов и возвращаемого значения.' }, + argument1: { name: 'Аргумент 1', detail: 'Необязательно. Первый аргумент, передаваемый процедуре.' }, }, }, EUROCONVERT: { @@ -722,12 +723,15 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/ru-ru/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + number: { name: 'Число', detail: 'Денежное значение для преобразования.' }, + source: { name: 'Исходная валюта', detail: 'Код исходной валюты.' }, + target: { name: 'Целевая валюта', detail: 'Код целевой валюты.' }, + fullPrecision: { name: 'Полная точность', detail: 'Логическое значение, управляющее округлением по правилам валюты.' }, + triangulationPrecision: { name: 'Точность триангуляции', detail: 'Необязательно. Число значащих цифр при промежуточном преобразовании через евро.' }, }, }, REGISTER_ID: { @@ -736,12 +740,13 @@ const locale: typeof enUS = { links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/ru-ru/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + moduleText: { name: 'Текст модуля', detail: 'Имя DLL или ресурса кода, содержащего процедуру.' }, + procedure: { name: 'Процедура', detail: 'Имя или порядковый номер процедуры.' }, + typeText: { name: 'Текст типа', detail: 'Необязательно. Строка, задающая типы данных аргументов и возвращаемого значения.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/text/sk-SK.ts index 0ae6724521..ffb6b4e313 100644 --- a/packages/sheets-formula/src/locale/function-list/text/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/text/sk-SK.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/asc-function-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/sk-sk/excel/functions/asc-function', }, ], functionParameter: { @@ -39,7 +39,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/arraytotext-function-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/sk-sk/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -56,7 +56,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/bahttext-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/bahttext-function', }, ], functionParameter: { @@ -72,7 +72,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/char-function-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/char-function', }, ], functionParameter: { @@ -88,7 +88,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/clean-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/sk-sk/excel/functions/clean-function', }, ], functionParameter: { @@ -101,7 +101,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/code-function-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/sk-sk/excel/functions/code-function', }, ], functionParameter: { @@ -114,7 +114,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/concat-function', }, ], functionParameter: { @@ -131,7 +131,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/sk-sk/excel/functions/concatenate-function', }, ], functionParameter: { @@ -145,7 +145,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dbcs-function-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dbcs-function', }, ], functionParameter: { @@ -161,7 +161,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/dollar-function-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/sk-sk/excel/functions/dollar-function', }, ], functionParameter: { @@ -178,7 +178,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/exact-function-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/sk-sk/excel/functions/exact-function', }, ], functionParameter: { @@ -192,7 +192,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/sk-sk/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -210,7 +210,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/find-findb-functions-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/sk-sk/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -228,7 +228,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/fixed-function-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/fixed-function', }, ], functionParameter: { @@ -246,7 +246,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/left-function', }, ], functionParameter: { @@ -260,7 +260,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/left-leftb-functions-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/left-function', }, ], functionParameter: { @@ -274,7 +274,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/len-function', }, ], functionParameter: { @@ -287,7 +287,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/len-lenb-functions-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/sk-sk/excel/functions/len-function', }, ], functionParameter: { @@ -300,7 +300,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/lower-function-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/lower-function', }, ], functionParameter: { @@ -313,7 +313,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mid-function', }, ], functionParameter: { @@ -328,7 +328,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/mid-midb-functions-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/sk-sk/excel/functions/mid-function', }, ], functionParameter: { @@ -360,7 +360,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/numbervalue-function-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/sk-sk/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -375,12 +375,11 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/phonetic-function-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/sk-sk/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + reference: { name: 'Odkaz', detail: 'Text, rozsah alebo odkaz obsahujúci fonetický text, ktorý sa má extrahovať.' }, }, }, PROPER: { @@ -389,7 +388,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/proper-function-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/sk-sk/excel/functions/proper-function', }, ], functionParameter: { @@ -405,7 +404,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098244?hl=sk', }, ], functionParameter: { @@ -419,7 +418,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098292?hl=sk', }, ], functionParameter: { @@ -433,7 +432,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=en', + url: 'https://support.google.com/docs/answer/3098245?hl=sk', }, ], functionParameter: { @@ -448,7 +447,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/replace-function', }, ], functionParameter: { @@ -464,7 +463,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/replace-replaceb-functions-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/sk-sk/excel/functions/replace-function', }, ], functionParameter: { @@ -480,7 +479,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/rept-function-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/sk-sk/excel/functions/rept-function', }, ], functionParameter: { @@ -494,7 +493,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/right-function', }, ], functionParameter: { @@ -508,7 +507,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/right-rightb-functions-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/right-function', }, ], functionParameter: { @@ -522,7 +521,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/sk-sk/excel/functions/search-function', }, ], functionParameter: { @@ -540,7 +539,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/search-searchb-functions-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/sk-sk/excel/functions/search-function', }, ], functionParameter: { @@ -558,7 +557,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/sk-sk/excel/functions/substitute-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/t-function-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/sk-sk/excel/functions/t-function', }, ], functionParameter: { @@ -590,7 +589,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/text-function', }, ], functionParameter: { @@ -604,7 +603,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/textafter-function-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/textafter-function', }, ], functionParameter: { @@ -628,7 +627,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/textbefore-function-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/sk-sk/excel/functions/textbefore-function', }, ], functionParameter: { @@ -652,7 +651,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/textjoin-function', }, ], functionParameter: { @@ -674,7 +673,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/textsplit-function-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/textsplit-function', }, ], functionParameter: { @@ -695,7 +694,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/trim-function-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/sk-sk/excel/functions/trim-function', }, ], functionParameter: { @@ -708,7 +707,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/unichar-function-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/sk-sk/excel/functions/unichar-function', }, ], functionParameter: { @@ -721,7 +720,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/unicode-function-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/sk-sk/excel/functions/unicode-function', }, ], functionParameter: { @@ -734,7 +733,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/upper-function-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/sk-sk/excel/functions/upper-function', }, ], functionParameter: { @@ -747,7 +746,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/sk-sk/excel/functions/value-function', }, ], functionParameter: { @@ -763,7 +762,7 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/valuetotext-function-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/sk-sk/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -780,12 +779,14 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/sk-sk/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + moduleText: { name: 'Text modulu', detail: 'Názov dynamicky prepájanej knižnice (DLL), ktorá obsahuje procedúru.' }, + procedure: { name: 'Procedúra', detail: 'Názov alebo poradové číslo procedúry v knižnici DLL.' }, + typeText: { name: 'Text typu', detail: 'Text určujúci typy údajov argumentov a vrátenej hodnoty.' }, + argument1: { name: 'Argument 1', detail: 'Voliteľné. Prvý argument odovzdaný procedúre.' }, }, }, EUROCONVERT: { @@ -794,12 +795,15 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/sk-sk/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + number: { name: 'Číslo', detail: 'Hodnota meny, ktorá sa má skonvertovať.' }, + source: { name: 'Zdroj', detail: 'Kód zdrojovej meny.' }, + target: { name: 'Cieľ', detail: 'Kód cieľovej meny.' }, + fullPrecision: { name: 'Úplná presnosť', detail: 'Logická hodnota určujúca zaokrúhľovanie podľa pravidiel meny.' }, + triangulationPrecision: { name: 'Presnosť triangulácie', detail: 'Voliteľné. Počet platných číslic pri medziprevode cez euro.' }, }, }, REGISTER_ID: { @@ -808,12 +812,13 @@ const locale: typeof enUS = { links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/sk-sk/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + moduleText: { name: 'Text modulu', detail: 'Názov knižnice DLL alebo zdroja kódu obsahujúceho procedúru.' }, + procedure: { name: 'Procedúra', detail: 'Názov alebo poradové číslo procedúry.' }, + typeText: { name: 'Text typu', detail: 'Voliteľné. Text určujúci typy údajov argumentov a vrátenej hodnoty.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/text/vi-VN.ts index fcb6b0d3ad..7cf68117d0 100644 --- a/packages/sheets-formula/src/locale/function-list/text/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/text/vi-VN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: 'Tham khảo', detail: 'Yêu cầu. Chuỗi văn bản hoặc tham chiếu tới một ô đơn lẻ hoặc một phạm vi ô có chứa chuỗi văn bản furigana.' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/proper-function', }, ], functionParameter: { @@ -369,11 +368,11 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=vi', + url: 'https://support.google.com/docs/answer/3098244?hl=vi', }, ], functionParameter: { - text: { name: 'văn bản', detail: 'Văn bản nhập vào.' }, + text: { name: 'văn bản', detail: 'Lưu ý: Ví dụ trên sẽ trả về 2 cột dữ liệu, “trích xuất” ở cột đầu tiên và “giá trị” ở cột thứ hai.' }, 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ề.' }, }, }, @@ -383,7 +382,7 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=vi', + url: 'https://support.google.com/docs/answer/3098292?hl=vi', }, ], functionParameter: { @@ -397,7 +396,7 @@ const locale: typeof enUS = { links: [ { title: 'Hướng dẫn', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=vi', + url: 'https://support.google.com/docs/answer/3098245?hl=vi', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -703,45 +702,51 @@ const locale: typeof enUS = { }, }, 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', + description: 'Gọi một thủ tục trong một thư viện liên kết động hoặc nguồn mã. Có hai mẫu cú pháp của hàm này. Chỉ dùng cú pháp 1 với tài nguyên mã đã đăng ký trước đây dùng đối số từ hàm REGISTER. Dùng cú pháp 2a hoặc 2b để đăng ký và gọi tài nguyên mã đồng thời.', + abstract: 'Gọi một thủ tục trong một thư viện liên kết động hoặc nguồn mã. Có hai mẫu cú pháp của hàm này. Chỉ dùng cú pháp 1 với tài nguyên mã đã đăng ký trước đây dùng đối số từ hàm REGISTER. Dùng cú pháp 2a hoặc 2b để đăng ký và gọi tài nguyên mã đồng thời.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/call-function-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/vi-vn/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: 'Yêu cầu. Văn bản được trích dẫn xác định tên thư viện nối kết động (DLL) chứa thủ tục trong Microsoft Excel cho Windows.' }, + procedure: { name: 'Thủ tục', detail: 'Yêu cầu. Văn bản chỉ rõ tên hàm trong DLL trong Microsoft Excel cho Windows. Bạn cũng có thể dùng giá trị số thứ tự của hàm từ báo cáo EXPORTS trong tệp định nghĩa mô-đun (.DEF). Giá trị số thứ tự không được ở dạng văn bản.' }, + typeText: { name: 'Type_text', detail: 'Yêu cầu. Văn bản xác định kiểu dữ liệu của giá trị trả về và kiểu dữ liệu của tất cả các đối số cho DLL hoặc tài nguyên mã. Chữ đầu tiên trong kiểu văn bản xác định giá trị trả về. Mã bạn dùng cho kiểu văn bản được mô tả chi tiết trong Dùng hàm CALL và REGISTER . Đối với các DLL hay tài nguyên mã (XLL) riêng lẻ, bạn có thể bỏ qua đối số này.' }, + argument1: { name: 'Đối số 1,...', detail: 'Tùy chọn. Các đối số sẽ được chuyển đến thủ tục.' }, }, }, 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)', + description: 'Quy đổi một số sang euro, quy đổi một số từ euro sang đồng tiền của nước thành viên liên minh châu Âu hoặc quy đổi một số từ đồng tiền của nước thành viên liên minh châu Âu sang nước khác bằng cách dùng euro làm đồng tiền trung gian (phép đạc tam giác). Các đồng tiền có thể quy đổi là đồng tiền của các nước thành viên Liên minh châu Âu (EU) đã đưa vào sử dụng đồng euro. Hàm này dùng các tỉ giá quy đổi ấn định do EU đặt ra.', + abstract: 'Quy đổi một số sang euro, quy đổi một số từ euro sang đồng tiền của nước thành viên liên minh châu Âu hoặc quy đổi một số từ đồng tiền của nước thành viên liên minh châu Âu sang nước khác bằng cách dùng euro làm đồng tiền trung gian (phép đạc tam giác). Các đồng tiền có thể quy đổi là đồng tiền của các nước thành viên Liên minh châu Âu (EU) đã đưa vào sử dụng đồng euro. Hàm này dùng các tỉ giá quy đổi ấn định do EU đặt ra.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/euroconvert-function-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/vi-vn/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: 'Number', detail: 'Bắt buộc. Giá trị tiền tệ mà bạn muốn quy đổi hoặc tham chiếu đến ô chứa giá trị.' }, + source: { name: 'Nguồn', detail: 'Yêu cầu. Chuỗi ba chữ cái hoặc tham chiếu đến ô chứa chuỗi đó, tương ứng với mã ISO cho đồng tiền nguồn. Các mã tiền tệ sau đây sẵn dùng trong hàm EUROCONVERT:' }, + target: { name: 'Mục tiêu', detail: 'Yêu cầu. Chuỗi ba chữ cái hoặc tham chiếu ô, tương ứng với mã ISO của đồng tiền mà bạn muốn quy đổi đối số number sang đồng tiền đó. Hãy xem bảng Source ở trước để biết mã ISO.' }, + fullPrecision: { name: 'Full_precision', detail: 'Yêu cầu. Giá trị lô-gic (TRUE hoặc FALSE) hoặc biểu thức trả về giá trị TRUE hoặc FALSE, xác định cách hiển thị kết quả.' }, + triangulationPrecision: { name: 'Triangulation_precision', detail: 'Yêu cầu. Số nguyên bằng hoặc lớn hơn 3 xác định số chữ số có nghĩa được dùng cho giá trị euro trung gian khi quy đổi giữa hai đồng tiền của nước thành viên liên minh châu Âu. Nếu bạn bỏ qua đối số này, Excel không làm tròn giá trị euro trung gian. Nếu bạn đưa đối số này vào khi quy đổi từ đồng tiền của nước thành viên châu Âu sang đồng euro, Excel sẽ tính toán giá trị euro trung gian có thể được quy đổi sang đồng tiền của nước thành viên liên minh châu Âu sau đó.' }, }, }, 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', + description: 'Trả về ID đăng ký của thư viện nối kết động chỉ định (DLL) hoặc nguồn mã đã được đăng ký trước đó. Nếu DLL hoặc nguồn mã chưa được đăng ký, thì hàm này đăng ký DLL hoặc nguồn mã rồi trả về ID đăng ký.', + abstract: 'Trả về ID đăng ký của thư viện nối kết động chỉ định (DLL) hoặc nguồn mã đã được đăng ký trước đó. Nếu DLL hoặc nguồn mã chưa được đăng ký, thì hàm này đăng ký DLL hoặc nguồn mã rồi trả về ID đăng ký.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/register-id-function-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/vi-vn/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: 'Module_text', detail: 'Yêu cầu. Văn bản chỉ rõ tên của DLL có chứa hàm trong Microsoft Excel cho Windows.' }, + procedure: { name: 'Thủ tục', detail: 'Yêu cầu. Văn bản chỉ rõ tên hàm trong DLL trong Microsoft Excel cho Windows. Bạn cũng có thể dùng giá trị thứ tự của hàm từ câu lệnh EXPORT trong tệp định nghĩa mô-đun (.DEF). Giá trị thứ tự hoặc số ID nguồn không được có dạng văn bản.' }, + typeText: { name: 'Type_text', detail: 'Tùy chọn. Văn bản chỉ định kiểu dữ liệu của giá trị trả về và kiểu dữ liệu của tất cả các đối số cho DLL. Chữ thứ nhất của đối số nhập_văn bản chỉ rõ giá trị trả về. Nếu hàm hoặc nguồn mã đã được đăng ký, thì bạn có thể bỏ qua đối số này.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/text/zh-CN.ts index a5d0e65082..92f89e9ea5 100644 --- a/packages/sheets-formula/src/locale/function-list/text/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/text/zh-CN.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/asc-%E5%87%BD%E6%95%B0-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/zh-cn/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/arraytotext-%E5%87%BD%E6%95%B0-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/zh-cn/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/bahttext-%E5%87%BD%E6%95%B0-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/char-%E5%87%BD%E6%95%B0-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/clean-%E5%87%BD%E6%95%B0-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/zh-cn/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/code-%E5%87%BD%E6%95%B0-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/zh-cn/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/concat-%E5%87%BD%E6%95%B0-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/concatenate-%E5%87%BD%E6%95%B0-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/zh-cn/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dbcs-%E5%87%BD%E6%95%B0-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/dollar-%E5%87%BD%E6%95%B0-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/zh-cn/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/exact-%E5%87%BD%E6%95%B0-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/zh-cn/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/zh-cn/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/zh-cn/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/fixed-%E5%87%BD%E6%95%B0-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/zh-cn/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/lower-%E5%87%BD%E6%95%B0-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/zh-cn/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/numbervalue-%E5%87%BD%E6%95%B0-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/zh-cn/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/phonetic-%E5%87%BD%E6%95%B0-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/zh-cn/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: '引用', detail: '包含要提取的拼音文本的文本、区域或引用。' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/proper-%E5%87%BD%E6%95%B0-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/zh-cn/excel/functions/proper-function', }, ], functionParameter: { @@ -364,16 +363,16 @@ const locale: typeof enUS = { }, }, REGEXEXTRACT: { - description: '根据正则表达式提取第一个匹配的字符串。', - abstract: '根据正则表达式提取第一个匹配的字符串。', + description: '根据正则表达式提取第一个匹配的子字符串。', + abstract: '根据正则表达式提取第一个匹配的子字符串。', links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=zh-Hans', + url: 'https://support.google.com/docs/answer/3098244?hl=zh-Hans', }, ], functionParameter: { - text: { name: '文本', detail: '输入文本' }, + text: { name: '文本', detail: '提示 :上面的示例将返回两列数据:第一列中的“extract”,第二列为“values”。' }, regularExpression: { name: '正则表达式', detail: '此函数将返回 text 中符合此表达式的第一个字符串。' }, }, }, @@ -383,7 +382,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=zh-Hans', + url: 'https://support.google.com/docs/answer/3098292?hl=zh-Hans', }, ], functionParameter: { @@ -397,7 +396,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=zh-Hans', + url: 'https://support.google.com/docs/answer/3098245?hl=zh-Hans', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/zh-cn/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/rept-%E5%87%BD%E6%95%B0-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/zh-cn/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/zh-cn/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/zh-cn/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/substitute-%E5%87%BD%E6%95%B0-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/zh-cn/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/t-%E5%87%BD%E6%95%B0-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/zh-cn/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/text-%E5%87%BD%E6%95%B0-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/textafter-%E5%87%BD%E6%95%B0-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/textbefore-%E5%87%BD%E6%95%B0-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/zh-cn/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/textjoin-%E5%87%BD%E6%95%B0-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/textsplit-%E5%87%BD%E6%95%B0-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/trim-%E5%87%BD%E6%95%B0-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/zh-cn/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/unichar-%E5%87%BD%E6%95%B0-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/zh-cn/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/unicode-%E5%87%BD%E6%95%B0-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/zh-cn/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/upper-%E5%87%BD%E6%95%B0-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/zh-cn/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/value-%E5%87%BD%E6%95%B0-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/zh-cn/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/valuetotext-%E5%87%BD%E6%95%B0-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/zh-cn/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/call-%E5%87%BD%E6%95%B0-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/zh-cn/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: '模块文本', detail: '包含过程的动态链接库 (DLL) 名称。' }, + procedure: { name: '过程', detail: 'DLL 中的过程名称或序号。' }, + typeText: { name: '类型文本', detail: '指定参数和返回值数据类型的文本。' }, + argument1: { name: '参数 1', detail: '可选。传递给过程的第一个参数。' }, }, }, EUROCONVERT: { @@ -724,12 +725,15 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/euroconvert-%E5%87%BD%E6%95%B0-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/zh-cn/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '数字', detail: '要换算的货币值。' }, + source: { name: '源货币', detail: '源货币代码。' }, + target: { name: '目标货币', detail: '目标货币代码。' }, + fullPrecision: { name: '完整精度', detail: '控制是否按货币特定规则舍入的逻辑值。' }, + triangulationPrecision: { name: '三角换算精度', detail: '可选。通过欧元进行中间换算时使用的有效位数。' }, }, }, REGISTER_ID: { @@ -738,12 +742,13 @@ const locale: typeof enUS = { links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/register-id-%E5%87%BD%E6%95%B0-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/zh-cn/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: '模块文本', detail: '包含过程的 DLL 或代码资源名称。' }, + procedure: { name: '过程', detail: '过程名称或序号。' }, + typeText: { name: '类型文本', detail: '可选。指定参数和返回值数据类型的文本。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/text/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/text/zh-TW.ts index 1a904f1ad1..86655add39 100644 --- a/packages/sheets-formula/src/locale/function-list/text/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/text/zh-TW.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/asc-%E5%87%BD%E6%95%B0-0b6abf1c-c663-4004-a964-ebc00b723266', + url: 'https://support.microsoft.com/zh-tw/excel/functions/asc-function', }, ], functionParameter: { @@ -36,7 +36,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/arraytotext-%E5%87%BD%E6%95%B0-9cdcad46-2fa5-4c6b-ac92-14e7bc862b8b', + url: 'https://support.microsoft.com/zh-tw/excel/functions/arraytotext-function', }, ], functionParameter: { @@ -50,7 +50,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/bahttext-%E5%87%BD%E6%95%B0-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/bahttext-function', }, ], functionParameter: { @@ -63,7 +63,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/char-%E5%87%BD%E6%95%B0-bbd249c8-b36e-4a91-8017-1c133f9b837a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/char-function', }, ], functionParameter: { @@ -76,7 +76,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/clean-%E5%87%BD%E6%95%B0-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41', + url: 'https://support.microsoft.com/zh-tw/excel/functions/clean-function', }, ], functionParameter: { @@ -89,7 +89,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/code-%E5%87%BD%E6%95%B0-c32b692b-2ed0-4a04-bdd9-75640144b928', + url: 'https://support.microsoft.com/zh-tw/excel/functions/code-function', }, ], functionParameter: { @@ -102,7 +102,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/concat-%E5%87%BD%E6%95%B0-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/concat-function', }, ], functionParameter: { @@ -116,7 +116,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/concatenate-%E5%87%BD%E6%95%B0-8f8ae884-2ca8-4f7a-b093-75d702bea31d', + url: 'https://support.microsoft.com/zh-tw/excel/functions/concatenate-function', }, ], functionParameter: { @@ -130,7 +130,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dbcs-%E5%87%BD%E6%95%B0-a4025e73-63d2-4958-9423-21a24794c9e5', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dbcs-function', }, ], functionParameter: { @@ -143,7 +143,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/dollar-%E5%87%BD%E6%95%B0-a6cd05d9-9740-4ad3-a469-8109d18ff611', + url: 'https://support.microsoft.com/zh-tw/excel/functions/dollar-function', }, ], functionParameter: { @@ -157,7 +157,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/exact-%E5%87%BD%E6%95%B0-d3087698-fc15-4a15-9631-12575cf29926', + url: 'https://support.microsoft.com/zh-tw/excel/functions/exact-function', }, ], functionParameter: { @@ -171,7 +171,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/zh-tw/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -186,7 +186,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628', + url: 'https://support.microsoft.com/zh-tw/excel/functions/this-article-has-been-retired', }, ], functionParameter: { @@ -201,7 +201,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/fixed-%E5%87%BD%E6%95%B0-ffd5723c-324c-45e9-8b96-e41be2a8274a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/fixed-function', }, ], functionParameter: { @@ -216,7 +216,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/left-function', }, ], functionParameter: { @@ -230,7 +230,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/left-leftb-%E5%87%BD%E6%95%B0-9203d2d2-7960-479b-84c6-1ea52b99640c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/left-function', }, ], functionParameter: { @@ -244,7 +244,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/len-function', }, ], functionParameter: { @@ -257,7 +257,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/len-lenb-%E5%87%BD%E6%95%B0-29236f94-cedc-429d-affd-b5e33d2c67cb', + url: 'https://support.microsoft.com/zh-tw/excel/functions/len-function', }, ], functionParameter: { @@ -270,7 +270,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/lower-%E5%87%BD%E6%95%B0-3f21df02-a80c-44b2-afaf-81358f9fdeb4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/lower-function', }, ], functionParameter: { @@ -283,7 +283,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mid-function', }, ], functionParameter: { @@ -298,7 +298,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/mid-midb-%E5%87%BD%E6%95%B0-d5f9e25c-d7d6-472e-b568-4ecb12433028', + url: 'https://support.microsoft.com/zh-tw/excel/functions/mid-function', }, ], functionParameter: { @@ -327,7 +327,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/numbervalue-%E5%87%BD%E6%95%B0-1b05c8cf-2bfa-4437-af70-596c7ea7d879', + url: 'https://support.microsoft.com/zh-tw/excel/functions/numbervalue-function', }, ], functionParameter: { @@ -342,12 +342,11 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/phonetic-%E5%87%BD%E6%95%B0-9a329dac-0c0f-42f8-9a55-639086988554', + url: 'https://support.microsoft.com/zh-tw/excel/functions/phonetic-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + reference: { name: '參照', detail: '包含要擷取之注音文字的文字、範圍或參照。' }, }, }, PROPER: { @@ -356,7 +355,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/proper-%E5%87%BD%E6%95%B0-52a5a283-e8b2-49be-8506-b2887b889f94', + url: 'https://support.microsoft.com/zh-tw/excel/functions/proper-function', }, ], functionParameter: { @@ -364,17 +363,17 @@ const locale: typeof enUS = { }, }, REGEXEXTRACT: { - description: '根據規則運算式擷取第一個符合規則的字串。', - abstract: '根據規則運算式擷取第一個符合規則的字串。', + description: '根據規則運算式擷取第一個符合規則的子字串。', + abstract: '根據規則運算式擷取第一個符合規則的子字串。', links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3098244?sjid=5628197291201472796-AP&hl=zh-Hant', + url: 'https://support.google.com/docs/answer/3098244?hl=zh-Hant', }, ], functionParameter: { - text: { name: '文字', detail: '輸入文字' }, - regularExpression: { name: '規則運算式', detail: '指定規則運算式,系統就會傳回 text 中第一個符合此運算式的字串。' }, + text: { name: '文字', detail: '輸入文字。' }, + regularExpression: { name: '規則運算式', detail: '指定規則運算式,系統就會傳回 text 中第一個符合此運算式的子字串。' }, }, }, REGEXMATCH: { @@ -383,7 +382,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3098292?sjid=5628197291201472796-AP&hl=zh-Hant', + url: 'https://support.google.com/docs/answer/3098292?hl=zh-Hant', }, ], functionParameter: { @@ -397,7 +396,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.google.com/docs/answer/3098245?sjid=5628197291201472796-AP&hl=zh-Hant', + url: 'https://support.google.com/docs/answer/3098245?hl=zh-Hant', }, ], functionParameter: { @@ -412,7 +411,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/replace-function', }, ], functionParameter: { @@ -428,7 +427,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/replace-replaceb-%E5%87%BD%E6%95%B0-8d799074-2425-4a8a-84bc-82472868878a', + url: 'https://support.microsoft.com/zh-tw/excel/functions/replace-function', }, ], functionParameter: { @@ -444,7 +443,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/rept-%E5%87%BD%E6%95%B0-04c4d778-e712-43b4-9c15-d656582bb061', + url: 'https://support.microsoft.com/zh-tw/excel/functions/rept-function', }, ], functionParameter: { @@ -458,7 +457,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/right-function', }, ], functionParameter: { @@ -472,7 +471,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/right-rightb-%E5%87%BD%E6%95%B0-240267ee-9afa-4639-a02b-f19e1786cf2f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/right-function', }, ], functionParameter: { @@ -486,7 +485,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/zh-tw/excel/functions/search-function', }, ], functionParameter: { @@ -501,7 +500,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495', + url: 'https://support.microsoft.com/zh-tw/excel/functions/search-function', }, ], functionParameter: { @@ -516,7 +515,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/substitute-%E5%87%BD%E6%95%B0-6434944e-a904-4336-a9b0-1e58df3bc332', + url: 'https://support.microsoft.com/zh-tw/excel/functions/substitute-function', }, ], functionParameter: { @@ -532,7 +531,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/t-%E5%87%BD%E6%95%B0-fb83aeec-45e7-4924-af95-53e073541228', + url: 'https://support.microsoft.com/zh-tw/excel/functions/t-function', }, ], functionParameter: { @@ -545,7 +544,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/text-%E5%87%BD%E6%95%B0-20d5ac4d-7b94-49fd-bb38-93d29371225c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/text-function', }, ], functionParameter: { @@ -559,7 +558,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/textafter-%E5%87%BD%E6%95%B0-c8db2546-5b51-416a-9690-c7e6722e90b4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/textafter-function', }, ], functionParameter: { @@ -577,7 +576,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/textbefore-%E5%87%BD%E6%95%B0-d099c28a-dba8-448e-ac6c-f086d0fa1b29', + url: 'https://support.microsoft.com/zh-tw/excel/functions/textbefore-function', }, ], functionParameter: { @@ -595,7 +594,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/textjoin-%E5%87%BD%E6%95%B0-357b449a-ec91-49d0-80c3-0e8fc845691c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/textjoin-function', }, ], functionParameter: { @@ -611,7 +610,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/textsplit-%E5%87%BD%E6%95%B0-b1ca414e-4c21-4ca0-b1b7-bdecace8a6e7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/textsplit-function', }, ], functionParameter: { @@ -629,7 +628,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/trim-%E5%87%BD%E6%95%B0-410388fa-c5df-49c6-b16c-9e5630b479f9', + url: 'https://support.microsoft.com/zh-tw/excel/functions/trim-function', }, ], functionParameter: { @@ -642,7 +641,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/unichar-%E5%87%BD%E6%95%B0-ffeb64f5-f131-44c6-b332-5cd72f0659b8', + url: 'https://support.microsoft.com/zh-tw/excel/functions/unichar-function', }, ], functionParameter: { @@ -655,7 +654,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/unicode-%E5%87%BD%E6%95%B0-adb74aaa-a2a5-4dde-aff6-966e4e81f16f', + url: 'https://support.microsoft.com/zh-tw/excel/functions/unicode-function', }, ], functionParameter: { @@ -668,7 +667,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/upper-%E5%87%BD%E6%95%B0-c11f29b3-d1a3-4537-8df6-04d0049963d6', + url: 'https://support.microsoft.com/zh-tw/excel/functions/upper-function', }, ], functionParameter: { @@ -681,7 +680,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/value-%E5%87%BD%E6%95%B0-257d0108-07dc-437d-ae1c-bc2d3953d8c2', + url: 'https://support.microsoft.com/zh-tw/excel/functions/value-function', }, ], functionParameter: { @@ -694,7 +693,7 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/valuetotext-%E5%87%BD%E6%95%B0-5fff61a2-301a-4ab2-9ffa-0a5242a08fea', + url: 'https://support.microsoft.com/zh-tw/excel/functions/valuetotext-function', }, ], functionParameter: { @@ -708,12 +707,14 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/call-%E5%87%BD%E6%95%B0-32d58445-e646-4ffd-8d5e-b45077a5e995', + url: 'https://support.microsoft.com/zh-tw/excel/functions/call-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: '模組文字', detail: '包含程序的動態連結程式庫 (DLL) 名稱。' }, + procedure: { name: '程序', detail: 'DLL 中的程序名稱或序號。' }, + typeText: { name: '類型文字', detail: '指定引數與傳回值資料類型的文字。' }, + argument1: { name: '引數 1', detail: '選用。傳遞給程序的第一個引數。' }, }, }, EUROCONVERT: { @@ -724,12 +725,15 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/euroconvert-%E5%87%BD%E6%95%B0-79c8fd67-c665-450c-bb6c-15fc92f8345c', + url: 'https://support.microsoft.com/zh-tw/excel/functions/euroconvert-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + number: { name: '數字', detail: '要換算的貨幣值。' }, + source: { name: '來源貨幣', detail: '來源貨幣代碼。' }, + target: { name: '目標貨幣', detail: '目標貨幣代碼。' }, + fullPrecision: { name: '完整精確度', detail: '控制是否依貨幣特定規則四捨五入的邏輯值。' }, + triangulationPrecision: { name: '三角換算精確度', detail: '選用。透過歐元進行中間換算時使用的有效位數。' }, }, }, REGISTER_ID: { @@ -738,12 +742,13 @@ const locale: typeof enUS = { links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/register-id-%E5%87%BD%E6%95%B0-f8f0af0f-fd66-4704-a0f2-87b27b175b50', + url: 'https://support.microsoft.com/zh-tw/excel/functions/register-id-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + moduleText: { name: '模組文字', detail: '包含程序的 DLL 或程式碼資源名稱。' }, + procedure: { name: '程序', detail: '程序名稱或序號。' }, + typeText: { name: '類型文字', detail: '選用。指定引數與傳回值資料類型的文字。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/array/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/univer/ar-SA.ts similarity index 90% rename from packages/sheets-formula/src/locale/function-list/array/fa-IR.ts rename to packages/sheets-formula/src/locale/function-list/univer/ar-SA.ts index 60a22638e2..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/array/fa-IR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/ar-SA.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/univer/ca-ES.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/ca-ES.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/compatibility/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/univer/de-DE.ts similarity index 90% rename from packages/sheets-formula/src/locale/function-list/compatibility/fa-IR.ts rename to packages/sheets-formula/src/locale/function-list/univer/de-DE.ts index 60a22638e2..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/compatibility/fa-IR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/de-DE.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/es-ES.ts b/packages/sheets-formula/src/locale/function-list/univer/es-ES.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/es-ES.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/univer/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/univer/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/univer/fr-FR.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/fr-FR.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/cube/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/univer/id-ID.ts similarity index 90% rename from packages/sheets-formula/src/locale/function-list/cube/fa-IR.ts rename to packages/sheets-formula/src/locale/function-list/univer/id-ID.ts index 60a22638e2..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/cube/fa-IR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/id-ID.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/database/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/univer/it-IT.ts similarity index 90% rename from packages/sheets-formula/src/locale/function-list/database/fa-IR.ts rename to packages/sheets-formula/src/locale/function-list/univer/it-IT.ts index 60a22638e2..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/database/fa-IR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/it-IT.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/univer/ja-JP.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/ja-JP.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/univer/ko-KR.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/ko-KR.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/univer/pl-PL.ts new file mode 100644 index 0000000000..4fe09d91e6 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/univer/pl-PL.ts @@ -0,0 +1,22 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/univer/pt-BR.ts new file mode 100644 index 0000000000..4fe09d91e6 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/univer/pt-BR.ts @@ -0,0 +1,22 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/univer/ru-RU.ts index 1254e14552..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/ru-RU.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale = enUS; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/univer/sk-SK.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/sk-SK.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/univer/vi-VN.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/vi-VN.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/univer/zh-CN.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/zh-CN.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/univer/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/univer/zh-TW.ts index 8127ce1757..4fe09d91e6 100644 --- a/packages/sheets-formula/src/locale/function-list/univer/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/univer/zh-TW.ts @@ -16,6 +16,7 @@ import type enUS from './en-US'; -const locale: typeof enUS = {}; +const locale: typeof enUS = { +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/ar-SA.ts b/packages/sheets-formula/src/locale/function-list/web/ar-SA.ts new file mode 100644 index 0000000000..6fc52f25cd --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/ar-SA.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'ترجع الدالة ENCODEURL سلسلة مشفرة بعنوان URL، مع استبدال بعض الأحرف غير الأبجدية الرقمية برمز النسبة المئوية (٪) ورقم سداسي عشري.', + abstract: 'ترجع الدالة ENCODEURL سلسلة مشفرة بعنوان URL، مع استبدال بعض الأحرف غير الأبجدية الرقمية برمز النسبة المئوية (٪) ورقم سداسي عشري.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'سلسلة لتكون مشفرة بعنوان URL' }, + }, + }, + FILTERXML: { + description: 'ترجع الدالة FILTERXML بيانات محددة من محتوى XML باستخدام xpath المحدد.', + abstract: 'ترجع الدالة FILTERXML بيانات محددة من محتوى XML باستخدام xpath المحدد.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'سلسلة بتنسيق XML صالح.' }, + xpath: { name: 'xpath', detail: 'سلسلة بتنسيق XPath قياسي.' }, + }, + }, + WEBSERVICE: { + description: 'ترجع الدالة WEBSERVICE البيانات من خدمة ويب على الإنترنت أو إنترانت.', + abstract: 'ترجع الدالة WEBSERVICE البيانات من خدمة ويب على الإنترنت أو إنترانت.', + links: [ + { + title: 'التعليمات', + url: 'https://support.microsoft.com/ar-sa/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'عنوان URL لخدمة الويب.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/ca-ES.ts b/packages/sheets-formula/src/locale/function-list/web/ca-ES.ts index 786b726b2a..38f7359d54 100644 --- a/packages/sheets-formula/src/locale/function-list/web/ca-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/web/ca-ES.ts @@ -23,7 +23,7 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/ca-es/excel/functions/encodeurl-function', }, ], functionParameter: { @@ -36,12 +36,12 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/ca-es/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + xml: { name: 'xml', detail: 'Una cadena en format XML vàlid.' }, + xpath: { name: 'xpath', detail: 'Una cadena en format XPath estàndard.' }, }, }, WEBSERVICE: { @@ -50,12 +50,11 @@ const locale: typeof enUS = { links: [ { title: 'Instrucció', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/ca-es/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'nombre1', detail: 'primer' }, - number2: { name: 'nombre2', detail: 'segon' }, + url: { name: 'url', detail: 'L’URL del servei web.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/de-DE.ts b/packages/sheets-formula/src/locale/function-list/web/de-DE.ts new file mode 100644 index 0000000000..32fe4040c4 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/de-DE.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'Die ENCODEURL-Funktion gibt eine URL-codierte Zeichenfolge zurück, wobei bestimmte nicht alphanumerische Zeichen durch das Prozentsymbol (%) und eine Hexadezimalzahl ersetzt werden.', + abstract: 'Die ENCODEURL-Funktion gibt eine URL-codierte Zeichenfolge zurück, wobei bestimmte nicht alphanumerische Zeichen durch das Prozentsymbol (%) und eine Hexadezimalzahl ersetzt werden.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Eine Zeichenfolge, die URL-codiert werden soll' }, + }, + }, + FILTERXML: { + description: 'Die FILTERXML-Funktion gibt bestimmte Daten aus XML-Inhalten mithilfe des angegebenen xpath zurück.', + abstract: 'Die FILTERXML-Funktion gibt bestimmte Daten aus XML-Inhalten mithilfe des angegebenen xpath zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'Eine Zeichenfolge im gültigen XML-Format.' }, + xpath: { name: 'xpath', detail: 'Eine Zeichenfolge im XPath-Standardformat.' }, + }, + }, + WEBSERVICE: { + description: 'Die WEBSERVICE-Funktion gibt Daten aus einem Webdienst im Internet oder Intranet zurück.', + abstract: 'Die WEBSERVICE-Funktion gibt Daten aus einem Webdienst im Internet oder Intranet zurück.', + links: [ + { + title: 'Anleitung', + url: 'https://support.microsoft.com/de-de/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'Die URL des Webdiensts.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/en-US.ts b/packages/sheets-formula/src/locale/function-list/web/en-US.ts index a6d834656d..29aef1913f 100644 --- a/packages/sheets-formula/src/locale/function-list/web/en-US.ts +++ b/packages/sheets-formula/src/locale/function-list/web/en-US.ts @@ -16,12 +16,12 @@ const locale = { ENCODEURL: { - description: 'Returns a URL-encoded string', - abstract: 'Returns a URL-encoded string', + description: 'The ENCODEURL function returns a URL-encoded string, replacing certain non-alphanumeric characters with the percentage symbol (%) and a hexadecimal number.', + abstract: 'The ENCODEURL function returns a URL-encoded string, replacing certain non-alphanumeric characters with the percentage symbol (%) and a hexadecimal number.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/en-us/excel/functions/encodeurl-function', }, ], functionParameter: { @@ -29,31 +29,30 @@ const locale = { }, }, 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', + description: 'The FILTERXML function returns specific data from XML content by using the specified xpath.', + abstract: 'The FILTERXML function returns specific data from 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', + url: 'https://support.microsoft.com/en-us/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: 'A string in valid XML format.' }, + xpath: { name: 'xpath', detail: 'A string in standard XPath format.' }, }, }, WEBSERVICE: { - description: 'Returns data from a web service', - abstract: 'Returns data from a web service', + description: 'The WEBSERVICE function returns data from a web service on the Internet or Intranet.', + abstract: 'The WEBSERVICE function returns data from a web service on the Internet or Intranet.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/en-us/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: 'The URL of the web service.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/es-ES.ts b/packages/sheets-formula/src/locale/function-list/web/es-ES.ts index 714fa57ccb..16816910da 100644 --- a/packages/sheets-formula/src/locale/function-list/web/es-ES.ts +++ b/packages/sheets-formula/src/locale/function-list/web/es-ES.ts @@ -18,44 +18,43 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: 'Devuelve una cadena codificada en URL', - abstract: 'Devuelve una cadena codificada en URL', + description: 'La función URLCODIF devuelve una cadena con codificación URL que reemplaza ciertos caracteres no alfanuméricos por el símbolo de porcentaje (%) y un número hexadecimal.', + abstract: 'La función URLCODIF devuelve una cadena con codificación URL que reemplaza ciertos caracteres no alfanuméricos por el símbolo de porcentaje (%) y un número hexadecimal.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/es-es/excel/functions/encodeurl-function', }, ], functionParameter: { - text: { name: 'texto', detail: 'Una cadena que se va a codificar en URL' }, + text: { name: 'texto', detail: 'Una cadena a la que se va a codificar la dirección URL' }, }, }, FILTERXML: { - description: 'Devuelve datos específicos del contenido XML utilizando la XPath especificada', - abstract: 'Devuelve datos específicos del contenido XML utilizando la XPath especificada', + description: 'La función XMLFILTRO devuelve datos específicos del contenido XML mediante la ruta x especificada.', + abstract: 'La función XMLFILTRO devuelve datos específicos del contenido XML mediante la ruta x especificada.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/es-es/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + xml: { name: 'xml', detail: 'Una cadena en formato XML válido.' }, + xpath: { name: 'xpath', detail: 'Una cadena con formato XPath estándar.' }, }, }, WEBSERVICE: { - description: 'Devuelve datos de un servicio web', - abstract: 'Devuelve datos de un servicio web', + description: 'La función SERVICIOWEB devuelve datos de un servicio web en Internet o en la Intranet.', + abstract: 'La función SERVICIOWEB devuelve datos de un servicio web en Internet o en la Intranet.', links: [ { title: 'Instrucción', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/es-es/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'número1', detail: 'primero' }, - number2: { name: 'número2', detail: 'segundo' }, + url: { name: 'url', detail: 'La dirección URL del servicio web.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/fa-IR.ts b/packages/sheets-formula/src/locale/function-list/web/fa-IR.ts deleted file mode 100644 index 60a22638e2..0000000000 --- a/packages/sheets-formula/src/locale/function-list/web/fa-IR.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright 2023-present DreamNum Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import enUS from './en-US'; - -const locale: typeof enUS = enUS; - -export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/fr-FR.ts b/packages/sheets-formula/src/locale/function-list/web/fr-FR.ts index 60a22638e2..9d8c97ffca 100644 --- a/packages/sheets-formula/src/locale/function-list/web/fr-FR.ts +++ b/packages/sheets-formula/src/locale/function-list/web/fr-FR.ts @@ -14,8 +14,49 @@ * limitations under the License. */ -import enUS from './en-US'; +import type enUS from './en-US'; -const locale: typeof enUS = enUS; +const locale: typeof enUS = { + ENCODEURL: { + description: 'La fonction ENCODEURL retourne une chaîne encodée en URL, en remplaçant certains caractères non alphanumériques par le symbole de pourcentage (%) et un nombre hexadécimal.', + abstract: 'La fonction ENCODEURL retourne une chaîne encodée en URL, en remplaçant certains caractères non alphanumériques par le symbole de pourcentage (%) et un nombre hexadécimal.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Chaîne à encoder au format URL.' }, + }, + }, + FILTERXML: { + description: 'La fonction FILTERXML retourne des données spécifiques à partir de contenu XML à l’aide du xpath spécifié.', + abstract: 'La fonction FILTERXML retourne des données spécifiques à partir de contenu XML à l’aide du xpath spécifié.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'Chaîne au format XML valide.' }, + xpath: { name: 'xpath', detail: 'Chaîne au format XPath standard.' }, + }, + }, + WEBSERVICE: { + description: 'La fonction WEBSERVICE retourne des données à partir d’un service web sur Internet ou intranet.', + abstract: 'La fonction WEBSERVICE retourne des données à partir d’un service web sur Internet ou intranet.', + links: [ + { + title: 'Instruction', + url: 'https://support.microsoft.com/fr-fr/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'L’URL du service web.' }, + }, + }, +}; export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/id-ID.ts b/packages/sheets-formula/src/locale/function-list/web/id-ID.ts new file mode 100644 index 0000000000..cc50dd6445 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/id-ID.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'Fungsi ENCODEURL mengembalikan string berkode URL, mengganti karakter non-alfanumerik tertentu dengan simbol persentase (%) dan angka heksadesimal.', + abstract: 'Fungsi ENCODEURL mengembalikan string berkode URL, mengganti karakter non-alfanumerik tertentu dengan simbol persentase (%) dan angka heksadesimal.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'String yang akan dikodekan dengan URL' }, + }, + }, + FILTERXML: { + description: 'Fungsi FILTERXML mengembalikan data tertentu dari konten XML menggunakan xpath yang ditentukan.', + abstract: 'Fungsi FILTERXML mengembalikan data tertentu dari konten XML menggunakan xpath yang ditentukan.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'String dalam format XML yang valid.' }, + xpath: { name: 'xpath', detail: 'String dalam format XPath standar.' }, + }, + }, + WEBSERVICE: { + description: 'Fungsi WEBSERVICE mengembalikan data dari layanan web di Internet atau Intranet.', + abstract: 'Fungsi WEBSERVICE mengembalikan data dari layanan web di Internet atau Intranet.', + links: [ + { + title: 'Petunjuk', + url: 'https://support.microsoft.com/id-id/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'URL layanan web.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/it-IT.ts b/packages/sheets-formula/src/locale/function-list/web/it-IT.ts new file mode 100644 index 0000000000..7baa6500c2 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/it-IT.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'La funzione CODIFICA.URL restituisce una stringa con codifica URL, sostituendo alcuni caratteri non alfanumerici con il simbolo percentuale (%) e un numero esadecimale.', + abstract: 'La funzione CODIFICA.URL restituisce una stringa con codifica URL, sostituendo alcuni caratteri non alfanumerici con il simbolo percentuale (%) e un numero esadecimale.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Stringa da codificare per l\'URL' }, + }, + }, + FILTERXML: { + description: 'La funzione FILTERXML restituisce dati specifici dal contenuto XML usando il percorso x specificato.', + abstract: 'La funzione FILTERXML restituisce dati specifici dal contenuto XML usando il percorso x specificato.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'Stringa in formato XML valido.' }, + xpath: { name: 'xpath', detail: 'Stringa in formato XPath standard.' }, + }, + }, + WEBSERVICE: { + description: 'La funzione SERVIZIO.WEB restituisce dati da un servizio Web su Internet o Intranet.', + abstract: 'La funzione SERVIZIO.WEB restituisce dati da un servizio Web su Internet o Intranet.', + links: [ + { + title: 'Istruzioni', + url: 'https://support.microsoft.com/it-it/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'L’URL del servizio Web.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/ja-JP.ts b/packages/sheets-formula/src/locale/function-list/web/ja-JP.ts index 3110320332..d779d01380 100644 --- a/packages/sheets-formula/src/locale/function-list/web/ja-JP.ts +++ b/packages/sheets-formula/src/locale/function-list/web/ja-JP.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: 'URL 形式でエンコードされた文字列を返します。', - abstract: 'URL 形式でエンコードされた文字列を返します。', + description: 'ENCODEURL 関数は、URL でエンコードされた文字列を返し、特定の英数字以外の文字をパーセント記号 (%) と 16 進数に置き換えます。', + abstract: 'ENCODEURL 関数は、URL でエンコードされた文字列を返し、特定の英数字以外の文字をパーセント記号 (%) と 16 進数に置き換えます。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/encodeurl-%E9%96%A2%E6%95%B0-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/ja-jp/excel/functions/encodeurl-function', }, ], functionParameter: { @@ -31,31 +31,30 @@ const locale: typeof enUS = { }, }, FILTERXML: { - description: '指定された XPath に基づいて XML コンテンツの特定のデータを返します。', - abstract: '指定された XPath に基づいて XML コンテンツの特定のデータを返します。', + description: 'FILTERXML 関数は、指定された xpath を使用して XML コンテンツから特定のデータを返します。', + abstract: 'FILTERXML 関数は、指定された xpath を使用して XML コンテンツから特定のデータを返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/filterxml-%E9%96%A2%E6%95%B0-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/ja-jp/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: '有効な XML 形式の文字列。' }, + xpath: { name: 'xpath', detail: '標準の XPath 形式の文字列。' }, }, }, WEBSERVICE: { - description: 'Web サービスからのデータを返します。', - abstract: 'Web サービスからのデータを返します。', + description: 'WEBSERVICE 関数は、インターネットまたはイントラネット上の Web サービスからデータを返します。', + abstract: 'WEBSERVICE 関数は、インターネットまたはイントラネット上の Web サービスからデータを返します。', links: [ { title: '指導', - url: 'https://support.microsoft.com/ja-jp/office/webservice-%E9%96%A2%E6%95%B0-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/ja-jp/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: 'Web サービスの URL。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/ko-KR.ts b/packages/sheets-formula/src/locale/function-list/web/ko-KR.ts index 9112dcd330..504a797a1f 100644 --- a/packages/sheets-formula/src/locale/function-list/web/ko-KR.ts +++ b/packages/sheets-formula/src/locale/function-list/web/ko-KR.ts @@ -18,44 +18,43 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: 'Returns a URL-encoded string', - abstract: 'Returns a URL-encoded string', + description: 'ENCODEURL 함수는 URL로 인코딩된 문자열을 반환하여 영숫자가 아닌 특정 문자를 백분율 기호(%) 및 16진수 숫자로 바꿉니다.', + abstract: 'ENCODEURL 함수는 URL로 인코딩된 문자열을 반환하여 영숫자가 아닌 특정 문자를 백분율 기호(%) 및 16진수 숫자로 바꿉니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/ko-kr/excel/functions/encodeurl-function', }, ], functionParameter: { - text: { name: 'text', detail: 'A string to be URL encoded' }, + text: { name: 'text', detail: 'URL로 인코딩할 문자열' }, }, }, 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', + description: 'FILTERXML 함수는 지정된 xpath를 사용하여 XML 콘텐츠에서 특정 데이터를 반환합니다.', + abstract: 'FILTERXML 함수는 지정된 xpath를 사용하여 XML 콘텐츠에서 특정 데이터를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/ko-kr/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: '유효한 XML 형식의 문자열입니다.' }, + xpath: { name: 'xpath', detail: '표준 XPath 형식의 문자열입니다.' }, }, }, WEBSERVICE: { - description: 'Returns data from a web service', - abstract: 'Returns data from a web service', + description: 'WEBSERVICE 함수는 인터넷 또는 인트라넷의 웹 서비스에서 데이터를 반환합니다.', + abstract: 'WEBSERVICE 함수는 인터넷 또는 인트라넷의 웹 서비스에서 데이터를 반환합니다.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/ko-kr/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: '웹 서비스의 URL입니다.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/pl-PL.ts b/packages/sheets-formula/src/locale/function-list/web/pl-PL.ts new file mode 100644 index 0000000000..1f5a99b12a --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/pl-PL.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'Funkcja ENCODEURL zwraca ciąg zakodowany w adresie URL, zastępując niektóre znaki niealfanumeryczne symbolem procentu (%) i liczbą szesnastkową.', + abstract: 'Funkcja ENCODEURL zwraca ciąg zakodowany w adresie URL, zastępując niektóre znaki niealfanumeryczne symbolem procentu (%) i liczbą szesnastkową.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Ciąg, który ma zostać zakodowany w adresie URL' }, + }, + }, + FILTERXML: { + description: 'Funkcja FILTERXML zwraca określone dane z zawartości XML przy użyciu określonego ciągu xpath.', + abstract: 'Funkcja FILTERXML zwraca określone dane z zawartości XML przy użyciu określonego ciągu xpath.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'Ciąg w prawidłowym formacie XML.' }, + xpath: { name: 'xpath', detail: 'Ciąg w standardowym formacie XPath.' }, + }, + }, + WEBSERVICE: { + description: 'Funkcja WEBSERVICE zwraca dane z usługi sieci Web w Internecie lub intranecie.', + abstract: 'Funkcja WEBSERVICE zwraca dane z usługi sieci Web w Internecie lub intranecie.', + links: [ + { + title: 'Instrukcje', + url: 'https://support.microsoft.com/pl-pl/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'Adres URL usługi sieci Web.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/pt-BR.ts b/packages/sheets-formula/src/locale/function-list/web/pt-BR.ts new file mode 100644 index 0000000000..f3a43116c1 --- /dev/null +++ b/packages/sheets-formula/src/locale/function-list/web/pt-BR.ts @@ -0,0 +1,62 @@ +/** + * Copyright 2023-present DreamNum Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type enUS from './en-US'; + +const locale: typeof enUS = { + ENCODEURL: { + description: 'A função ENCODEURL retorna uma cadeia de caracteres codificada por URL, substituindo determinados caracteres não alfanuméricos pelo símbolo percentual (%) e um número hexadecimal.', + abstract: 'A função ENCODEURL retorna uma cadeia de caracteres codificada por URL, substituindo determinados caracteres não alfanuméricos pelo símbolo percentual (%) e um número hexadecimal.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/encodeurl-function', + }, + ], + functionParameter: { + text: { name: 'text', detail: 'Uma cadeia de caracteres a ser codificada por URL' }, + }, + }, + FILTERXML: { + description: 'A função FILTERXML devolve dados específicos do conteúdo XML com o xpath especificado.', + abstract: 'A função FILTERXML devolve dados específicos do conteúdo XML com o xpath especificado.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/filterxml-function', + }, + ], + functionParameter: { + xml: { name: 'xml', detail: 'Uma cadeia no formato XML válido.' }, + xpath: { name: 'xpath', detail: 'Uma cadeia no formato XPath padrão.' }, + }, + }, + WEBSERVICE: { + description: 'A função WEBSERVICE retorna dados de um serviço Web na Internet ou intranet.', + abstract: 'A função WEBSERVICE retorna dados de um serviço Web na Internet ou intranet.', + links: [ + { + title: 'Instruções', + url: 'https://support.microsoft.com/pt-br/excel/functions/webservice-function', + }, + ], + functionParameter: { + url: { name: 'url', detail: 'A URL do serviço Web.' }, + }, + }, +}; + +export default locale; diff --git a/packages/sheets-formula/src/locale/function-list/web/ru-RU.ts b/packages/sheets-formula/src/locale/function-list/web/ru-RU.ts index 80c5bf0acc..71e3e07fd1 100644 --- a/packages/sheets-formula/src/locale/function-list/web/ru-RU.ts +++ b/packages/sheets-formula/src/locale/function-list/web/ru-RU.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: 'Возвращает строку, закодированную в формате URL', - abstract: 'Возвращает строку, закодированную в формате URL', + description: 'Функция ENCODEURL возвращает строку в кодировке URL-адреса, заменяя некоторые небукенно-цифровые символы символами процента (%) и шестнадцатеричным числом.', + abstract: 'Функция ENCODEURL возвращает строку в кодировке URL-адреса, заменяя некоторые небукенно-цифровые символы символами процента (%) и шестнадцатеричным числом.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/ru-ru/excel/functions/encodeurl-function', }, ], functionParameter: { @@ -31,31 +31,30 @@ const locale: typeof enUS = { }, }, FILTERXML: { - description: 'Возвращает конкретные данные из XML-содержимого, используя указанный XPath', - abstract: 'Возвращает конкретные данные из XML-содержимого, используя указанный XPath', + description: 'Функция FILTERXML возвращает определенные данные из XML-содержимого с помощью указанного xpath.', + abstract: 'Функция FILTERXML возвращает определенные данные из XML-содержимого с помощью указанного xpath.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/ru-ru/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + xml: { name: 'xml', detail: 'Строка в допустимом формате XML.' }, + xpath: { name: 'xpath', detail: 'Строка в стандартном формате XPath.' }, }, }, WEBSERVICE: { - description: 'Возвращает данные с веб-сервиса', - abstract: 'Возвращает данные с веб-сервиса', + description: 'Функция WEBSERVICE возвращает данные из веб-службы в Интернете или интрасети.', + abstract: 'Функция WEBSERVICE возвращает данные из веб-службы в Интернете или интрасети.', links: [ { title: 'Инструкция', - url: 'https://support.microsoft.com/ru-ru/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/ru-ru/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'первый' }, - number2: { name: 'number2', detail: 'второй' }, + url: { name: 'url', detail: 'URL-адрес веб-службы.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/sk-SK.ts b/packages/sheets-formula/src/locale/function-list/web/sk-SK.ts index bbbcd66cc6..4a8f847b64 100644 --- a/packages/sheets-formula/src/locale/function-list/web/sk-SK.ts +++ b/packages/sheets-formula/src/locale/function-list/web/sk-SK.ts @@ -18,44 +18,43 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: 'Vracia URL-kódovaný reťazec', - abstract: 'Vracia URL-kódovaný reťazec', + description: 'Funkcia ENCODEURL vráti reťazec zakódovaný URL a niektoré nealfanumerické znaky nahradí symbolom percenta (%) a šestnástkovým číslom.', + abstract: 'Funkcia ENCODEURL vráti reťazec zakódovaný URL a niektoré nealfanumerické znaky nahradí symbolom percenta (%) a šestnástkovým číslom.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/sk-sk/excel/functions/encodeurl-function', }, ], functionParameter: { - text: { name: 'text', detail: 'Reťazec, ktorý sa má URL-kódovať.' }, + text: { name: 'text', detail: 'Reťazec, ktorého URL adresa sa má zakódovať' }, }, }, FILTERXML: { - description: 'Vracia konkrétne údaje z obsahu XML pomocou zadaného XPath', - abstract: 'Vracia konkrétne údaje z obsahu XML pomocou zadaného XPath', + description: 'Funkcia FILTERXML vráti určité údaje z obsahu XML s použitím zadanej xpath.', + abstract: 'Funkcia FILTERXML vráti určité údaje z obsahu XML s použitím zadanej xpath.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/sk-sk/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + xml: { name: 'xml', detail: 'Reťazec v platnom formáte XML.' }, + xpath: { name: 'xpath', detail: 'Reťazec v štandardnom formáte XPath.' }, }, }, WEBSERVICE: { - description: 'Vracia údaje z webovej služby', - abstract: 'Vracia údaje z webovej služby', + description: 'Funkcia WEBSERVICE vráti údaje z webovej služby na internete alebo intranete.', + abstract: 'Funkcia WEBSERVICE vráti údaje z webovej služby na internete alebo intranete.', links: [ { title: 'Inštrukcia', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/sk-sk/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'prvý' }, - number2: { name: 'number2', detail: 'druhý' }, + url: { name: 'url', detail: 'Adresa URL webovej služby.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/vi-VN.ts b/packages/sheets-formula/src/locale/function-list/web/vi-VN.ts index 7b0f652f25..08e6031ab4 100644 --- a/packages/sheets-formula/src/locale/function-list/web/vi-VN.ts +++ b/packages/sheets-formula/src/locale/function-list/web/vi-VN.ts @@ -18,44 +18,43 @@ import type enUS from './en-US'; const locale: typeof enUS = { 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.', + description: 'Hàm ENCODEURL trả về một chuỗi được mã hóa URL, thay thế một số ký tự không phải là chữ và số bằng ký hiệu phần trăm (%) và một số thập lục phân.', + abstract: 'Hàm ENCODEURL trả về một chuỗi được mã hóa URL, thay thế một số ký tự không phải là chữ và số bằng ký hiệu phần trăm (%) và một số thập lục phân.', 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', + url: 'https://support.microsoft.com/vi-vn/excel/functions/encodeurl-function', }, ], functionParameter: { - text: { name: 'văn bản', detail: 'Một chuỗi cần mã hóa URL.' }, + text: { name: 'văn bản', detail: 'Một chuỗi cần mã hóa URL' }, }, }, 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', + description: 'Hàm FILTERXML trả về dữ liệu cụ thể từ nội dung XML bằng cách sử dụng xpath đã xác định.', + abstract: 'Hàm FILTERXML trả về dữ liệu cụ thể từ nội dung XML bằng cách sử dụng xpath đã xác định.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/vi-vn/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: 'Một chuỗi ở định dạng XML hợp lệ.' }, + xpath: { name: 'xpath', detail: 'Một chuỗi ở định dạng XPath chuẩn.' }, }, }, WEBSERVICE: { - description: 'Returns data from a web service', - abstract: 'Returns data from a web service', + description: 'Hàm WEBSERVICE trả về dữ liệu từ một dịch vụ web trên Internet hoặc Intranet.', + abstract: 'Hàm WEBSERVICE trả về dữ liệu từ một dịch vụ web trên Internet hoặc Intranet.', links: [ { title: 'Instruction', - url: 'https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/vi-vn/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: 'URL của dịch vụ web.' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/zh-CN.ts b/packages/sheets-formula/src/locale/function-list/web/zh-CN.ts index 13289298e1..47950cf162 100644 --- a/packages/sheets-formula/src/locale/function-list/web/zh-CN.ts +++ b/packages/sheets-formula/src/locale/function-list/web/zh-CN.ts @@ -18,12 +18,12 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: '返回 URL 编码的字符串', - abstract: '返回 URL 编码的字符串', + description: 'ENCODEURL 函数返回 URL 编码的字符串,将某些非字母数字字符替换为百分比符号 (%) 和十六进制数字。', + abstract: 'ENCODEURL 函数返回 URL 编码的字符串,将某些非字母数字字符替换为百分比符号 (%) 和十六进制数字。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/encodeurl-%E5%87%BD%E6%95%B0-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/zh-cn/excel/functions/encodeurl-function', }, ], functionParameter: { @@ -31,31 +31,30 @@ const locale: typeof enUS = { }, }, FILTERXML: { - description: '通过使用指定的 XPath,返回 XML 内容中的特定数据', - abstract: '通过使用指定的 XPath,返回 XML 内容中的特定数据', + description: 'FILTERXML 函数使用指定的 xpath 从 XML 内容返回特定数据。', + abstract: 'FILTERXML 函数使用指定的 xpath 从 XML 内容返回特定数据。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/filterxml-%E5%87%BD%E6%95%B0-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/zh-cn/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: '有效 XML 格式的字符串。' }, + xpath: { name: 'xpath', detail: '采用标准 XPath 格式的字符串。' }, }, }, WEBSERVICE: { - description: '返回 Web 服务中的数据。', - abstract: '返回 Web 服务中的数据。', + description: 'WEBSERVICE 函数从 Internet 或 Intranet 上的 Web 服务返回数据。', + abstract: 'WEBSERVICE 函数从 Internet 或 Intranet 上的 Web 服务返回数据。', links: [ { title: '教学', - url: 'https://support.microsoft.com/zh-cn/office/webservice-%E5%87%BD%E6%95%B0-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/zh-cn/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: 'Web 服务的 URL。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/function-list/web/zh-TW.ts b/packages/sheets-formula/src/locale/function-list/web/zh-TW.ts index d772934a92..662fbb4234 100644 --- a/packages/sheets-formula/src/locale/function-list/web/zh-TW.ts +++ b/packages/sheets-formula/src/locale/function-list/web/zh-TW.ts @@ -18,44 +18,43 @@ import type enUS from './en-US'; const locale: typeof enUS = { ENCODEURL: { - description: '傳回 URL 編碼的字串', - abstract: '傳回 URL 編碼的字串', + description: 'ENCODEURL 函式會回傳一個 URL 編碼的字串,將某些非字母數字字元替換為百分比符號 (%) 並以十六進位數字表示。', + abstract: 'ENCODEURL 函式會回傳一個 URL 編碼的字串,將某些非字母數字字元替換為百分比符號 (%) 並以十六進位數字表示。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/encodeurl-%E5%87%BD%E6%95%B0-07c7fb90-7c60-4bff-8687-fac50fe33d0e', + url: 'https://support.microsoft.com/zh-tw/excel/functions/encodeurl-function', }, ], functionParameter: { - text: { name: '文字', detail: '要編碼 URL 的字串' }, + text: { name: '文字', detail: '一個要編碼為 URL 的字串' }, }, }, FILTERXML: { - description: '透過使用指定的 XPath,傳回 XML 內容中的特定資料', - abstract: '透過使用指定的 XPath,傳回 XML 內容中的特定資料', + description: 'FILTERXML 函式透過指定的 xpath 從 XML 內容中回傳特定資料。', + abstract: 'FILTERXML 函式透過指定的 xpath 從 XML 內容中回傳特定資料。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/filterxml-%E5%87%BD%E6%95%B0-4df72efc-11ec-4951-86f5-c1374812f5b7', + url: 'https://support.microsoft.com/zh-tw/excel/functions/filterxml-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + xml: { name: 'xml', detail: '有效 XML 格式的字串。' }, + xpath: { name: 'xpath', detail: '標準 XPath 格式的字串。' }, }, }, WEBSERVICE: { - description: '傳回 Web 服務中的資料。', - abstract: '傳回 Web 服務中的資料。', + description: 'WEBSERVICE 函式會回傳來自網際網路或內聯網網路上的網路服務資料。', + abstract: 'WEBSERVICE 函式會回傳來自網際網路或內聯網網路上的網路服務資料。', links: [ { title: '教導', - url: 'https://support.microsoft.com/zh-tw/office/webservice-%E5%87%BD%E6%95%B0-0546a35a-ecc6-4739-aed7-c0b7ce1562c4', + url: 'https://support.microsoft.com/zh-tw/excel/functions/webservice-function', }, ], functionParameter: { - number1: { name: 'number1', detail: 'first' }, - number2: { name: 'number2', detail: 'second' }, + url: { name: 'url', detail: '網頁服務的 URL。' }, }, }, }; diff --git a/packages/sheets-formula/src/locale/id-ID.ts b/packages/sheets-formula/src/locale/id-ID.ts index 6627706062..bf7baaa7b4 100644 --- a/packages/sheets-formula/src/locale/id-ID.ts +++ b/packages/sheets-formula/src/locale/id-ID.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/id-ID'; +import compatibility from './function-list/compatibility/id-ID'; +import cube from './function-list/cube/id-ID'; +import database from './function-list/database/id-ID'; +import date from './function-list/date/id-ID'; +import engineering from './function-list/engineering/id-ID'; +import financial from './function-list/financial/id-ID'; +import information from './function-list/information/id-ID'; +import logical from './function-list/logical/id-ID'; +import lookup from './function-list/lookup/id-ID'; +import math from './function-list/math/id-ID'; +import statistical from './function-list/statistical/id-ID'; +import text from './function-list/text/id-ID'; +import univer from './function-list/univer/id-ID'; +import web from './function-list/web/id-ID'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/it-IT.ts b/packages/sheets-formula/src/locale/it-IT.ts index d17040fd1f..b66a10b251 100644 --- a/packages/sheets-formula/src/locale/it-IT.ts +++ b/packages/sheets-formula/src/locale/it-IT.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/it-IT'; +import compatibility from './function-list/compatibility/it-IT'; +import cube from './function-list/cube/it-IT'; +import database from './function-list/database/it-IT'; +import date from './function-list/date/it-IT'; +import engineering from './function-list/engineering/it-IT'; +import financial from './function-list/financial/it-IT'; +import information from './function-list/information/it-IT'; +import logical from './function-list/logical/it-IT'; +import lookup from './function-list/lookup/it-IT'; +import math from './function-list/math/it-IT'; +import statistical from './function-list/statistical/it-IT'; +import text from './function-list/text/it-IT'; +import univer from './function-list/univer/it-IT'; +import web from './function-list/web/it-IT'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/pl-PL.ts b/packages/sheets-formula/src/locale/pl-PL.ts index 4fec1b844d..2defd190a4 100644 --- a/packages/sheets-formula/src/locale/pl-PL.ts +++ b/packages/sheets-formula/src/locale/pl-PL.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/pl-PL'; +import compatibility from './function-list/compatibility/pl-PL'; +import cube from './function-list/cube/pl-PL'; +import database from './function-list/database/pl-PL'; +import date from './function-list/date/pl-PL'; +import engineering from './function-list/engineering/pl-PL'; +import financial from './function-list/financial/pl-PL'; +import information from './function-list/information/pl-PL'; +import logical from './function-list/logical/pl-PL'; +import lookup from './function-list/lookup/pl-PL'; +import math from './function-list/math/pl-PL'; +import statistical from './function-list/statistical/pl-PL'; +import text from './function-list/text/pl-PL'; +import univer from './function-list/univer/pl-PL'; +import web from './function-list/web/pl-PL'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/pt-BR.ts b/packages/sheets-formula/src/locale/pt-BR.ts index 1862425d87..60ef9842df 100644 --- a/packages/sheets-formula/src/locale/pt-BR.ts +++ b/packages/sheets-formula/src/locale/pt-BR.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/pt-BR'; +import compatibility from './function-list/compatibility/pt-BR'; +import cube from './function-list/cube/pt-BR'; +import database from './function-list/database/pt-BR'; +import date from './function-list/date/pt-BR'; +import engineering from './function-list/engineering/pt-BR'; +import financial from './function-list/financial/pt-BR'; +import information from './function-list/information/pt-BR'; +import logical from './function-list/logical/pt-BR'; +import lookup from './function-list/lookup/pt-BR'; +import math from './function-list/math/pt-BR'; +import statistical from './function-list/statistical/pt-BR'; +import text from './function-list/text/pt-BR'; +import univer from './function-list/univer/pt-BR'; +import web from './function-list/web/pt-BR'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/locale/zh-HK.ts b/packages/sheets-formula/src/locale/zh-HK.ts index d8489ca3e9..da5c3e3ccc 100644 --- a/packages/sheets-formula/src/locale/zh-HK.ts +++ b/packages/sheets-formula/src/locale/zh-HK.ts @@ -16,21 +16,21 @@ import type enUS from './en-US'; -import array from './function-list/array/en-US'; -import compatibility from './function-list/compatibility/en-US'; -import cube from './function-list/cube/en-US'; -import database from './function-list/database/en-US'; -import date from './function-list/date/en-US'; -import engineering from './function-list/engineering/en-US'; -import financial from './function-list/financial/en-US'; -import information from './function-list/information/en-US'; -import logical from './function-list/logical/en-US'; -import lookup from './function-list/lookup/en-US'; -import math from './function-list/math/en-US'; -import statistical from './function-list/statistical/en-US'; -import text from './function-list/text/en-US'; -import univer from './function-list/univer/en-US'; -import web from './function-list/web/en-US'; +import array from './function-list/array/zh-TW'; +import compatibility from './function-list/compatibility/zh-TW'; +import cube from './function-list/cube/zh-TW'; +import database from './function-list/database/zh-TW'; +import date from './function-list/date/zh-TW'; +import engineering from './function-list/engineering/zh-TW'; +import financial from './function-list/financial/zh-TW'; +import information from './function-list/information/zh-TW'; +import logical from './function-list/logical/zh-TW'; +import lookup from './function-list/lookup/zh-TW'; +import math from './function-list/math/zh-TW'; +import statistical from './function-list/statistical/zh-TW'; +import text from './function-list/text/zh-TW'; +import univer from './function-list/univer/zh-TW'; +import web from './function-list/web/zh-TW'; const locale: typeof enUS = { 'sheets-formula': { diff --git a/packages/sheets-formula/src/services/function-list/cube.ts b/packages/sheets-formula/src/services/function-list/cube.ts index c8f9086a8a..67386752a6 100644 --- a/packages/sheets-formula/src/services/function-list/cube.ts +++ b/packages/sheets-formula/src/services/function-list/cube.ts @@ -25,19 +25,33 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBEKPIMEMBER.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.kpiName.name', + detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.kpiName.detail', + example: '"Revenue"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.kpiProperty.name', + detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.kpiProperty.detail', + example: '"KPIValue"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.caption.name', + detail: 'sheets-formula.functionList.CUBEKPIMEMBER.functionParameter.caption.detail', + example: '"Revenue KPI"', + require: 0, + repeat: 0, + }, ], }, { @@ -47,19 +61,26 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBEMEMBER.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.memberExpression.name', + detail: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.memberExpression.detail', + example: '"[Product].[All Products]"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.caption.name', + detail: 'sheets-formula.functionList.CUBEMEMBER.functionParameter.caption.detail', + example: '"All Products"', + require: 0, + repeat: 0, + }, ], }, { @@ -69,16 +90,23 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.memberExpression.name', + detail: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.memberExpression.detail', + example: '"[Product].[All Products]"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.property.name', + detail: 'sheets-formula.functionList.CUBEMEMBERPROPERTY.functionParameter.property.detail', + example: '"Caption"', require: 1, repeat: 0, }, @@ -91,19 +119,33 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBERANKEDMEMBER.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.setExpression.name', + detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.setExpression.detail', + example: '"[Product].[All Products].Children"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.rank.name', + detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.rank.detail', + example: '1', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.caption.name', + detail: 'sheets-formula.functionList.CUBERANKEDMEMBER.functionParameter.caption.detail', + example: '"Top Product"', + require: 0, + repeat: 0, + }, ], }, { @@ -113,19 +155,40 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBESET.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBESET.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBESET.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBESET.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBESET.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBESET.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBESET.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBESET.functionParameter.setExpression.name', + detail: 'sheets-formula.functionList.CUBESET.functionParameter.setExpression.detail', + example: '"[Product].[All Products].Children"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.CUBESET.functionParameter.caption.name', + detail: 'sheets-formula.functionList.CUBESET.functionParameter.caption.detail', + example: '"Products"', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CUBESET.functionParameter.sortOrder.name', + detail: 'sheets-formula.functionList.CUBESET.functionParameter.sortOrder.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CUBESET.functionParameter.sortBy.name', + detail: 'sheets-formula.functionList.CUBESET.functionParameter.sortBy.detail', + example: '"[Measures].[Sales]"', + require: 0, + repeat: 0, + }, ], }, { @@ -135,16 +198,9 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBESETCOUNT.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.set.name', + detail: 'sheets-formula.functionList.CUBESETCOUNT.functionParameter.set.detail', + example: 'A1', require: 1, repeat: 0, }, @@ -157,18 +213,18 @@ export const FUNCTION_LIST_CUBE: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CUBEVALUE.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CUBEVALUE.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CUBEVALUE.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CUBEVALUE.functionParameter.connection.name', + detail: 'sheets-formula.functionList.CUBEVALUE.functionParameter.connection.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CUBEVALUE.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CUBEVALUE.functionParameter.number2.detail', - example: 'A1:A20', - require: 1, - repeat: 0, + name: 'sheets-formula.functionList.CUBEVALUE.functionParameter.memberExpression.name', + detail: 'sheets-formula.functionList.CUBEVALUE.functionParameter.memberExpression.detail', + example: '"[Measures].[Sales]"', + require: 0, + repeat: 1, }, ], }, diff --git a/packages/sheets-formula/src/services/function-list/date.ts b/packages/sheets-formula/src/services/function-list/date.ts index 92cc704b9f..d21a2bed85 100644 --- a/packages/sheets-formula/src/services/function-list/date.ts +++ b/packages/sheets-formula/src/services/function-list/date.ts @@ -68,8 +68,8 @@ export const FUNCTION_LIST_DATE: IFunctionInfo[] = [ repeat: 0, }, { - name: 'sheets-formula.functionList.DATEDIF.functionParameter.method.name', - detail: 'sheets-formula.functionList.DATEDIF.functionParameter.method.detail', + name: 'sheets-formula.functionList.DATEDIF.functionParameter.unit.name', + detail: 'sheets-formula.functionList.DATEDIF.functionParameter.unit.detail', example: '"D"', require: 1, repeat: 0, diff --git a/packages/sheets-formula/src/services/function-list/financial.ts b/packages/sheets-formula/src/services/function-list/financial.ts index dcf4b9df5a..b5dd17ba2f 100644 --- a/packages/sheets-formula/src/services/function-list/financial.ts +++ b/packages/sheets-formula/src/services/function-list/financial.ts @@ -132,19 +132,54 @@ export const FUNCTION_LIST_FINANCIAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.AMORDEGRC.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.number1.name', - detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.cost.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.cost.detail', + example: '2400', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.number2.name', - detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.datePurchased.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.datePurchased.detail', + example: '"2008-8-19"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.firstPeriod.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.firstPeriod.detail', + example: '"2008-12-31"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.salvage.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.salvage.detail', + example: '300', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.period.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.period.detail', + example: '1', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.rate.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.rate.detail', + example: '15%', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.AMORDEGRC.functionParameter.basis.name', + detail: 'sheets-formula.functionList.AMORDEGRC.functionParameter.basis.detail', + example: '1', + require: 0, + repeat: 0, + }, ], }, { diff --git a/packages/sheets-formula/src/services/function-list/information.ts b/packages/sheets-formula/src/services/function-list/information.ts index cdf96a771f..e8df3d839e 100644 --- a/packages/sheets-formula/src/services/function-list/information.ts +++ b/packages/sheets-formula/src/services/function-list/information.ts @@ -62,16 +62,9 @@ export const FUNCTION_LIST_INFORMATION: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.INFO.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.INFO.functionParameter.number1.name', - detail: 'sheets-formula.functionList.INFO.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.INFO.functionParameter.number2.name', - detail: 'sheets-formula.functionList.INFO.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.INFO.functionParameter.typeText.name', + detail: 'sheets-formula.functionList.INFO.functionParameter.typeText.detail', + example: '"system"', require: 1, repeat: 0, }, @@ -307,16 +300,9 @@ export const FUNCTION_LIST_INFORMATION: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.ISOMITTED.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.ISOMITTED.functionParameter.number1.name', - detail: 'sheets-formula.functionList.ISOMITTED.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.ISOMITTED.functionParameter.number2.name', - detail: 'sheets-formula.functionList.ISOMITTED.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.ISOMITTED.functionParameter.argument.name', + detail: 'sheets-formula.functionList.ISOMITTED.functionParameter.argument.detail', + example: 'value', require: 1, repeat: 0, }, @@ -400,7 +386,7 @@ export const FUNCTION_LIST_INFORMATION: IFunctionInfo[] = [ name: 'sheets-formula.functionList.SHEET.functionParameter.value.name', detail: 'sheets-formula.functionList.SHEET.functionParameter.value.detail', example: 'A1', - require: 1, + require: 0, repeat: 0, }, ], diff --git a/packages/sheets-formula/src/services/function-list/lookup.ts b/packages/sheets-formula/src/services/function-list/lookup.ts index b697665e6b..f06cbcb83d 100644 --- a/packages/sheets-formula/src/services/function-list/lookup.ts +++ b/packages/sheets-formula/src/services/function-list/lookup.ts @@ -309,19 +309,33 @@ export const FUNCTION_LIST_LOOKUP: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.GETPIVOTDATA.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.number1.name', - detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.dataField.name', + detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.dataField.detail', + example: '"Sales"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.number2.name', - detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.pivotTable.name', + detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.pivotTable.detail', + example: 'A3', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.field1.name', + detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.field1.detail', + example: '"Month"', + require: 0, + repeat: 1, + }, + { + name: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.item1.name', + detail: 'sheets-formula.functionList.GETPIVOTDATA.functionParameter.item1.detail', + example: '"March"', + require: 0, + repeat: 1, + }, ], }, { @@ -643,19 +657,33 @@ export const FUNCTION_LIST_LOOKUP: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.RTD.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.RTD.functionParameter.number1.name', - detail: 'sheets-formula.functionList.RTD.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.RTD.functionParameter.progId.name', + detail: 'sheets-formula.functionList.RTD.functionParameter.progId.detail', + example: '"mycomaddin.progid"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.RTD.functionParameter.number2.name', - detail: 'sheets-formula.functionList.RTD.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.RTD.functionParameter.server.name', + detail: 'sheets-formula.functionList.RTD.functionParameter.server.detail', + example: '""', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.RTD.functionParameter.topic1.name', + detail: 'sheets-formula.functionList.RTD.functionParameter.topic1.detail', + example: '"Topic"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.RTD.functionParameter.topic2.name', + detail: 'sheets-formula.functionList.RTD.functionParameter.topic2.detail', + example: '"Item"', + require: 0, + repeat: 1, + }, ], }, { @@ -718,7 +746,7 @@ export const FUNCTION_LIST_LOOKUP: IFunctionInfo[] = [ name: 'sheets-formula.functionList.SORTBY.functionParameter.sortOrder1.name', detail: 'sheets-formula.functionList.SORTBY.functionParameter.sortOrder1.detail', example: '1', - require: 1, + require: 0, repeat: 0, }, { diff --git a/packages/sheets-formula/src/services/function-list/math.ts b/packages/sheets-formula/src/services/function-list/math.ts index 4927140f9c..0c021ca7a6 100644 --- a/packages/sheets-formula/src/services/function-list/math.ts +++ b/packages/sheets-formula/src/services/function-list/math.ts @@ -676,17 +676,17 @@ export const FUNCTION_LIST_MATH: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.ISO_CEILING.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number1.name', - detail: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number.name', + detail: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number.detail', + example: '-4.3', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number2.name', - detail: 'sheets-formula.functionList.ISO_CEILING.functionParameter.number2.detail', - example: 'A1:A20', - require: 1, + name: 'sheets-formula.functionList.ISO_CEILING.functionParameter.significance.name', + detail: 'sheets-formula.functionList.ISO_CEILING.functionParameter.significance.detail', + example: '2', + require: 0, repeat: 0, }, ], @@ -713,28 +713,6 @@ export const FUNCTION_LIST_MATH: IFunctionInfo[] = [ }, ], }, - { - functionName: FUNCTION_NAMES_MATH.LET, - functionType: FunctionType.Math, - description: 'sheets-formula.functionList.LET.description', - abstract: 'sheets-formula.functionList.LET.abstract', - functionParameter: [ - { - name: 'sheets-formula.functionList.LET.functionParameter.number1.name', - detail: 'sheets-formula.functionList.LET.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.LET.functionParameter.number2.name', - detail: 'sheets-formula.functionList.LET.functionParameter.number2.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - ], - }, { functionName: FUNCTION_NAMES_MATH.LN, functionType: FunctionType.Math, diff --git a/packages/sheets-formula/src/services/function-list/statistical.ts b/packages/sheets-formula/src/services/function-list/statistical.ts index b9716a972e..cfcf23f073 100644 --- a/packages/sheets-formula/src/services/function-list/statistical.ts +++ b/packages/sheets-formula/src/services/function-list/statistical.ts @@ -616,15 +616,15 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.COUNTA.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.COUNTA.functionParameter.number1.name', - detail: 'sheets-formula.functionList.COUNTA.functionParameter.number1.detail', + name: 'sheets-formula.functionList.COUNTA.functionParameter.value1.name', + detail: 'sheets-formula.functionList.COUNTA.functionParameter.value1.detail', example: 'A1:A20', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.COUNTA.functionParameter.number2.name', - detail: 'sheets-formula.functionList.COUNTA.functionParameter.number2.detail', + name: 'sheets-formula.functionList.COUNTA.functionParameter.value2.name', + detail: 'sheets-formula.functionList.COUNTA.functionParameter.value2.detail', example: 'B2:B10', require: 0, repeat: 1, @@ -1010,19 +1010,47 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.FORECAST_ETS.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.number1.name', - detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.targetDate.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.targetDate.detail', + example: 'A10', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.number2.name', - detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.values.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.values.detail', + example: 'B2:B9', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.timeline.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.timeline.detail', + example: 'A2:A9', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.seasonality.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.seasonality.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.dataCompletion.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.dataCompletion.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.aggregation.name', + detail: 'sheets-formula.functionList.FORECAST_ETS.functionParameter.aggregation.detail', + example: '1', + require: 0, + repeat: 0, + }, ], }, { @@ -1032,19 +1060,54 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.number1.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.targetDate.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.targetDate.detail', + example: 'A10', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.number2.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.values.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.values.detail', + example: 'B2:B9', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.timeline.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.timeline.detail', + example: 'A2:A9', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.confidenceLevel.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.confidenceLevel.detail', + example: '0.95', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.seasonality.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.seasonality.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.dataCompletion.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.dataCompletion.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.aggregation.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_CONFINT.functionParameter.aggregation.detail', + example: '1', + require: 0, + repeat: 0, + }, ], }, { @@ -1054,19 +1117,33 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.number1.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.values.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.values.detail', + example: 'B2:B9', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.number2.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.timeline.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.timeline.detail', + example: 'A2:A9', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.dataCompletion.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.dataCompletion.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.aggregation.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_SEASONALITY.functionParameter.aggregation.detail', + example: '1', + require: 0, + repeat: 0, + }, ], }, { @@ -1076,19 +1153,47 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.FORECAST_ETS_STAT.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.number1.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.values.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.values.detail', + example: 'B2:B9', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.number2.name', - detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.timeline.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.timeline.detail', + example: 'A2:A9', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.statisticType.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.statisticType.detail', + example: '1', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.seasonality.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.seasonality.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.dataCompletion.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.dataCompletion.detail', + example: '1', + require: 0, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.aggregation.name', + detail: 'sheets-formula.functionList.FORECAST_ETS_STAT.functionParameter.aggregation.detail', + example: '1', + require: 0, + repeat: 0, + }, ], }, { @@ -2353,15 +2458,15 @@ export const FUNCTION_LIST_STATISTICAL: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.RSQ.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.RSQ.functionParameter.array1.name', - detail: 'sheets-formula.functionList.RSQ.functionParameter.array1.detail', + name: 'sheets-formula.functionList.RSQ.functionParameter.knownYs.name', + detail: 'sheets-formula.functionList.RSQ.functionParameter.knownYs.detail', example: 'A1:A4', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.RSQ.functionParameter.array2.name', - detail: 'sheets-formula.functionList.RSQ.functionParameter.array2.detail', + name: 'sheets-formula.functionList.RSQ.functionParameter.knownXs.name', + detail: 'sheets-formula.functionList.RSQ.functionParameter.knownXs.detail', example: 'B1:B4', require: 1, repeat: 0, diff --git a/packages/sheets-formula/src/services/function-list/text.ts b/packages/sheets-formula/src/services/function-list/text.ts index aecaf78ee3..d112ce3d49 100644 --- a/packages/sheets-formula/src/services/function-list/text.ts +++ b/packages/sheets-formula/src/services/function-list/text.ts @@ -510,16 +510,9 @@ export const FUNCTION_LIST_TEXT: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.PHONETIC.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.PHONETIC.functionParameter.number1.name', - detail: 'sheets-formula.functionList.PHONETIC.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.PHONETIC.functionParameter.number2.name', - detail: 'sheets-formula.functionList.PHONETIC.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.PHONETIC.functionParameter.reference.name', + detail: 'sheets-formula.functionList.PHONETIC.functionParameter.reference.detail', + example: 'A1', require: 1, repeat: 0, }, @@ -1172,19 +1165,33 @@ export const FUNCTION_LIST_TEXT: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.CALL.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.CALL.functionParameter.number1.name', - detail: 'sheets-formula.functionList.CALL.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CALL.functionParameter.moduleText.name', + detail: 'sheets-formula.functionList.CALL.functionParameter.moduleText.detail', + example: '"MyLibrary"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.CALL.functionParameter.number2.name', - detail: 'sheets-formula.functionList.CALL.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.CALL.functionParameter.procedure.name', + detail: 'sheets-formula.functionList.CALL.functionParameter.procedure.detail', + example: '"MyFunction"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.CALL.functionParameter.typeText.name', + detail: 'sheets-formula.functionList.CALL.functionParameter.typeText.detail', + example: '"JJ"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.CALL.functionParameter.argument1.name', + detail: 'sheets-formula.functionList.CALL.functionParameter.argument1.detail', + example: '1', + require: 0, + repeat: 1, + }, ], }, { @@ -1194,19 +1201,40 @@ export const FUNCTION_LIST_TEXT: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.EUROCONVERT.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number1.name', - detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number.name', + detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number.detail', + example: '100', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number2.name', - detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.source.name', + detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.source.detail', + example: '"DEM"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.target.name', + detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.target.detail', + example: '"EUR"', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.fullPrecision.name', + detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.fullPrecision.detail', + example: 'false', + require: 1, + repeat: 0, + }, + { + name: 'sheets-formula.functionList.EUROCONVERT.functionParameter.triangulationPrecision.name', + detail: 'sheets-formula.functionList.EUROCONVERT.functionParameter.triangulationPrecision.detail', + example: '3', + require: 0, + repeat: 0, + }, ], }, { @@ -1216,19 +1244,26 @@ export const FUNCTION_LIST_TEXT: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.REGISTER_ID.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.REGISTER_ID.functionParameter.number1.name', - detail: 'sheets-formula.functionList.REGISTER_ID.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.REGISTER_ID.functionParameter.moduleText.name', + detail: 'sheets-formula.functionList.REGISTER_ID.functionParameter.moduleText.detail', + example: '"MyLibrary"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.REGISTER_ID.functionParameter.number2.name', - detail: 'sheets-formula.functionList.REGISTER_ID.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.REGISTER_ID.functionParameter.procedure.name', + detail: 'sheets-formula.functionList.REGISTER_ID.functionParameter.procedure.detail', + example: '"MyFunction"', require: 1, repeat: 0, }, + { + name: 'sheets-formula.functionList.REGISTER_ID.functionParameter.typeText.name', + detail: 'sheets-formula.functionList.REGISTER_ID.functionParameter.typeText.detail', + example: '"JJ"', + require: 0, + repeat: 0, + }, ], }, ]; diff --git a/packages/sheets-formula/src/services/function-list/web.ts b/packages/sheets-formula/src/services/function-list/web.ts index 1cca717bd0..664931a3c3 100644 --- a/packages/sheets-formula/src/services/function-list/web.ts +++ b/packages/sheets-formula/src/services/function-list/web.ts @@ -41,16 +41,16 @@ export const FUNCTION_LIST_WEB: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.FILTERXML.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.FILTERXML.functionParameter.number1.name', - detail: 'sheets-formula.functionList.FILTERXML.functionParameter.number1.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FILTERXML.functionParameter.xml.name', + detail: 'sheets-formula.functionList.FILTERXML.functionParameter.xml.detail', + example: '"value"', require: 1, repeat: 0, }, { - name: 'sheets-formula.functionList.FILTERXML.functionParameter.number2.name', - detail: 'sheets-formula.functionList.FILTERXML.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.FILTERXML.functionParameter.xpath.name', + detail: 'sheets-formula.functionList.FILTERXML.functionParameter.xpath.detail', + example: '"//item"', require: 1, repeat: 0, }, @@ -63,16 +63,9 @@ export const FUNCTION_LIST_WEB: IFunctionInfo[] = [ abstract: 'sheets-formula.functionList.WEBSERVICE.abstract', functionParameter: [ { - name: 'sheets-formula.functionList.WEBSERVICE.functionParameter.number1.name', - detail: 'sheets-formula.functionList.WEBSERVICE.functionParameter.number1.detail', - example: 'A1:A20', - require: 1, - repeat: 0, - }, - { - name: 'sheets-formula.functionList.WEBSERVICE.functionParameter.number2.name', - detail: 'sheets-formula.functionList.WEBSERVICE.functionParameter.number2.detail', - example: 'A1:A20', + name: 'sheets-formula.functionList.WEBSERVICE.functionParameter.url.name', + detail: 'sheets-formula.functionList.WEBSERVICE.functionParameter.url.detail', + example: '"https://example.com/api"', require: 1, repeat: 0, },