init repo
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>ABS Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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(number)</em></b></p>
|
||||
<p>where <b><em>number</em></b> is a numeric value entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>ACOS Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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(number)</em></b></p>
|
||||
<p>where <b><em>number</em></b> is a numeric value (the cosine of the angle you wish to find) entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>AND Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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</em></b> is a value entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>265</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 argument is FALSE.</p>
|
||||
<p><em>For example:</em></p>
|
||||
<p>There are three arguments: <em>logical1</em> = <b>A1<100</b>, <em>logical2</em> = <b>34<100</b>, <em>logical3</em> = <b>50<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>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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>ASIN Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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(number)</em></b></p>
|
||||
<p>where <b><em>number</em></b> is a numeric value (the sine of the angle you wish to find) entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>ATAN Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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(number)</em></b></p>
|
||||
<p>where <b><em>number</em></b> is a numeric value (the tangent of the angle you wish to find) entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>AVERAGE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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(number1, number2, ...)</em></b></p>
|
||||
<p>where <b><em>number1(2)</em></b> is a numerical value entered manually or included into the cell you make referece to.</p>
|
||||
<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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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,
|
||||
<p class="note"><b>Note</b>: you can enter up to <b>30</b> numerical values.</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="AVERAGE Function" src="../images/average.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CONCATENATE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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 data entered manually or included into the cell you make referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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,
|
||||
<p class="note"><b>Note</b>: you can enter up to <b>265</b> logical values.</p>
|
||||
</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>There are two arguments: <em>text1</em> = <b>A1</b>, <em>text2</em> = <b>B1</b>, where <b>A1</b> is <b>John</b>, <b>B1</b> is <b>Adams</b>. So the function will combine the first 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>COUNT Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>COUNT Function</h1>
|
||||
<p>The <b>COUNT</b> function is one of the statistical functions. It is used to count the numbers of cells in the selected range than 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(range)</em></b></p>
|
||||
<p>where <b><em>range</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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>select a range of cells with mouse or using the keyboard shortcuts,</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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>DATE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<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 referece 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> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>DAY Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>DAY Function</h1>
|
||||
<p>The <b>DAY</b> function is one of the date and time functions. It returns the day (a number from 1 to 31) of the date given in the numerical format (<em>MM/dd/yyyy</em> by default).</p>
|
||||
<p>The <b>DAY</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>DAY(date-value)</em></b></p>
|
||||
<p>where <b><em>date-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>DAY</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>DAY</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="DAY Function" src="../images/day.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EXACT Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>EXACT Function</h1>
|
||||
<p>The <b>EXACT</b> function is one of the text and data functions. Is used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not.</p>
|
||||
<p>The <b>EXACT</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>EXACT(text1, text2)</em></b></p>
|
||||
<p>where <b><em>text1(2)</em></b> is data entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>EXACT</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>EXACT</b> function,</li>
|
||||
<li>enter the required arguments separating them by comma,
|
||||
<p class="note"><b>Note</b>: the EXACT 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><em>For example:</em></p>
|
||||
<p>There are two arguments: <em>text1</em> = <b>A1</b>; <em>text2</em> = <b>B1</b>, where <b>A1</b> is <b>MyPassword</b>, <b>B1</b> is <b>mypassword</b>. So the function returns FALSE.</p>
|
||||
<p style="text-indent: 150px;"><img alt="EXACT Function: FALSE" src="../images/exactfalse.png" /></p>
|
||||
<p>If we change the <b>A1</b> data converting all the uppercase letters to lowercase, the function returns <b>TRUE</b>:</p>
|
||||
<p style="text-indent: 150px;"><img alt="EXACT Function: TRUE" src="../images/exacttrue.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FALSE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>FALSE Function</h1>
|
||||
<p>The <b>FALSE</b> function is one of the logical functions. The function returns FALSE and does <b>not</b> require any argument.</p>
|
||||
<p>The <b>FALSE</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>FALSE()</em></b></p>
|
||||
<p>To apply the <b>FALSE</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>FALSE</b> function,</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="FALSE Function" src="../images/false.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>HOUR Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>HOUR Function</h1>
|
||||
<p>The <b>HOUR</b> function is one of the date and time functions. It returns the hour (a number from 0 to 23) of the time value.</p>
|
||||
<p>The <b>HOUR</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>HOUR( time-value )</em></b></p>
|
||||
<p>where <b><em>time-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p class="note"><b>Note</b>: the <b><em>time-value</em></b> may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)</p>
|
||||
<p>To apply the <b>HOUR</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>HOUR</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="HOUR Function" src="../images/hour.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>IF Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>IF Function</h1>
|
||||
<p>The <b>IF</b> function is one of the logical functions. Is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE.</p>
|
||||
<p>The <b>IF</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>IF(logical_test, value_if_true, value_if_false)</em></b></p>
|
||||
<p>where <b><em>logical_test</em></b>, <b><em>value_if_true</em></b>, <b><em>value_if_false</em></b> are values entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>IF</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>IF</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>There are three arguments: <em>logical_test</em> = <b>A1<100</b>, <em>value_if_true</em> = <b>0</b>, <em>value_if_false</em> = <b>1</b>, where <b>A1</b> is <b>12</b>. This logical expression is <b>TRUE</b>. So the function returns <b>0</b>.</p>
|
||||
<p style="text-indent: 150px;"><img alt="IF Function: TRUE" src="../images/iftrue.png" /></p>
|
||||
<p>If we change the <b>A1</b> value from <b>12</b> to <b>112</b>, the function returns <b>1</b>:</p>
|
||||
<p style="text-indent: 150px;"><img alt="IF Function: FALSE" src="../images/iffalse.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>IFERROR Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>IFERROR Function</h1>
|
||||
<p>The <b>IFERROR</b> function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the result of the formula if there is no error, or the value_if_error if there is one.</p>
|
||||
<p>The <b>IFERROR</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>IFERROR(value, value_if_error,)</em></b></p>
|
||||
<p>where <b><em>value</em></b> and <b><em>value_if_error</em></b> are values entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>IFERROR</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>IFERROR</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>There are two arguments: <em>value</em> = <b>A1/B1</b>, <em>value_if_error</em> = <b>"error"</b>, where <b>A1</b> is <b>12</b>, <b>B1</b> is <b>3</b>. The formula in the first argument does not contain any error. So the function returns the result of the calculation.</p>
|
||||
<p style="text-indent: 150px;"><img alt="IFERROR Function: no error" src="../images/noerror.png" /></p>
|
||||
<p>If we change the <b>B1</b> value from <b>3</b> to <b>0</b>, as the division by zero is not possible, the function returns <b>error</b>:</p>
|
||||
<p style="text-indent: 150px;"><img alt="IFERROR Function: if error" src="../images/iferror.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>LOWER Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>LOWER Function</h1>
|
||||
<p>The <b>LOWER</b> function is one of the text and data functions. Is used to convert uppercase letters to lowercase in the selected cell.</p>
|
||||
<p>The <b>LOWER</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>LOWER(text)</em></b></p>
|
||||
<p>where <b><em>text</em></b> is data included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>LOWER</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>LOWER</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="LOWER Function" src="../images/lower.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>MAX Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>MAX Function</h1>
|
||||
<p>The <b>MAX</b> function is one of the statistical functions. It is used to analyze the range of data and find the largest number.</p>
|
||||
<p>The <b>MAX</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>MAX(number1, number2, ...)</em></b></p>
|
||||
<p>where <b><em>number1(2)</em></b> is a numerical value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>MAX</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Statistical</b> function group from the list,</li>
|
||||
<li>click the <b>MAX</b> function,</li>
|
||||
<li>enter the required arguments separating them by commas,
|
||||
<p class="note"><b>Note</b>: you can enter up to <b>30</b> numerical values.</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="MAX Function" src="../images/max.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>MIN Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>MIN Function</h1>
|
||||
<p>The <b>MIN</b> function is one of the statistical functions. It is used to analyze the range of data and find the smallest number.</p>
|
||||
<p>The <b>MIN</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>MIN(number1, number2, ...)</em></b></p>
|
||||
<p>where <b><em>number1(2)</em></b> is a numerical value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>MIN</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Statistical</b> function group from the list,</li>
|
||||
<li>click the <b>MIN</b> function,</li>
|
||||
<li>enter the required arguments separating them commas,
|
||||
<p class="note"><b>Note</b>: you can enter up to <b>30</b> numerical values.</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="MIN Function" src="../images/min.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>MINUTE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>MINUTE Function</h1>
|
||||
<p>The <b>MINUTE</b> function is one of the date and time functions. It returns the minute (a number from 0 to 59) of the time value.</p>
|
||||
<p>The <b>MINUTE</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>MINUTE( time-value )</em></b></p>
|
||||
<p>where <b><em>time-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p class="note"><b>Note</b>: the <b><em>time-value</em></b> may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)</p>
|
||||
<p>To apply the <b>MINUTE</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>MINUTE</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="MINUTE Function" src="../images/minute.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>MONTH Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>MONTH Function</h1>
|
||||
<p>The <b>MONTH</b> function is one of the date and time functions. It returns the month (a number from 1 to 12) of the date given in the numerical format (<em>MM/dd/yyyy</em> by default).</p>
|
||||
<p>The <b>MONTH</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>MONTH(date-value)</em></b></p>
|
||||
<p>where <b><em>date-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>MONTH</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>MONTH</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="MONTH Function" src="../images/month.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>NOT Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>NOT Function</h1>
|
||||
<p>The <b>NOT</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 the argument is FALSE and FALSE if the argument is TRUE.</p>
|
||||
<p>The <b>NOT</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>NOT(logical)</em></b></p>
|
||||
<p>where <b><em>logical</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>NOT</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>NOT</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><em>For example:</em></p>
|
||||
<p>There is an argument: <em>logical</em> = <b>A1<100</b>, where <b>A1</b> is <b>12</b>. This logical expression is <b>TRUE</b>. So the function returns <b>FALSE</b>.</p>
|
||||
<p style="text-indent: 150px;"><img alt="NOT Function: FALSE" src="../images/notfalse.png" /></p>
|
||||
<p>If we change the <b>A1</b> value from <b>12</b> to <b>112</b>, the function returns <b>TRUE</b>:</p>
|
||||
<p style="text-indent: 150px;"><img alt="NOT Function: TRUE" src="../images/nottrue.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>NOW Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>NOW Function</h1>
|
||||
<p>The <b>NOW</b> function is one of the date and time functions. It is used to add the current date and time to your spreadsheet in the following format <em>MM/dd/yy hh:mm</em>. This function does not require an argument.</p>
|
||||
<p>The <b>NOW</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>NOW()</em></b></p>
|
||||
<p>To apply the <b>NOW</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>NOW</b> function,</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="NOW Function" src="../images/now.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>OR Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>OR Function</h1>
|
||||
<p>The <b>OR</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 FALSE if all the arguments are FALSE.</p>
|
||||
<p>The <b>OR</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>OR(logical1, logical2, ...)</em></b></p>
|
||||
<p>where <b><em>logical1</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>OR</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>OR</b> function,</li>
|
||||
<li>enter the required arguments separating them by commas,
|
||||
<p class="note"><b>Note</b>: you can enter up to <b>265</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 TRUE if at least one of the argument is TRUE.</p>
|
||||
<p><em>For example:</em></p>
|
||||
<p>There are three arguments: <em>logical1</em> = <b>A1<10</b>, <em>logical2</em> = <b>34<10</b>, <em>logical3</em> = <b>50<10</b>, where <b>A1</b> is <b>12</b>. All these logical expressions are <b>FALSE</b>. So the function returns <b>FALSE</b>.</p>
|
||||
<p style="text-indent: 150px;"><img alt="OR Function: FALSE" src="../images/orfalse.png" /></p>
|
||||
<p>If we change the <b>A1</b> value from <b>12</b> to <b>2</b>, the function returns <b>TRUE</b>:</p>
|
||||
<p style="text-indent: 150px;"><img alt="OR Function: TRUE" src="../images/ortrue.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>REPT Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>REPT Function</h1>
|
||||
<p>The <b>REPT</b> function is one of the text and data functions. Is used to repeat the data in the selected cell as many time as you wish.</p>
|
||||
<p>The <b>REPT</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>REPT(text, number_of_times)</em></b></p>
|
||||
<p>where <b><em>text</em></b> is data entered manually or included into the cell you make referece to, <b><em>number_of_times</em></b> is a number of times you wish to repeat the data you entered.</p>
|
||||
<p>To apply the <b>REPT</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>REPT</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="REPT Function" src="../images/rept.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>SECOND Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>SECOND Function</h1>
|
||||
<p>The <b>SECOND</b> function is one of the date and time functions. It returns the second (a number from 0 to 59) of the time value.</p>
|
||||
<p>The <b>SECOND</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>SECOND( time-value )</em></b></p>
|
||||
<p>where <b><em>time-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p class="note"><b>Note</b>: the <b><em>time-value</em></b> may be expressed as a string value (e.g. "13:39:15"), a decimal number (e.g. 0.56 corresponds to 13:26:24) , or the result of a formula (e.g. the result of the NOW function - 9/26/12 13:39)</p>
|
||||
<p>To apply the <b>SECOND</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>SECOND</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="SECOND Function" src="../images/second.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>T Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>T Function</h1>
|
||||
<p>The <b>T</b> function is one of the text and data functions. Is used to check whether the value in the cell (or used as argument) is text or not. In case it is not text, the function returns blank result. In case the value/argument is text, the function returns the same text value.</p>
|
||||
<p>The <b>T</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>T(value)</em></b></p>
|
||||
<p>where <b><em>value</em></b> is data entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>T</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>T</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><em>For example:</em></p>
|
||||
<p>There is an argument: <em>value</em> = <b>A1</b>, where <b>A1</b> is <b>date and time</b>. So the function returns <b>date and time</b>.</p>
|
||||
<p style="text-indent: 150px;"><img alt="T Function: Text" src="../images/ttext.png" /></p>
|
||||
<p>If we change the <b>A1</b> data from text to numerical value, the function returns black result.</p>
|
||||
<p style="text-indent: 150px;"><img alt="T Function: Numerical Value" src="../images/tnumber.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>TIME Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>TIME Function</h1>
|
||||
<p>The <b>TIME</b> function is one of the date and time functions. It is used to add a particular time in the selected format (<em>hh:mm tt</em> by default).</p>
|
||||
<p>The <b>TIME</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>TIME(hour, minute, second)</em></b></p>
|
||||
<p>where <b><em>hour</em></b> (a number from 0 to 23), <b><em>minute</em></b> (a number from 0 to 59), <b><em>second</em></b> (a number from 0 to 59) are values entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>TIME</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>TIME</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="TIME Function" src="../images/time.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>TODAY Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>TODAY Function</h1>
|
||||
<p>The <b>TODAY</b> function is one of the date and time functions. It is used to add the current day in the following format <em>MM/dd/yy</em>. This function does not require an argument.</p>
|
||||
<p>The <b>TODAY</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>TODAY()</em></b></p>
|
||||
<p>To apply the <b>TODAY</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>TODAY</b> function,</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="TODAY Function" src="../images/today.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>TRUE Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>TRUE Function</h1>
|
||||
<p>The <b>TRUE</b> function is one of the logical functions. The function returns TRUE and does <b>not</b> require any argument.</p>
|
||||
<p>The <b>TRUE</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>TRUE()</em></b></p>
|
||||
<p>To apply the <b>TRUE</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||
</li>
|
||||
<li>select the <b>Logical</b> function group from the list,</li>
|
||||
<li>click the <b>TRUE</b> function,</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="TRUE Function" src="../images/true.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>UPPER Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>UPPER Function</h1>
|
||||
<p>The <b>UPPER</b> function is one of the text and data functions. Is used to convert lowercase letters to uppercase in the selected cell.</p>
|
||||
<p>The <b>UPPER</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>UPPER(text)</em></b></p>
|
||||
<p>where <b><em>text</em></b> is data included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>UPPER</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>UPPER</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="UPPER Function" src="../images/upper.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>YEAR Function</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainpart">
|
||||
<h1>YEAR Function</h1>
|
||||
<p>The <b>YEAR</b> function is one of the date and time functions. It returns the year (a number from 1900 to 9999) of the date given in the numerical format (<em>MM/dd/yyyy</em> by default).</p>
|
||||
<p>The <b>YEAR</b> function syntax is:</p>
|
||||
<p style="text-indent: 150px;"><b><em>YEAR(date-value)</em></b></p>
|
||||
<p>where <b><em>date-value</em></b> is a value entered manually or included into the cell you make referece to.</p>
|
||||
<p>To apply the <b>YEAR</b> function,</p>
|
||||
<ol>
|
||||
<li>select the cell where you wish to display the result,</li>
|
||||
<li>click the <b>Insert Function</b> <img alt="Insert Function icon" src="../images/insertfunction.png" /> 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 <img alt="Function icon" src="../images/function.png" /> 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>YEAR</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="YEAR Function" src="../images/year.png" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user