Edit function pages

This commit is contained in:
Svetlana Maleeva 2023-08-28 18:44:28 +03:00
parent 142b381b54
commit 6560b63e4b
25 changed files with 383 additions and 76 deletions

View File

@ -17,16 +17,38 @@
<h1>INDEX Function</h1>
<p>The <b>INDEX</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#lookupreference" onclick="onhyperlinkclick(this)">lookup and reference functions</a>. It is used to return a value within a range of cells on the base of a specified row and column number. The <b>INDEX</b> function has two forms. <!--The array form is used to return a value within a single range of cells. The reference form is used to return a value within an array that contains several ranges of cells.--></p>
<p>The <b>INDEX</b> function syntax in the array form is:</p>
<p><b><em>INDEX(array, [row-number][, [column-number]])</em></b></p>
<p><b><em>INDEX(array, row_num, [column_num])</em></b></p>
<p>The <b>INDEX</b> function syntax in the reference form is:</p>
<p><b><em>INDEX(reference, [row-number][, [column-number][, [area-number]]])</em></b></p>
<p><b><em>INDEX(reference, row_num, [column_num], [area_num])</em></b></p>
<p>The <b>INDEX</b> function has the following arguments:</p>
<p><em><b>array</b></em> is a range of cells.</p>
<p><em><b>reference</b></em> is a reference to a range of cells<!--or several ranges enclosed in parentheses and separated by commas-->.</p>
<p><em><b>row-number</b></em> is a row number you wish to return a value from. If it is omitted, <em><b>column-number</b></em> is required.</p>
<p><em><b>column-number</b></em> is a column number you wish to return a value from. If it is omitted, <em><b>row-number</b></em> is required.</p>
<p><em><b>area-number</b></em> is an area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume <b><em>area-number</em></b> to be 1.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>A range of cells.</td>
</tr>
<tr>
<td><b><em>reference</em></b></td>
<td>A reference to a range of cells<!--or several ranges enclosed in parentheses and separated by commas-->.</td>
</tr>
<tr>
<td><b><em>row_num</em></b></td>
<td>A row number you wish to return a value from. If it is omitted, <em><b>column_num</b></em> is required.</td>
</tr>
<tr>
<td><b><em>column_num</em></b></td>
<td>A column number you wish to return a value from. If it is omitted, <em><b>row_num</b></em> is required.</td>
</tr>
<tr>
<td><b><em>area_num</em></b></td>
<td>An area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume <b><em>area-number</em></b> to be 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>INDEX</b> function.</p>
<h3>Examples</h3>

View File

@ -17,11 +17,24 @@
<h1>INDIRECT Function</h1>
<p>The <b>INDIRECT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#lookupreference" onclick="onhyperlinkclick(this)">lookup and reference functions</a>. It is used to return the reference to a cell based on its string representation.</p>
<h3>Syntax</h3>
<p><b><em>INDIRECT(ref-text [, A1-ref-style-flag])</em></b></p>
<p><b><em>INDIRECT(ref_text, [a1])</em></b></p>
<p>The <b>INDIRECT</b> function has the following arguments:</p>
<p><b><em>ref-text</em></b> a reference to a cell specified as a text string.</p>
<p><b><em>A1-ref-style-flag</em></b> is a representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse <b><em>ref-text</em></b> as an A1-style reference. If FALSE, the function will interpret <b><em>ref-text</em></b> as an R1C1-style reference.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A reference to a cell specified as a text strin.</td>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse <b><em>ref_text</em></b> as an A1-style reference. If FALSE, the function will interpret <b><em>ref_text</em></b> as an R1C1-style reference.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>INDIRECT</b> function.</p>
<h3>Examples</h3>

View File

@ -17,10 +17,21 @@
<h1>INT Function</h1>
<p>The <b>INT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to analyze and return the integer part of the specified number.</p>
<h3>Syntax</h3>
<p><b><em>INT(x)</em></b></p>
<p>The <b>INT</b> function has the following argument:</p><p><b><em>x</em></b> is a numeric value entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: if the <b><em>x</em></b> value is negative, the function returns the first negative number that is less than or equal to the selected one.</p>
<p><b><em>INT(number)</em></b></p>
<p>The <b>INT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A numeric value for which you want to get the integer part.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If the <b><em>number</em></b> value is negative, the function returns the first negative number that is less than or equal to the selected one.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>INT</b> function.</p>
<h3>Examples</h3>

