Update function pages in help

This commit is contained in:
svetlana maleeva
2023-11-23 13:59:46 +03:00
parent 2366195fd4
commit f0ac29a3b2
500 changed files with 13447 additions and 10642 deletions

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ABS Function</h1>
<p>The <b>ABS</b> function is one of the math and trigonometry functions. It is used to return the absolute value of a number.</p>
<p>The <b>ABS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ABS(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ABS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ABS</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ABS Function" src="../images/abs.png" /></p>
<p>The <b>ABS</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 the absolute value of a number (i.e. the number without its sign).</p>
<h3>Syntax</h3>
<p><b><em>ABS(number)</em></b></p>
<p>The <b>ABS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 absolute value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ABS</b> function.</p>
<h3>Examples</h3>
<p>There is a single argument: <em>number</em> = <b>A1</b> = <b>-123.14</b>. So the function returns <b>123.14</b> (<b>-123.14</b> without its sign).</p>
<p><img alt="ABS Function" src="../images/abs.png" /></p>
</div>
</body>
</html>

View File

@ -15,59 +15,81 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACCRINT Function</h1>
<p>The <b>ACCRINT</b> function is one of the financial functions. It is used to calculate the accrued interest for a security that pays periodic interest.</p>
<p>The <b>ACCRINT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACCRINT(issue, first-interest, settlement, rate, [par], frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>issue</em></b> is the issue date of the security.</p>
<p style="text-indent: 50px;"><b><em>first-interest</em></b> is the date when the first interest is paid.</p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the annual coupon rate of the security.</p>
<p style="text-indent: 50px;"><b><em>par</em></b> is the par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>ACCRINT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the accrued interest for a security that pays periodic interest.</p>
<h3>Syntax</h3>
<p><b><em>ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method])</em></b></p>
<p>The <b>ACCRINT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>issue</em></b></td>
<td>The issue date of the security.</td>
</tr>
<tr>
<td><b><em>first_interest</em></b></td>
<td>The date when the first interest is paid.</td>
</tr>
<tr>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The annual coupon rate of the security.</td>
</tr>
<tr>
<td><b><em>par</em></b></td>
<td>The par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>calc_method</em></b></td>
<td>A logical value that specifies the way to calculate the accrued interest when the <b><em>settlement</em></b> date is later than the <b><em>first_interest</em></b> date. It is an optional argument. TRUE (1) returns the accrued interest from <b><em>issue</em></b> to <b><em>settlement</em></b>. FALSE (0) returns the accrued interest from <b><em>first_interest</em></b> to <b><em>settlement</em></b>. If the argument is omitted, TRUE is used by default.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACCRINT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>ACCRINT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACCRINT Function" src="../images/accrint.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACCRINT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACCRINT</b> function.</p>
<p><img alt="ACCRINT Function" src="../images/accrint.png" /></p>
</div>
</body>
</html>

View File

@ -15,57 +15,69 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACCRINTM Function</h1>
<p>The <b>ACCRINTM</b> function is one of the financial functions. It is used to calculate the accrued interest for a security that pays interest at maturity.</p>
<p>The <b>ACCRINTM</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACCRINTM(issue, settlement, rate, [[par] [, [basis]]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>issue</em></b> is the issue date of the security.</p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the maturity date of the security.</p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the annual interest rate of the security.</p>
<p style="text-indent: 50px;"><b><em>par</em></b> is the par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>ACCRINTM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the accrued interest for a security that pays interest at maturity.</p>
<h3>Syntax</h3>
<p><b><em>ACCRINTM(issue, settlement, rate, par, [basis])</em></b></p>
<p>The <b>ACCRINTM</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>issue</em></b></td>
<td>The issue date of the security.</td>
</tr>
<tr>
<td><b><em>settlement</em></b></td>
<td>The maturity date of the security.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The annual interest rate of the security.</td>
</tr>
<tr>
<td><b><em>par</em></b></td>
<td>The par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACCRINTM</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>ACCRINTM</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACCRINTM Function" src="../images/accrintm.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACCRINTM</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACCRINTM</b> function.</p>
<p><img alt="ACCRINTM Function" src="../images/accrintm.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACOS Function</h1>
<p>The <b>ACOS</b> function is one of the math and trigonometry functions. It is used to return the arccosine of a number.</p>
<p>The <b>ACOS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACOS(x)</em></b></p>
<p>where <b><em>x</em></b> is the cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACOS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOS</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACOS Function" src="../images/acos.png" /></p>
<p>The <b>ACOS</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 the arccosine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOS(number)</em></b></p>
<p>The <b>ACOS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOS</b> function.</p>
<p><img alt="ACOS Function" src="../images/acos.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACOSH Function</h1>
<p>The <b>ACOSH</b> function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cosine of a number.</p>
<p>The <b>ACOSH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACOSH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value greater than or equal to 1 entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACOSH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOSH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACOSH Function" src="../images/acosh.png" /></p>
<p>The <b>ACOSH</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 the inverse hyperbolic cosine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOSH(number)</em></b></p>
<p>The <b>ACOSH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 greater than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOSH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOSH</b> function.</p>
<p><img alt="ACOSH Function" src="../images/acosh.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACOT Function</h1>
<p>The <b>ACOT</b> function is one of the math and trigonometry functions. It is used to return the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi.</p>
<p>The <b>ACOT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACOT(x)</em></b></p>
<p>where <b><em>x</em></b> is the cotangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACOT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOT</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACOT Function" src="../images/acot.png" /></p>
<p>The <b>ACOT</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 the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi.</p>
<h3>Syntax</h3>
<p><b><em>ACOT(number)</em></b></p>
<p>The <b>ACOT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The cotangent of the angle you wish to find, a numeric value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOT</b> function.</p>
<p><img alt="ACOT Function" src="../images/acot.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ACOTH Function</h1>
<p>The <b>ACOTH</b> function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cotangent of a number.</p>
<p>The <b>ACOTH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ACOTH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value less than -1 or greater than 1 entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACOTH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOTH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ACOTH Function" src="../images/acoth.png" /></p>
<p>The <b>ACOTH</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 the inverse hyperbolic cotangent of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOTH(number)</em></b></p>
<p>The <b>ACOTH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 less than -1 or greater than 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOTH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOTH</b> function.</p>
<p><img alt="ACOTH Function" src="../images/acoth.png" /></p>
</div>
</body>
</html>

View File

@ -15,52 +15,64 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ADDRESS Function</h1>
<p>The <b>ADDRESS</b> function is one of the lookup and reference functions. It is used to return a text representation of a cell address.</p>
<p>The <b>ADDRESS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><em><b>row_num</b></em> is a row number to use in a cell address.</p>
<p style="text-indent: 50px;"><em><b>column_num</b></em> is a column number to use in a cell address.</p>
<p style="text-indent: 50px;"><em><b>abs_num</b></em> is a type of reference. It can be one of the following numeric values:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Meaning</b></td>
</tr>
<tr>
<td>1 or omitted</td>
<td>Absolute referencing</td>
</tr>
<tr>
<td>2</td>
<td>Absolute row; relative column</td>
</tr>
<tr>
<td>3</td>
<td>Relative row; absolute column</td>
</tr>
<tr>
<td>4</td>
<td>Relative referencing</td>
</tr>
</table>
<p><em><b>a1</b></em> is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference.</p>
<p><em><b>sheet_text</b></em> is the name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated.</p>
<p>These arguments can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>ADDRESS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>ADDRESS</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ADDRESS Function" src="../images/address.png" /></p>
<p>The <b>ADDRESS</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 text representation of a cell address.</p>
<h3>Syntax</h3>
<p><b><em>ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])</em></b></p>
<p>The <b>ADDRESS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>row_num</em></b></td>
<td>A row number to use in a cell address.</td>
</tr>
<tr>
<td><b><em>column_num</em></b></td>
<td>A column number to use in a cell address.</td>
</tr>
<tr>
<td><b><em>abs_num</em></b></td>
<td>A type of reference. The possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>a1</em></b></td>
<td>An optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference.</td>
</tr>
<tr>
<td><b><em>sheet_text</em></b></td>
<td>The name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated.</td>
</tr>
</table>
<p>The <b><em>abs_num</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Meaning</b></th>
</tr>
<tr>
<td><b><em>1 or omitted</em></b></td>
<td>Absolute referencing</td>
</tr>
<tr>
<td><b><em>2</em></b></td>
<td>Absolute row; relative column</td>
</tr>
<tr>
<td><b><em>3</em></b></td>
<td>Relative row; absolute column</td>
</tr>
<tr>
<td><b><em>4</em></b></td>
<td>Relative referencing</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ADDRESS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ADDRESS</b> function.</p>
<p><img alt="ADDRESS Function" src="../images/address.png" /></p>
</div>
</body>
</html>

View File

@ -15,138 +15,160 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AGGREGATE Function</h1>
<p>The <b>AGGREGATE</b> function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The <b>AGGREGATE</b> function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.</p>
<p>The <b>AGGREGATE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AGGREGATE(function_num, options, ref1 [, ref2], ...)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>function_num</em></b> is a numeric value that specifies which function to use. The possible values are listed in the table below.</p>
<p>The <b>AGGREGATE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. The function is used to return an aggregate in a list or database. The <b>AGGREGATE</b> function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.</p>
<h3>Syntax</h3>
<p><b><em>AGGREGATE(function_num, options, ref1, [ref2], ...)</em></b></p>
<p>The <b>AGGREGATE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>function_num<br /></b></td>
<td><b>Function</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>1</td>
<td><b><em>function_num</em></b></td>
<td>A numeric value that specifies which function to use. The possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>options</em></b></td>
<td>A numeric value that specifies which values should be ignored. The possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>ref1</em></b></td>
<td>The first numeric value for which you want the aggregate value.</td>
</tr>
<tr>
<td><b><em>ref2</em></b></td>
<td>Up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value. It is an optional argument.</td>
</tr>
</table>
<p>The <b><em>function_num</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>function_num</b></th>
<th style="background-color: #f4f4f4"><b>Function</b></th>
</tr>
<tr>
<td><b><em>1</em></b></td>
<td><a href="../Functions/average.htm" onclick="onhyperlinkclick(this)">AVERAGE</a></td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td><a href="../Functions/count.htm" onclick="onhyperlinkclick(this)">COUNT</a></td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td><a href="../Functions/counta.htm" onclick="onhyperlinkclick(this)">COUNTA</a></td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td><a href="../Functions/max.htm" onclick="onhyperlinkclick(this)">MAX</a></td>
</tr>
<tr>
<td>5</td>
<td><b><em>5</em></b></td>
<td><a href="../Functions/min.htm" onclick="onhyperlinkclick(this)">MIN</a></td>
</tr>
<tr>
<td>6</td>
<td><b><em>6</em></b></td>
<td><a href="../Functions/product.htm" onclick="onhyperlinkclick(this)">PRODUCT</a></td>
</tr>
<tr>
<td>7</td>
<td><b><em>7</em></b></td>
<td><a href="../Functions/stdev-s.htm" onclick="onhyperlinkclick(this)">STDEV.S</a></td>
</tr>
<tr>
<td>8</td>
<td><b><em>8</em></b></td>
<td><a href="../Functions/stdev-p.htm" onclick="onhyperlinkclick(this)">STDEV.P</a></td>
</tr>
<tr>
<td>9</td>
<td><b><em>9</em></b></td>
<td><a href="../Functions/sum.htm" onclick="onhyperlinkclick(this)">SUM</a></td>
</tr>
<tr>
<td>10</td>
<td><b><em>10</em></b></td>
<td><a href="../Functions/var-s.htm" onclick="onhyperlinkclick(this)">VAR.S</a></td>
</tr>
<tr>
<td>11</td>
<td><b><em>11</em></b></td>
<td><a href="../Functions/var-p.htm" onclick="onhyperlinkclick(this)">VAR.P</a></td>
</tr>
<tr>
<td>12</td>
<td><b><em>12</em></b></td>
<td><a href="../Functions/median.htm" onclick="onhyperlinkclick(this)">MEDIAN</a></td>
</tr>
<tr>
<td>13</td>
<td><b><em>13</em></b></td>
<td><a href="../Functions/mode-sngl.htm" onclick="onhyperlinkclick(this)">MODE.SNGL</a></td>
</tr>
<tr>
<td>14</td>
<td><b><em>14</em></b></td>
<td><a href="../Functions/large.htm" onclick="onhyperlinkclick(this)">LARGE</a></td>
</tr>
<tr>
<td>15</td>
<td><b><em>15</em></b></td>
<td><a href="../Functions/small.htm" onclick="onhyperlinkclick(this)">SMALL</a></td>
</tr>
<tr>
<td>16</td>
<td><b><em>16</em></b></td>
<td><a href="../Functions/percentile-inc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.INC</a></td>
</tr>
<tr>
<td>17</td>
<td><b><em>17</em></b></td>
<td><a href="../Functions/quartile-inc.htm" onclick="onhyperlinkclick(this)">QUARTILE.INC</a></td>
</tr>
<tr>
<td>18</td>
<td><b><em>18</em></b></td>
<td><a href="../Functions/percentile-exc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.EXC</a></td>
</tr>
<tr>
<td>19</td>
<td><b><em>19</em></b></td>
<td><a href="../Functions/quartile-exc.htm" onclick="onhyperlinkclick(this)">QUARTILE.EXC</a></td>
</tr>
</table>
<p style="text-indent: 50px;"><b><em>options</em></b> is a numeric value that specifies which values should be ignored. The possible values are listed in the table below.</p>
<p>The <b><em>options</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value<br /></b></td>
<td><b>Behavior</b></td>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Behavior</b></th>
</tr>
<tr>
<td>0 or omitted</td>
<td><b><em>0 or omitted</em></b></td>
<td>Ignore nested <a href="../Functions/subtotal.htm" onclick="onhyperlinkclick(this)">SUBTOTAL</a> and AGGREGATE functions</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Ignore hidden rows, nested <a href="../Functions/subtotal.htm" onclick="onhyperlinkclick(this)">SUBTOTAL</a> and AGGREGATE functions</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Ignore error values, nested <a href="../Functions/subtotal.htm" onclick="onhyperlinkclick(this)">SUBTOTAL</a> and AGGREGATE functions</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Ignore hidden rows, error values, nested <a href="../Functions/subtotal.htm" onclick="onhyperlinkclick(this)">SUBTOTAL</a> and AGGREGATE functions</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>Ignore nothing</td>
</tr>
<tr>
<td>5</td>
<td><b><em>5</em></b></td>
<td>Ignore hidden rows</td>
</tr>
<tr>
<td>6</td>
<td><b><em>6</em></b></td>
<td>Ignore error values</td>
</tr>
<tr>
<td>7</td>
<td><b><em>7</em></b></td>
<td>Ignore hidden rows and error values</td>
</tr>
</table>
<p style="text-indent: 50px;"><b><em>ref1(2)</em></b> is up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value.</p>
<p class="note"><b>Note:</b> if you want to use one of the following functions: <a href="../Functions/large.htm" onclick="onhyperlinkclick(this)">LARGE</a>, <a href="../Functions/small.htm" onclick="onhyperlinkclick(this)">SMALL</a>, <a href="../Functions/percentile-inc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.INC</a>, <a href="../Functions/quartile-inc.htm" onclick="onhyperlinkclick(this)">QUARTILE.INC</a>, <a href="../Functions/percentile-exc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.EXC</a>, or <a href="../Functions/quartile-exc.htm" onclick="onhyperlinkclick(this)">QUARTILE.EXC</a>, <b><em>ref1</em></b> must be a reference to the cell range and <b><em>ref2</em></b> must be the second argument that is required for these functions (<b><em>k</em></b> or <b><em>quart</em></b>).</p>
</table>
<h3>Notes</h3>
<p> If you want to use one of the following functions: <a href="../Functions/large.htm" onclick="onhyperlinkclick(this)">LARGE</a>, <a href="../Functions/small.htm" onclick="onhyperlinkclick(this)">SMALL</a>, <a href="../Functions/percentile-inc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.INC</a>, <a href="../Functions/quartile-inc.htm" onclick="onhyperlinkclick(this)">QUARTILE.INC</a>, <a href="../Functions/percentile-exc.htm" onclick="onhyperlinkclick(this)">PERCENTILE.EXC</a>, or <a href="../Functions/quartile-exc.htm" onclick="onhyperlinkclick(this)">QUARTILE.EXC</a>, <b><em>ref1</em></b> must be a reference to the cell range and <b><em>ref2</em></b> must be the second argument that is required for these functions (<b><em>k</em></b> or <b><em>quart</em></b>).</p>
<table style="width: 40%">
<tr>
<td><b>Function<br /></b></td>
<td><b>Syntax</b></td>
<th style="background-color: #f4f4f4"><b>Function</b></th>
<th style="background-color: #f4f4f4"><b>Syntax</b></th>
</tr>
<tr>
<td><a href="../Functions/large.htm" onclick="onhyperlinkclick(this)">LARGE</a></td>
@ -173,23 +195,12 @@
<td>QUARTILE.EXC(array, quart)</td>
</tr>
</table>
<p>To apply the <b>AGGREGATE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>AGGREGATE</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AGGREGATE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AGGREGATE</b> function when the <b>SUM</b> function is applied.</p>
<p style="text-indent: 150px;"><img alt="AGGREGATE Function" src="../images/aggregate.png" /></p>
<p><img alt="AGGREGATE Function" src="../images/aggregate.png" /></p>
<p>The figure below displays the result returned by the <b>AGGREGATE</b> function when the <b>LARGE</b> function is applied, <b><em>ref1</em></b> is a reference to the cell range, and <b><em>k</em></b> is equal to 2. The function returns the second largest value in cells A1-A4.</p>
<p style="text-indent: 150px;"><img alt="AGGREGATE Function" src="../images/aggregate2.png" /></p>
<p><img alt="AGGREGATE Function" src="../images/aggregate2.png" /></p>
</div>
</body>
</html>

