@fileverse-dev/formulajs 4.4.20-mod-3 → 4.4.20-mod-4
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.cjs
CHANGED
|
@@ -1441,7 +1441,9 @@ function VLOOKUP(lookup_value, table_array, col_index_num, range_lookup) {
|
|
|
1441
1441
|
return result
|
|
1442
1442
|
}
|
|
1443
1443
|
|
|
1444
|
-
function XLOOKUP(search_key, lookup_range, result_range, missing_value,
|
|
1444
|
+
function XLOOKUP(search_key, lookup_range, result_range, missing_value, isColV,match_mode, search_mode) {
|
|
1445
|
+
let isCol = isColV === "true" ? true : false;
|
|
1446
|
+
|
|
1445
1447
|
console.log('XLOOKUP parameters:', { search_key, lookup_range, result_range, missing_value, match_mode, search_mode, isCol });
|
|
1446
1448
|
|
|
1447
1449
|
// Validate required parameters
|
package/lib/esm/index.mjs
CHANGED
|
@@ -1439,7 +1439,9 @@ function VLOOKUP(lookup_value, table_array, col_index_num, range_lookup) {
|
|
|
1439
1439
|
return result
|
|
1440
1440
|
}
|
|
1441
1441
|
|
|
1442
|
-
function XLOOKUP(search_key, lookup_range, result_range, missing_value,
|
|
1442
|
+
function XLOOKUP(search_key, lookup_range, result_range, missing_value, isColV,match_mode, search_mode) {
|
|
1443
|
+
let isCol = isColV === "true" ? true : false;
|
|
1444
|
+
|
|
1443
1445
|
console.log('XLOOKUP parameters:', { search_key, lookup_range, result_range, missing_value, match_mode, search_mode, isCol });
|
|
1444
1446
|
|
|
1445
1447
|
// Validate required parameters
|
package/package.json
CHANGED
package/types/cjs/index.d.cts
CHANGED
|
@@ -4522,7 +4522,7 @@ export function WORKDAY_INTL(start_date: any, days: any, weekend: any, holidays:
|
|
|
4522
4522
|
* @returns
|
|
4523
4523
|
*/
|
|
4524
4524
|
export function XIRR(values: any, dates: any, guess: any): any;
|
|
4525
|
-
export function XLOOKUP(search_key: any, lookup_range: any, result_range: any, missing_value: any,
|
|
4525
|
+
export function XLOOKUP(search_key: any, lookup_range: any, result_range: any, missing_value: any, isColV: any, match_mode: any, search_mode: any): any;
|
|
4526
4526
|
/**
|
|
4527
4527
|
* Returns the net present value for a schedule of cash flows that is not necessarily periodic.
|
|
4528
4528
|
*
|
package/types/esm/index.d.mts
CHANGED
|
@@ -4522,7 +4522,7 @@ export function WORKDAY_INTL(start_date: any, days: any, weekend: any, holidays:
|
|
|
4522
4522
|
* @returns
|
|
4523
4523
|
*/
|
|
4524
4524
|
export function XIRR(values: any, dates: any, guess: any): any;
|
|
4525
|
-
export function XLOOKUP(search_key: any, lookup_range: any, result_range: any, missing_value: any,
|
|
4525
|
+
export function XLOOKUP(search_key: any, lookup_range: any, result_range: any, missing_value: any, isColV: any, match_mode: any, search_mode: any): any;
|
|
4526
4526
|
/**
|
|
4527
4527
|
* Returns the net present value for a schedule of cash flows that is not necessarily periodic.
|
|
4528
4528
|
*
|