View File

@ -17,10 +17,25 @@
<h1>INTERCEPT Function</h1>
<p>The <b>INTERCEPT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the first array values and second array values to calculate the intersection point.</p>
<h3>Syntax</h3>
<p><b><em>INTERCEPT(array-1, array-2)</em></b></p>
<p>The <b>INTERCEPT</b> function has the following argument:</p><p><b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements (columns and rows).</p>
<p><b><em>INTERCEPT(known_y's, known_x's)</em></b></p>
<p>The <b>INTERCEPT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>known_y's</em></b></td>
<td>The dependent data range.</td>
</tr>
<tr>
<td><b><em>known_x's</em></b></td>
<td>The independent data range with the same number of elements as <b><em>known_y's</em></b> contains.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>INTERCEPT</b> function.</p>
<p>If <b><em>known_y's</em></b> or <b><em>known_x's</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>INTERCEPT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>INTERCEPT</b> function.</p>

View File

@ -17,11 +17,24 @@
<h1>IRR Function</h1>
<p>The <b>IRR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the internal rate of return for a series of periodic cash flows.</p>
<h3>Syntax</h3>
<p><b><em>IRR(values [,[guess]])</em></b></p>
<p><b><em>IRR(values, [guess])</em></b></p>
<p>The <b>IRR</b> function has the following arguments:</p>
<p><b><em>values</em></b> is an array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.</p>
<p><b><em>guess</em></b> is an estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume <b><em>guess</em></b> to be 10%.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>values</em></b></td>
<td>An array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.</td>
</tr>
<tr>
<td><b><em>guess</em></b></td>
<td>An estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume <b><em>guess</em></b> to be 10%.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>IRR</b> function.</p>
<h3>Examples</h3>

View File

@ -18,8 +18,19 @@
<p>The <b>ISBLANK</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check if the cell is empty or not. If the cell does not contain any value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISBLANK(value)</em></b></p>
<p>The <b>ISBLANK</b> function has the following argument:</p><p><b><em>value</em></b> is a value entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The <b>ISBLANK</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISBLANK</b> function.</p>
<h3>Examples</h3>

View File

