Edit several function pages

This commit is contained in:
Svetlana Maleeva 2023-08-17 17:07:21 +03:00
parent 1854a54ae3
commit e34db1a68e
16 changed files with 299 additions and 89 deletions

View File

@ -15,10 +15,21 @@
<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 <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>
<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 argument:</p><p><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><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"><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 265 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>

View File

@ -17,9 +17,20 @@
<h1>CONCATENATE Function</h1>
<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 argument:</p><p><b><em>text1(2)</em></b> is up to 265 data values entered manually or included into the cells you make reference to.</p>
<h3>Notes</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"><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 265 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>

View File

@ -17,11 +17,27 @@
<h1>CONFIDENCE.NORM Function</h1>
<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><b><em>CONFIDENCE.NORM(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE.NORM</b> function has the following arguments:</p>
<p><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><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>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>

View File

@ -17,11 +17,27 @@
<h1>CONFIDENCE.T Function</h1>
<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><b><em>CONFIDENCE.T(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE.T</b> function has the following arguments:</p>
<p><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><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than 1.</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>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>

View File

@ -17,12 +17,28 @@
<h1>CONFIDENCE Function</h1>
<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><b><em>CONFIDENCE(alpha, standard_dev, size)</em></b></p>
<p>The <b>CONFIDENCE</b> function has the following arguments:</p>
<p><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><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<h3>Notes</h3>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>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>

View File

@ -19,15 +19,32 @@
<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>
<p><b><em>number</em></b> is the value to be converted,</p>
<p><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><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><b><em>number</em></b> is ,</p>
<p><b><em>from_unit</em></b> is the .</p>
<p><b><em>to_unit</em></b> is the .</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The 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 +94,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 +153,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 +180,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 +207,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 +230,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 +273,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 +292,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 +307,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 +334,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 +441,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 +504,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 +519,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 +547,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 +655,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>
@ -684,6 +701,7 @@
</tr>
</table>
<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>

View File

@ -17,10 +17,21 @@
<h1>CORREL Function</h1>
<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(array-1, array-2)</em></b></p>
<p>The <b>CORREL</b> function has the following argument:</p><p><b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<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"><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 range of cells with the same number of elements.</td>
</tr>
</table>
<h3>Notes</h3>
<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>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>

View File

@ -17,9 +17,20 @@
<h1>COS Function</h1>
<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(x)</em></b></p>
<p>The <b>COS</b> function has the following argument:</p><p><b><em>x</em></b> is a numeric value entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><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"><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>

View File

@ -17,8 +17,19 @@
<h1>COSH Function</h1>
<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(x)</em></b></p>
<p>The <b>COSH</b> function has the following argument:</p><p><b><em>x</em></b> is any numeric value entered manually or included into the cell you make reference to.</p>
<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"><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>

View File

@ -17,9 +17,20 @@
<h1>COT Function</h1>
<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(x)</em></b></p>
<p>The <b>COT</b> function has the following argument:</p><p><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>
<h3>Notes</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"><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>

View File

@ -17,9 +17,20 @@
<h1>COTH Function</h1>
<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(x)</em></b></p>
<p>The <b>COTH</b> function has the following argument:</p><p><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>
<h3>Notes</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"><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>

View File

@ -17,9 +17,23 @@
<h1>COUNT Function</h1>
<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(argument-list)</em></b></p>
<p>The <b>COUNT</b> function has the following argument:</p>
<p><b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<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"><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>

View File

@ -17,9 +17,23 @@
<h1>COUNTA Function</h1>
<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(argument-list)</em></b></p>
<p>The <b>COUNTA</b> function has the following argument:</p>
<p><b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<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"><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>

View File

@ -17,8 +17,18 @@
<h1>COUNTBLANK Function</h1>
<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(argument-list)</em></b></p>
<p>The <b>COUNTBLANK</b> function has the following argument:</p><p><b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<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"><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>

View File

@ -17,12 +17,25 @@
<h1>COUNTIF Function</h1>
<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(cell-range, selection-criteria)</em></b></p>
<p>The <b>COUNTIF</b> function has the following arguments:</p>
<p><b><em>cell-range</em></b> is the selected range of cells you wish to count applying the specified criterion,</p>
<p><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>
<h3>Notes</h3>
<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><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"><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>

View File

@ -17,13 +17,29 @@
<h1>COUNTIFS Function</h1>
<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-range-1, criteria-1, [criteria-range-2, criteria-2], ...)</em></b></p>
<p><b><em>COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]...)</em></b></p>
<p>The <b>COUNTIFS</b> function has the following arguments:</p>
<p><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><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><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>
<h3>Notes</h3>
<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>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>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>