@univerjs/engine-formula 1.0.0-beta.1 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.js +43 -22
- package/lib/cjs/locale/ca-ES.js +35 -35
- package/lib/cjs/locale/fr-FR.js +14 -14
- package/lib/cjs/locale/ko-KR.js +17 -17
- package/lib/cjs/locale/sk-SK.js +8 -8
- package/lib/cjs/locale/vi-VN.js +2 -2
- package/lib/es/index.js +44 -22
- package/lib/es/locale/ca-ES.js +35 -35
- package/lib/es/locale/fr-FR.js +14 -14
- package/lib/es/locale/ko-KR.js +17 -17
- package/lib/es/locale/sk-SK.js +8 -8
- package/lib/es/locale/vi-VN.js +2 -2
- package/lib/index.js +44 -22
- package/lib/locale/ca-ES.js +35 -35
- package/lib/locale/fr-FR.js +14 -14
- package/lib/locale/ko-KR.js +17 -17
- package/lib/locale/sk-SK.js +8 -8
- package/lib/locale/vi-VN.js +2 -2
- package/lib/types/index.d.ts +0 -1
- package/lib/types/models/formula-data.model.d.ts +3 -1
- package/lib/umd/index.js +4 -4
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/fr-FR.js +2 -2
- package/lib/umd/locale/ko-KR.js +3 -3
- package/lib/umd/locale/sk-SK.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/package.json +4 -4
package/lib/cjs/index.js
CHANGED
|
@@ -5030,12 +5030,14 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5030
5030
|
super();
|
|
5031
5031
|
this._univerInstanceService = _univerInstanceService;
|
|
5032
5032
|
this._lexerTreeBuilder = _lexerTreeBuilder;
|
|
5033
|
+
_defineProperty(this, "_formulaIdMapData", {});
|
|
5033
5034
|
_defineProperty(this, "_arrayFormulaRange", {});
|
|
5034
5035
|
_defineProperty(this, "_arrayFormulaCellData", {});
|
|
5035
5036
|
_defineProperty(this, "_unitImageFormulaData", {});
|
|
5036
5037
|
}
|
|
5037
5038
|
dispose() {
|
|
5038
5039
|
super.dispose();
|
|
5040
|
+
this._formulaIdMapData = {};
|
|
5039
5041
|
this._arrayFormulaRange = {};
|
|
5040
5042
|
this._arrayFormulaCellData = {};
|
|
5041
5043
|
this._unitImageFormulaData = {};
|
|
@@ -5107,7 +5109,7 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5107
5109
|
const cellMatrix = worksheet.getCellMatrix();
|
|
5108
5110
|
const sheetId = worksheet.getSheetId();
|
|
5109
5111
|
this._initSheetArrayFormulaData(unitId, sheetId, cellMatrix);
|
|
5110
|
-
initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix);
|
|
5112
|
+
this.initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix);
|
|
5111
5113
|
}
|
|
5112
5114
|
}
|
|
5113
5115
|
const allBases = this._univerInstanceService.getAllUnitsForType(_univerjs_core.UniverInstanceType.UNIVER_BASE);
|
|
@@ -5154,6 +5156,22 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5154
5156
|
}
|
|
5155
5157
|
return formulaData;
|
|
5156
5158
|
}
|
|
5159
|
+
initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix) {
|
|
5160
|
+
const result = buildSheetFormulaData(formulaData, unitId, sheetId, cellMatrix);
|
|
5161
|
+
if (!this._formulaIdMapData[unitId]) this._formulaIdMapData[unitId] = {};
|
|
5162
|
+
this._formulaIdMapData[unitId][sheetId] = result.formulaIdMap;
|
|
5163
|
+
return result.formulaData;
|
|
5164
|
+
}
|
|
5165
|
+
clearFormulaIdMap(unitId, sheetId) {
|
|
5166
|
+
if (sheetId == null) {
|
|
5167
|
+
delete this._formulaIdMapData[unitId];
|
|
5168
|
+
return;
|
|
5169
|
+
}
|
|
5170
|
+
const unitFormulaIdMap = this._formulaIdMapData[unitId];
|
|
5171
|
+
if (!unitFormulaIdMap) return;
|
|
5172
|
+
delete unitFormulaIdMap[sheetId];
|
|
5173
|
+
if (Object.keys(unitFormulaIdMap).length === 0) delete this._formulaIdMapData[unitId];
|
|
5174
|
+
}
|
|
5157
5175
|
getSheetFormulaData(unitId, sheetId) {
|
|
5158
5176
|
const formulaData = {};
|
|
5159
5177
|
const workbook = this._univerInstanceService.getUnit(unitId);
|
|
@@ -5163,7 +5181,7 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5163
5181
|
if (worksheet == null) return {};
|
|
5164
5182
|
const cellMatrix = worksheet.getCellMatrix();
|
|
5165
5183
|
this._initSheetArrayFormulaData(unitId, sheetId, cellMatrix);
|
|
5166
|
-
initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix);
|
|
5184
|
+
this.initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix);
|
|
5167
5185
|
return formulaData[unitId][sheetId];
|
|
5168
5186
|
}
|
|
5169
5187
|
getArrayFormulaRange() {
|
|
@@ -5352,8 +5370,7 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5352
5370
|
c
|
|
5353
5371
|
};
|
|
5354
5372
|
});
|
|
5355
|
-
const formulaData = {};
|
|
5356
|
-
initSheetFormulaData(formulaData, unitId, sheetId, sharedFormulaCellMatrix);
|
|
5373
|
+
const formulaData = buildSheetFormulaData({}, unitId, sheetId, sharedFormulaCellMatrix).formulaData;
|
|
5357
5374
|
const deleteFormulaIdMap = /* @__PURE__ */ new Map();
|
|
5358
5375
|
const sheetFormulaDataMatrix = new _univerjs_core.ObjectMatrix(((_formulaData$unitId = formulaData[unitId]) === null || _formulaData$unitId === void 0 ? void 0 : _formulaData$unitId[sheetId]) ?? {});
|
|
5359
5376
|
cellMatrix.forValue((r, c, cell) => {
|
|
@@ -5474,16 +5491,18 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5474
5491
|
const { f, si } = cell;
|
|
5475
5492
|
if ((0, _univerjs_core.isFormulaString)(f)) return f;
|
|
5476
5493
|
if ((0, _univerjs_core.isFormulaId)(si)) {
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5494
|
+
var _this$_formulaIdMapDa;
|
|
5495
|
+
let formulaIdMap = (_this$_formulaIdMapDa = this._formulaIdMapData[unitId]) === null || _this$_formulaIdMapDa === void 0 ? void 0 : _this$_formulaIdMapDa[sheetId];
|
|
5496
|
+
let formulaInfo = formulaIdMap === null || formulaIdMap === void 0 ? void 0 : formulaIdMap[String(si)];
|
|
5497
|
+
const masterCell = formulaInfo == null ? null : cellMatrix.getValue(formulaInfo.r, formulaInfo.c);
|
|
5498
|
+
if (formulaInfo == null || (masterCell === null || masterCell === void 0 ? void 0 : masterCell.si) !== si || (masterCell === null || masterCell === void 0 ? void 0 : masterCell.f) !== formulaInfo.f) {
|
|
5499
|
+
var _this$_formulaIdMapDa2;
|
|
5500
|
+
this.initSheetFormulaData({}, unitId, sheetId, cellMatrix);
|
|
5501
|
+
formulaIdMap = (_this$_formulaIdMapDa2 = this._formulaIdMapData[unitId]) === null || _this$_formulaIdMapDa2 === void 0 ? void 0 : _this$_formulaIdMapDa2[sheetId];
|
|
5502
|
+
formulaInfo = formulaIdMap === null || formulaIdMap === void 0 ? void 0 : formulaIdMap[String(si)];
|
|
5503
|
+
}
|
|
5504
|
+
if (!formulaInfo) return null;
|
|
5505
|
+
return this._lexerTreeBuilder.moveFormulaRefOffset(formulaInfo.f, column - formulaInfo.c, row - formulaInfo.r);
|
|
5487
5506
|
}
|
|
5488
5507
|
return null;
|
|
5489
5508
|
}
|
|
@@ -5578,10 +5597,10 @@ let FormulaDataModel = class FormulaDataModel extends _univerjs_core.Disposable
|
|
|
5578
5597
|
}
|
|
5579
5598
|
};
|
|
5580
5599
|
FormulaDataModel = __decorate([__decorateParam(0, _univerjs_core.IUniverInstanceService), __decorateParam(1, (0, _univerjs_core.Inject)(LexerTreeBuilder))], FormulaDataModel);
|
|
5581
|
-
function
|
|
5600
|
+
function buildSheetFormulaData(formulaData, unitId, sheetId, cellMatrix) {
|
|
5582
5601
|
if (!formulaData[unitId]) formulaData[unitId] = {};
|
|
5583
5602
|
if (!formulaData[unitId][sheetId]) formulaData[unitId][sheetId] = {};
|
|
5584
|
-
const formulaIdMap =
|
|
5603
|
+
const formulaIdMap = {};
|
|
5585
5604
|
const sheetFormulaDataMatrix = new _univerjs_core.ObjectMatrix(formulaData[unitId][sheetId]);
|
|
5586
5605
|
cellMatrix.forValue((r, c, cell) => {
|
|
5587
5606
|
const formulaString = (cell === null || cell === void 0 ? void 0 : cell.f) || "";
|
|
@@ -5593,11 +5612,11 @@ function initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix) {
|
|
|
5593
5612
|
f: formulaString,
|
|
5594
5613
|
si: formulaId
|
|
5595
5614
|
});
|
|
5596
|
-
formulaIdMap
|
|
5615
|
+
formulaIdMap[formulaId] = {
|
|
5597
5616
|
f: formulaString,
|
|
5598
5617
|
r,
|
|
5599
5618
|
c
|
|
5600
|
-
}
|
|
5619
|
+
};
|
|
5601
5620
|
} else if (checkFormulaString && !checkFormulaId) sheetFormulaDataMatrix.setValue(r, c, { f: formulaString });
|
|
5602
5621
|
else if (!checkFormulaString && checkFormulaId) sheetFormulaDataMatrix.setValue(r, c, {
|
|
5603
5622
|
f: "",
|
|
@@ -5608,7 +5627,7 @@ function initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix) {
|
|
|
5608
5627
|
const formulaString = (cell === null || cell === void 0 ? void 0 : cell.f) || "";
|
|
5609
5628
|
const formulaId = (cell === null || cell === void 0 ? void 0 : cell.si) || "";
|
|
5610
5629
|
if ((0, _univerjs_core.isFormulaId)(formulaId) && !(0, _univerjs_core.isFormulaString)(formulaString)) {
|
|
5611
|
-
const formulaInfo = formulaIdMap
|
|
5630
|
+
const formulaInfo = formulaIdMap[formulaId];
|
|
5612
5631
|
if (formulaInfo) {
|
|
5613
5632
|
const x = c - formulaInfo.c;
|
|
5614
5633
|
const y = r - formulaInfo.r;
|
|
@@ -5623,7 +5642,10 @@ function initSheetFormulaData(formulaData, unitId, sheetId, cellMatrix) {
|
|
|
5623
5642
|
}
|
|
5624
5643
|
});
|
|
5625
5644
|
const newSheetFormulaData = sheetFormulaDataMatrix.getMatrix();
|
|
5626
|
-
return {
|
|
5645
|
+
return {
|
|
5646
|
+
formulaData: { [unitId]: { [sheetId]: newSheetFormulaData } },
|
|
5647
|
+
formulaIdMap
|
|
5648
|
+
};
|
|
5627
5649
|
}
|
|
5628
5650
|
const BASE_LEGACY_FIELD_REF_PATTERN = /\{([^}]+)\}/g;
|
|
5629
5651
|
const BASE_TABLE_SCOPED_FIELD_REF_PATTERN = /\b([A-Z_][\w.]*)\[\[\s*#(This Row|Data)\s*\],\s*\[([^\]]+)\]\]/gi;
|
|
@@ -43107,7 +43129,7 @@ function getObjectValue(result, isUseStrip = false) {
|
|
|
43107
43129
|
//#endregion
|
|
43108
43130
|
//#region package.json
|
|
43109
43131
|
var name = "@univerjs/engine-formula";
|
|
43110
|
-
var version = "1.0.0-beta.
|
|
43132
|
+
var version = "1.0.0-beta.2";
|
|
43111
43133
|
|
|
43112
43134
|
//#endregion
|
|
43113
43135
|
//#region src/services/global-computing-status.service.ts
|
|
@@ -57154,7 +57176,6 @@ exports.getRangeWithRefsString = getRangeWithRefsString;
|
|
|
57154
57176
|
exports.handleNumfmtInCell = handleNumfmtInCell;
|
|
57155
57177
|
exports.handleRefStringInfo = handleRefStringInfo;
|
|
57156
57178
|
exports.includeFormulaLexerToken = includeFormulaLexerToken;
|
|
57157
|
-
exports.initSheetFormulaData = initSheetFormulaData;
|
|
57158
57179
|
exports.isFormulaLexerToken = isFormulaLexerToken;
|
|
57159
57180
|
exports.isFormulaReferenceAddingContext = isFormulaReferenceAddingContext;
|
|
57160
57181
|
exports.isFormulaReferenceAddingTextContext = isFormulaReferenceAddingTextContext;
|
package/lib/cjs/locale/ca-ES.js
CHANGED
|
@@ -3146,20 +3146,20 @@ const locale$9 = {
|
|
|
3146
3146
|
}
|
|
3147
3147
|
},
|
|
3148
3148
|
EFFECT: {
|
|
3149
|
-
description: "
|
|
3150
|
-
abstract: "
|
|
3149
|
+
description: "Devuelve la tasa de interés anual efectiva",
|
|
3150
|
+
abstract: "Devuelve la tasa de interés anual efectiva",
|
|
3151
3151
|
links: [{
|
|
3152
|
-
title: "
|
|
3152
|
+
title: "Instrucciones",
|
|
3153
3153
|
url: "https://support.microsoft.com/ca-es/excel/functions/effect-function"
|
|
3154
3154
|
}],
|
|
3155
3155
|
functionParameter: {
|
|
3156
3156
|
nominalRate: {
|
|
3157
|
-
name: "
|
|
3158
|
-
detail: "
|
|
3157
|
+
name: "tasa_nominal",
|
|
3158
|
+
detail: "La tasa de interés nominal."
|
|
3159
3159
|
},
|
|
3160
3160
|
npery: {
|
|
3161
|
-
name: "
|
|
3162
|
-
detail: "
|
|
3161
|
+
name: "núm_per_año",
|
|
3162
|
+
detail: "El número de periodos de composición por año."
|
|
3163
3163
|
}
|
|
3164
3164
|
}
|
|
3165
3165
|
},
|
|
@@ -3212,66 +3212,66 @@ const locale$9 = {
|
|
|
3212
3212
|
}
|
|
3213
3213
|
},
|
|
3214
3214
|
INTRATE: {
|
|
3215
|
-
description: "
|
|
3216
|
-
abstract: "
|
|
3215
|
+
description: "Devuelve la tasa de interés para la inversión total en un valor bursátil.",
|
|
3216
|
+
abstract: "Devuelve la tasa de interés para la inversión total en un valor bursátil.",
|
|
3217
3217
|
links: [{
|
|
3218
|
-
title: "
|
|
3218
|
+
title: "Instrucciones",
|
|
3219
3219
|
url: "https://support.microsoft.com/ca-es/excel/functions/intrate-function"
|
|
3220
3220
|
}],
|
|
3221
3221
|
functionParameter: {
|
|
3222
3222
|
settlement: {
|
|
3223
|
-
name: "
|
|
3224
|
-
detail: "
|
|
3223
|
+
name: "liquidación",
|
|
3224
|
+
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."
|
|
3225
3225
|
},
|
|
3226
3226
|
maturity: {
|
|
3227
|
-
name: "
|
|
3228
|
-
detail: "
|
|
3227
|
+
name: "vencimiento",
|
|
3228
|
+
detail: "Obligatorio. La fecha de vencimiento del valor bursátil. La fecha de vencimiento es aquella en la que expira el valor bursátil."
|
|
3229
3229
|
},
|
|
3230
3230
|
investment: {
|
|
3231
|
-
name: "
|
|
3232
|
-
detail: "
|
|
3231
|
+
name: "inversión",
|
|
3232
|
+
detail: "Obligatorio. Es la cantidad de dinero invertido en el valor bursátil."
|
|
3233
3233
|
},
|
|
3234
3234
|
redemption: {
|
|
3235
|
-
name: "
|
|
3236
|
-
detail: "
|
|
3235
|
+
name: "rescate",
|
|
3236
|
+
detail: "Obligatorio. Es el valor que se recibirá en la fecha de vencimiento."
|
|
3237
3237
|
},
|
|
3238
3238
|
basis: {
|
|
3239
|
-
name: "
|
|
3240
|
-
detail: "
|
|
3239
|
+
name: "base",
|
|
3240
|
+
detail: "Opcional. Determina en qué tipo de base deben contarse los días."
|
|
3241
3241
|
}
|
|
3242
3242
|
}
|
|
3243
3243
|
},
|
|
3244
3244
|
IPMT: {
|
|
3245
|
-
description: "
|
|
3246
|
-
abstract: "
|
|
3245
|
+
description: "Devuelve el pago de intereses de una inversión durante un periodo determinado",
|
|
3246
|
+
abstract: "Devuelve el pago de intereses de una inversión durante un periodo determinado",
|
|
3247
3247
|
links: [{
|
|
3248
|
-
title: "
|
|
3248
|
+
title: "Instrucciones",
|
|
3249
3249
|
url: "https://support.microsoft.com/ca-es/excel/functions/ipmt-function"
|
|
3250
3250
|
}],
|
|
3251
3251
|
functionParameter: {
|
|
3252
3252
|
rate: {
|
|
3253
|
-
name: "
|
|
3254
|
-
detail: "
|
|
3253
|
+
name: "tasa",
|
|
3254
|
+
detail: "La tasa de interés por periodo."
|
|
3255
3255
|
},
|
|
3256
3256
|
per: {
|
|
3257
|
-
name: "
|
|
3258
|
-
detail: "
|
|
3257
|
+
name: "periodo",
|
|
3258
|
+
detail: "El periodo para el cual desea buscar el interés y debe estar en el rango de 1 a núm_pagos."
|
|
3259
3259
|
},
|
|
3260
3260
|
nper: {
|
|
3261
|
-
name: "
|
|
3262
|
-
detail: "
|
|
3261
|
+
name: "núm_pagos",
|
|
3262
|
+
detail: "El número total de periodos de pago en una anualidad."
|
|
3263
3263
|
},
|
|
3264
3264
|
pv: {
|
|
3265
|
-
name: "
|
|
3266
|
-
detail: "
|
|
3265
|
+
name: "va",
|
|
3266
|
+
detail: "El valor actual, o la cantidad total que vale ahora una serie de pagos futuros."
|
|
3267
3267
|
},
|
|
3268
3268
|
fv: {
|
|
3269
|
-
name: "
|
|
3270
|
-
detail: "
|
|
3269
|
+
name: "vf",
|
|
3270
|
+
detail: "El valor futuro, o un saldo en efectivo que desea lograr después de realizar el último pago."
|
|
3271
3271
|
},
|
|
3272
3272
|
type: {
|
|
3273
|
-
name: "
|
|
3274
|
-
detail: "
|
|
3273
|
+
name: "tipo",
|
|
3274
|
+
detail: "El número 0 o 1 e indica cuándo vencen los pagos."
|
|
3275
3275
|
}
|
|
3276
3276
|
}
|
|
3277
3277
|
},
|
package/lib/cjs/locale/fr-FR.js
CHANGED
|
@@ -3146,20 +3146,20 @@ const locale$9 = {
|
|
|
3146
3146
|
}
|
|
3147
3147
|
},
|
|
3148
3148
|
EFFECT: {
|
|
3149
|
-
description: "
|
|
3150
|
-
abstract: "
|
|
3149
|
+
description: "Cette fonction renvoie le taux d’intérêt annuel effectif.",
|
|
3150
|
+
abstract: "Taux d’intérêt annuel effectif.",
|
|
3151
3151
|
links: [{
|
|
3152
3152
|
title: "Instruction",
|
|
3153
3153
|
url: "https://support.microsoft.com/fr-fr/excel/functions/effect-function"
|
|
3154
3154
|
}],
|
|
3155
3155
|
functionParameter: {
|
|
3156
3156
|
nominalRate: {
|
|
3157
|
-
name: "
|
|
3158
|
-
detail: "
|
|
3157
|
+
name: "taux_nominal",
|
|
3158
|
+
detail: "Représente le taux d’intérêt nominal."
|
|
3159
3159
|
},
|
|
3160
3160
|
npery: {
|
|
3161
|
-
name: "
|
|
3162
|
-
detail: "
|
|
3161
|
+
name: "nb_périodes",
|
|
3162
|
+
detail: "Nombre de périodes annuelles pour le calcul des intérêts composés."
|
|
3163
3163
|
}
|
|
3164
3164
|
}
|
|
3165
3165
|
},
|
|
@@ -5149,20 +5149,20 @@ const locale$6 = {
|
|
|
5149
5149
|
}],
|
|
5150
5150
|
functionParameter: {
|
|
5151
5151
|
dataField: {
|
|
5152
|
-
name: "
|
|
5153
|
-
detail: ""
|
|
5152
|
+
name: "champ_données",
|
|
5153
|
+
detail: "Nom du champ du tableau croisé dynamique contenant les données à récupérer. Il doit être placé entre guillemets."
|
|
5154
5154
|
},
|
|
5155
5155
|
pivotTable: {
|
|
5156
|
-
name: "
|
|
5157
|
-
detail: ""
|
|
5156
|
+
name: "tableau_croisé_dyn",
|
|
5157
|
+
detail: "Référence à une cellule, une plage ou une plage nommée du tableau croisé dynamique contenant les données."
|
|
5158
5158
|
},
|
|
5159
5159
|
field1: {
|
|
5160
|
-
name: "
|
|
5161
|
-
detail: ""
|
|
5160
|
+
name: "champ1",
|
|
5161
|
+
detail: "Paire facultative de noms de champ et d’élément décrivant les données à récupérer."
|
|
5162
5162
|
},
|
|
5163
5163
|
item1: {
|
|
5164
|
-
name: "
|
|
5165
|
-
detail: ""
|
|
5164
|
+
name: "élément1",
|
|
5165
|
+
detail: "Paire facultative de noms de champ et d’élément décrivant les données à récupérer."
|
|
5166
5166
|
}
|
|
5167
5167
|
}
|
|
5168
5168
|
},
|
package/lib/cjs/locale/ko-KR.js
CHANGED
|
@@ -1863,20 +1863,20 @@ const locale$10 = {
|
|
|
1863
1863
|
}
|
|
1864
1864
|
},
|
|
1865
1865
|
BITAND: {
|
|
1866
|
-
description: "
|
|
1867
|
-
abstract: "
|
|
1866
|
+
description: "두 숫자의 비트 단위 'AND'를 반환합니다.",
|
|
1867
|
+
abstract: "두 숫자의 비트 단위 'AND'를 반환합니다.",
|
|
1868
1868
|
links: [{
|
|
1869
1869
|
title: "Instruction",
|
|
1870
1870
|
url: "https://support.microsoft.com/ko-kr/excel/functions/bitand-function"
|
|
1871
1871
|
}],
|
|
1872
1872
|
functionParameter: {
|
|
1873
1873
|
number1: {
|
|
1874
|
-
name: "
|
|
1875
|
-
detail: "
|
|
1874
|
+
name: "번호1",
|
|
1875
|
+
detail: "0보다 크거나 같은 10진수 형식이어야 합니다."
|
|
1876
1876
|
},
|
|
1877
1877
|
number2: {
|
|
1878
|
-
name: "
|
|
1879
|
-
detail: "
|
|
1878
|
+
name: "번호2",
|
|
1879
|
+
detail: "0보다 크거나 같은 10진수 형식이어야 합니다."
|
|
1880
1880
|
}
|
|
1881
1881
|
}
|
|
1882
1882
|
},
|
|
@@ -1983,16 +1983,16 @@ const locale$10 = {
|
|
|
1983
1983
|
}],
|
|
1984
1984
|
functionParameter: {
|
|
1985
1985
|
number: {
|
|
1986
|
-
name: "
|
|
1987
|
-
detail: "
|
|
1986
|
+
name: "숫자",
|
|
1987
|
+
detail: "변환할 from_unit 단위의 값입니다."
|
|
1988
1988
|
},
|
|
1989
1989
|
fromUnit: {
|
|
1990
1990
|
name: "from_unit",
|
|
1991
|
-
detail: "
|
|
1991
|
+
detail: "숫자의 단위입니다."
|
|
1992
1992
|
},
|
|
1993
1993
|
toUnit: {
|
|
1994
1994
|
name: "to_unit",
|
|
1995
|
-
detail: "
|
|
1995
|
+
detail: "결과의 단위입니다."
|
|
1996
1996
|
}
|
|
1997
1997
|
}
|
|
1998
1998
|
},
|
|
@@ -2309,8 +2309,8 @@ const locale$10 = {
|
|
|
2309
2309
|
} }
|
|
2310
2310
|
},
|
|
2311
2311
|
IMDIV: {
|
|
2312
|
-
description: "
|
|
2313
|
-
abstract: "
|
|
2312
|
+
description: "x + yi 또는 x + yj 텍스트 형식인 두 복소수의 나눗셈 몫을 반환합니다.",
|
|
2313
|
+
abstract: "두 복소수의 나눗셈 몫을 반환합니다.",
|
|
2314
2314
|
links: [{
|
|
2315
2315
|
title: "Instruction",
|
|
2316
2316
|
url: "https://support.microsoft.com/ko-kr/excel/functions/imdiv-function"
|
|
@@ -2318,11 +2318,11 @@ const locale$10 = {
|
|
|
2318
2318
|
functionParameter: {
|
|
2319
2319
|
inumber1: {
|
|
2320
2320
|
name: "inumber1",
|
|
2321
|
-
detail: "
|
|
2321
|
+
detail: "분자 또는 피제수인 복소수입니다."
|
|
2322
2322
|
},
|
|
2323
2323
|
inumber2: {
|
|
2324
2324
|
name: "inumber2",
|
|
2325
|
-
detail: "
|
|
2325
|
+
detail: "분모 또는 제수인 복소수입니다."
|
|
2326
2326
|
}
|
|
2327
2327
|
}
|
|
2328
2328
|
},
|
|
@@ -4764,7 +4764,7 @@ const locale$7 = {
|
|
|
4764
4764
|
},
|
|
4765
4765
|
value3: {
|
|
4766
4766
|
name: "lambda",
|
|
4767
|
-
detail: "
|
|
4767
|
+
detail: "배열을 만들기 위해 호출되는 LAMBDA입니다. LAMBDA는 행 인덱스와 열 인덱스 두 매개 변수를 사용합니다."
|
|
4768
4768
|
}
|
|
4769
4769
|
}
|
|
4770
4770
|
},
|
|
@@ -8315,8 +8315,8 @@ const locale$4 = {
|
|
|
8315
8315
|
detail: "MARGINOFERROR(A1:C3, 0.99)"
|
|
8316
8316
|
},
|
|
8317
8317
|
confidence: {
|
|
8318
|
-
name: "
|
|
8319
|
-
detail: "
|
|
8318
|
+
name: "신뢰도",
|
|
8319
|
+
detail: "(0, 1) 범위에서 원하는 신뢰 수준입니다."
|
|
8320
8320
|
}
|
|
8321
8321
|
}
|
|
8322
8322
|
},
|
package/lib/cjs/locale/sk-SK.js
CHANGED
|
@@ -5149,20 +5149,20 @@ const locale$6 = {
|
|
|
5149
5149
|
}],
|
|
5150
5150
|
functionParameter: {
|
|
5151
5151
|
dataField: {
|
|
5152
|
-
name: "
|
|
5153
|
-
detail: ""
|
|
5152
|
+
name: "údajové_pole",
|
|
5153
|
+
detail: "Názov poľa kontingenčnej tabuľky obsahujúce údaje, ktoré chcete načítať. Musí byť v úvodzovkách."
|
|
5154
5154
|
},
|
|
5155
5155
|
pivotTable: {
|
|
5156
|
-
name: "
|
|
5157
|
-
detail: ""
|
|
5156
|
+
name: "kontingenčná_tabuľka",
|
|
5157
|
+
detail: "Odkaz na bunku, rozsah buniek alebo pomenovaný rozsah v kontingenčnej tabuľke obsahujúcej požadované údaje."
|
|
5158
5158
|
},
|
|
5159
5159
|
field1: {
|
|
5160
|
-
name: "
|
|
5161
|
-
detail: ""
|
|
5160
|
+
name: "pole1",
|
|
5161
|
+
detail: "Voliteľná dvojica názvu poľa a položky opisujúca údaje, ktoré chcete načítať."
|
|
5162
5162
|
},
|
|
5163
5163
|
item1: {
|
|
5164
|
-
name: "
|
|
5165
|
-
detail: ""
|
|
5164
|
+
name: "položka1",
|
|
5165
|
+
detail: "Voliteľná dvojica názvu poľa a položky opisujúca údaje, ktoré chcete načítať."
|
|
5166
5166
|
}
|
|
5167
5167
|
}
|
|
5168
5168
|
},
|
package/lib/cjs/locale/vi-VN.js
CHANGED
|
@@ -5822,8 +5822,8 @@ const locale$5 = {
|
|
|
5822
5822
|
}
|
|
5823
5823
|
},
|
|
5824
5824
|
ARABIC: {
|
|
5825
|
-
description: "
|
|
5826
|
-
abstract: "
|
|
5825
|
+
description: "Chuyển đổi một chữ số La Mã sang một chữ số Ả-rập.",
|
|
5826
|
+
abstract: "Chuyển đổi một chữ số La Mã sang một chữ số Ả-rập.",
|
|
5827
5827
|
links: [{
|
|
5828
5828
|
title: "Hướng dẫn",
|
|
5829
5829
|
url: "https://support.microsoft.com/vi-vn/excel/functions/arabic-function"
|