@ -18,7 +18,17 @@
<p>The <b>ISERR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for an error value. If the cell contains an error value (except #N/A), the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISERR(value)</em></b></p>
<p>The <b>ISERR</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISERR</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISERR</b> function.</p>

View File

@ -18,7 +18,17 @@
<p>The <b>ISERROR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for an error value. If the cell contains one of the error values: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL!, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISERROR(value)</em></b></p>
<p>The <b>ISERROR</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISERROR</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISERROR</b> function.</p>

View File

@ -18,9 +18,20 @@
<p>The <b>ISEVEN</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for an even value. If the cell contains an even value, the function returns TRUE. If the value is odd, it returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISEVEN(number)</em></b></p>
<p>The <b>ISEVEN</b> function has the following argument:</p><p><b><em>number</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISEVEN</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The numeric value that you want to test.</td>
</tr>
</table>
<h3>Notes</h3>
<p class="note"><b>Note</b>: if <b><em>number</em></b> is a nonnumeric value, ISEVEN returns the #VALUE! error value.</p>
<p>If <b><em>number</em></b> is a nonnumeric value, ISEVEN returns the #VALUE! error value.</p>
<p>If <b><em>number</em></b> is not an integer, it is truncated.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISEVEN</b> function.</p>
<h3>Examples</h3>

View File

@ -17,8 +17,18 @@
<h1>ISFORMULA Function</h1>
<p>The <b>ISFORMULA</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISFORMULA(value)</em></b></p>
<p>The <b>ISFORMULA</b> function has the following argument:</p><p><b><em>value</em></b> is a reference to a cell.</p>
<p><b><em>ISFORMULA(reference)</em></b></p>
<p>The <b>ISFORMULA</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>reference</em></b></td>
<td>A reference to a cell that you want to test.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISFORMULA</b> function.</p>

View File

@ -18,8 +18,18 @@
<p>The <b>ISLOGICAL</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for a logical value (TRUE or FALSE). If the cell contains a logical value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISLOGICAL(value)</em></b></p>
<p>The <b>ISLOGICAL</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The <b>ISLOGICAL</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISLOGICAL</b> function.</p>
<h3>Examples</h3>

View File

@ -18,8 +18,18 @@
<p>The <b>ISNA</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for a #N/A error. If the cell contains a #N/A error value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISNA(value)</em></b></p>
<p>The <b>ISNA</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The <b>ISNA</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISNA</b> function.</p>
<h3>Examples</h3>

View File

@ -18,8 +18,18 @@
<p>The <b>ISNONTEXT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for a value that is not a text. If the cell does not contain a text value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISNONTEXT(value)</em></b></p>
<p>The <b>ISNONTEXT</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The <b>ISNONTEXT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISNONTEXT</b> function.</p>
<h3>Examples</h3>

View File

@ -18,7 +18,17 @@
<p>The <b>ISNUMBER</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISNUMBER(value)</em></b></p>
<p>The <b>ISNUMBER</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISNUMBER</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISNUMBER</b> function.</p>

View File

@ -17,11 +17,24 @@
<h1>ISO.CEILING Function</h1>
<p>The <b>ISO.CEILING</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing.</p>
<h3>Syntax</h3>
<p><b><em>ISO.CEILING(number [, significance])</em></b></p>
<p><b><em>ISO.CEILING(number, [significance])</em></b></p>
<p>The <b>ISO.CEILING</b> function has the following arguments:</p>
<p><b><em>number</em></b> is the number you wish to round up.</p>
<p><b><em>significance</em></b> is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The number you wish to round up.</td>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISO.CEILING</b> function.</p>
<h3>Examples</h3>

View File

@ -18,9 +18,20 @@
<p>The <b>ISODD</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for an odd value. If the cell contains an odd value, the function returns TRUE. If the value is even, it returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISODD(number)</em></b></p>
<p>The <b>ISODD</b> function has the following argument:</p><p><b><em>number</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: if <b><em>number</em></b> is a nonnumeric value, ISODD returns the #VALUE! error value.</p>
<p>The <b>ISODD</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The numeric value that you want to test.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>number</em></b> is a nonnumeric value, ISODD returns the #VALUE! error value.</p>
<p>If <b><em>number</em></b> is not an integer, it is truncated.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISODD</b> function.</p>
<h3>Examples</h3>

View File

@ -18,9 +18,18 @@
<p>The <b>ISOWEEKNUM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#datetime" onclick="onhyperlinkclick(this)">date and time functions</a>. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54.</p>
<h3>Syntax</h3>
<p><b><em>ISOWEEKNUM(date)</em></b></p>
<p>The <b>ISOWEEKNUM</b> function has the following arguments:</p>
<p><b><em>date</em></b> is a date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function or other date and time function.</p>
<h3>Notes</h3>
<p>The <b>ISOWEEKNUM</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>date</em></b></td>
<td>A date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function or other date and time function.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISOWEEKNUM</b> function.</p>
<h3>Examples</h3>

View File

@ -19,12 +19,31 @@
<h3>Syntax</h3>
<p><b><em>ISPMT(rate, per, nper, pv)</em></b></p>
<p>The <b>ISPMT</b> function has the following arguments:</p>
<p><b><em>rate</em></b> is the interest rate for the investment.</p>
<p><b><em>per</em></b> is the period you want to find the interest payment for. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p><b><em>nper</em></b> is a number of payments.</p>
<p><b><em>pv</em></b> is a present value of the payments.</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The interest rate for the investment.</td>
</tr>
<tr>
<td><b><em>per</em></b></td>
<td>The period you want to find the interest payment for. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</td>
</tr>
<tr>
<td><b><em>nper</em></b></td>
<td>A number of payments.</td>
</tr>
<tr>
<td><b><em>pv</em></b></td>
<td>A present value of the payments.</td>
</tr>
</table>
<h3>Notes</h3>
<p class="note"><b>Note:</b> cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for <em>rate</em> and <em>nper</em> must be consistent: use N%/12 for <em>rate</em> and N*12 for <em>nper</em> in case of monthly payments, N%/4 for <em>rate</em> and N*4 for <em>nper</em> in case of quarterly payments, N% for <em>rate</em> and N for <em>nper</em> in case of annual payments.</p>
<p>Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for <em>rate</em> and <em>nper</em> must be consistent: use N%/12 for <em>rate</em> and N*12 for <em>nper</em> in case of monthly payments, N%/4 for <em>rate</em> and N*4 for <em>nper</em> in case of quarterly payments, N% for <em>rate</em> and N for <em>nper</em> in case of annual payments.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISPMT</b> function.</p>
<h3>Examples</h3>

View File

@ -18,7 +18,17 @@
<p>The <b>ISREF</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to verify if the value is a valid cell reference.</p>
<h3>Syntax</h3>
<p><b><em>ISREF(value)</em></b></p>
<p>The <b>ISREF</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISREF</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISREF</b> function.</p>

View File

@ -18,7 +18,17 @@
<p>The <b>ISTEXT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE.</p>
<h3>Syntax</h3>
<p><b><em>ISTEXT(value)</em></b></p>
<p>The <b>ISTEXT</b> function has the following argument:</p><p><b><em>value</em></b> is a value to test entered manually or included into the cell you make reference to.</p>
<p>The <b>ISTEXT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value</em></b></td>
<td>The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ISTEXT</b> function.</p>

View File

@ -17,8 +17,18 @@
<h1>KURT Function</h1>
<p>The <b>KURT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the kurtosis of the argument list.</p>
<h3>Syntax</h3>
<p><b><em>KURT(argument-list)</em></b></p>
<p>The <b>KURT</b> function has the following argument:</p><p><b><em>argument-list</em></b> is up to 30 numeric values entered manually or included into the cell you make reference to.</p>
<p><b><em>KURT(number1, [number2], ...)</em></b></p>
<p>The <b>KURT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number1/2/n</em></b></td>
<td>Up to 30 numeric values for which you want to calculate kurtosis.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>KURT</b> function.</p>

View File

@ -17,13 +17,32 @@
<h1>LINEST Function</h1>
<p>The <b>LINEST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula.</p>
<h3>Syntax</h3>
<p><b><em>LINEST( known_y's, [known_x's], [const], [stats] )</em></b></p>
<p><b><em>LINEST(known_y's, [known_x's], [const], [stats])</em></b></p>
<p>The <b>LINEST</b> function has the following argument:</p>
<p><b><em>known_y's</em></b> is a known range of <em>y</em> values in the equation <em>y = mx + b</em>. This is the required argument.</p>
<p><b><em>known_x's</em></b> is a known range of <em>x</em> values in the equation <em>y = mx + b</em>. This is an optional argument. If it is omitted, <em>known_x's</em> is assumed to be the array <em>{1,2,3,...}</em> with the same number of values as <em>known_y's</em>.</p>
<p><b><em>const</em></b> is a logical value that specifies if you want to set <em>b</em> equal to <em>0</em>. This is an optional argument. If it is set to <em>TRUE</em> or omitted, <em>b</em> is calculated normally. If it is set to <em>FALSE</em>, <em>b</em> is set equal to <em>0</em>.</p>
<p><b><em>stats</em></b> is a logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to <em>TRUE</em>, the function returns the additional regression statistics. If it is set to <em>FALSE</em> or omitted, the function does not return the additional regression statistics.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>known_y's</em></b></td>
<td>A known range of <em>y</em> values in the equation <em>y = mx + b</em>. This is the required argument.</td>
</tr>
<tr>
<td><b><em>known_x's</em></b></td>
<td>A known range of <em>x</em> values in the equation <em>y = mx + b</em>. This is an optional argument. If it is omitted, <em>known_x's</em> is assumed to be the array <em>{1,2,3,...}</em> with the same number of values as <em>known_y's</em>.</td>
</tr>
<tr>
<td><b><em>const</em></b></td>
<td>A logical value that specifies if you want to set <em>b</em> equal to <em>0</em>. This is an optional argument. If it is set to <em>TRUE</em> or omitted, <em>b</em> is calculated normally. If it is set to <em>FALSE</em>, <em>b</em> is set equal to <em>0</em>.</td>
</tr>
<tr>
<td><b><em>stats</em></b></td>
<td>A logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to <em>TRUE</em>, the function returns the additional regression statistics. If it is set to <em>FALSE</em> or omitted, the function does not return the additional regression statistics.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>LINEST</b> function.</p>
<h3>Examples</h3>