View File

@ -15,59 +15,76 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AMORDEGRC Function</h1>
<p>The <b>AMORDEGRC</b> function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method.</p>
<p>The <b>AMORDEGRC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AMORDEGRC(cost, date-purchased, first-period, salvage, period, rate[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>cost</em></b> is the cost of the asset.</p>
<p style="text-indent: 50px;"><b><em>date-purchased</em></b> is the date when asset is purchased.</p>
<p style="text-indent: 50px;"><b><em>first-period</em></b> is the date when the first period ends.</p>
<p style="text-indent: 50px;"><b><em>salvage</em></b> is the salvage value of the asset at the end of its lifetime.</p>
<p style="text-indent: 50px;"><b><em>period</em></b> is the period you wish to calculate depreciation for.</p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the rate of depreciation.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>AMORDEGRC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method.</p>
<h3>Syntax</h3>
<p><b><em>AMORDEGRC(cost, date_purchased, first_period, salvage, period, rate, [basis])</em></b></p>
<p>The <b>AMORDEGRC</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>cost</em></b></td>
<td>The cost of the asset.</td>
</tr>
<tr>
<td><b><em>date_purchased</em></b></td>
<td>The date when asset is purchased.</td>
</tr>
<tr>
<td><b><em>first_period</em></b></td>
<td>The date when the first period ends.</td>
</tr>
<tr>
<td><b><em>salvage</em></b></td>
<td>The salvage value of the asset at the end of its lifetime.</td>
</tr>
<tr>
<td><b><em>period</em></b></td>
<td>The period you wish to calculate depreciation for.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The rate of depreciation.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>AMORDEGRC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>AMORDEGRC</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AMORDEGRC Function" src="../images/amordegrc.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AMORDEGRC</b> function.</p>
<h3>Examples</h3>
<p><img alt="AMORDEGRC Function" src="../images/amordegrc.png" /></p>
</div>
</body>
</html>

View File

@ -15,59 +15,77 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AMORLINC Function</h1>
<p>The <b>AMORLINC</b> function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method.</p>
<p>The <b>AMORLINC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AMORLINC(cost, date-purchased, first-period, salvage, period, rate[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>cost</em></b> is the cost of the asset.</p>
<p style="text-indent: 50px;"><b><em>date-purchased</em></b> is the date when asset is purchased.</p>
<p style="text-indent: 50px;"><b><em>first-period</em></b> is the date when the first period ends.</p>
<p style="text-indent: 50px;"><b><em>salvage</em></b> is the salvage value of the asset at the end of its lifetime.</p>
<p style="text-indent: 50px;"><b><em>period</em></b> is the period you wish to calculate depreciation for.</p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the rate of depreciation.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>AMORLINC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method.</p>
<h3>Syntax</h3>
<p><b><em>AMORLINC(cost, date_purchased, first_period, salvage, period, rate, [basis])</em></b></p>
<p>The <b>AMORLINC</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>cost</em></b></td>
<td>The cost of the asset.</td>
</tr>
<tr>
<td><b><em>date_purchased</em></b></td>
<td>The date when asset is purchased.</td>
</tr>
<tr>
<td><b><em>first_period</em></b></td>
<td>The date when the first period ends.</td>
</tr>
<tr>
<td><b><em>salvage</em></b></td>
<td>The salvage value of the asset at the end of its lifetime.</td>
</tr>
<tr>
<td><b><em>period</em></b></td>
<td>The period you wish to calculate depreciation for.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The rate of depreciation.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>AMORLINC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>AMORLINC</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AMORLINC Function" src="../images/amorlinc.png" /></p>
<h3>Notes</h3>
<p> Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AMORLINC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AMORLINC</b> function.</p>
<p><img alt="AMORLINC Function" src="../images/amorlinc.png" /></p>
</div>
</body>
</html>

View File

@ -15,30 +15,28 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AND Function</h1>
<p>The <b>AND</b> function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE.</p>
<p>The <b>AND</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AND(logical1, logical2, ...)</em></b></p>
<p>where <b><em>logical1/2/n</em></b> is a value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>AND</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Logical</b> function group from the list,</li>
<li>click the <b>AND</b> function,</li>
<li>enter the required arguments separating them by commas,
<p class="note"><b>Note</b>: you can enter up to <b>255</b> logical values.</p>
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell. The function returns FALSE if at least one of the arguments is FALSE.</p>
<p><em>For example:</em></p>
<p>The <b>AND</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#logical" onclick="onhyperlinkclick(this)">logical functions</a>. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE.</p>
<h3>Syntax</h3>
<p><b><em>AND(logical1, [logical2], ...)</em></b></p>
<p>The <b>AND</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>logical1/2/n</em></b></td>
<td>A condition that you want to check if it is TRUE or FALSE</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AND</b> function.</p>
<p>The function returns FALSE if at least one of the arguments is FALSE.</p>
<h3>Examples</h3>
<p>There are three arguments: <em>logical1</em> = <b>A1&lt;100</b>, <em>logical2</em> = <b>34&lt;100</b>, <em>logical3</em> = <b>50&lt;100</b>, where <b>A1</b> is <b>12</b>. All these logical expressions are <b>TRUE</b>. So the function returns <b>TRUE</b>.</p>
<p style="text-indent: 150px;"><img alt="AND Function: TRUE" src="../images/andtrue.png" /></p>
<p><img alt="AND Function: TRUE" src="../images/andtrue.png" /></p>
<p>If we change the <b>A1</b> value from <b>12</b> to <b>112</b>, the function returns <b>FALSE</b>:</p>
<p style="text-indent: 150px;"><img alt="AND Function: FALSE" src="../images/andfalse.png" /></p>
<p><img alt="AND Function: FALSE" src="../images/andfalse.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,26 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ARABIC Function</h1>
<p>The <b>ARABIC</b> function is one of the math and trigonometry functions. The function is used to convert a Roman numeral to an Arabic numeral.</p>
<p>The <b>ARABIC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ARABIC(x)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is a text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text.</p>
<p class="note"><b>Note:</b> if an empty string ("") is used as an argument, the function returns the value 0.</p>
<p>To apply the <b>ARABIC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ARABIC</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ARABIC Function" src="../images/arabic.png" /></p>
<p>The <b>ARABIC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. The function is used to convert a Roman numeral to an Arabic numeral.</p>
<h3>Syntax</h3>
<p><b><em>ARABIC(text)</em></b></p>
<p>The <b>ARABIC</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text</em></b></td>
<td>A text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If an empty string ("") is used as an argument, the function returns the value 0.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ARABIC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ARABIC</b> function.</p>
<p><img alt="ARABIC Function" src="../images/arabic.png" /></p>
</div>
</body>
</html>

View File

@ -15,35 +15,44 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ARRAYTOTEXT Function</h1>
<p>The <b>ARRAYTOTEXT</b> function is a text and data function. It is used to return a range of data as a text string.</p>
<p>The <b>ARRAYTOTEXT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>=ARRAYTOTEXT(array, [format])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>array</em></b> is the range of data to return as text,</p>
<p style="text-indent: 50px;">
<b><em>[format]</em></b> is an optional argument. The following values are available:
<ul>
<li>0 the values in the text string will be separated by comma (set by default),</li>
<li>1 to enclose each text value in double quotes (except for numbers, true/false values and errors), to use a semicolon as a delimiter and to enclose the whole text string in curly braces.</li>
</ul>
</p>
<p>To apply the <b>ARRAYTOTEXT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>
click the <b>Insert function</b> <span class="icon icon-insertfunction"></span> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <span class="icon icon-function"></span> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>ARRAYTOTEXT</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ARRAYTOTEXT Function" src="../images/arraytotext.png" /></p>
<p>The <b>ARRAYTOTEXT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. It is used to return a range of data as a text string.</p>
<h3>Syntax</h3>
<p><b><em>ARRAYTOTEXT(array, [format])</em></b></p>
<p>The <b>ARRAYTOTEXT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>The range of data to return as text.</td>
</tr>
<tr>
<td><b><em>format</em></b></td>
<td>An optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>format</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Format</b></th>
<th style="background-color: #f4f4f4"><b>Explanation</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>The values in the text string will be separated by comma (set by default).</td>
</tr>
<tr>
<td><b><em>1</em></b></td>
<td>To enclose each text value in double quotes (except for numbers, true/false values and errors), to use a semicolon as a delimiter and to enclose the whole text string in curly braces.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ARRAYTOTEXT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ARRAYTOTEXT</b> function.</p>
<p><img alt="ARRAYTOTEXT Function" src="../images/arraytotext.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ASC Function</h1>
<p>The <b>ASC</b> function is one of the text and data functions. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
<p>The <b>ASC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ASC(text)</em></b></p>
<p>where <b><em>text</em></b> is a data entered manually or included into the cell you make reference to. If the text does not contain full-width characters it remains unchanged.</p>
<p>To apply the <b>ASC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>ASC</b> function,</li>
<li>enter the required argument,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ASC Function" src="../images/asc.png" /></p>
<p>The <b>ASC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
<h3>Syntax</h3>
<p><b><em>ASC(text)</em></b></p>
<p>The <b>ASC</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text</em></b></td>
<td>The text or a reference to a cell containing the text you want to change. If the text does not contain full-width characters it remains unchanged.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ASC</b> function.</p>
<p><img alt="ASC Function" src="../images/asc.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ASIN Function</h1>
<p>The <b>ASIN</b> function is one of the math and trigonometry functions. It is used to return the arcsine of a number.</p>
<p>The <b>ASIN</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ASIN(x)</em></b></p>
<p>where <b><em>x</em></b> is the sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ASIN</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ASIN</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ASIN Function" src="../images/asin.png" /></p>
<p>The <b>ASIN</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 the arcsine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ASIN(number)</em></b></p>
<p>The <b>ASIN</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASIN</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ASIN</b> function.</p>
<p><img alt="ASIN Function" src="../images/asin.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ASINH Function</h1>
<p>The <b>ASINH</b> function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic sine of a number.</p>
<p>The <b>ASINH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ASINH(x)</em></b></p>
<p>where <b><em>x</em></b> is any numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ASINH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ASINH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ASINH Function" src="../images/asinh.png" /></p>
<p>The <b>ASINH</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 the inverse hyperbolic sine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ASINH(number)</em></b></p>
<p>The <b>ASINH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>Any numeric value entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASINH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ASINH</b> function.</p>
<p><img alt="ASINH Function" src="../images/asinh.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ATAN Function</h1>
<p>The <b>ATAN</b> function is one of the math and trigonometry functions. It is used to return the arctangent of a number.</p>
<p>The <b>ATAN</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ATAN(x)</em></b></p>
<p>where <b><em>x</em></b> is the tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ATAN</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ATAN</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ATAN Function" src="../images/atan.png" /></p>
<p>The <b>ATAN</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 the arctangent of a number.</p>
<h3>Syntax</h3>
<p><b><em>ATAN(number)</em></b></p>
<p>The <b>ATAN</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ATAN</b> function.</p>
<p><img alt="ATAN Function" src="../images/atan.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,29 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ATAN2 Function</h1>
<p>The <b>ATAN2</b> function is one of the math and trigonometry functions. It is used to return the arctangent of x and y coordinates.</p>
<p>The <b>ATAN2</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ATAN2(x, y)</em></b></p>
<p>where <b><em>x</em></b>, <b><em>y</em></b> are the x and y coordinates of a point, numeric values entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ATAN2</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ATAN2</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ATAN2 Function" src="../images/atan2.png" /></p>
<p>The <b>ATAN2</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 the arctangent of x and y coordinates.</p>
<h3>Syntax</h3>
<p><b><em>ATAN2(x_num, y_num)</em></b></p>
<p>The <b>ATAN2</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x_num</em></b></td>
<td>The x coordinate of a point, a numeric value entered manually or included into the cell you make reference to.</td>
</tr>
<tr>
<td><b><em>y_num</em></b></td>
<td>The y coordinate of a point, a numeric value entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN2</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ATAN2</b> function.</p>
<p><img alt="ATAN2 Function" src="../images/atan2.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>ATANH Function</h1>
<p>The <b>ATANH</b> function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic tangent of a number.</p>
<p>The <b>ATANH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>ATANH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ATANH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ATANH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="ATANH Function" src="../images/atanh.png" /></p>
<p>The <b>ATANH</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 the inverse hyperbolic tangent of a number.</p>
<h3>Syntax</h3>
<p><b><em>ATANH(number)</em></b></p>
<p>The <b>ATANH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 greater than - 1 but less than 1 entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATANH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ATANH</b> function.</p>
<p><img alt="ATANH Function" src="../images/atanh.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AVEDEV Function</h1>
<p>The <b>AVEDEV</b> function is one of the statistical functions. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean.</p>
<p>The <b>AVEDEV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AVEDEV(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is up to 30 numeric values entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>AVEDEV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>AVEDEV</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AVEDEV Function" src="../images/avedev.png" /></p>
<p>The <b>AVEDEV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean.</p>
<h3>Syntax</h3>
<p><b><em>AVEDEV(number1, [number2], ...)</em></b></p>
<p>The <b>AVEDEV</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 255 numeric values for which you want to find the average of the absolute deviations.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVEDEV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AVEDEV</b> function.</p>
<p><img alt="AVEDEV Function" src="../images/avedev.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,25 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AVERAGE Function</h1>
<p>The <b>AVERAGE</b> function is one of the statistical functions. It is used to analyze the range of data and find the average value.</p>
<p>The <b>AVERAGE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AVERAGE(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is up to 255 numerical values entered manually or included into the cells you make reference to.</p>
<h2>How to use AVERAGE</h2>
<p>To apply the <b>AVERAGE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>AVERAGE</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AVERAGE Function" src="../images/average.png" /></p>
<p>The <b>AVERAGE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data and find the average value.</p>
<h3>Syntax</h3>
<p><b><em>AVERAGE(number1, [number2], ...)</em></b></p>
<p>The <b>AVERAGE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 255 numerical values for which you want to find the average value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AVERAGE</b> function.</p>
<p><img alt="AVERAGE Function" src="../images/average.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AVERAGEA Function</h1>
<p>The <b>AVERAGEA</b> function is one of the statistical functions. It is used to analyze the range of data including text and logical values and find the average value. The <b>AVERAGEA</b> function treats text and FALSE as a value of 0 and TRUE as a value of 1. </p>
<p>The <b>AVERAGEA</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AVERAGEA(argument-list)</em></b></p>
<p>where <b><em>argumenti-list</em></b> is up to 255 values entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>AVERAGEA</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>AVERAGEA</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AVERAGEA Function" src="../images/averagea.png" /></p>
<p>The <b>AVERAGEA</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data including text and logical values and find the average value. The <b>AVERAGEA</b> function treats text and FALSE as a value of 0 and TRUE as a value of 1. </p>
<h3>Syntax</h3>
<p><b><em>AVERAGEA(value1, [value2], ...)</em></b></p>
<p>The <b>AVERAGEA</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value1/2/n</em></b></td>
<td>Up to 255 values for which you want to find the average value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEA</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AVERAGEA</b> function.</p>
<p><img alt="AVERAGEA Function" src="../images/averagea.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,36 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AVERAGEIF Function</h1>
<p>The <b>AVERAGEIF</b> function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on the specified criterion.</p>
<p>The <b>AVERAGEIF</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AVERAGEIF(cell-range, selection-criteria [,average-range])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>cell-range</em></b> is the selected range of cells to apply the criterion to.</p>
<p style="text-indent: 50px;"><b><em>selection-criteria</em></b> is the criterion you wish to apply, a value entered manually or included into the cell you make reference to.</p>
<p style="text-indent: 50px;"><b><em>average-range</em></b> is the selected range of cells you need to find the average in.</p>
<p class="note"><b><em>average-range</em></b> is an optional argument. If it is omitted, the function will find the average in <b><em>cell-range</em></b>.</p>
<h2>How to use AVERAGEIF</h2>
<p>To apply the <b>AVERAGEIF</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>AVERAGEIF</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AVERAGEIF Function" src="../images/averageif.png" /></p>
<p>The <b>AVERAGEIF</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on the specified criterion.</p>
<h3>Syntax</h3>
<p><b><em>AVERAGEIF(range, criteria, [average_range])</em></b></p>
<p>The <b>AVERAGEIF</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>range</em></b></td>
<td>The selected range of cells to apply the criterion to.</td>
</tr>
<tr>
<td><b><em>criteria</em></b></td>
<td>The criterion you wish to apply, a value entered manually or included into the cell you make reference to.</td>
</tr>
<tr>
<td><b><em>average_range</em></b></td>
<td>The selected range of cells you need to find the average in.</td>
</tr>
</table>
<h3>Notes</h3>
<p><b><em>average_range</em></b> is an optional argument. If it is omitted, the function will find the average in <b><em>range</em></b>.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEIF</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AVERAGEIF</b> function.</p>
<p><img alt="AVERAGEIF Function" src="../images/averageif.png" /></p>
</div>
</body>
</html>

View File

@ -15,30 +15,40 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>AVERAGEIFS Function</h1>
<p>The <b>AVERAGEIFS</b> function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria.</p>
<p>The <b>AVERAGEIFS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>AVERAGEIFS(average-range, criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>average-range</em></b> is the selected range of cells you need to find the average in. It is a required argument.</p>
<p style="text-indent: 50px;"><b><em>criteria-range-1</em></b> is the first selected range of cells to apply the <em>criteria-1</em> to. It is a required argument. </p>
<p style="text-indent: 50px;"><b><em>criteria-1</em></b> is the first condition that must be met. It is applied to the <em>criteria-range-1</em> and used to determine the cells in the <em>average-range</em> to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</p>
<p style="text-indent: 50px;"><b><em>criteria-range-2, criteria-2, ...</em></b> are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</p>
<p class="note"><b>Note:</b> you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.</p>
<h2>How to use AVERAGEIFS</h2>
<p>To apply the <b>AVERAGEIFS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>AVERAGEIFS</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="AVERAGEIFS Function" src="../images/averageifs.png" /></p>
<p>The <b>AVERAGEIFS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria.</p>
<h3>Syntax</h3>
<p><b><em>AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)</em></b></p>
<p>The <b>AVERAGEIFS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>average_range</em></b></td>
<td>The selected range of cells you need to find the average in. It is a required argument.</td>
</tr>
<tr>
<td><b><em>criteria_range1</em></b></td>
<td>The first selected range of cells to apply the <em>criteria1</em> to. It is a required argument.</td>
</tr>
<tr>
<td><b><em>criteria1</em></b></td>
<td>The first condition that must be met. It is applied to the <em>criteria_range1</em> and used to determine the cells in the <em>average_range</em> to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</td>
</tr>
<tr>
<td><b><em>criteria_range2, criteria2, ...</em></b></td>
<td>Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</td>
</tr>
</table>
<h3>Notes</h3>
<p>You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEIFS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AVERAGEIFS</b> function.</p>
<p><img alt="AVERAGEIFS Function" src="../images/averageifs.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BASE Function</h1>
<p>The <b>BASE</b> function is one of the math and trigonometry functions. It is used to convert a number into a text representation with the given base.</p>
<p>The <b>BASE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BASE(number, base[, min-lenght])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is a number you want to convert. An integer greater than or equal to 0 and less than 2^53.</p>
<p style="text-indent: 50px;"><b><em>base</em></b> is a base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36.</p>
<p style="text-indent: 50px;"><b><em>min-lenght</em></b> is a minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BASE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>BASE</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BASE Function" src="../images/base.png" /></p>
<p>The <b>BASE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to convert a number into a text representation with the given base.</p>
<h3>Syntax</h3>
<p><b><em>BASE(number, radix, [min_length])</em></b></p>
<p>The <b>BASE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A number you want to convert. An integer greater than or equal to 0 and less than 2^53.</td>
</tr>
<tr>
<td><b><em>radix</em></b></td>
<td>A base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36.</td>
</tr>
<tr>
<td><b><em>min_length</em></b></td>
<td>A minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BASE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BASE</b> function.</p>
<p><img alt="BASE Function" src="../images/base.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BESSELI Function</h1>
<p>The <b>BESSELI</b> function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.</p>
<p>The <b>BESSELI</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BESSELI(X, N)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>X</em></b> is the value at which to evaluate the function,</p>
<p style="text-indent: 50px;"><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>BESSELI</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BESSELI</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BESSELI Function" src="../images/besseli.png" /></p>
<p>The <b>BESSELI</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.</p>
<h3>Syntax</h3>
<p><b><em>BESSELI(x, n)</em></b></p>
<p>The <b>BESSELI</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which to evaluate the function.</td>
</tr>
<tr>
<td><b><em>n</em></b></td>
<td>The order of the Bessel function, a numeric value greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELI</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BESSELI</b> function.</p>
<p><img alt="BESSELI Function" src="../images/besseli.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BESSELJ Function</h1>
<p>The <b>BESSELJ</b> function is one of the engineering functions. It is used to return the Bessel function.</p>
<p>The <b>BESSELJ</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BESSELJ(X, N)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>X</em></b> is the value at which to evaluate the function,</p>
<p style="text-indent: 50px;"><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>BESSELJ</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BESSELJ</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BESSELJ Function" src="../images/besselj.png" /></p>
<p>The <b>BESSELJ</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return the Bessel function.</p>
<h3>Syntax</h3>
<p><b><em>BESSELJ(x, n)</em></b></p>
<p>The <b>BESSELJ</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which to evaluate the function.</td>
</tr>
<tr>
<td><b><em>n</em></b></td>
<td>The order of the Bessel function, a numeric value greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELJ</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BESSELJ</b> function.</p>
<p><img alt="BESSELJ Function" src="../images/besselj.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BESSELK Function</h1>
<p>The <b>BESSELK</b> function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments.</p>
<p>The <b>BESSELK</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BESSELK(X, N)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>X</em></b> is the value at which to evaluate the function, a numeric value greater than 0,</p>
<p style="text-indent: 50px;"><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>BESSELK</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BESSELK</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BESSELK Function" src="../images/besselk.png" /></p>
<p>The <b>BESSELK</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments.</p>
<h3>Syntax</h3>
<p><b><em>BESSELK(x, n)</em></b></p>
<p>The <b>BESSELK</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which to evaluate the function, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>n</em></b></td>
<td>The order of the Bessel function, a numeric value greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELK</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BESSELK</b> function.</p>
<p><img alt="BESSELK Function" src="../images/besselk.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BESSELY Function</h1>
<p>The <b>BESSELY</b> function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function.</p>
<p>The <b>BESSELY</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BESSELY(X, N)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>X</em></b> is the value at which to evaluate the function, a numeric value greater than 0,</p>
<p style="text-indent: 50px;"><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>BESSELY</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BESSELY</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BESSELY Function" src="../images/bessely.png" /></p>
<p>The <b>BESSELY</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return the Bessel function, which is also called the Weber function or the Neumann function.</p>
<h3>Syntax</h3>
<p><b><em>BESSELY(x, n)</em></b></p>
<p>The <b>BESSELY</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which to evaluate the function, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>n</em></b></td>
<td>The order of the Bessel function, a numeric value greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELY</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BESSELY</b> function.</p>
<p><img alt="BESSELY Function" src="../images/bessely.png" /></p>
</div>
</body>
</html>

View File

@ -15,31 +15,47 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BETA.DIST Function</h1>
<p>The <b>BETA.DIST</b> function is one of the statistical functions. It is used to return the beta distribution.</p>
<p>The <b>BETA.DIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BETA.DIST(x, alpha, beta, cumulative, [,[A] [,[B]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the value between <b><em>A</em></b> and <b><em>B</em></b> at which the function should be calculated.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the first parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>cumulative</em></b> is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.</p>
<p style="text-indent: 50px;"><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p style="text-indent: 50px;"><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BETA.DIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BETA.DIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BETA.DIST Function" src="../images/beta-dist.png" /></p>
<p>The <b>BETA.DIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the beta distribution.</p>
<h3>Syntax</h3>
<p><b><em>BETA.DIST(x, alpha, beta, cumulative, [A], [B])</em></b></p>
<p>The <b>BETA.DIST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value between <b><em>A</em></b> and <b><em>B</em></b> at which the function should be calculated.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The first parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>beta</em></b></td>
<td>The second parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>cumulative</em></b></td>
<td>A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.</td>
</tr>
<tr>
<td><b><em>A</em></b></td>
<td>The lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</td>
</tr>
<tr>
<td><b><em>B</em></b></td>
<td>The upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETA.DIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BETA.DIST</b> function.</p>
<p><img alt="BETA.DIST Function" src="../images/beta-dist.png" /></p>
</div>
</body>
</html>

View File

@ -15,30 +15,43 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BETA.INV Function</h1>
<p>The <b>BETA.INV</b> function is one of the statistical functions. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST).</p>
<p>The <b>BETA.INV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BETA.INV(probability, alpha, beta, [,[A] [,[B]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>probability</em></b> is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the first parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p style="text-indent: 50px;"><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BETA.INV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BETA.INV</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BETA.INV Function" src="../images/beta-inv.png" /></p>
<p>The <b>BETA.INV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST).</p>
<h3>Syntax</h3>
<p><b><em>BETA.INV(probability, alpha, beta, [A], [B])</em></b></p>
<p>The <b>BETA.INV</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>A probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The first parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>beta</em></b></td>
<td>The second parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>A</em></b></td>
<td>The lower bound to the interval of <b><em>probability</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</td>
</tr>
<tr>
<td><b><em>B</em></b></td>
<td>The upper bound to the interval of <b><em>probability</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETA.INV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BETA.INV</b> function.</p>
<p><img alt="BETA.INV Function" src="../images/beta-inv.png" /></p>
</div>
</body>
</html>

View File

@ -15,30 +15,42 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BETADIST Function</h1>
<p>The <b>BETADIST</b> function is one of the statistical functions. It is used to return the cumulative beta probability density function.</p>
<p>The <b>BETADIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BETADIST(x, alpha, beta, [,[A] [,[B]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the value between <b><em>A</em></b> and <b><em>B</em></b> at which the function should be calculated.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the first parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p style="text-indent: 50px;"><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BETADIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BETADIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BETADIST Function" src="../images/betadist.png" /></p>
<p>The <b>BETADIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the cumulative beta probability density function.</p>
<h3>Syntax</h3>
<p><b><em>BETADIST(x, alpha, beta, [A], [B])</em></b></p>
<p>The <b>BETADIST</b> function has the following arguments:</p><table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value between <b><em>A</em></b> and <b><em>B</em></b> at which the function should be calculated.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The first parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>beta</em></b></td>
<td>The second parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>A</em></b></td>
<td>The lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</td>
</tr>
<tr>
<td><b><em>B</em></b></td>
<td>The upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETADIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BETADIST</b> function.</p>
<p><img alt="BETADIST Function" src="../images/betadist.png" /></p>
</div>
</body>
</html>

View File

@ -15,30 +15,42 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BETAINV Function</h1>
<p>The <b>BETAINV</b> function is one of the statistical functions. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution.</p>
<p>The <b>BETAINV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BETAINV(x, alpha, beta, [,[A] [,[B]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the first parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p style="text-indent: 50px;"><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BETAINV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BETAINV</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BETAINV Function" src="../images/betainv.png" /></p>
<p>The <b>BETAINV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution.</p>
<h3>Syntax</h3>
<p><b><em>BETAINV(probability, alpha, beta, [A], [B])</em></b></p>
<p>The <b>BETAINV</b> function has the following arguments:</p><table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>A probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The first parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>beta</em></b></td>
<td>The second parameter of the distribution, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>A</em></b></td>
<td>The lower bound to the interval of <b><em>probability</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</td>
</tr>
<tr>
<td><b><em>B</em></b></td>
<td>The upper bound to the interval of <b><em>probability</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETAINV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BETAINV</b> function.</p>
<p><img alt="BETAINV Function" src="../images/betainv.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,28 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BIN2DEC Function</h1>
<p>The <b>BIN2DEC</b> function is one of the engineering functions. It is used to convert a binary number into a decimal number.</p>
<p>The <b>BIN2DEC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BIN2DEC(number)</em></b></p>
<p>where <b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p class="note"><b>Note:</b> if the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the <b>#NUM!</b> error.</p>
<p>To apply the <b>BIN2DEC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BIN2DEC</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BIN2DEC Function" src="../images/bin2dec.png" /></p>
<p>The <b>BIN2DEC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to convert a binary number into a decimal number.</p>
<h3>Syntax</h3>
<p><b><em>BIN2DEC(number)</em></b></p>
<p>The <b>BIN2DEC</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A binary number entered manually or included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2DEC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BIN2DEC</b> function.</p>
<p><img alt="BIN2DEC Function" src="../images/bin2dec.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BIN2HEX Function</h1>
<p>The <b>BIN2HEX</b> function is one of the engineering functions. It is used to convert a binary number into a hexadecimal number.</p>
<p>The <b>BIN2HEX</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BIN2HEX(number [, num-hex-digits])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p style="text-indent: 50px;"><b><em>num-hex-digits</em></b> is the number of digits to display. If omitted, the function will use the minimum number.</p>
<p class="note"><b>Note:</b> if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p>To apply the <b>BIN2HEX</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BIN2HEX</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BIN2HEX Function" src="../images/bin2hex.png" /></p>
<p>The <b>BIN2HEX</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to convert a binary number into a hexadecimal number.</p>
<h3>Syntax</h3>
<p><b><em>BIN2HEX(number, [places])</em></b></p>
<p>The <b>BIN2HEX</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A binary number entered manually or included into the cell you make reference to.</td>
</tr>
<tr>
<td><b><em>places</em></b></td>
<td>The number of digits to display. If omitted, the function will use the minimum number.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified <b><em>places</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2HEX</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BIN2HEX</b> function.</p>
<p><img alt="BIN2HEX Function" src="../images/bin2hex.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BIN2OCT Function</h1>
<p>The <b>BIN2OCT</b> function is one of the engineering functions. It is used to convert a binary number into an octal number.</p>
<p>The <b>BIN2OCT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BIN2OCT(number [, num-hex-digits])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p style="text-indent: 50px;"><b><em>num-hex-digits</em></b> is the number of digits to display. If omitted, the function will use the minimum number.</p>
<p class="note"><b>Note:</b> if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p>To apply the <b>BIN2OCT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BIN2OCT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BIN2OCT Function" src="../images/bin2oct.png" /></p>
<p>The <b>BIN2OCT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to convert a binary number into an octal number.</p>
<h3>Syntax</h3>
<p><b><em>BIN2OCT(number, [places])</em></b></p>
<p>The <b>BIN2OCT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A binary number entered manually or included into the cell you make reference to.</td>
</tr>
<tr>
<td><b><em>places</em></b></td>
<td>The number of digits to display. If omitted, the function will use the minimum number.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified <b><em>places</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2OCT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BIN2OCT</b> function.</p>
<p><img alt="BIN2OCT Function" src="../images/bin2oct.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,39 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BINOM.DIST.RANGE Function</h1>
<p>The <b>BINOM.DIST.RANGE</b> function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution.</p>
<p>The <b>BINOM.DIST.RANGE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BINOM.DIST.RANGE(trials, probability-s, number-s [, number-s2])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>trials</em></b> is the number of trials, a numeric value greater than or equal to <b><em>number-s</em></b>.</p>
<p style="text-indent: 50px;"><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>number-s</em></b> is the minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>number-s2</em></b> is an optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than <b><em>number-s</em></b> and less than or equal to <b><em>trials</em></b>.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BINOM.DIST.RANGE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BINOM.DIST.RANGE</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BINOM.DIST.RANGE Function" src="../images/binom-dist-range.png" /></p>
<p>The <b>BINOM.DIST.RANGE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the probability of a trial result using a binomial distribution.</p>
<h3>Syntax</h3>
<p><b><em>BINOM.DIST.RANGE(trials, probability_s, number_s, [number_s2])</em></b></p>
<p>The <b>BINOM.DIST.RANGE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>trials</em></b></td>
<td>The number of trials, a numeric value greater than or equal to <b><em>number_s</em></b>.</td>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>number_s</em></b></td>
<td>The minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number_s2</em></b></td>
<td>An optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than <b><em>number_s</em></b> and less than or equal to <b><em>trials</em></b>.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.DIST.RANGE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BINOM.DIST.RANGE</b> function.</p>
<p><img alt="BINOM.DIST.RANGE Function" src="../images/binom-dist-range.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,39 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BINOM.DIST Function</h1>
<p>The <b>BINOM.DIST</b> function is one of the statistical functions. It is used to return the individual term binomial distribution probability.</p>
<p>The <b>BINOM.DIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BINOM.DIST(number-s, trials, probability-s, cumulative)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number-s</em></b> is the number of successes in the trials, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>trials</em></b> is the number of trials, a numeric value greater than or equal to <b><em>number-s</em></b>.</p>
<p style="text-indent: 50px;"><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>cumulative</em></b> is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BINOM.DIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BINOM.DIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BINOM.DIST Function" src="../images/binom-dist.png" /></p>
<p>The <b>BINOM.DIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the individual term binomial distribution probability.</p>
<h3>Syntax</h3>
<p><b><em>BINOM.DIST(number_s, trials, probability_s, cumulative)</em></b></p>
<p>The <b>BINOM.DIST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number_s</em></b></td>
<td>The number of successes in the trials, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>trials</em></b></td>
<td>The number of trials, a numeric value greater than or equal to <b><em>number_s</em></b>.</td>
</tr>
<tr>
<td><b><em>probability_s</em></b></td>
<td>The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>cumulative</em></b></td>
<td>A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.DIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BINOM.DIST</b> function.</p>
<p><img alt="BINOM.DIST Function" src="../images/binom-dist.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BINOM.INV Function</h1>
<p>The <b>BINOM.INV</b> function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</p>
<p>The <b>BINOM.INV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BINOM.INV(trials, probability-s, alpha)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>trials</em></b> is the number of trials, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than 0 but less than 1.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the criterion, a numeric value greater than 0 but less than 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BINOM.INV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BINOM.INV</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BINOM.INV Function" src="../images/binom-inv.png" /></p>
<p>The <b>BINOM.INV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</p>
<h3>Syntax</h3>
<p><b><em>BINOM.INV(trials, probability_s, alpha)</em></b></p>
<p>The <b>BINOM.INV</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>trials</em></b></td>
<td>The number of trials, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>probability_s</em></b></td>
<td>The success probability of each trial, a numeric value greater than 0 but less than 1.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The criterion, a numeric value greater than 0 but less than 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.INV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BINOM.INV</b> function.</p>
<p><img alt="BINOM.INV Function" src="../images/binom-inv.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,39 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BINOMDIST Function</h1>
<p>The <b>BINOMDIST</b> function is one of the statistical functions. It is used to return the individual term binomial distribution probability.</p>
<p>The <b>BINOMDIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BINOMDIST(number-successes, number-trials, success-probability, cumulative-flag)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number-successes</em></b> is the number of successes in the trials, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>number-trials</em></b> is the number of trials, a numeric value greater than or equal to <b><em>number-successes</em></b>.</p>
<p style="text-indent: 50px;"><b><em>success-probability</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>cumulative-flag</em></b> is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>BINOMDIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>BINOMDIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BINOMDIST Function" src="../images/binomdist.png" /></p>
<p>The <b>BINOMDIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the individual term binomial distribution probability.</p>
<h3>Syntax</h3>
<p><b><em>BINOMDIST(number_s, trials, probability_s, cumulative)</em></b></p>
<p>The <b>BINOMDIST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number_s</em></b></td>
<td>The number of successes in the trials, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>trials</em></b></td>
<td>The number of trials, a numeric value greater than or equal to <b><em>number_s</em></b>.</td>
</tr>
<tr>
<td><b><em>probability_s</em></b></td>
<td>The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>cumulative</em></b></td>
<td>A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOMDIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BINOMDIST</b> function.</p>
<p><img alt="BINOMDIST Function" src="../images/binomdist.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BITAND Function</h1>
<p>The <b>BITAND</b> function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers.</p>
<p>The <b>BITAND</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BITAND(number1, number2)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p style="text-indent: 50px;"><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>The <b>BITAND</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return a bitwise 'AND' of two numbers.</p>
<h3>Syntax</h3>
<p><b><em>BITAND(number1, number2)</em></b></p>
<p>The <b>BITAND</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number1</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number2</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The value of each bit position is counted only if both parameter's bits at that position are 1.</p>
<p>To apply the <b>BITAND</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BITAND</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BITAND Function" src="../images/bitand.png" /></p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITAND</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BITAND</b> function.</p>
<p><img alt="BITAND Function" src="../images/bitand.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BITLSHIFT Function</h1>
<p>The <b>BITLSHIFT</b> function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits.</p>
<p>The <b>BITLSHIFT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BITLSHIFT(number, shift_amount)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is an integer greater than or equal to 0,</p>
<p style="text-indent: 50px;"><b><em>shift_amount</em></b> is a number of bits by which you want to shift <b><em>number</em></b>, an integer.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>The <b>BITLSHIFT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return a number shifted left by the specified number of bits.</p>
<h3>Syntax</h3>
<p><b><em>BITLSHIFT(number, shift_amount)</em></b></p>
<p>The <b>BITLSHIFT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>An integer greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>shift_amount</em></b></td>
<td>A number of bits by which you want to shift <b><em>number</em></b>, an integer.</td>
</tr>
</table>
<h3>Notes</h3>
<p>Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number.</p>
<p>To apply the <b>BITLSHIFT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BITLSHIFT</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BITLSHIFT Function" src="../images/bitlshift.png" /></p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITLSHIFT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BITLSHIFT</b> function.</p>
<p><img alt="BITLSHIFT Function" src="../images/bitlshift.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BITOR Function</h1>
<p>The <b>BITOR</b> function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers.</p>
<p>The <b>BITOR</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BITOR(number1, number2)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p style="text-indent: 50px;"><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>The <b>BITOR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return a bitwise 'OR' of two numbers.</p>
<h3>Syntax</h3>
<p><b><em>BITOR(number1, number2)</em></b></p>
<p>The <b>BITOR</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number1</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number2</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The value of each bit position is counted if either of the parameters has 1 at that position.</p>
<p>To apply the <b>BITOR</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BITOR</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BITOR Function" src="../images/bitor.png" /></p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITOR</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BITOR</b> function.</p>
<p><img alt="BITOR Function" src="../images/bitor.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BITRSHIFT Function</h1>
<p>The <b>BITRSHIFT</b> function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits.</p>
<p>The <b>BITRSHIFT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BITRSHIFT(number, shift_amount)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is an integer greater than or equal to 0,</p>
<p style="text-indent: 50px;"><b><em>shift_amount</em></b> is a number of bits by which you want to shift <b><em>number</em></b>, an integer.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>The <b>BITRSHIFT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return a number shifted right by the specified number of bits.</p>
<h3>Syntax</h3>
<p><b><em>BITRSHIFT(number, shift_amount)</em></b></p>
<p>The <b>BITRSHIFT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>An integer greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>shift_amount</em></b></td>
<td>A number of bits by which you want to shift <b><em>number</em></b>, an integer.</td>
</tr>
</table>
<h3>Notes</h3>
<p>Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number.</p>
<p>To apply the <b>BITRSHIFT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BITRSHIFT</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BITRSHIFT Function" src="../images/bitrshift.png" /></p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITRSHIFT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BITRSHIFT</b> function.</p>
<p><img alt="BITRSHIFT Function" src="../images/bitrshift.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>BITXOR Function</h1>
<p>The <b>BITXOR</b> function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers.</p>
<p>The <b>BITXOR</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>BITXOR(number1, number2)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p style="text-indent: 50px;"><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>The <b>BITXOR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to return a bitwise 'XOR' of two numbers.</p>
<h3>Syntax</h3>
<p><b><em>BITXOR(number1, number2)</em></b></p>
<p>The <b>BITXOR</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number1</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number2</em></b></td>
<td>A numeric value in decimal form greater than or equal to 0.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The value of each bit position is 1 when the bit positions of the parameters are different.</p>
<p>To apply the <b>BITXOR</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>BITXOR</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="BITXOR Function" src="../images/bitxor.png" /></p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITXOR</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>BITXOR</b> function.</p>
<p><img alt="BITXOR Function" src="../images/bitxor.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CEILING.MATH Function</h1>
<p>The <b>CEILING.MATH</b> function is one of the math and trigonometry functions. It is used to round a number up to the nearest integer or to the nearest multiple of significance.</p>
<p>The <b>CEILING.MATH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CEILING.MATH(x [, [significance] [, [mode]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the number you wish to round up.</p>
<p style="text-indent: 50px;"><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.</p>
<p style="text-indent: 50px;"><b><em>mode</em></b> specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CEILING.MATH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>CEILING.MATH</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CEILING.MATH Function" src="../images/ceilingmath.png" /></p>
<p>The <b>CEILING.MATH</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to round a number up to the nearest integer or to the nearest multiple of significance.</p>
<h3>Syntax</h3>
<p><b><em>CEILING.MATH(number, [significance], [mode])</em></b></p>
<p>The <b>CEILING.MATH</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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>significance</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.</td>
</tr>
<tr>
<td><b><em>mode</em></b></td>
<td>Specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CEILING.MATH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CEILING.MATH</b> function.</p>
<p><img alt="CEILING.MATH Function" src="../images/ceilingmath.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CEILING.PRECISE Function</h1>
<p>The <b>CEILING.PRECISE</b> function is one of the math and trigonometry functions. 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>
<p>The <b>CEILING.PRECISE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CEILING.PRECISE(x [, significance])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the number you wish to round up.</p>
<p style="text-indent: 50px;"><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>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CEILING.PRECISE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>CEILING.PRECISE</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CEILING.PRECISE Function" src="../images/ceilingprecise.png" /></p>
<p>The <b>CEILING.PRECISE</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>CEILING.PRECISE(number, [significance])</em></b></p>
<p>The <b>CEILING.PRECISE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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>significance</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>CEILING.PRECISE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CEILING.PRECISE</b> function.</p>
<p><img alt="CEILING.PRECISE Function" src="../images/ceilingprecise.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CEILING Function</h1>
<p>The <b>CEILING</b> function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance.</p>
<p>The <b>CEILING</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CEILING(x, significance)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the number you wish to round up,</p>
<p style="text-indent: 50px;"><b><em>significance</em></b> is the multiple of significance you wish to round up to,</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p class="note"><b>Note</b>: if the values of <b><em>x</em></b> and <b><em>significance</em></b> have different signs, the function returns the <b>#NUM!</b> error.</p>
<p>To apply the <b>CEILING</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>CEILING</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CEILING Function" src="../images/ceiling.png" /></p>
<p>The <b>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 round the number up to the nearest multiple of significance.</p>
<h3>Syntax</h3>
<p><b><em>CEILING(number, significance)</em></b></p>
<p>The <b>CEILING</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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>significance</em></b></td>
<td>The multiple of significance you wish to round up to.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If the values of <b><em>number</em></b> and <b><em>significance</em></b> have different signs, the function returns the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CEILING</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CEILING</b> function.</p>
<p><img alt="CEILING Function" src="../images/ceiling.png" /></p>
</div>
</body>
</html>

View File

@ -15,175 +15,181 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CELL Function</h1>
<p>The <b>CELL</b> function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell.</p>
<p>The <b>CELL</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CELL(info_type, [reference])</em></b></p>
<p>where:</p>
<p style="text-indent: 50px;"><b><em>info_type</em></b> is a text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below.</p>
<p style="text-indent: 50px;"><b><em>[reference]</em></b> is a cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the <em>reference</em> argument is specified as a range of cells, the function returns the information for the upper-left cell of the range.</p>
<p>The <b>CELL</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#information" onclick="onhyperlinkclick(this)">information functions</a>. It is used to return information about the formatting, location, or contents of a cell.</p>
<h3>Syntax</h3>
<p><b><em>CELL(info_type, [reference])</em></b></p>
<p>The <b>CELL</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Text value</b></td>
<td><b>Type of information</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>"address"</td>
<td><b><em>info_type</em></b></td>
<td>A text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>reference</em></b></td>
<td>A cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the <em>reference</em> argument is specified as a range of cells, the function returns the information for the upper-left cell of the range.</td>
</tr>
</table>
<p>The <b><em>info_type</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Text value</b></th>
<th style="background-color: #f4f4f4"><b>Type of information</b></th>
</tr>
<tr>
<td><b><em>"address"</em></b></td>
<td>Returns the reference to the cell.</td>
</tr>
<tr>
<td>"col"</td>
<td><b><em>"col"</em></b></td>
<td>Returns the column number where the cell is located.</td>
</tr>
<tr>
<td>"color"</td>
<td><b><em>"color"</em></b></td>
<td>Returns 1 if the cell is formatted in color for negative values; otherwise returns 0.</td>
</tr>
<tr>
<td>"contents"</td>
<td><b><em>"contents"</em></b></td>
<td>Returns the value that the cell contains.</td>
</tr>
<tr>
<td>"filename"</td>
<td><b><em>"filename"</em></b></td>
<td>Returns the filename of the file that contains the cell.</td>
</tr>
<tr>
<td>"format"</td>
<td><b><em>"format"</em></b></td>
<td>Returns a text value corresponding to the number format of the cell. The text values are listed in the table below.</td>
</tr>
<tr>
<td>"parentheses"</td>
<td><b><em>"parentheses"</em></b></td>
<td>Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0.</td>
</tr>
<tr>
<td>"prefix"</td>
<td><b><em>"prefix"</em></b></td>
<td>Returns the single quotation mark (') if the text in the cell is left-aligned, the double quotation mark (") if the text is right-aligned, the caret (^) if the text is centered, <!--the backslash (\) if the text is fill-aligned,-->and an empty text ("") if the cell contains anything else.</td>
</tr>
<tr>
<td>"protect"</td>
<td><b><em>"protect"</em></b></td>
<td>Returns 0 if the cell is not locked; returns 1 if the cell is locked.</td>
</tr>
<tr>
<td>"row"</td>
<td><b><em>"row"</em></b></td>
<td>Returns the row number where the cell is located.</td>
</tr>
<tr>
<td>"type"</td>
<td><b><em>"type"</em></b></td>
<td>Returns "b" for an empty cell, "l" for a text value, and "v" for any other value in the cell.</td>
</tr>
<tr>
<td>"width"</td>
<td><b><em>"width"</em></b></td>
<td>Returns the width of the cell, rounded off to an integer.</td>
</tr>
</table>
<p>Below you can see the text values which the function returns for the <em>"format"</em> argument</p>
<table style="width: 40%">
<tr>
<td><b>Number format</b></td>
<td><b>Returned text value</b></td>
<th style="background-color: #f4f4f4"><b>Number format</b></th>
<th style="background-color: #f4f4f4"><b>Returned text value</b></th>
</tr>
<tr>
<td>General</td>
<td><b><em>General</em></b></td>
<td>G</td>
</tr>
<tr>
<td>0</td>
<td><b><em>0</em></b></td>
<td>F0</td>
</tr>
<tr>
<td>#,##0</td>
<td><b><em>#,##0</em></b></td>
<td>,0</td>
</tr>
<tr>
<td>0.00</td>
<td><b><em>0.00</em></b></td>
<td>F2</td>
</tr>
<tr>
<td>#,##0.00</td>
<td><b><em>#,##0.00</em></b></td>
<td>,2</td>
</tr>
<tr>
<td>$#,##0_);($#,##0)</td>
<td><b><em>$#,##0_);($#,##0)</em></b></td>
<td>C0</td>
</tr>
<tr>
<td>$#,##0_);[Red]($#,##0)</td>
<td><b><em>$#,##0_);[Red]($#,##0)</em></b></td>
<td>C0-</td>
</tr>
<tr>
<td>$#,##0.00_);($#,##0.00)</td>
<td><b><em>$#,##0.00_);($#,##0.00)</em></b></td>
<td>C2</td>
</tr>
<tr>
<td>$#,##0.00_);[Red]($#,##0.00)</td>
<td><b><em>$#,##0.00_);[Red]($#,##0.00)</em></b></td>
<td>C2-</td>
</tr>
<tr>
<td>0%</td>
<td><b><em>0%</em></b></td>
<td>P0</td>
</tr>
<tr>
<td>0.00%</td>
<td><b><em>0.00%</em></b></td>
<td>P2</td>
</tr>
<tr>
<td>0.00E+00</td>
<td><b><em>0.00E+00</em></b></td>
<td>S2</td>
</tr>
<tr>
<td># ?/? or # ??/??</td>
<td><b><em># ?/? or # ??/??</em></b></td>
<td>G</td>
</tr>
<tr>
<td>m/d/yy or m/d/yy h:mm or mm/dd/yy</td>
<td><b><em>m/d/yy or m/d/yy h:mm or mm/dd/yy</em></b></td>
<td>D4</td>
</tr>
<tr>
<td>d-mmm-yy or dd-mmm-yy</td>
<td><b><em>d-mmm-yy or dd-mmm-yy</em></b></td>
<td>D1</td>
</tr>
<tr>
<td>d-mmm or dd-mmm</td>
<td><b><em>d-mmm or dd-mmm</em></b></td>
<td>D2</td>
</tr>
<tr>
<td>mmm-yy</td>
<td><b><em>mmm-yy</em></b></td>
<td>D3</td>
</tr>
<tr>
<td>mm/dd</td>
<td><b><em>mm/dd</em></b></td>
<td>D5</td>
</tr>
<tr>
<td>h:mm AM/PM</td>
<td><b><em>h:mm AM/PM</em></b></td>
<td>D7</td>
</tr>
<tr>
<td>h:mm:ss AM/PM</td>
<td><b><em>h:mm:ss AM/PM</em></b></td>
<td>D6</td>
</tr>
<tr>
<td>h:mm</td>
<td><b><em>h:mm</em></b></td>
<td>D9</td>
</tr>
<tr>
<td>h:mm:ss</td>
<td><b><em>h:mm:ss</em></b></td>
<td>D8</td>
</tr>
</table>
<p>To apply the <b>CELL</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Information</b> function group from the list,</li>
<li>click the <b>CELL</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CELL Function" src="../images/cell.png" /></p>
<h3>Notes</h3>
<p>Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CELL</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CELL</b> function.</p>
<p><img alt="CELL Function" src="../images/cell.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHAR Function</h1>
<p>The <b>CHAR</b> function is one of the text and data functions. Is used to return the ASCII character specified by a number.</p>
<p>The <b>CHAR</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHAR(number)</em></b></p>
<p>where <b><em>number</em></b> (from 1 to 255) is a data entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CHAR</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>CHAR</b> function,</li>
<li>enter the required argument,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHAR Function" src="../images/char.png" /></p>
<p>The <b>CHAR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to return the ASCII character specified by a number.</p>
<h3>Syntax</h3>
<p><b><em>CHAR(number)</em></b></p>
<p>The <b>CHAR</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A number between 1 and 255 specifying a character from the computer character set.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHAR</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHAR</b> function.</p>
<p><img alt="CHAR Function" src="../images/char.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHIDIST Function</h1>
<p>The <b>CHIDIST</b> function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.</p>
<p>The <b>CHIDIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHIDIST(x, deg-freedom)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHIDIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHIDIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHIDIST Function" src="../images/chidist.png" /></p>
<p>The <b>CHIDIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the right-tailed probability of the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHIDIST(x, deg_freedom)</em></b></p>
<p>The <b>CHIDIST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHIDIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHIDIST</b> function.</p>
<p><img alt="CHIDIST Function" src="../images/chidist.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHIINV Function</h1>
<p>The <b>CHIINV</b> function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.</p>
<p>The <b>CHIINV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHIINV(probability, deg-freedom)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHIINV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHIINV</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHIINV Function" src="../images/chiinv.png" /></p>
<p>The <b>CHIINV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHIINV(probability, deg_freedom)</em></b></p>
<p>The <b>CHIINV</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHIINV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHIINV</b> function.</p>
<p><img alt="CHIINV Function" src="../images/chiinv.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHISQ.DIST.RT Function</h1>
<p>The <b>CHISQ.DIST.RT</b> function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.</p>
<p>The <b>CHISQ.DIST.RT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHISQ.DIST.RT(x, deg-freedom)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHISQ.DIST.RT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHISQ.DIST.RT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHISQ.DIST.RT Function" src="../images/chisq-dist-rt.png" /></p>
<p>The <b>CHISQ.DIST.RT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the right-tailed probability of the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHISQ.DIST.RT(x, deg_freedom)</em></b></p>
<p>The <b>CHISQ.DIST.RT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.DIST.RT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHISQ.DIST.RT</b> function.</p>
<p><img alt="CHISQ.DIST.RT Function" src="../images/chisq-dist-rt.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHISQ.DIST Function</h1>
<p>The <b>CHISQ.DIST</b> function is one of the statistical functions. It is used to return the chi-squared distribution.</p>
<p>The <b>CHISQ.DIST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHISQ.DIST(x, deg-freedom, cumulative)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p style="text-indent: 50px;"><b><em>cumulative</em></b> is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHISQ.DIST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHISQ.DIST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHISQ.DIST Function" src="../images/chisq-dist.png" /></p>
<p>The <b>CHISQ.DIST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHISQ.DIST(x, deg_freedom, cumulative)</em></b></p>
<p>The <b>CHISQ.DIST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
<tr>
<td><b><em>cumulative</em></b></td>
<td>A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.DIST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHISQ.DIST</b> function.</p>
<p><img alt="CHISQ.DIST Function" src="../images/chisq-dist.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHISQ.INV.RT Function</h1>
<p>The <b>CHISQ.INV.RT</b> function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.</p>
<p>The <b>CHISQ.INV.RT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHISQ.INV.RT(probability, deg-freedom)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHISQ.INV.RT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHISQ.INV.RT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHISQ.INV.RT Function" src="../images/chisq-inv-rt.png" /></p>
<p>The <b>CHISQ.INV.RT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHISQ.INV.RT(probability, deg_freedom)</em></b></p>
<p>The <b>CHISQ.INV.RT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.INV.RT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHISQ.INV.RT</b> function.</p>
<p><img alt="CHISQ.INV.RT Function" src="../images/chisq-inv-rt.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHISQ.INV Function</h1>
<p>The <b>CHISQ.INV</b> function is one of the statistical functions. It is used to return the inverse of the left-tailed probability of the chi-squared distribution.</p>
<p>The <b>CHISQ.INV</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHISQ.INV(probability, deg-freedom)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p style="text-indent: 50px;"><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHISQ.INV</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHISQ.INV</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHISQ.INV Function" src="../images/chisq-inv.png" /></p>
<p>The <b>CHISQ.INV</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the inverse of the left-tailed probability of the chi-squared distribution.</p>
<h3>Syntax</h3>
<p><b><em>CHISQ.INV(probability, deg_freedom)</em></b></p>
<p>The <b>CHISQ.INV</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>probability</em></b></td>
<td>The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</td>
</tr>
<tr>
<td><b><em>deg_freedom</em></b></td>
<td>The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.INV</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHISQ.INV</b> function.</p>
<p><img alt="CHISQ.INV Function" src="../images/chisq-inv.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHISQ.TEST Function</h1>
<p>The <b>CHISQ.TEST</b> function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.</p>
<p>The <b>CHISQ.TEST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHISQ.TEST(actual-range, expected-range)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>actual-range</em></b> is the range of observed (actual) values.</p>
<p style="text-indent: 50px;"><b><em>expected-range</em></b> is the range of expected values.</p>
<p>The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHISQ.TEST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHISQ.TEST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHISQ.TEST Function" src="../images/chisq-test.png" /></p>
<p>The <b>CHISQ.TEST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.</p>
<h3>Syntax</h3>
<p><b><em>CHISQ.TEST(actual_range, expected_range)</em></b></p>
<p>The <b>CHISQ.TEST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>actual_range</em></b></td>
<td>The range of observed (actual) values.</td>
</tr>
<tr>
<td><b><em>expected_range</em></b></td>
<td>The range of expected values.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.TEST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHISQ.TEST</b> function.</p>
<p><img alt="CHISQ.TEST Function" src="../images/chisq-test.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHITEST Function</h1>
<p>The <b>CHITEST</b> function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.</p>
<p>The <b>CHITEST</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHITEST(actual-range, expected-range)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>actual-range</em></b> is the range of observed (actual) values.</p>
<p style="text-indent: 50px;"><b><em>expected-range</em></b> is the range of expected values.</p>
<p>The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CHITEST</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CHITEST</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHITEST Function" src="../images/chitest.png" /></p>
<p>The <b>CHITEST</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.</p>
<h3>Syntax</h3>
<p><b><em>CHITEST(actual_range, expected_range)</em></b></p>
<p>The <b>CHITEST</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>actual_range</em></b></td>
<td>The range of observed (actual) values.</td>
</tr>
<tr>
<td><b><em>expected_range</em></b></td>
<td>The range of expected values.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHITEST</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHITEST</b> function.</p>
<p><img alt="CHITEST Function" src="../images/chitest.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHOOSE Function</h1>
<p>The <b>CHOOSE</b> function is one of the lookup and reference functions. It is used to return a value from a list of values based on a specified index (position).</p>
<p>The <b>CHOOSE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHOOSE(index, argument-list)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>index</em></b> is the position of the value in the <b><em>argument-list</em></b>, a numeric value greater than or equal to 1 but less than the number of the number of values in the <b><em>argument-list</em></b>,</p>
<p style="text-indent: 50px;"><b><em>argument-list</em></b> is the list of values or the selected range of cells you need to analyze.</p>
<p>To apply the <b>CHOOSE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>CHOOSE</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CHOOSE Function" src="../images/choose.png" /></p>
<p>The <b>CHOOSE</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 from a list of values based on a specified index (position).</p>
<h3>Syntax</h3>
<p><b><em>CHOOSE(index_num, value1, [value2], ...)</em></b></p>
<p>The <b>CHOOSE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>index_num</em></b></td>
<td>The position of the value in the list of values, a numeric value greater than or equal to 1 but less than the number of the number of values in the list of values.</td>
</tr>
<tr>
<td><b><em>value1/2/n</em></b></td>
<td>The list of values or the selected range of cells you need to analyze.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHOOSE</b> function.</p>
<p><img alt="CHOOSE Function" src="../images/choose.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHOOSECOLS Function</h1>
<p>The <b>CHOOSECOLS</b> function is one of the lookup and reference functions. It is used to return columns from an array or reference.</p>
<p class="note">Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p>The <b>CHOOSECOLS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHOOSECOLS(array,col_num1,[col_num2],…)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>array</em></b> is used to set the array containing the columns to be returned in a new array.</p>
<p style="text-indent: 50px;"><b><em>col_num1</em></b> is used to set the first column number to be returned.</p>
<p style="text-indent: 50px;"><b><em>col_num2</em></b> is an optional argument. It is used to set additional column numbers to be returned.</p>
<p>To apply the <b>CHOOSECOLS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>
click the <b>Insert function</b> <div class="icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class="icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>CHOOSECOLS</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<!--<p style="text-indent: 150px;"><img alt="CHOOSECOLS Function" src="../images/choosecols.png" /></p>-->
<p>The <b>CHOOSECOLS</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 columns from an array or reference.</p>
<h3>Syntax</h3>
<p><b><em>CHOOSECOLS(array, col_num1, [col_num2], …)</em></b></p>
<p>The <b>CHOOSECOLS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>Is used to set the array containing the columns to be returned in a new array.</td>
</tr>
<tr>
<td><b><em>col_num1</em></b></td>
<td>Is used to set the first column number to be returned.</td>
</tr>
<tr>
<td><b><em>col_num2</em></b></td>
<td>Is an optional argument. It is used to set additional column numbers to be returned.</td>
</tr>
</table>
<h3>Notes</h3>
<p>Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSECOLS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHOOSECOLS</b> function.</p>
<p><img alt="CHOOSECOLS Function" src="../images/choosecols.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CHOOSEROWS Function</h1>
<p>The <b>CHOOSEROWS</b> function is one of the lookup and reference functions. It is used to return rows from an array or reference.</p>
<p class="note">Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p>The <b>CHOOSEROWS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CHOOSEROWS(array,row_num1,[row_num2],…)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>array</em></b> is used to set the array containing the rows to be returned in a new array.</p>
<p style="text-indent: 50px;"><b><em>row_num1</em></b> is used to set the first row number to be returned.</p>
<p style="text-indent: 50px;"><b><em>row_num2</em></b> is an optional argument. It is used to set additional row numbers to be returned.</p>
<p>To apply the <b>CHOOSEROWS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>
click the <b>Insert function</b> <div class="icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class="icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>CHOOSEROWS</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<!--<p style="text-indent: 150px;"><img alt="CHOOSEROWS Function" src="../images/chooserows.png" /></p>-->
<p>The <b>CHOOSEROWS</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 rows from an array or reference.</p>
<h3>Syntax</h3>
<p><b><em>CHOOSEROWS(array, row_num1, [row_num2], …)</em></b></p>
<p>The <b>CHOOSEROWS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>Is used to set the array containing the rows to be returned in a new array.</td>
</tr>
<tr>
<td><b><em>row_num1</em></b></td>
<td>Is used to set the first row number to be returned.</td>
</tr>
<tr>
<td><b><em>row_num2</em></b></td>
<td>Is an optional argument. It is used to set additional row numbers to be returned.</td>
</tr>
</table>
<h3>Notes</h3>
<p>Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSEROWS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CHOOSEROWS</b> function.</p>
<p><img alt="CHOOSEROWS Function" src="../images/chooserows.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CLEAN Function</h1>
<p>The <b>CLEAN</b> function is one of the text and data functions. Is used to remove all the nonprintable characters from the selected string.</p>
<p>The <b>CLEAN</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CLEAN(string)</em></b></p>
<p>where <b><em>string</em></b> is a string with nonprintable characters you need to remove, data included into the cell you make reference to.</p>
<p>To apply the <b>CLEAN</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>CLEAN</b> function,</li>
<li>enter the required argument,
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CLEAN Function" src="../images/clean.png" /></p>
<p>The <b>CLEAN</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to remove all the nonprintable characters from the selected string.</p>
<h3>Syntax</h3>
<p><b><em>CLEAN(text)</em></b></p>
<p>The <b>CLEAN</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text</em></b></td>
<td>A string with nonprintable characters you need to remove, data included into the cell you make reference to.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CLEAN</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CLEAN</b> function.</p>
<p><img alt="CLEAN Function" src="../images/clean.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,28 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CODE Function</h1>
<p>The <b>CODE</b> function is one of the text and data functions. Is used to return the ASCII value of the specified character or the first character in a cell.</p>
<p>The <b>CODE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CODE(string)</em></b></p>
<p>where <b><em>string</em></b> is a data entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CODE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>CODE</b> function,</li>
<li>enter the required argument,
<p class="note"><b>Note</b>: the CODE function is <b>case-sensitive</b>.</p>
</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CODE Function" src="../images/code.png" /></p>
<p>The <b>CODE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to return the ASCII value of the specified character or the first character in a cell.</p>
<h3>Syntax</h3>
<p><b><em>CODE(text)</em></b></p>
<p>The <b>CODE</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text</em></b></td>
<td>The text for which you want to get the code of the first character.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The CODE function is <b>case-sensitive</b>.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CODE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CODE</b> function.</p>
<p><img alt="CODE Function" src="../images/code.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,29 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COLUMN Function</h1>
<p>The <b>COLUMN</b> function is one of the lookup and reference functions. It is used to return the column number of a cell.</p>
<p>The <b>COLUMN</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COLUMN([reference])</em></b></p>
<p>where <b><em>reference</em></b> is a reference to a cell.</p>
<p class="note"><b>Note</b>: <b><em>reference</em></b> is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the <b>COLUMN</b> function result. </p>
<p>To apply the <b>COLUMN</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>COLUMN</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COLUMN Function" src="../images/column.png" /></p>
<p>The <b>COLUMN</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 column number of a cell.</p>
<h3>Syntax</h3>
<p><b><em>COLUMN([reference])</em></b></p>
<p>The <b>COLUMN</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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.</td>
</tr>
</table>
<h3>Notes</h3>
<p><b><em>reference</em></b> is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the <b>COLUMN</b> function result. </p>
<p>Please note that this is an array formula. To learn more, please read the <a href="../UsageInstructions/InsertArrayFormulas.htm" onclick="onhyperlinkclick(this)">Insert array formulas</a> article.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COLUMN</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COLUMN</b> function.</p>
<p><img alt="COLUMN Function" src="../images/column.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COLUMNS Function</h1>
<p>The <b>COLUMNS</b> function is one of the lookup and reference functions. It is used to return the number of columns in a cell reference.</p>
<p>The <b>COLUMNS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COLUMNS(array)</em></b></p>
<p>where <b><em>array</em></b> is a reference to a range of cells.</p>
<p>To apply the <b>COLUMNS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>COLUMNS</b> function,</li>
<li>select a range of cells with the mouse or enter it manually, like this A1:B2,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COLUMNS Function" src="../images/columns.png" /></p>
<p>The <b>COLUMNS</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 number of columns in a cell reference.</p>
<h3>Syntax</h3>
<p><b><em>COLUMNS(array)</em></b></p>
<p>The <b>COLUMNS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>A reference to a range of cells.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COLUMNS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COLUMNS</b> function.</p>
<p><img alt="COLUMNS Function" src="../images/columns.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COMBIN Function</h1>
<p>The <b>COMBIN</b> function is one of the math and trigonometry functions. It is used to return the number of combinations for a specified number of items.</p>
<p>The <b>COMBIN</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COMBIN(number, number-chosen)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is a number of items, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>number-chosen</em></b> is a number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>COMBIN</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COMBIN</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COMBIN Function" src="../images/combin.png" /></p>
<p>The <b>COMBIN</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 the number of combinations for a specified number of items.</p>
<h3>Syntax</h3>
<p><b><em>COMBIN(number, number_chosen)</em></b></p>
<p>The <b>COMBIN</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A number of items, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number_chosen</em></b></td>
<td>A number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMBIN</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COMBIN</b> function.</p>
<p><img alt="COMBIN Function" src="../images/combin.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COMBINA Function</h1>
<p>The <b>COMBINA</b> function is one of the math and trigonometry functions. It is used to return the number of combinations (with repetitions) for a given number of items.</p>
<p>The <b>COMBINA</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COMBINA(number, number-chosen)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is the total number of items, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>number-chosen</em></b> is a number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>COMBINA</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COMBINA</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COMBINA Function" src="../images/combina.png" /></p>
<p>The <b>COMBINA</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 the number of combinations (with repetitions) for a given number of items.</p>
<h3>Syntax</h3>
<p><b><em>COMBINA(number, number_chosen)</em></b></p>
<p>The <b>COMBINA</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The total number of items, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>number_chosen</em></b></td>
<td>A number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMBINA</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COMBINA</b> function.</p>
<p><img alt="COMBINA Function" src="../images/combina.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COMPLEX Function</h1>
<p>The <b>COMPLEX</b> function is one of the engineering functions. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form.</p>
<p>The <b>COMPLEX</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COMPLEX(real-number, imaginary-number [, suffix])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>real-number</em></b> is the real part of the complex number.</p>
<p style="text-indent: 50px;"><b><em>imaginary-number</em></b> is the imaginary part of the complex number.</p>
<p style="text-indent: 50px;"><b><em>suffix</em></b> is an indicator of the imaginary part of the complex number. It can be either "i" or "j" in lowercase. It is an optional argument. If it is omitted, the function will assume <b><em>suffix</em></b> to be "i".</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COMPLEX</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>COMPLEX</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COMPLEX Function" src="../images/complex.png" /></p>
<p>The <b>COMPLEX</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form.</p>
<h3>Syntax</h3>
<p><b><em>COMPLEX(real_num, i_num, [suffix])</em></b></p>
<p>The <b>COMPLEX</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>real_num</em></b></td>
<td>The real part of the complex number.</td>
</tr>
<tr>
<td><b><em>i_num</em></b></td>
<td>The imaginary part of the complex number.</td>
</tr>
<tr>
<td><b><em>suffix</em></b></td>
<td>An indicator of the imaginary part of the complex number. It can be either "i" or "j" in lowercase. It is an optional argument. If it is omitted, the function will assume <b><em>suffix</em></b> to be "i".</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMPLEX</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COMPLEX</b> function.</p>
<p><img alt="COMPLEX Function" src="../images/complex.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONCAT Function</h1>
<p>The <b>CONCAT</b> function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. This function replaces the <b>CONCATENATE</b> function. </p>
<p>The <b>CONCAT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONCAT(text1, text2, ...)</em></b></p>
<p>where <b><em>text1(2)</em></b> is up to 265 data values entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CONCAT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>CONCAT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p><em>For example:</em></p>
<p>The <b>CONCAT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to combine the data from two or more cells into a single one. This function replaces the <b>CONCATENATE</b> function.</p>
<h3>Syntax</h3>
<p><b><em>CONCAT(text1, [text2], ...)</em></b></p>
<p>The <b>CONCAT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text1/2/n</em></b></td>
<td>Up to 255 data values that you want to combine.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCAT</b> function.</p>
<h3>Examples</h3>
<p>There are three arguments: <em>text1</em> = <b>A1</b> (John), <em>text2</em> = <b>" "</b> (space), <em>text3</em> = <b>B1</b> (Adams). So the function will combine the first name, the space and the last name into one cell and return the result <b>John Adams</b>.</p>
<p style="text-indent: 150px;"><img alt="CONCAT Function" src="../images/concat.png" /></p>
<p><img alt="CONCAT Function" src="../images/concat.png" /></p>
</div>
</body>
</html>

View File

@ -15,26 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONCATENATE Function</h1>
<p>The <b>CONCATENATE</b> function is one of the text and data functions. Is used to combine the data from two or more cells into a single one.</p>
<p>The <b>CONCATENATE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONCATENATE(text1, text2, ...)</em></b></p>
<p>where <b><em>text1(2)</em></b> is up to 265 data values entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CONCATENATE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>CONCATENATE</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p><em>For example:</em></p>
<p>The <b>CONCATENATE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. Is used to combine the data from two or more cells into a single one.</p>
<h3>Syntax</h3>
<p><b><em>CONCATENATE(text1, [text2], ...)</em></b></p>
<p>The <b>CONCATENATE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>text1/2/n</em></b></td>
<td>Up to 255 data values that you want to combine.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCATENATE</b> function.</p>
<h3>Examples</h3>
<p>There are three arguments: <em>text1</em> = <b>A1</b> (John), <em>text2</em> = <b>" "</b> (space), <em>text3</em> = <b>B1</b> (Adams). So the function will combine the first name, the space and the last name into one cell and return the result <b>John Adams</b>.</p>
<p style="text-indent: 150px;"><img alt="CONCATENATE Function" src="../images/concatenate.png" /></p>
<p><img alt="CONCATENATE Function" src="../images/concatenate.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONFIDENCE.NORM Function</h1>
<p>The <b>CONFIDENCE.NORM</b> function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a normal distribution.</p>
<p>The <b>CONFIDENCE.NORM</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONFIDENCE.NORM(alpha, standard-dev, size)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p style="text-indent: 50px;"><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CONFIDENCE.NORM</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CONFIDENCE.NORM</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CONFIDENCE.NORM Function" src="../images/confidence-norm.png" /></p>
<p>The <b>CONFIDENCE.NORM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the confidence interval for a population mean, using a normal distribution.</p>
<h3>Syntax</h3>
<p><b><em>CONFIDENCE.NORM(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE.NORM</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</td>
</tr>
<tr>
<td><b><em>standard_dev</em></b></td>
<td>The population standard deviation, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>size</em></b></td>
<td>The sample size, a numeric value greater than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE.NORM</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CONFIDENCE.NORM</b> function.</p>
<p><img alt="CONFIDENCE.NORM Function" src="../images/confidence-norm.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONFIDENCE.T Function</h1>
<p>The <b>CONFIDENCE.T</b> function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a Student's t distribution.</p>
<p>The <b>CONFIDENCE.T</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONFIDENCE.T(alpha, standard-dev, size)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p style="text-indent: 50px;"><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>size</em></b> is the sample size, a numeric value greater than 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CONFIDENCE.T</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CONFIDENCE.T</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CONFIDENCE.T Function" src="../images/confidence-t.png" /></p>
<p>The <b>CONFIDENCE.T</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the confidence interval for a population mean, using a Student's t distribution.</p>
<h3>Syntax</h3>
<p><b><em>CONFIDENCE.T(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE.T</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</td>
</tr>
<tr>
<td><b><em>standard_dev</em></b></td>
<td>The population standard deviation, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>size</em></b></td>
<td>The sample size, a numeric value greater than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE.T</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CONFIDENCE.T</b> function.</p>
<p><img alt="CONFIDENCE.T Function" src="../images/confidence-t.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONFIDENCE Function</h1>
<p>The <b>CONFIDENCE</b> function is one of the statistical functions. It is used to return the confidence interval.</p>
<p>The <b>CONFIDENCE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONFIDENCE(alpha, standard-dev, size)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p style="text-indent: 50px;"><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p style="text-indent: 50px;"><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CONFIDENCE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CONFIDENCE</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CONFIDENCE Function" src="../images/confidence.png" /></p>
<p>The <b>CONFIDENCE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the confidence interval.</p>
<h3>Syntax</h3>
<p><b><em>CONFIDENCE(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</td>
</tr>
<tr>
<td><b><em>standard_dev</em></b></td>
<td>The population standard deviation, a numeric value greater than 0.</td>
</tr>
<tr>
<td><b><em>size</em></b></td>
<td>The sample size, a numeric value greater than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CONFIDENCE</b> function.</p>
<p><img alt="CONFIDENCE Function" src="../images/confidence.png" /></p>
</div>
</body>
</html>

View File

@ -15,19 +15,33 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CONVERT Function</h1>
<p>The <b>CONVERT</b> function is one of the engineering functions. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers.</p>
<p>The <b>CONVERT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CONVERT(number, from_unit, to_unit)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number</em></b> is the value to be converted,</p>
<p style="text-indent: 50px;"><b><em>from_unit</em></b> is the original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below.</p>
<p style="text-indent: 50px;"><b><em>to_unit</em></b> is the measurement unit that the <b><em>number</em></b> should be converted to. A text string enclosed in quotes. The possible values are listed in the table below.</p>
<p class="note"><b>Note:</b> the <b><em>from_unit</em></b> and <b><em>to_unit</em></b> must be compatible, i.e. they should belong to the same measurement type.</p>
<p>The <b>CONVERT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#engineering" onclick="onhyperlinkclick(this)">engineering functions</a>. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers.</p>
<h3>Syntax</h3>
<p><b><em>CONVERT(number, from_unit, to_unit)</em></b></p>
<p>The <b>CONVERT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The value to be converted.</td>
</tr>
<tr>
<td><b><em>from_unit</em></b></td>
<td>The original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>to_unit</em></b></td>
<td>The measurement unit that the <b><em>number</em></b> should be converted to. A text string enclosed in quotes. The possible values are listed in the table below.</td>
</tr>
</table>
<h3>Weight and mass</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Gram</td>
@ -77,8 +91,8 @@
<h3>Distance</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Meter</td>
@ -136,8 +150,8 @@
<h3>Time</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Year</td>
@ -163,8 +177,8 @@
<h3>Pressure</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Pascal</td>
@ -190,8 +204,8 @@
<h3>Force</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Newton</td>
@ -213,8 +227,8 @@
<h3>Energy</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Joule</td>
@ -256,8 +270,8 @@
<h3>Power</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Horsepower</td>
@ -275,8 +289,8 @@
<h3>Magnetism</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Tesla</td>
@ -290,8 +304,8 @@
<h3>Temperature</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Degree Celsius</td>
@ -317,8 +331,8 @@
<h3>Volume (or l iquid measure )</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Teaspoon</td>
@ -424,8 +438,8 @@
<h3>Area</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>International acre</td>
@ -487,8 +501,8 @@
<h3>Information</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Bit</td>
@ -502,8 +516,8 @@
<h3>Speed</h3>
<table style="width: 40%">
<tr>
<td width="50%"><b>Unit</b></td>
<td width="50%"><b>Text value</b></td>
<th width="50%" style="background-color: #f4f4f4"><b>Unit</b></th>
<th width="50%" style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>Admiralty knot</td>
@ -530,9 +544,9 @@
<h3>Prefixes</h3>
<table style="width: 40%">
<tr>
<td><b>Prefix</b></td>
<td><b>Multiplier</b></td>
<td><b>Text value</b></td>
<th style="background-color: #f4f4f4"><b>Prefix</b></th>
<th style="background-color: #f4f4f4"><b>Multiplier</b></th>
<th style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>yotta</td>
@ -638,9 +652,9 @@
<h3>Binary Prefixes</h3>
<table style="width: 40%">
<tr>
<td><b>Prefix</b></td>
<td><b>Prefix value</b></td>
<td><b>Text value</b></td>
<th style="background-color: #f4f4f4"><b>Prefix</b></th>
<th style="background-color: #f4f4f4"><b>Prefix value</b></th>
<th style="background-color: #f4f4f4"><b>Text value</b></th>
</tr>
<tr>
<td>yobi</td>
@ -683,21 +697,13 @@
<td>"ki"</td>
</tr>
</table>
<p>To apply the <b>CONVERT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>
click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Engineering</b> function group from the list,</li>
<li>click the <b>CONVERT</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CONVERT Function" src="../images/convert.png" /></p>
<h3>Notes</h3>
<p>The <b><em>from_unit</em></b> and <b><em>to_unit</em></b> arguments must be compatible, i.e. they should belong to the same measurement type.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONVERT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CONVERT</b> function.</p>
<p><img alt="CONVERT Function" src="../images/convert.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,28 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CORREL Function</h1>
<p>The <b>CORREL</b> function is one of the statistical functions. It is used to analyze the range of data and return the correlation coefficient of two range of cells.</p>
<p>The <b>CORREL</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CORREL(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note</b>: 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>To apply the <b>CORREL</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CORREL</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CORREL Function" src="../images/correl.png" /></p>
<p>The <b>CORREL</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of data and return the correlation coefficient of two range of cells.</p>
<h3>Syntax</h3>
<p><b><em>CORREL(array1, array2)</em></b></p>
<p>The <b>CORREL</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array1/2</em></b></td>
<td>The selected ranges of cells with the same number of elements.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>array1/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><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CORREL</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CORREL</b> function.</p>
<p><img alt="CORREL Function" src="../images/correl.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COS Function</h1>
<p>The <b>COS</b> function is one of the math and trigonometry functions. It is used to return the cosine of an angle.</p>
<p>The <b>COS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COS(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COS</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COS Function" src="../images/cos.png" /></p>
<p>The <b>COS</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 the cosine of an angle.</p>
<h3>Syntax</h3>
<p><b><em>COS(number)</em></b></p>
<p>The <b>COS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 cosine.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COS</b> function.</p>
<p><img alt="COS Function" src="../images/cos.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COSH Function</h1>
<p>The <b>COSH</b> function is one of the math and trigonometry functions. It is used to return the hyperbolic cosine of a number.</p>
<p>The <b>COSH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COSH(x)</em></b></p>
<p>where <b><em>x</em></b> is any numeric value entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COSH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COSH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COSH Function" src="../images/cosh.png" /></p>
<p>The <b>COSH</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 the hyperbolic cosine of a number.</p>
<h3>Syntax</h3>
<p><b><em>COSH(number)</em></b></p>
<p>The <b>COSH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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 hyperbolic cosine.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COSH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COSH</b> function.</p>
<p><img alt="COSH Function" src="../images/cosh.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COT Function</h1>
<p>The <b>COT</b> function is one of the math and trigonometry functions. It is used to return the cotangent of an angle specified in radians.</p>
<p>The <b>COT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COT(x)</em></b></p>
<p>where <b><em>x</em></b> is the angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</p>
<p>To apply the <b>COT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COT</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COT Function" src="../images/cot.png" /></p>
<p>The <b>COT</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 the cotangent of an angle specified in radians.</p>
<h3>Syntax</h3>
<p><b><em>COT(number)</em></b></p>
<p>The <b>COT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COT</b> function.</p>
<p><img alt="COT Function" src="../images/cot.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COTH Function</h1>
<p>The <b>COTH</b> function is one of the math and trigonometry functions. It is used to return the hyperbolic cotangent of a hyperbolic angle.</p>
<p>The <b>COTH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COTH(x)</em></b></p>
<p>where <b><em>x</em></b> is the angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</p>
<p>To apply the <b>COTH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>COTH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COTH Function" src="../images/coth.png" /></p>
<p>The <b>COTH</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 the hyperbolic cotangent of a hyperbolic angle.</p>
<h3>Syntax</h3>
<p><b><em>COTH(number)</em></b></p>
<p>The <b>COTH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COTH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COTH</b> function.</p>
<p><img alt="COTH Function" src="../images/coth.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUNT Function</h1>
<p>The <b>COUNT</b> function is one of the statistical functions. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text.</p>
<p>The <b>COUNT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUNT(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p>To apply the <b>COUNT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COUNT</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUNT Function" src="../images/count.png" /></p>
<p>The <b>COUNT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text.</p>
<h3>Syntax</h3>
<p><b><em>COUNT(value1, [value2], ...)</em></b></p>
<p>The <b>COUNT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value1</em></b></td>
<td>The first value you wish to count.</td>
</tr>
<tr>
<td><b><em>value2/n</em></b></td>
<td>Additional values you wish to count.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUNT</b> function.</p>
<p><img alt="COUNT Function" src="../images/count.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,31 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUNTA Function</h1>
<p>The <b>COUNTA</b> function is one of the statistical functions. It is used to analyze the range of cells and count the number of cells that are not empty.</p>
<p>The <b>COUNTA</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUNTA(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p>To apply the <b>COUNTA</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COUNTA</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUNTA Function" src="../images/counta.png" /></p>
<p>The <b>COUNTA</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of cells and count the number of cells that are not empty.</p>
<h3>Syntax</h3>
<p><b><em>COUNTA(value1, [value2], ...)</em></b></p>
<p>The <b>COUNTA</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>value1</em></b></td>
<td>The first value you wish to count.</td>
</tr>
<tr>
<td><b><em>value2/n</em></b></td>
<td>Additional values you wish to count.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTA</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUNTA</b> function.</p>
<p><img alt="COUNTA Function" src="../images/counta.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,26 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUNTBLANK Function</h1>
<p>The <b>COUNTBLANK</b> function is one of the statistical functions. It is used to analyze the range of cells and return the number of the empty cells.</p>
<p>The <b>COUNTBLANK</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUNTBLANK(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p>To apply the <b>COUNTBLANK</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COUNTBLANK</b> function,</li>
<li>enter the required arguments separating them by commas or select a range of cells with the mouse,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUNTBLANK Function" src="../images/countblank.png" /></p>
<p>The <b>COUNTBLANK</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to analyze the range of cells and return the number of the empty cells.</p>
<h3>Syntax</h3>
<p><b><em>COUNTBLANK(range)</em></b></p>
<p>The <b>COUNTBLANK</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>range</em></b></td>
<td>A range of cells you wish to count.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTBLANK</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUNTBLANK</b> function.</p>
<p><img alt="COUNTBLANK Function" src="../images/countblank.png" /></p>
</div>
</body>
</html>

View File

@ -15,27 +15,32 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUNTIF Function</h1>
<p>The <b>COUNTIF</b> function is one of the statistical functions. It is used to count the number of the selected cells based on the specified criterion.</p>
<p>The <b>COUNTIF</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUNTIF(cell-range, selection-criteria)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>cell-range</em></b> is the selected range of cells you wish to count applying the specified criterion,</p>
<p style="text-indent: 50px;"><b><em>selection-criteria</em></b> is a criterion you wish to apply entered manually or included into the cell you make reference to.</p>
<p class="note"><b>Note</b>: <b><em>selection-criteria</em></b> can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<p>To apply the <b>COUNTIF</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COUNTIF</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUNTIF Function" src="../images/countif.png" /></p>
<p>The <b>COUNTIF</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to count the number of the selected cells based on the specified criterion.</p>
<h3>Syntax</h3>
<p><b><em>COUNTIF(range, criteria)</em></b></p>
<p>The <b>COUNTIF</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>range</em></b></td>
<td>The selected range of cells you wish to count applying the specified criterion.</td>
</tr>
<tr>
<td><b><em>criteria</em></b></td>
<td>A criterion you wish to apply.</td>
</tr>
</table>
<h3>Notes</h3>
<p>The <b><em>criteria</em></b> argument can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTIF</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUNTIF</b> function.</p>
<p><img alt="COUNTIF Function" src="../images/countif.png" /></p>
</div>
</body>
</html>

View File

@ -15,29 +15,36 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUNTIFS Function</h1>
<p>The <b>COUNTIFS</b> function is one of the statistical functions. It is used to count the number of the selected cells based on multiple criteria.</p>
<p>The <b>COUNTIFS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUNTIFS(criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>criteria-range-1</em></b> is the first selected range of cells to apply the <em>criteria-1</em> to. It is a required argument.</p>
<p style="text-indent: 50px;"><b><em>criteria-1</em></b> is the first condition that must be met. It is applied to the <em>criteria-range-1</em> and used to determine the cells in the <em>criteria-range-1</em> to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</p>
<p style="text-indent: 50px;"><b><em>criteria-range-2, criteria-2, ...</em></b> are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</p>
<p class="note">You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<h2>How to use COUNTIFS</h2>
<p>To apply the <b>COUNTIFS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COUNTIFS</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUNTIFS Function" src="../images/countifs.png" /></p>
<p>The <b>COUNTIFS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to count the number of the selected cells based on multiple criteria.</p>
<h3>Syntax</h3>
<p><b><em>COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]...)</em></b></p>
<p>The <b>COUNTIFS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>criteria_range1</em></b></td>
<td>The first selected range of cells to apply the <em>criteria1</em> to. It is a required argument.</td>
</tr>
<tr>
<td><b><em>criteria1</em></b></td>
<td>The first condition that must be met. It is applied to the <em>criteria_range1</em> and used to determine the cells in the <em>criteria_range1</em> to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</td>
</tr>
<tr>
<td><b><em>criteria_range2, criteria2</em></b></td>
<td>Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</td>
</tr>
</table>
<h3>Notes</h3>
<p>You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTIFS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUNTIFS</b> function.</p>
<p><img alt="COUNTIFS Function" src="../images/countifs.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,68 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPDAYBS Function</h1>
<p>The <b>COUPDAYBS</b> function is one of the financial functions. It is used to calculate the number of days from the beginning of the coupon period to the settlement date.</p>
<p>The <b>COUPDAYBS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPDAYBS(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPDAYBS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the number of days from the beginning of the coupon period to the settlement date.</p>
<h3>Syntax</h3>
<p><b><em>COUPDAYBS(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPDAYBS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPDAYBS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPDAYBS</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPDAYBS Function" src="../images/coupdaybs.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYBS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPDAYBS</b> function.</p>
<p><img alt="COUPDAYBS Function" src="../images/coupdaybs.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,68 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPDAYS Function</h1>
<p>The <b>COUPDAYS</b> function is one of the financial functions. It is used to calculate the number of days in the coupon period that contains the settlement date.</p>
<p>The <b>COUPDAYS</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPDAYS(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPDAYS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the number of days in the coupon period that contains the settlement date.</p>
<h3>Syntax</h3>
<p><b><em>COUPDAYS(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPDAYS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPDAYS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPDAYS</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPDAYS Function" src="../images/coupdays.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPDAYS</b> function.</p>
<p><img alt="COUPDAYS Function" src="../images/coupdays.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,68 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPDAYSNC Function</h1>
<p>The <b>COUPDAYSNC</b> function is one of the financial functions. It is used to calculate the number of days from the settlement date to the next coupon payment.</p>
<p>The <b>COUPDAYSNC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPDAYSNC(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPDAYSNC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the number of days from the settlement date to the next coupon payment.</p>
<h3>Syntax</h3>
<p><b><em>COUPDAYSNC(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPDAYSNC</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPDAYSNC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPDAYSNC</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPDAYSNC Function" src="../images/coupdaysnc.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYSNC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPDAYSNC</b> function.</p>
<p><img alt="COUPDAYSNC Function" src="../images/coupdaysnc.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,68 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPNCD Function</h1>
<p>The <b>COUPNCD</b> function is one of the financial functions. It is used to calculate the next coupon date after the settlement date.</p>
<p>The <b>COUPNCD</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPNCD(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPNCD</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the next coupon date after the settlement date.</p>
<h3>Syntax</h3>
<p><b><em>COUPNCD(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPNCD</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPNCD</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPNCD</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPNCD Function" src="../images/coupncd.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPNCD</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPNCD</b> function.</p>
<p><img alt="COUPNCD Function" src="../images/coupncd.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,68 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPNUM Function</h1>
<p>The <b>COUPNUM</b> function is one of the financial functions. It is used to calculate the number of coupons between the settlement date and the maturity date.</p>
<p>The <b>COUPNUM</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPNUM(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPNUM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the number of coupons between the settlement date and the maturity date.</p>
<h3>Syntax</h3>
<p><b><em>COUPNUM(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPNUM</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPNUM</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPNUM</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPNUM Function" src="../images/coupnum.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPNUM</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPNUM</b> function.</p>
<p><img alt="COUPNUM Function" src="../images/coupnum.png" /></p>
</div>
</body>
</html>

View File

@ -15,56 +15,67 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COUPPCD Function</h1>
<p>The <b>COUPPCD</b> function is one of the financial functions. It is used to calculate the previous coupon date before the settlement date.</p>
<p>The <b>COUPPCD</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COUPPCD(settlement, maturity, frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p style="text-indent: 50px;"><b><em>maturity</em></b> is the date when the security expires.</p>
<p style="text-indent: 50px;"><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p style="text-indent: 50px;"><b><em>basis</em></b> is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:</p>
<p>The <b>COUPPCD</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the previous coupon date before the settlement date.</p>
<h3>Syntax</h3>
<p><b><em>COUPPCD(settlement, maturity, frequency, [basis])</em></b></p>
<p>The <b>COUPPCD</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td>0</td>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>maturity</em></b></td>
<td>The date when the security expires.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>US (NASD) 30/360</td>
</tr>
<tr>
<td>1</td>
<td><b><em>1</em></b></td>
<td>Actual/actual</td>
</tr>
<tr>
<td>2</td>
<td><b><em>2</em></b></td>
<td>Actual/360</td>
</tr>
<tr>
<td>3</td>
<td><b><em>3</em></b></td>
<td>Actual/365</td>
</tr>
<tr>
<td>4</td>
<td><b><em>4</em></b></td>
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>COUPPCD</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>COUPPCD</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COUPPCD Function" src="../images/couppcd.png" /></p>
<h3>Notes</h3>
<p>Dates must be entered by using the <a href="Date.htm" onclick="onhyperlinkclick(this)">DATE</a> function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPPCD</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COUPPCD</b> function.</p>
<p><img alt="COUPPCD Function" src="../images/couppcd.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COVAR Function</h1>
<p>The <b>COVAR</b> function is one of the statistical functions. It is used to return the covariance of two ranges of data.</p>
<p>The <b>COVAR</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COVAR(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> 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>To apply the <b>COVAR</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COVAR</b> function,</li>
<li>enter the required arguments manually or select them with the mouse separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COVAR Function" src="../images/covar.png" /></p>
<p>The <b>COVAR</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the covariance of two ranges of data.</p>
<h3>Syntax</h3>
<p><b><em>COVAR(array1, array2)</em></b></p>
<p>The <b>COVAR</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array1(2)</em></b></td>
<td>The selected ranges of cells with the same number of elements.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>array1(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><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVAR</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COVAR</b> function.</p>
<p><img alt="COVAR Function" src="../images/covar.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COVARIANCE.P Function</h1>
<p>The <b>COVARIANCE.P</b> function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets.</p>
<p>The <b>COVARIANCE.P</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COVARIANCE.P(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> 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>To apply the <b>COVARIANCE.P</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COVARIANCE.P</b> function,</li>
<li>enter the required arguments manually or select them with the mouse separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COVARIANCE.P Function" src="../images/covariance-p.png" /></p>
<p>The <b>COVARIANCE.P</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets.</p>
<h3>Syntax</h3>
<p><b><em>COVARIANCE.P(array1, array2)</em></b></p>
<p>The <b>COVARIANCE.P</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array1(2)</em></b></td>
<td>The selected ranges of cells with the same number of elements.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>array1(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><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVARIANCE.P</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COVARIANCE.P</b> function.</p>
<p><img alt="COVARIANCE.P Function" src="../images/covariance-p.png" /></p>
</div>
</body>
</html>

View File

@ -15,25 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>COVARIANCE.S Function</h1>
<p>The <b>COVARIANCE.S</b> function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets.</p>
<p>The <b>COVARIANCE.S</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>COVARIANCE.S(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> 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>To apply the <b>COVARIANCE.S</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>COVARIANCE.S</b> function,</li>
<li>enter the required arguments manually or select them with the mouse separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="COVARIANCE.S Function" src="../images/covariance-s.png" /></p>
<p>The <b>COVARIANCE.S</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets.</p>
<h3>Syntax</h3>
<p><b><em>COVARIANCE.S(array1, array2)</em></b></p>
<p>The <b>COVARIANCE.S</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array1(2)</em></b></td>
<td>The selected ranges of cells with the same number of elements.</td>
</tr>
</table>
<h3>Notes</h3>
<p>If <b><em>array1(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><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVARIANCE.S</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>COVARIANCE.S</b> function.</p>
<p><img alt="COVARIANCE.S Function" src="../images/covariance-s.png" /></p>
</div>
</body>
</html>

View File

@ -15,28 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CRITBINOM Function</h1>
<p>The <b>CRITBINOM</b> function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value.</p>
<p>The <b>CRITBINOM</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CRITBINOM(number-trials, success-probability, alpha)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>number-trials</em></b> is the number of trials, a numeric value greater than or equal to 0.</p>
<p style="text-indent: 50px;"><b><em>success-probability</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p style="text-indent: 50px;"><b><em>alpha</em></b> is the criterion, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>CRITBINOM</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Statistical</b> function group from the list,</li>
<li>click the <b>CRITBINOM</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CRITBINOM Function" src="../images/critbinom.png" /></p>
<p>The <b>CRITBINOM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#statistical" onclick="onhyperlinkclick(this)">statistical functions</a>. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value.</p>
<h3>Syntax</h3>
<p><b><em>CRITBINOM(trials, probability_s, alpha)</em></b></p>
<p>The <b>CRITBINOM</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>trials</em></b></td>
<td>The number of trials, a numeric value greater than or equal to 0.</td>
</tr>
<tr>
<td><b><em>probability_s</em></b></td>
<td>The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</td>
</tr>
<tr>
<td><b><em>alpha</em></b></td>
<td>The criterion, a numeric value greater than or equal to 0 but less than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CRITBINOM</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CRITBINOM</b> function.</p>
<p><img alt="CRITBINOM Function" src="../images/critbinom.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,27 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CSC Function</h1>
<p>The <b>CSC</b> function is one of the math and trigonometry functions. It is used to return the cosecant of an angle specified in radians.</p>
<p>The <b>CSC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CSC(x)</em></b></p>
<p>where <b><em>x</em></b> is the angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</p>
<p>To apply the <b>CSC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>CSC</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CSC Function" src="../images/csc.png" /></p>
<p>The <b>CSC</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 the cosecant of an angle specified in radians.</p>
<h3>Syntax</h3>
<p><b><em>CSC(number)</em></b></p>
<p>The <b>CSC</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CSC</b> function.</p>
<p><img alt="CSC Function" src="../images/csc.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,26 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CSCH Function</h1>
<p>The <b>CSCH</b> function is one of the math and trigonometry functions. It is used to return the hyperbolic cosecant of an angle specified in radians.</p>
<p>The <b>CSCH</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CSCH(x)</em></b></p>
<p>where <b><em>x</em></b> is the angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</p>
<p>To apply the <b>CSCH</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>CSCH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CSCH Function" src="../images/csch.png" /></p>
<p>The <b>CSCH</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 the hyperbolic cosecant of an angle specified in radians.</p>
<h3>Syntax</h3>
<p><b><em>CSCH(number)</em></b></p>
<p>The <b>CSCH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSCH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CSCH</b> function.</p>
<p><img alt="CSCH Function" src="../images/csch.png" /></p>
</div>
</body>
</html>

View File

@ -15,32 +15,48 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CUMIPMT Function</h1>
<p>The <b>CUMIPMT</b> function is one of the financial functions. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule.</p>
<p>The <b>CUMIPMT</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CUMIPMT(rate, nper, pv, start_period, end_period, type)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the interest rate for the investment.</p>
<p style="text-indent: 50px;"><b><em>nper</em></b> is a number of payments.</p>
<p style="text-indent: 50px;"><b><em>pv</em></b> is a present value of the payments.</p>
<p style="text-indent: 50px;"><b><em>start_period</em></b> is the first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p style="text-indent: 50px;"><b><em>end_period</em></b> is the last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p style="text-indent: 50px;"><b><em>type</em></b> is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</p>
<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 rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CUMIPMT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>CUMIPMT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CUMIPMT Function" src="../images/cumipmt.png" /></p>
<p>The <b>CUMIPMT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule.</p>
<h3>Syntax</h3>
<p><b><em>CUMIPMT(rate, nper, pv, start_period, end_period, type)</em></b></p>
<p>The <b>CUMIPMT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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>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>
<tr>
<td><b><em>start_period</em></b></td>
<td>The first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</td>
</tr>
<tr>
<td><b><em>end_period</em></b></td>
<td>The last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</td>
</tr>
<tr>
<td><b><em>type</em></b></td>
<td>A period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</td>
</tr>
</table>
<h3>Notes</h3>
<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 rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CUMIPMT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CUMIPMT</b> function.</p>
<p><img alt="CUMIPMT Function" src="../images/cumipmt.png" /></p>
</div>
</body>
</html>

View File

@ -15,32 +15,48 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>CUMPRINC Function</h1>
<p>The <b>CUMPRINC</b> function is one of the financial functions. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule.</p>
<p>The <b>CUMPRINC</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>CUMPRINC(rate, nper, pv, start_period, end_period, type)</em></b></p>
<p><em>where</em></p>
<p style="text-indent: 50px;"><b><em>rate</em></b> is the interest rate for the investment.</p>
<p style="text-indent: 50px;"><b><em>nper</em></b> is a number of payments.</p>
<p style="text-indent: 50px;"><b><em>pv</em></b> is a present value of the payments.</p>
<p style="text-indent: 50px;"><b><em>start_period</em></b> is the first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p style="text-indent: 50px;"><b><em>end_period</em></b> is the last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p style="text-indent: 50px;"><b><em>type</em></b> is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</p>
<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 rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>CUMPRINC</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>CUMPRINC</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="CUMPRINC Function" src="../images/cumprinc.png" /></p>
<p>The <b>CUMPRINC</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule.</p>
<h3>Syntax</h3>
<p><b><em>CUMPRINC(rate, nper, pv, start_period, end_period, type)</em></b></p>
<p>The <b>CUMPRINC</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><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>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>
<tr>
<td><b><em>start_period</em></b></td>
<td>The first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</td>
</tr>
<tr>
<td><b><em>end_period</em></b></td>
<td>The last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</td>
</tr>
<tr>
<td><b><em>type</em></b></td>
<td>A period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</td>
</tr>
</table>
<h3>Notes</h3>
<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 rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CUMPRINC</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>CUMPRINC</b> function.</p>
<p><img alt="CUMPRINC Function" src="../images/cumprinc.png" /></p>
</div>
</body>
</html>

View File

@ -15,24 +15,35 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>DATE Function</h1>
<p>The <b>DATE</b> function is one of the date and time functions. It is used to add dates in the default format <em>MM/dd/yyyy</em>.</p>
<p>The <b>DATE</b> function syntax is:</p>
<p style="text-indent: 150px;"><b><em>DATE(year, month, day)</em></b></p>
<p>where <b><em>year</em></b>, <b><em>month</em></b>, <b><em>day</em></b> are values entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>DATE</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Date and time</b> function group from the list,</li>
<li>click the <b>DATE</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p>The result will be displayed in the selected cell.</p>
<p style="text-indent: 150px;"><img alt="DATE Function" src="../images/date.png" /></p>
<p>The <b>DATE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#datetime" onclick="onhyperlinkclick(this)">date and time functions</a>. It is used to add dates in the default format <em>MM/dd/yyyy</em>.</p>
<h3>Syntax</h3>
<p><b><em>DATE(year, month, day)</em></b></p>
<p>The <b>DATE</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4" width="150ch"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>year</em></b></td>
<td>A numeric value representing the year (four digits).</td>
</tr>
<tr>
<td><b><em>month</em></b></td>
<td>A numeric value representing the month (from 1 to 12).</td>
</tr>
<tr>
<td><b><em>day</em></b></td>
<td>A numeric value representing the day (from 1 to 31).</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>DATE</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>DATE</b> function.</p>
<p><img alt="DATE Function" src="../images/date.png" /></p>
</div>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More