web-apps/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertFunction.htm

143 lines
48 KiB
HTML
Raw Normal View History

2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
<html>
<head>
2021-08-25 22:43:28 +00:00
<title>Insert functions</title>
2016-03-11 00:48:53 +00:00
<meta charset="utf-8" />
2021-08-25 22:43:28 +00:00
<meta name="description" content="Insert functions to perform basic calculations" />
2016-03-11 00:48:53 +00:00
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
2016-03-11 00:48:53 +00:00
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
2021-08-25 22:43:28 +00:00
<h1>Insert functions</h1>
2021-04-30 14:41:43 +00:00
<p>The ability to perform basic calculations is the principal reason for using the <a href="https://www.onlyoffice.com/spreadsheet-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Spreadsheet Editor</b></a>. Some of them are performed automatically when you select a cell range in your spreadsheet:</p>
2016-03-11 00:48:53 +00:00
<ul>
2020-08-12 11:25:32 +00:00
<li><b>Average</b> is used to analyze the selected cell range and find the average value.</li>
<li><b>Count</b> is used to count the number of the selected cells with values ignoring the empty cells.</li>
2020-02-05 13:47:18 +00:00
<li><b>Min</b> is used to analyze the range of data and find the smallest number.</li>
<li><b>Max</b> is used to analyze the range of data and find the largest number.</li>
2020-08-12 11:25:32 +00:00
<li><b>Sum</b> is used to add all the numbers in the selected range ignoring the empty cells or those contaning text.</li>
2016-03-11 00:48:53 +00:00
</ul>
2020-09-14 12:21:50 +00:00
<p>The results of these calculations are displayed in the right lower corner on the status bar. You can manage the status bar by right-clicking on it and choosing only those functions to display that you need.</p>
2016-03-11 00:48:53 +00:00
<p><img alt="Basic Calculations" src="../images/basiccalculations.png" /></p>
2020-08-12 11:25:32 +00:00
<p>To perform any other calculations, you can insert the required formula manually using the common mathematical operators or insert a predefined formula - <b>Function</b>.</p>
2020-09-14 12:21:50 +00:00
<p>The abilities to work with <b>Functions</b> are accessible from both the <b>Home</b> and <b>Formula</b> tab or by pressing <em>Shift+F3</em> key combination. On the <b>Home</b> tab, you can use the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> button to add one of the most commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or open the <b>Insert Function</b> window that contains all the available functions classified by category. Use the search box to find the exact function by its name.</p>
<p><img alt="Insert Function" src="../images/insertfunctionwindow.png" /></p>
2020-08-12 11:25:32 +00:00
<p>On the <b>Formula</b> tab you can use the following buttons: </p>
2021-08-25 22:43:28 +00:00
<p><img alt="Formula tab" src="../images/interface/formulatab.png" /></p>
2019-12-19 08:42:10 +00:00
<ul>
2020-08-12 11:25:32 +00:00
<li><b>Function</b> - to open the <b>Insert Function</b> window that contains all the available functions classified by category.</li>
2019-12-19 08:42:10 +00:00
<li><b>Autosum</b> - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments.</li>
<li><b>Recently used</b> - to quickly access 10 recently used functions.</li>
<li><b>Financial</b>, <b>Logical</b>, <b>Text and data</b>, <b>Date and time</b>, <b>Lookup and references</b>, <b>Math and trigonometry</b> - to quickly access functions that belongs to the corresponding categories.</li>
<li><b>More functions</b> - to access the functions from the following groups: <b>Database</b>, <b>Engineering</b>, <b>Information</b> and <b>Statistical</b>.</li>
2020-09-14 12:21:50 +00:00
<li><b>Named ranges</b> - to open the <b>Name Manager</b>, or define a new name, or paste a name as a function argument. For more details, you can refer to <a href="UseNamedRanges.htm" onclick="onhyperlinkclick(this)">this page</a>.</li>
2020-02-05 13:47:18 +00:00
<li><b>Calculation</b> - to force the program to recalculate functions.</li>
2019-12-19 08:42:10 +00:00
</ul>
2020-09-14 12:21:50 +00:00
<p>To insert a function,</p>
2016-03-11 00:48:53 +00:00
<ol>
2020-09-14 12:21:50 +00:00
<li>Select a cell where you wish to insert a function.</li>
<li>Proceed in one of the following ways:
2019-12-19 08:42:10 +00:00
<ul>
2020-09-14 12:21:50 +00:00
<li>switch to the <b>Formula</b> tab and use the buttons available on the top toolbar to access a function from a specific group, then click the necessary function to open the <b>Function Arguments</b> wizard. You can also use the <b>Additional</b> option from the menu or click the <img alt="Function icon" src="../images/functionicon.png" /> <b>Function</b> button on the top toolbar to open the <b>Insert Function</b> window.</li>
<li>switch to the <b>Home</b> tab, click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon, select one of the commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or click the <b>Additional</b> option to open the <b>Insert Function</b> window.</li>
<li>right-click within the selected cell and select the <b>Insert Function</b> option from the contextual menu.</li>
<li>click the <img alt="Function icon" src="../images/function.png" /> icon before the formula bar.</li>
2019-12-19 08:42:10 +00:00
</ul>
</li>
2020-09-14 12:21:50 +00:00
<li>In the opened <b>Insert Function</b> window, enter its name in the search box or select the necessary function group, then choose the required function from the list and click <b>OK</b>.
<p>Once you click the necessary function, the <b>Function Arguments</b> window will open:</p>
<p><img alt="Function Arguments" src="../images/functionarguments.png" /></p>
2016-03-11 00:48:53 +00:00
</li>
2020-09-14 12:21:50 +00:00
<li>
In the opened <b>Function Arguments</b> window, enter the necessary values of each argument.
<p>You can enter the function arguments either manually or by clicking the <img alt="Source data range icon" src="../images/changerange.png" /> icon and selecting a cell or cell range to be included as an argument.</p>
<p class="note"><b>Note</b>: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, <a href="UseNamedRanges.htm#usingnames" onclick="onhyperlinkclick(this)">names assigned to ranges</a> and other functions can be used as function arguments.</p>
<p>The function result will be displayed below.</p>
</li>
<li>When all the agruments are specified, click the <b>OK</b> button in the <b>Function Arguments</b> window.</li>
2016-03-11 00:48:53 +00:00
</ol>
<p>To enter a function manually using the keyboard,</p>
<ol>
2020-09-14 12:21:50 +00:00
<li>Select a cell.</li>
<li>Enter the equal sign (=).
<p>Each formula must begin with the equal sign (=).</p>
</li>
2020-09-14 12:21:50 +00:00
<li>Enter the function name.
<p>Once you type the initial letters, the <b>Formula Autocomplete</b> list will be displayed. As you type, the items (formulas and names) that match the entered characters are displayed in it. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the <b>Tab</b> key.</p>
</li>
2020-09-14 12:21:50 +00:00
<li>Enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas.
<p>Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed. </p>
<p>
<img alt="Function tooltip" src="../images/functiontooltip.png" />
2020-09-14 12:21:50 +00:00
</p>
</li>
2020-09-14 12:21:50 +00:00
<li>When all the agruments are specified, enter the closing parenthesis ')' and press <b>Enter</b>.</li>
</ol>
2020-08-12 11:25:32 +00:00
<p>If you enter new data or change the values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the <b>Calculation</b> button on the <b>Formula</b> tab. Click the <img alt="Calculation icon" src="../images/calculationicon.png" /> <b>Calculation</b> button to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: <b>Calculate workbook</b> or <b>Calculate current sheet</b>. <!--Using the <b>Calculate</b> button, you can also select the preferred calculation mode: automatically or manually.--></p>
2019-12-19 08:42:10 +00:00
<p>You can also use the following key combinations: <b>F9</b> to recalculate the workbook, <b>Shift +F9</b> to recalculate the current worksheet.</p>
<p>Here is the list of the available functions grouped by categories:</p>
2016-03-11 00:48:53 +00:00
<table class="helptable">
<tr class="headerlite">
<td width="25%"><b>Function Category</b></td>
<td width="40%"><b>Description</b></td>
<td width="35%"><b>Functions</b></td>
</tr>
<tr>
<td>Text and Data Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to correctly display the text data in the spreadsheet.</td>
<td><a href="../Functions/asc.htm" onclick="onhyperlinkclick(this)">ASC</a>; <a href="../Functions/char.htm" onclick="onhyperlinkclick(this)">CHAR</a>; <a href="../Functions/clean.htm" onclick="onhyperlinkclick(this)">CLEAN</a>; <a href="../Functions/code.htm" onclick="onhyperlinkclick(this)">CODE</a>; <a href="../Functions/concatenate.htm" onclick="onhyperlinkclick(this)">CONCATENATE</a>; <a href="../Functions/concat.htm" onclick="onhyperlinkclick(this)">CONCAT</a>; <a href="../Functions/dollar.htm" onclick="onhyperlinkclick(this)">DOLLAR</a>; <a href="../Functions/exact.htm" onclick="onhyperlinkclick(this)">EXACT</a>; <a href="../Functions/find.htm" onclick="onhyperlinkclick(this)">FIND</a>; <a href="../Functions/find.htm" onclick="onhyperlinkclick(this)">FINDB</a>; <a href="../Functions/fixed.htm" onclick="onhyperlinkclick(this)">FIXED</a>; <a href="../Functions/left.htm" onclick="onhyperlinkclick(this)">LEFT</a>; <a href="../Functions/left.htm" onclick="onhyperlinkclick(this)">LEFTB</a>; <a href="../Functions/len.htm" onclick="onhyperlinkclick(this)">LEN</a>; <a href="../Functions/len.htm" onclick="onhyperlinkclick(this)">LENB</a>; <a href="../Functions/lower.htm" onclick="onhyperlinkclick(this)">LOWER</a>; <a href="../Functions/mid.htm" onclick="onhyperlinkclick(this)">MID</a>; <a href="../Functions/mid.htm" onclick="onhyperlinkclick(this)">MIDB</a>; <a href="../Functions/numbervalue.htm" onclick="onhyperlinkclick(this)">NUMBERVALUE</a>; <a href="../Functions/proper.htm" onclick="onhyperlinkclick(this)">PROPER</a>; <a href="../Functions/replace.htm" onclick="onhyperlinkclick(this)">REPLACE</a>; <a href="../Functions/replace.htm" onclick="onhyperlinkclick(this)">REPLACEB</a>; <a href="../Functions/rept.htm" onclick="onhyperlinkclick(this)">REPT</a>; <a href="../Functions/right.htm" onclick="onhyperlinkclick(this)">RIGHT</a>; <a href="../Functions/right.htm" onclick="onhyperlinkclick(this)">RIGHTB</a>; <a href="../Functions/search.htm" onclick="onhyperlinkclick(this)">SEARCH</a>; <a href="../Functions/search.htm" onclick="onhyperlinkclick(this)">SEARCHB</a>; <a href="../Functions/substitute.htm" onclick="onhyperlinkclick(this)">SUBSTITUTE</a>; <a href="../Functions/t.htm" onclick="onhyperlinkclick(this)">T</a>; <a href="../Functions/text.htm" onclick="onhyperlinkclick(this)">TEXT</a>; <a href="../Functions/textjoin.htm" onclick="onhyperlinkclick(this)">TEXTJOIN</a>; <a href="../Functions/trim.htm" onclick="onhyperlinkclick(this)">TRIM</a>; <a href="../Functions/unichar.htm" onclick="onhyperlinkclick(this)">UNICHAR</a>; <a href="../Functions/unicode.htm" onclick="onhyperlinkclick(this)">UNICODE</a>; <a href="../Functions/upper.htm" onclick="onhyperlinkclick(this)">UPPER</a>; <a href="../Functions/value.htm" onclick="onhyperlinkclick(this)">VALUE</a></td>
2016-03-11 00:48:53 +00:00
</tr>
<tr>
<td>Statistical Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to analyze data: finding the average value, the largest or smallest values in a cell range.</td>
2021-01-20 17:42:21 +00:00
<td><a href="../Functions/avedev.htm" onclick="onhyperlinkclick(this)">AVEDEV</a>; <a href="../Functions/average.htm" onclick="onhyperlinkclick(this)">AVERAGE</a>; <a href="../Functions/averagea.htm" onclick="onhyperlinkclick(this)">AVERAGEA</a>; <a href="../Functions/averageif.htm" onclick="onhyperlinkclick(this)">AVERAGEIF</a>; <a href="../Functions/averageifs.htm" onclick="onhyperlinkclick(this)">AVERAGEIFS</a>; <a href="../Functions/betadist.htm" onclick="onhyperlinkclick(this)">BETADIST</a>; <a href="../Functions/beta-dist.htm" onclick="onhyperlinkclick(this)">BETA.DIST</a>; <a href="../Functions/beta-inv.htm" onclick="onhyperlinkclick(this)">BETA.INV</a>; <a href="../Functions/betainv.htm" onclick="onhyperlinkclick(this)">BETAINV</a>; <a href="../Functions/binomdist.htm" onclick="onhyperlinkclick(this)">BINOMDIST</a>; <a href="../Functions/binom-dist.htm" onclick="onhyperlinkclick(this)">BINOM.DIST</a>; <a href="../Functions/binom-dist-range.htm" onclick="onhyperlinkclick(this)">BINOM.DIST.RANGE</a>; <a href="../Functions/binom-inv.htm" onclick="onhyperlinkclick(this)">BINOM.INV</a>; <a href="../Functions/chidist.htm" onclick="onhyperlinkclick(this)">CHIDIST</a>; <a href="../Functions/chiinv.htm" onclick="onhyperlinkclick(this)">CHIINV</a>; <a href="../Functions/chisq-dist.htm" onclick="onhyperlinkclick(this)">CHISQ.DIST</a>; <a href="../Functions/chisq-dist-rt.htm" onclick="onhyperlinkclick(this)">CHISQ.DIST.RT</a>; <a href="../Functions/chisq-inv.htm" onclick="onhyperlinkclick(this)">CHISQ.INV</a>; <a href="../Functions/chisq-inv-rt.htm" onclick="onhyperlinkclick(this)">CHISQ.INV.RT</a>; <a href="../Functions/chitest.htm" onclick="onhyperlinkclick(this)">CHITEST</a>; <a href="../Functions/chisq-test.htm" onclick="onhyperlinkclick(this)">CHISQ.TEST</a>; <a href="../Functions/confidence.htm" onclick="onhyperlinkclick(this)">CONFIDENCE</a>; <a href="../Functions/confidence-norm.htm" onclick="onhyperlinkclick(this)">CONFIDENCE.NORM</a>; <a href="../Functions/confidence-t.htm" onclick="onhyperlinkclick(this)">CONFIDENCE.T</a>; <a href="../Functions/correl.htm" onclick="onhyperlinkclick(this)">CORREL</a>; <a href="../Functions/count.htm" onclick="onhyperlinkclick(this)">COUNT</a>; <a href="../Functions/counta.htm" onclick="onhyperlinkclick(this)">COUNTA</a>; <a href="../Functions/countblank.htm" onclick="onhyperlinkclick(this)">COUNBLANK</a>; <a href="../Functions/countif.htm" onclick="onhyperlinkclick(this)">COUNTIF</a>; <a href="../Functions/countifs.htm" onclick="onhyperlinkclick(this)">COUNTIFS</a>; <a href="../Functions/covar.htm" onclick="onhyperlinkclick(this)">COVAR</a>; <a href="../Functions/covariance-p.htm" onclick="onhyperlinkclick(this)">COVARIANCE.P</a>; <a href="../Functions/covariance-s.htm" onclick="onhyperlinkclick(this)">COVARIANCE.S</a>; <a href="../Functions/critbinom.htm" onclick="onhyperlinkclick(this)">CRITBINOM</a>; <a href="../Functions/devsq.htm" onclick="onhyperlinkclick(this)">DEVSQ</a>; <a href="../Functions/expon-dist.htm" onclick="onhyperlinkclick(this)">EXPON.DIST</a>; <a href="../Functions/expondist.htm" onclick="onhyperlinkclick(this)">EXPONDIST</a>; <a href="../Functions/f-dist.htm" onclick="onhyperlinkclick(this)">F.DIST</a>; <a href="../Functions/fdist.htm" onclick="onhyperlinkclick(this)">FDIST</a>; <a href="../Functions/f-dist-rt.htm" onclick="onhyperlinkclick(this)">F.DIST.RT</a>; <a href="../Functions/f-inv.htm" onclick="onhyperlinkclick(this)">F.INV</a>; <a href="../Functions/finv.htm" onclick="onhyperlinkclick(this)">FINV</a>; <a href="../Functions/f-inv-rt.htm" onclick="onhyperlinkclick(this)">F.INV.RT</a>; <a href="../Functions/fisher.htm" onclick="onhyperlinkclick(this)">FISHER</a>; <a href="../Functions/fisherinv.htm" onclick="onhyperlinkclick(this)">FISHERINV</a>; <a href="../Functions/forecast.htm" onclick="onhyperlinkclick(this)">FORECAST</a>; <a href="../Functions/forecast-ets.htm" onclick="onhyperlinkclick(this)">FORECAST.ETS</a>; <a href="../Functions/forecast-ets-confint.htm" onclick="onhyperlinkclick(this)">FORECAST.ETS.CONFINT</a>; <a href="../Functions/for
2016-03-11 00:48:53 +00:00
</tr>
<tr>
<td>Math and Trigonometry Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to perform basic math and trigonometry operations such as adding, multiplying, dividing, rounding, etc.</td>
2021-02-10 15:21:46 +00:00
<td><a href="../Functions/abs.htm" onclick="onhyperlinkclick(this)">ABS</a>; <a href="../Functions/acos.htm" onclick="onhyperlinkclick(this)">ACOS</a>; <a href="../Functions/acosh.htm" onclick="onhyperlinkclick(this)">ACOSH</a>; <a href="../Functions/acot.htm" onclick="onhyperlinkclick(this)">ACOT</a>; <a href="../Functions/acoth.htm" onclick="onhyperlinkclick(this)">ACOTH</a>; <a href="../Functions/aggregate.htm" onclick="onhyperlinkclick(this)">AGGREGATE</a>; <a href="../Functions/arabic.htm" onclick="onhyperlinkclick(this)">ARABIC</a>; <a href="../Functions/asin.htm" onclick="onhyperlinkclick(this)">ASIN</a>; <a href="../Functions/asinh.htm" onclick="onhyperlinkclick(this)">ASINH</a>; <a href="../Functions/atan.htm" onclick="onhyperlinkclick(this)">ATAN</a>; <a href="../Functions/atan2.htm" onclick="onhyperlinkclick(this)">ATAN2</a>; <a href="../Functions/atanh.htm" onclick="onhyperlinkclick(this)">ATANH</a>; <a href="../Functions/base.htm" onclick="onhyperlinkclick(this)">BASE</a>; <a href="../Functions/ceiling.htm" onclick="onhyperlinkclick(this)">CEILING</a>; <a href="../Functions/ceiling-math.htm" onclick="onhyperlinkclick(this)">CEILING.MATH</a>; <a href="../Functions/ceiling-precise.htm" onclick="onhyperlinkclick(this)">CEILING.PRECISE</a>; <a href="../Functions/combin.htm" onclick="onhyperlinkclick(this)">COMBIN</a>; <a href="../Functions/combina.htm" onclick="onhyperlinkclick(this)">COMBINA</a>; <a href="../Functions/cos.htm" onclick="onhyperlinkclick(this)">COS</a>; <a href="../Functions/cosh.htm" onclick="onhyperlinkclick(this)">COSH</a>; <a href="../Functions/cot.htm" onclick="onhyperlinkclick(this)">COT</a>; <a href="../Functions/coth.htm" onclick="onhyperlinkclick(this)">COTH</a>; <a href="../Functions/csc.htm" onclick="onhyperlinkclick(this)">CSC</a>; <a href="../Functions/csch.htm" onclick="onhyperlinkclick(this)">CSCH</a>; <a href="../Functions/decimal.htm" onclick="onhyperlinkclick(this)">DECIMAL</a>; <a href="../Functions/degrees.htm" onclick="onhyperlinkclick(this)">DEGREES</a>; <a href="../Functions/ecma-ceiling.htm" onclick="onhyperlinkclick(this)">ECMA.CEILING</a>; <a href="../Functions/even.htm" onclick="onhyperlinkclick(this)">EVEN</a>; <a href="../Functions/exp.htm" onclick="onhyperlinkclick(this)">EXP</a>; <a href="../Functions/fact.htm" onclick="onhyperlinkclick(this)">FACT</a>; <a href="../Functions/factdouble.htm" onclick="onhyperlinkclick(this)">FACTDOUBLE</a>; <a href="../Functions/floor.htm" onclick="onhyperlinkclick(this)">FLOOR</a>; <a href="../Functions/floor-precise.htm" onclick="onhyperlinkclick(this)">FLOOR.PRECISE</a>; <a href="../Functions/floor-math.htm" onclick="onhyperlinkclick(this)">FLOOR.MATH</a>; <a href="../Functions/gcd.htm" onclick="onhyperlinkclick(this)">GCD</a>; <a href="../Functions/int.htm" onclick="onhyperlinkclick(this)">INT</a>; <a href="../Functions/iso-ceiling.htm" onclick="onhyperlinkclick(this)">ISO.CEILING</a>; <a href="../Functions/lcm.htm" onclick="onhyperlinkclick(this)">LCM</a>; <a href="../Functions/ln.htm" onclick="onhyperlinkclick(this)">LN</a>; <a href="../Functions/log.htm" onclick="onhyperlinkclick(this)">LOG</a>; <a href="../Functions/log10.htm" onclick="onhyperlinkclick(this)">LOG10</a>; <a href="../Functions/mdeterm.htm" onclick="onhyperlinkclick(this)">MDETERM</a>; <a href="../Functions/minverse.htm" onclick="onhyperlinkclick(this)">MINVERSE</a>; <a href="../Functions/mmult.htm" onclick="onhyperlinkclick(this)">MMULT</a>; <a href="../Functions/mod.htm" onclick="onhyperlinkclick(this)">MOD</a>; <a href="../Functions/mround.htm" onclick="onhyperlinkclick(this)">MROUND</a>; <a href="../Functions/multinomial.htm" onclick="onhyperlinkclick(this)">MULTINOMIAL</a>; <a href="../Functions/munit.htm" onclick="onhyperlinkclick(this)">MUNIT</a>; <a href="../Functions/odd.htm" onclick="onhyperlinkclick(this)">ODD</a>; <a href="../Functions/pi.htm" onclick="onhyperlinkclick(this)">PI</a>; <a href="../Functions/power.htm" onclick="onhyperlinkclick(this)">POWER</a>; <a href="../Functions/product.htm" onclick="onhyperlinkclick(this)">PRODUCT</a>; <a hre
2016-03-11 00:48:53 +00:00
</tr>
2017-09-20 08:31:59 +00:00
<tr>
<td>Date and Time Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to correctly display the date and time in the spreadsheet.</td>
2017-09-20 08:31:59 +00:00
<td><a href="../Functions/date.htm" onclick="onhyperlinkclick(this)">DATE</a>; <a href="../Functions/datedif.htm" onclick="onhyperlinkclick(this)">DATEDIF</a>; <a href="../Functions/datevalue.htm" onclick="onhyperlinkclick(this)">DATEVALUE</a>; <a href="../Functions/day.htm" onclick="onhyperlinkclick(this)">DAY</a>; <a href="../Functions/days.htm" onclick="onhyperlinkclick(this)">DAYS</a>; <a href="../Functions/days360.htm" onclick="onhyperlinkclick(this)">DAYS360</a>; <a href="../Functions/edate.htm" onclick="onhyperlinkclick(this)">EDATE</a>; <a href="../Functions/eomonth.htm" onclick="onhyperlinkclick(this)">EOMONTH</a>; <a href="../Functions/hour.htm" onclick="onhyperlinkclick(this)">HOUR</a>; <a href="../Functions/isoweeknum.htm" onclick="onhyperlinkclick(this)">ISOWEEKNUM</a>; <a href="../Functions/minute.htm" onclick="onhyperlinkclick(this)">MINUTE</a>; <a href="../Functions/month.htm" onclick="onhyperlinkclick(this)">MONTH</a>; <a href="../Functions/networkdays.htm" onclick="onhyperlinkclick(this)">NETWORKDAYS</a>; <a href="../Functions/networkdays-intl.htm" onclick="onhyperlinkclick(this)">NETWORKDAYS.INTL</a>; <a href="../Functions/now.htm" onclick="onhyperlinkclick(this)">NOW</a>; <a href="../Functions/second.htm" onclick="onhyperlinkclick(this)">SECOND</a>; <a href="../Functions/time.htm" onclick="onhyperlinkclick(this)">TIME</a>; <a href="../Functions/timevalue.htm" onclick="onhyperlinkclick(this)">TIMEVALUE</a>; <a href="../Functions/today.htm" onclick="onhyperlinkclick(this)">TODAY</a>; <a href="../Functions/weekday.htm" onclick="onhyperlinkclick(this)">WEEKDAY</a>; <a href="../Functions/weeknum.htm" onclick="onhyperlinkclick(this)">WEEKNUM</a>; <a href="../Functions/workday.htm" onclick="onhyperlinkclick(this)">WORKDAY</a>; <a href="../Functions/workday-intl.htm" onclick="onhyperlinkclick(this)">WORKDAY.INTL</a>; <a href="../Functions/year.htm" onclick="onhyperlinkclick(this)">YEAR</a>; <a href="../Functions/yearfrac.htm" onclick="onhyperlinkclick(this)">YEARFRAC</a></td>
</tr>
<tr>
<td>Engineering Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to perform some engineering calculations: converting between different bases number systems, finding complex numbers etc.</td>
<td><a href="../Functions/besseli.htm" onclick="onhyperlinkclick(this)">BESSELI</a>; <a href="../Functions/besselj.htm" onclick="onhyperlinkclick(this)">BESSELJ</a>; <a href="../Functions/besselk.htm" onclick="onhyperlinkclick(this)">BESSELK</a>; <a href="../Functions/bessely.htm" onclick="onhyperlinkclick(this)">BESSELY</a>; <a href="../Functions/bin2dec.htm" onclick="onhyperlinkclick(this)">BIN2DEC</a>; <a href="../Functions/bin2hex.htm" onclick="onhyperlinkclick(this)">BIN2HEX</a>; <a href="../Functions/bin2oct.htm" onclick="onhyperlinkclick(this)">BIN2OCT</a>; <a href="../Functions/bitand.htm" onclick="onhyperlinkclick(this)">BITAND</a>; <a href="../Functions/bitlshift.htm" onclick="onhyperlinkclick(this)">BITLSHIFT</a>; <a href="../Functions/bitor.htm" onclick="onhyperlinkclick(this)">BITOR</a>; <a href="../Functions/bitrshift.htm" onclick="onhyperlinkclick(this)">BITRSHIFT</a>; <a href="../Functions/bitxor.htm" onclick="onhyperlinkclick(this)">BITXOR</a>; <a href="../Functions/complex.htm" onclick="onhyperlinkclick(this)">COMPLEX</a>; <a href="../Functions/convert.htm" onclick="onhyperlinkclick(this)">CONVERT</a>; <a href="../Functions/dec2bin.htm" onclick="onhyperlinkclick(this)">DEC2BIN</a>; <a href="../Functions/dec2hex.htm" onclick="onhyperlinkclick(this)">DEC2HEX</a>; <a href="../Functions/dec2oct.htm" onclick="onhyperlinkclick(this)">DEC2OCT</a>; <a href="../Functions/delta.htm" onclick="onhyperlinkclick(this)">DELTA</a>; <a href="../Functions/erf.htm" onclick="onhyperlinkclick(this)">ERF</a>; <a href="../Functions/erf-precise.htm" onclick="onhyperlinkclick(this)">ERF.PRECISE</a>; <a href="../Functions/erfc.htm" onclick="onhyperlinkclick(this)">ERFC</a>; <a href="../Functions/erfc-precise.htm" onclick="onhyperlinkclick(this)">ERFC.PRECISE</a>; <a href="../Functions/gestep.htm" onclick="onhyperlinkclick(this)">GESTEP</a>; <a href="../Functions/hex2bin.htm" onclick="onhyperlinkclick(this)">HEX2BIN</a>; <a href="../Functions/hex2dec.htm" onclick="onhyperlinkclick(this)">HEX2DEC</a>; <a href="../Functions/hex2oct.htm" onclick="onhyperlinkclick(this)">HEX2OCT</a>; <a href="../Functions/imabs.htm" onclick="onhyperlinkclick(this)">IMABS</a>; <a href="../Functions/imaginary.htm" onclick="onhyperlinkclick(this)">IMAGINARY</a>; <a href="../Functions/imargument.htm" onclick="onhyperlinkclick(this)">IMARGUMENT</a>; <a href="../Functions/imconjugate.htm" onclick="onhyperlinkclick(this)">IMCONJUGATE</a>; <a href="../Functions/imcos.htm" onclick="onhyperlinkclick(this)">IMCOS</a>; <a href="../Functions/imcosh.htm" onclick="onhyperlinkclick(this)">IMCOSH</a>; <a href="../Functions/imcot.htm" onclick="onhyperlinkclick(this)">IMCOT</a>; <a href="../Functions/imcsc.htm" onclick="onhyperlinkclick(this)">IMCSC</a>; <a href="../Functions/imcsch.htm" onclick="onhyperlinkclick(this)">IMCSCH</a>; <a href="../Functions/imdiv.htm" onclick="onhyperlinkclick(this)">IMDIV</a>; <a href="../Functions/imexp.htm" onclick="onhyperlinkclick(this)">IMEXP</a>; <a href="../Functions/imln.htm" onclick="onhyperlinkclick(this)">IMLN</a>; <a href="../Functions/imlog10.htm" onclick="onhyperlinkclick(this)">IMLOG10</a>; <a href="../Functions/imlog2.htm" onclick="onhyperlinkclick(this)">IMLOG2</a>; <a href="../Functions/impower.htm" onclick="onhyperlinkclick(this)">IMPOWER</a>; <a href="../Functions/improduct.htm" onclick="onhyperlinkclick(this)">IMPRODUCT</a>; <a href="../Functions/imreal.htm" onclick="onhyperlinkclick(this)">IMREAL</a>; <a href="../Functions/imsec.htm" onclick="onhyperlinkclick(this)">IMSEC</a>; <a href="../Functions/imsech.htm" onclick="onhyperlinkclick(this)">IMSECH</a>; <a href="../Functions/imsin.htm" onclick="onhyperlinkclick(this)">IMSIN</a>; <a href="../Functions/imsinh.htm" onclick="onhyperlinkclick(this)">IMSINH</a>; <a href="../Functions/imsqrt.htm" onclick="onhyperlinkclick(this)">IMSQRT</a>; <a href="../Functions/imsub.htm" onclick="onhyperlinkclick(this)">IMSUB</a>; <a href="../Functions/imsum.htm" onclick="onhyperlinkclick(this)">IMSUM</a>; <a href="../Functions/imtan.htm" onclick="onhyperlinkclick(th
2017-09-20 08:31:59 +00:00
</tr>
<tr>
<td>Database Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to perform calculations for the values in a certain field of the database that meet the specified criteria.</td>
2017-09-20 08:31:59 +00:00
<td><a href="../Functions/daverage.htm" onclick="onhyperlinkclick(this)">DAVERAGE</a>; <a href="../Functions/dcount.htm" onclick="onhyperlinkclick(this)">DCOUNT</a>; <a href="../Functions/dcounta.htm" onclick="onhyperlinkclick(this)">DCOUNTA</a>; <a href="../Functions/dget.htm" onclick="onhyperlinkclick(this)">DGET</a>; <a href="../Functions/dmax.htm" onclick="onhyperlinkclick(this)">DMAX</a>; <a href="../Functions/dmin.htm" onclick="onhyperlinkclick(this)">DMIN</a>; <a href="../Functions/dproduct.htm" onclick="onhyperlinkclick(this)">DPRODUCT</a>; <a href="../Functions/dstdev.htm" onclick="onhyperlinkclick(this)">DSTDEV</a>; <a href="../Functions/dstdevp.htm" onclick="onhyperlinkclick(this)">DSTDEVP</a>; <a href="../Functions/dsum.htm" onclick="onhyperlinkclick(this)">DSUM</a>; <a href="../Functions/dvar.htm" onclick="onhyperlinkclick(this)">DVAR</a>; <a href="../Functions/dvarp.htm" onclick="onhyperlinkclick(this)">DVARP</a></td>
</tr>
<tr>
<td>Financial Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to perform some financial calculations: calculating the net present value, payments etc.</td>
<td><a href="../Functions/accrint.htm" onclick="onhyperlinkclick(this)">ACCRINT</a>; <a href="../Functions/accrintm.htm" onclick="onhyperlinkclick(this)">ACCRINTM</a>; <a href="../Functions/amordegrc.htm" onclick="onhyperlinkclick(this)">AMORDEGRC</a>; <a href="../Functions/amorlinc.htm" onclick="onhyperlinkclick(this)">AMORLINC</a>; <a href="../Functions/coupdaybs.htm" onclick="onhyperlinkclick(this)">COUPDAYBS</a>; <a href="../Functions/coupdays.htm" onclick="onhyperlinkclick(this)">COUPDAYS</a>; <a href="../Functions/coupdaysnc.htm" onclick="onhyperlinkclick(this)">COUPDAYSNC</a>; <a href="../Functions/coupncd.htm" onclick="onhyperlinkclick(this)">COUPNCD</a>; <a href="../Functions/coupnum.htm" onclick="onhyperlinkclick(this)">COUPNUM</a>; <a href="../Functions/couppcd.htm" onclick="onhyperlinkclick(this)">COUPPCD</a>; <a href="../Functions/cumipmt.htm" onclick="onhyperlinkclick(this)">CUMIPMT</a>; <a href="../Functions/cumprinc.htm" onclick="onhyperlinkclick(this)">CUMPRINC</a>; <a href="../Functions/db.htm" onclick="onhyperlinkclick(this)">DB</a>; <a href="../Functions/ddb.htm" onclick="onhyperlinkclick(this)">DDB</a>; <a href="../Functions/disc.htm" onclick="onhyperlinkclick(this)">DISC</a>; <a href="../Functions/dollarde.htm" onclick="onhyperlinkclick(this)">DOLLARDE</a>; <a href="../Functions/dollarfr.htm" onclick="onhyperlinkclick(this)">DOLLARFR</a>; <a href="../Functions/duration.htm" onclick="onhyperlinkclick(this)">DURATION</a>; <a href="../Functions/effect.htm" onclick="onhyperlinkclick(this)">EFFECT</a>; <a href="../Functions/fv.htm" onclick="onhyperlinkclick(this)">FV</a>; <a href="../Functions/fvschedule.htm" onclick="onhyperlinkclick(this)">FVSCHEDULE</a>; <a href="../Functions/intrate.htm" onclick="onhyperlinkclick(this)">INTRATE</a>; <a href="../Functions/ipmt.htm" onclick="onhyperlinkclick(this)">IPMT</a>; <a href="../Functions/irr.htm" onclick="onhyperlinkclick(this)">IRR</a>; <a href="../Functions/ispmt.htm" onclick="onhyperlinkclick(this)">ISPMT</a>; <a href="../Functions/mduration.htm" onclick="onhyperlinkclick(this)">MDURATION</a>; <a href="../Functions/mirr.htm" onclick="onhyperlinkclick(this)">MIRR</a>; <a href="../Functions/nominal.htm" onclick="onhyperlinkclick(this)">NOMINAL</a>; <a href="../Functions/nper.htm" onclick="onhyperlinkclick(this)">NPER</a>; <a href="../Functions/npv.htm" onclick="onhyperlinkclick(this)">NPV</a>; <a href="../Functions/oddfprice.htm" onclick="onhyperlinkclick(this)">ODDFPRICE</a>; <a href="../Functions/oddfyield.htm" onclick="onhyperlinkclick(this)">ODDFYIELD</a>; <a href="../Functions/oddlprice.htm" onclick="onhyperlinkclick(this)">ODDLPRICE</a>; <a href="../Functions/oddlyield.htm" onclick="onhyperlinkclick(this)">ODDLYIELD</a>; <a href="../Functions/pduration.htm" onclick="onhyperlinkclick(this)">PDURATION</a>; <a href="../Functions/pmt.htm" onclick="onhyperlinkclick(this)">PMT</a>; <a href="../Functions/ppmt.htm" onclick="onhyperlinkclick(this)">PPMT</a>; <a href="../Functions/price.htm" onclick="onhyperlinkclick(this)">PRICE</a>; <a href="../Functions/pricedisc.htm" onclick="onhyperlinkclick(this)">PRICEDISC</a>; <a href="../Functions/pricemat.htm" onclick="onhyperlinkclick(this)">PRICEMAT</a>; <a href="../Functions/pv.htm" onclick="onhyperlinkclick(this)">PV</a>; <a href="../Functions/rate.htm" onclick="onhyperlinkclick(this)">RATE</a>; <a href="../Functions/received.htm" onclick="onhyperlinkclick(this)">RECEIVED</a>; <a href="../Functions/rri.htm" onclick="onhyperlinkclick(this)">RRI</a>; <a href="../Functions/sln.htm" onclick="onhyperlinkclick(this)">SLN</a>; <a href="../Functions/syd.htm" onclick="onhyperlinkclick(this)">SYD</a>; <a href="../Functions/tbilleq.htm" onclick="onhyperlinkclick(this)">TBILLEQ</a>; <a href="../Functions/tbillprice.htm" onclick="onhyperlinkclick(this)">TBILLPRICE</a>; <a href="../Functions/tbillyield.htm" onclick="onhyperlinkclick(this)">TBILLYIELD</a>; <a href="../Functions/vdb.htm" onclick="onhyperlinkclick(this)">VDB</a>; <a href="../Functions/xirr.htm" onclick="onhyperlinkclick(this)">XIRR</a>; <a href=
</tr>
<tr>
<td>Lookup and Reference Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to easily find information from the data list.</td>
2021-04-30 14:41:43 +00:00
<td><a href="../Functions/address.htm" onclick="onhyperlinkclick(this)">ADDRESS</a>; <a href="../Functions/choose.htm" onclick="onhyperlinkclick(this)">CHOOSE</a>; <a href="../Functions/column.htm" onclick="onhyperlinkclick(this)">COLUMN</a>; <a href="../Functions/columns.htm" onclick="onhyperlinkclick(this)">COLUMNS</a>; <a href="../Functions/formulatext.htm" onclick="onhyperlinkclick(this)">FORMULATEXT</a>; <a href="../Functions/hlookup.htm" onclick="onhyperlinkclick(this)">HLOOKUP</a>; <a href="../Functions/hyperlink.htm" onclick="onhyperlinkclick(this)">HYPERLINLK</a>; <a href="../Functions/index.htm" onclick="onhyperlinkclick(this)">INDEX</a>; <a href="../Functions/indirect.htm" onclick="onhyperlinkclick(this)">INDIRECT</a>; <a href="../Functions/lookup.htm" onclick="onhyperlinkclick(this)">LOOKUP</a>; <a href="../Functions/match.htm" onclick="onhyperlinkclick(this)">MATCH</a>; <a href="../Functions/offset.htm" onclick="onhyperlinkclick(this)">OFFSET</a>; <a href="../Functions/row.htm" onclick="onhyperlinkclick(this)">ROW</a>; <a href="../Functions/rows.htm" onclick="onhyperlinkclick(this)">ROWS</a>; <a href="../Functions/transpose.htm" onclick="onhyperlinkclick(this)">TRANSPOSE</a>; <a href="../Functions/unique.htm" onclick="onhyperlinkclick(this)">UNIQUE</a>; <a href="../Functions/vlookup.htm" onclick="onhyperlinkclick(this)">VLOOKUP</a>; <a href="../Functions/xlookup.htm" onclick="onhyperlinkclick(this)">XLOOKUP</a></td>
2017-09-20 08:31:59 +00:00
</tr>
2016-03-11 00:48:53 +00:00
<tr>
<td>Information Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to provide information about the data in the selected cell or cell range.</td>
2020-09-14 12:21:50 +00:00
<td><a href="../Functions/cell.htm" onclick="onhyperlinkclick(this)">CELL</a>; <a href="../Functions/error-type.htm" onclick="onhyperlinkclick(this)">ERROR.TYPE</a>; <a href="../Functions/isblank.htm" onclick="onhyperlinkclick(this)">ISBLANK</a>; <a href="../Functions/iserr.htm" onclick="onhyperlinkclick(this)">ISERR</a>; <a href="../Functions/iserror.htm" onclick="onhyperlinkclick(this)">ISERROR</a>; <a href="../Functions/iseven.htm" onclick="onhyperlinkclick(this)">ISEVEN</a>; <a href="../Functions/isformula.htm" onclick="onhyperlinkclick(this)">ISFORMULA</a>; <a href="../Functions/islogical.htm" onclick="onhyperlinkclick(this)">ISLOGICAL</a>; <a href="../Functions/isna.htm" onclick="onhyperlinkclick(this)">ISNA</a>; <a href="../Functions/isnontext.htm" onclick="onhyperlinkclick(this)">ISNONTEXT</a>; <a href="../Functions/isnumber.htm" onclick="onhyperlinkclick(this)">ISNUMBER</a>; <a href="../Functions/isodd.htm" onclick="onhyperlinkclick(this)">ISODD</a>; <a href="../Functions/isref.htm" onclick="onhyperlinkclick(this)">ISREF</a>; <a href="../Functions/istext.htm" onclick="onhyperlinkclick(this)">ISTEXT</a>; <a href="../Functions/n.htm" onclick="onhyperlinkclick(this)">N</a>; <a href="../Functions/na.htm" onclick="onhyperlinkclick(this)">NA</a>; <a href="../Functions/sheet.htm" onclick="onhyperlinkclick(this)">SHEET</a>; <a href="../Functions/sheets.htm" onclick="onhyperlinkclick(this)">SHEETS</a>; <a href="../Functions/type.htm" onclick="onhyperlinkclick(this)">TYPE</a></td>
2016-03-11 00:48:53 +00:00
</tr>
<tr>
<td>Logical Functions</td>
2020-08-12 11:25:32 +00:00
<td>Used to check if a condition is true or false.</td>
2018-03-30 11:36:43 +00:00
<td><a href="../Functions/and.htm" onclick="onhyperlinkclick(this)">AND</a>; <a href="../Functions/false.htm" onclick="onhyperlinkclick(this)">FALSE</a>; <a href="../Functions/if.htm" onclick="onhyperlinkclick(this)">IF</a>; <a href="../Functions/iferror.htm" onclick="onhyperlinkclick(this)">IFERROR</a>; <a href="../Functions/ifna.htm" onclick="onhyperlinkclick(this)">IFNA</a>; <a href="../Functions/ifs.htm" onclick="onhyperlinkclick(this)">IFS</a>; <a href="../Functions/not.htm" onclick="onhyperlinkclick(this)">NOT</a>; <a href="../Functions/or.htm" onclick="onhyperlinkclick(this)">OR</a>; <a href="../Functions/switch.htm" onclick="onhyperlinkclick(this)">SWITCH</a>; <a href="../Functions/true.htm" onclick="onhyperlinkclick(this)">TRUE</a>; <a href="../Functions/xor.htm" onclick="onhyperlinkclick(this)">XOR</a></td>
2016-03-11 00:48:53 +00:00
</tr>
</table>
</div>
</body>
</html>