Skip to content

Commit 4bd4a09

Browse files
removed redundant lines
1 parent 8bc7765 commit 4bd4a09

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

WindowsForms/Calculation-Engine/Supported-Formulas/Math-Trigonometry.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2532,9 +2532,6 @@ _SERIESSUM(x, n, m, coefficients)_
25322532

25332533

25342534

2535-
* The argument is non-numeric, it returns the `#VALUE!` error message.
2536-
2537-
25382535
* The argument is non-numeric, it returns the `#VALUE!` error message.
25392536

25402537

@@ -2602,6 +2599,7 @@ _XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode],
26022599
* [search_mode] (Optional): Specifies the search order:
26032600

26042601

2602+
26052603
* 1 - Search from the first item (default).
26062604

26072605

@@ -2643,7 +2641,6 @@ _XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode],
26432641

26442642

26452643
## XMATCH
2646-
Manivannan-E marked this conversation as resolved.
26472644

26482645

26492646

@@ -2801,6 +2798,7 @@ _FLOOR.PRECISE(number, [significance])_
28012798
* significance (Optional): The multiple to which the number should be rounded. Defaults to 1.
28022799

28032800

2801+
28042802
**Remarks:**
28052803

28062804

@@ -2860,6 +2858,7 @@ _ISO.CEILING(number, [significance])_
28602858
## CEILING.PRECISE
28612859

28622860

2861+
28632862
The `CEILING.PRECISE` function rounds a number up to the nearest integer or a specified multiple of significance. Like ISO.CEILING, it always rounds up regardless of whether the number is positive or negative. If the number or significance is zero, it returns zero.
28642863

28652864

@@ -2887,6 +2886,7 @@ _CEILING.PRECISE(number, [significance])_
28872886
**Remarks:**
28882887

28892888

2889+
28902890
* `CEILING.PRECISE` uses the absolute value of the multiple, ensuring that the function rounds up regardless of the signs of the number or significance.
28912891

28922892

@@ -2922,6 +2922,7 @@ _HSTACK(array1, [array2], ...)_
29222922
**Remarks:**
29232923

29242924

2925+
29252926
* `HSTACK` returns an array where each input array is appended in a column-wise fashion.
29262927

29272928

WindowsForms/Calculation-Engine/Supported-Formulas/Text-Formulas.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,6 @@ _TEXTAFTER(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_f
12351235

12361236

12371237

1238-
12391238
## TEXTBEFORE
12401239

12411240

@@ -1335,6 +1334,7 @@ _VALUETOTEXT(value, [format])_
13351334
* 1: Strict format with escape characters for formulas.
13361335

13371336

1337+
13381338
**Remarks:**
13391339

13401340

@@ -1354,6 +1354,7 @@ _VALUETOTEXT(value, [format])_
13541354
The `ARRAYTOTEXT` function function converts an array into text.
13551355

13561356

1357+
13571358
**Syntax:**
13581359

13591360

@@ -1556,40 +1557,51 @@ _CHOOSECOLS(array, col_num1, [col_num2], …)_
15561557
**Remarks:**
15571558

15581559

1560+
15591561
* If any [col_num] is zero or exceeds the total number of columns, a `#VALUE!` error is returned.
15601562

15611563

15621564

15631565
* The function is useful for extracting only certain columns from a large dataset.
15641566

15651567

1568+
15661569
## CHOOSEROWS
15671570

15681571

1572+
15691573
The `CHOOSEROWS` function returns specified rows from an array.
15701574

15711575

1576+
15721577
**Syntax:**
15731578

15741579

1580+
15751581
_CHOOSEROWS(array, row_num1, [row_num2], …)_
15761582

15771583

1584+
15781585
**where:**
15791586

15801587

1588+
15811589
* array: The array containing the rows to be selected.
15821590

15831591

1592+
15841593
* row_num1: The index of the first row to return.
15851594

15861595

1596+
15871597
* [row_num2] (Optional): Additional rows to return.
15881598

15891599

1600+
15901601
**Remarks:**
15911602

15921603

1604+
15931605
* A `#VALUE!` error occurs if any [row_num] exceeds the number of rows or is zero.
15941606

15951607

@@ -1776,7 +1788,6 @@ _DROP(array, rows, [columns])_
17761788

17771789
**where:**
17781790

1779-
Manivannan-E marked this conversation as resolved.
17801791

17811792

17821793
* array: The array from which to drop rows or columns.
@@ -1806,6 +1817,7 @@ Manivannan-E marked this conversation as resolved.
18061817
* The function helps to clean up datasets, such as removing unnecessary columns or rows before analysis.
18071818

18081819

1820+
18091821
## EXPAND
18101822

18111823

@@ -1908,6 +1920,7 @@ _WRAPROWS(vector, wrap_count, [pad_with])_
19081920
* Cells that cannot be filled are assigned `#N/A`, unless otherwise specified with [pad_with].
19091921

19101922

1923+
19111924
## WRAPCOLS
19121925

19131926

@@ -1947,9 +1960,11 @@ _WRAPCOLS(vector, wrap_count, [pad_with])_
19471960
* If [wrap_count] exceeds the length of the vector, the vector is returned in a single column.
19481961

19491962

1963+
19501964
* If the vector is not a one-dimensional array, a `#VALUE!` error is returned.
19511965

19521966

1967+
19531968
* A `#NUM!` error occurs if [wrap_count] is less than 1.
19541969

19551970

@@ -1965,6 +1980,7 @@ _WRAPCOLS(vector, wrap_count, [pad_with])_
19651980
The `SORT` function sorts the contents of an array in either ascending or descending order.
19661981

19671982

1983+
19681984
**Syntax:**
19691985

19701986

0 commit comments

Comments
 (0)