View File

@ -17,10 +17,24 @@
<h1>RSQ Function</h1>
<p>The <b>RSQ</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the square of the Pearson product moment correlation coefficient.</p>
<h3>Syntax</h3>
<p><b><em>RSQ(array-1 , array-2)</em></b></p>
<p>The <b>RSQ</b> function has the following argument:</p><p><b><em>array-1</em></b> and <b><em>array-2</em></b> are the selected ranges of cells with the same number of elements.</p>
<h3>Notes</h3>
<p>If <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><b><em>RSQ(known_y's, known_x's)</em></b></p>
<p>The <b>RSQ</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>known_y's</em></b></td>
<td>The dependent data range.</td>
</tr>
<tr>
<td><b><em>known_x's</em></b></td>
<td>The independent data range with the same number of elements as <b><em>known_y's</em></b> contains.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>known_y's</em></b> or <b><em>known_x's</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>RSQ</b> function.</p>
<h3>Examples</h3>

View File

@ -17,10 +17,24 @@
<h1>SLOPE Function</h1>
<p>The <b>SLOPE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the slope of the linear regression line through data in two arrays.</p>
<h3>Syntax</h3>
<p><b><em>SLOPE(array-1 , array-2)</em></b></p>
<p>The <b>SLOPE</b> function has the following argument:</p><p><b><em>array-1</em></b> and <b><em>array-2</em></b> are the selected ranges of cells with the same number of elements.</p>
<h3>Notes</h3>
<p>If <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><b><em>SLOPE(known_y's, known_x's)</em></b></p>
<p>The <b>SLOPE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>known_y's</em></b></td>
<td>The dependent data range.</td>
</tr>
<tr>
<td><b><em>known_x's</em></b></td>
<td>The independent data range with the same number of elements as <b><em>known_y's</em></b> contains.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>known_y's</em></b> or <b><em>known_x's</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>SLOPE</b> function.</p>
<h3>Examples</h3>

