BTC USD 81,412.2 Gold USD 4,378.12
Time now: Jun 1, 12:00 AM

Microsoft Excel Tutorial for Beginners: Lesson 4

soybean

CG Hardcore Club
gemgem
Messages
63,243
Paid Membership
Joined
Feb 15, 2009
Messages
63,243
Reaction score
4,135
Points
661

Excel Formulas & Functions: Learn with Basic EXAMPLES​


Formulas and functions are the building blocks of working with numeric data in Excel. This article introduces you to formulas and functions.

In this article, we will cover the following topics.

What is Formulas in Excel?
Mistakes to avoid when working with formulas in Excel
What is Function in Excel?
The importance of functions
Common functions
Numeric Functions
String functions
Date Time functions
V Lookup function
 

Tutorials Data​

For this tutorial, we will work with the following datasets.

Home supplies budget

S/NITEMQTYPRICESUBTOTALIs it Affordable?
1Mangoes9600
2Oranges31200
3Tomatoes12500
4Cooking Oil56500
5Tonic Water133900
 
House Building Project Schedule

S/NITEMSTART DATEEND DATEDURATION (DAYS)
1Survey land04/02/201507/02/2015
2Lay Foundation10/02/201515/02/2015
3Roofing27/02/201503/03/2015
4Painting09/03/201521/03/2015
 

What is Formulas in Excel?​

FORMULAS IN EXCEL is an expression that operates on values in a range of cell addresses and operators. For example, =A1+A2+A3, which finds the sum of the range of values from cell A1 to cell A3. An example of a formula made up of discrete values like =6*3.
=A2 * D2 / 2
 
HERE,
  • "=" tells Excel that this is a formula, and it should evaluate it.
  • "A2" * D2" makes reference to cell addresses A2 and D2 then multiplies the values found in these cell addresses.
  • "/" is the division arithmetic operator
  • "2" is a discrete value
 

Formulas practical exercise​

We will work with the sample data for the home budget to calculate the subtotal.

  • Create a new workbook in Excel
  • Enter the data shown in the home supplies budget above.
  • Your worksheet should look as follows.
050215_0816_Introductio1.png
 
HERE,

  • "C4*D4" uses the arithmetic operator multiplication (*) to multiply the value of the cell address C4 and D4.
Press enter key

You will get the following result

050215_0816_Introductio2.png
 

Mistakes to avoid when working with formulas in Excel​

  1. Remember the rules of Brackets of Division, Multiplication, Addition, & Subtraction (BODMAS). This means expressions are brackets are evaluated first. For arithmetic operators, the division is evaluated first followed by multiplication then addition and subtraction is the last one to be evaluated. Using this rule, we can rewrite the above formula as =(A2 * D2) / 2. This will ensure that A2 and D2 are first evaluated then divided by two.

  2. Excel spreadsheet formulas usually work with numeric data; you can take advantage of data validation to specify the type of data that should be accepted by a cell i.e. numbers only.

  3. To ensure that you are working with the correct cell addresses referenced in the formulas, you can press F2 on the keyboard. This will highlight the cell addresses used in the formula, and you can cross check to ensure they are the desired cell addresses.

  4. When you are working with many rows, you can use serial numbers for all the rows and have a record count at the bottom of the sheet. You should compare the serial number count with the record total to ensure that your formulas included all the rows.
 
Back
Top
Log in Register