Computer Applications
Computer Applications
Computer
applications
Formulas excel
Preparing:
Hoshang Mhamad
Teachers:
Mr.Shadan
Sulaimanyah,2019
Contents:
subject page
Basic Excel Formulas Guide. 1
Basic Terms in Excel. 2
Five Time-saving Ways to Insert Data into 3
Excel.
Seven Basic Excel Formulas For Your 4
Workflow.
Microsoft Excel is considered the industry standard piece of software in data analysis. Microsoft’s
spreadsheet program also happens to be one of the most preferred software by investment bankers
and financial analysts in data processing, financial modeling, and presentation. This guide will provide
an overview and list of basic Excel functions.
Once you’ve mastered this list, move on to CFI’s advanced Excel formulas guide!
1. Formulas
2. Functions
Excel is quite intelligent in that when you start typing the name of the function,
a pop-up function hint will show. It’s from this list you’ll select your preference.
However, don’t press the Enter key. Instead, press the Tab key so that you can
continue to insert other options. Otherwise, you may find yourself with an
invalid name error, often as ‘#NAME?’. To fix it, just re-select the cell, and go to
the formula bar to complete your function.
1. SUM:
The SUM function is the first must-know formula in Excel. It usually aggregates
values from a selection of columns or rows from your selected range.
=SUM(number1, [number2], …)
Example:
2. AVERAGE:
The AVERAGE function should remind you of simple averages of data such as
the average number of shareholders in a given shareholding pool.
=AVERAGE(number1, [number2], …)
Example:
3. COUNT:
The COUNT function counts all cells in a given range that contains only numeric
values.
=COUNT(value1, [value2], …)
Example:
COUNT(A:A) – Counts all values that are numerical in A column. However, it
doesn’t use the same formula to count rows.
4. COUNTA:
Like the COUNT function, COUNTA counts all cells in a given rage. However, it
counts all cells regardless of type. That is, unlike COUNT that relies on only
numerics, it also counts dates, times, strings, logical values, errors, empty
string, or text.
=COUNTA(value1, [value2], …)
Example:
COUNTA(A:A) – Counts all cells in column A regardless of type. However, like
COUNT, you can’t use the same formula to count rows.
5. IF:
The IF function is often used when you want to sort your data according to a
given logic. The best part of the IF formula is that you can embed formulas and
function in it.
=IF(logical_test, [value_if_true], [value_if_false])
Example:
=IF(C2<D3, ‘TRUE,’ ‘FALSE’) – Checks if the value at C3 is less than the value at
D3. If the logic is true, let the cell value be TRUE, else, FALSE
=IF(SUM(C1:C10) > SUM(D1:D10), SUM(C1:C10), SUM(D1:D10)) – An example
of a complex IF logic. First, it sums C1 to C10 and D1 to D10, then it compares
the sum. If the sum of C1 to C10 is greater than SUM of D1 to D10, then it
makes the value of a cell equal to the sum of C1 to C10. Otherwise, it makes it
the SUM of C1 to C10.
6. TRIM:
The TRIM function makes sure your functions do not return errors due to
unruly spaces. It ensures that all empty spaces are eliminated. Unlike other
functions that can operate on a range of cells, TRIM only operates on a single
cell. Therefore, it comes with the downside of adding duplicated data in your
spreadsheet.
=TRIM(text)
Example:
=MIN(number1, [number2], …)
Example:
=MAX(number1, [number2], …)
Example:
Resources:
https://corporatefinanceinstitute.com/
resources/excel/study/basic-excel-formulas-
beginners/ …
designing:
Hoshang Mhamad