View File

@ -17,13 +17,25 @@
<h1>STEYX Function</h1>
<p>The <b>STEYX</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the standard error of the predicted y-value for each x in the regression line.</p>
<h3>Syntax</h3>
<p><b><em>STEYX(known-ys, known-xs)</em></b></p>
<p><b><em>STEYX(known_y's, known_x's)</em></b></p>
<p>The <b>STEYX</b> function has the following arguments:</p>
<p><b><em>known-ys</em></b> is an array of the dependent variables.</p>
<p><b><em>known-xs</em></b> is an array of the independent variables.</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>known_y's</em></b></td>
<td>An array of the dependent variables.</td>
</tr>
<tr>
<td><b><em>known_x's</em></b></td>
<td>An array of the independent variables with the same number of elements as <b><em>known_y's</em></b> contains.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The data values can be entered manually or included into the cells you make reference to. Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.</p>
<p>The <b><em>known-ys</em></b> and <b><em>known-xs</em></b> must contain the same number of data values otherwise the function will return the <b>#N/A</b> error value. </p>
<p>Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.</p>
<p>The <b><em>known_y's</em></b> and <b><em>known_x's</em></b> must contain the same number of data values otherwise the function will return the <b>#N/A</b> error value. </p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>STEYX</b> function.</p>
<h3>Examples</h3>