SlideShare a Scribd company logo
BASIC EXCEL FORMULAS
GUIDE
GRADE 5 COMPUTER
INTRODUCTION
Mastering the basic Excel formulas is critical for beginners to
become highly proficient in financial analysis.
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.
ONCEYOU’VE MASTEREDTHIS LIST, MOVE ON
TO CFI’S ADVANCED EXCEL FORMULAS GUIDE!
BASICTERMS IN EXCEL
There are two basic ways to
perform calculations in
Excel: Formulas and
Functions.
1. FORMULAS
In Excel, a formula is an expression
that operates on values in a range of
cells or a cell. For example,
=A1+A2+A3, which finds the sum of
the range of values from cell A1 to cell
A3.
2. FUNCTIONS
Functions are predefined formulas in
Excel.They eliminate laborious
manual entry of formulas while
giving them human-friendly names.
For example: =SUM(A1:A3).The
function sums all the values fromA1
to A3.
FIVETIME-SAVING WAYSTO INSERT DATA
INTO EXCEL
When analyzing data, there are five
common ways of inserting basic Excel
formulas. Each strategy comes with its
own advantages.Therefore, before diving
further into the main formulas, we’ll
clarify those methods, so you can create
your preferred workflow earlier on.
1. SIMPLE INSERTION: TYPING A
FORMULA INSIDETHE CELL
Typing a formula in a cell or the formula bar is the most
straightforward method of inserting basic Excel formulas.
The process usually starts by typing an equal sign, followed
by the name of an Excel function.
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 theTab 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.
IMAGE: CFI’S FREE EXCEL CRASH COURSE.
2. USING INSERT FUNCTION OPTION
FROM FORMULASTAB
If you want full control of your functions
insertion, using the Excel Insert Function
dialogue box is all you ever need.To achieve
this, go to the Formulas tab and select the
first menu labeled Insert Function.The
dialogue box will contain all the functions
you need to complete your financial
analysis.
3. SELECTING A FORMULA FROM ONE OF
THE GROUPS IN FORMULATAB
This option is for those who want to delve into
their favorite functions quickly.To find this menu,
navigate to the Formulas tab and select your
preferred group. Click to show a sub-menu filled
with a list of functions. From there, you can select
your preference. However, if you find your
preferred group is not on the tab, click on the
More Functions option – it’s probably just hidden
there.
IMAGE: CFI’S EXCEL COURSES.
4. USING AUTOSUM OPTION
For quick and everyday tasks, the AutoSum
function is your go-to option. So, navigate to
the Home tab, in the far-right corner, and
click the AutoSum option.Then click the
caret to show other hidden formulas.This
option is also available in the Formulas tab
first option after the Insert Function option.
5. QUICK INSERT: USE RECENTLY USED
TABS
If you find re-typing your most
recent formula a monotonous
task, then use the Recently Used
menu. It’s on the Formulas tab, a
third menu option just next to
AutoSum.
FREE EXCEL FORMULASYOUTUBE
TUTORIAL
 Watch CFI’s FREE
YouTube
video tutorial to
quickly learn the
most important
Excel formulas. By
watching the video
demonstration
you’ll quickly learn
the most important
formulas and
functions.
SEVEN BASIC EXCEL FORMULAS FOR
YOUR WORKFLOW
Since you’re now able to insert
your preferred formulas and
function correctly, let’s check
some fundamental Excel
functions to get you started.
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:
=SUM(B2:G2) – A simple selection that sums the values of a row.
=SUM(A2:A8) – A simple selection that sums the values of a column.
=SUM(A2:A7, A9, A12:A15) – A sophisticated collection that sums values from
range A2 to A7, skips A8, adds A9, jumps A10 and A11, then finally adds from A12 to
A15.
=SUM(A2:A8)/20 – Shows you can also turn your function into a formula.
IMAGE: CFI’S FREE EXCEL CRASH COURSE.
2. AVERAGE
TheAVERAGE 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:
=AVERAGE(B2:B11) – Shows a simple average, also
similar to (SUM(B2:B11)/10)
3. COUNT
The COUNT function counts all cells in a given range that
contain only numeric values.
=COUNT(value1, [value2], …)
Example:
COUNT(A:A) – Counts all values that are numerical in A
column. However, you must adjust the range inside the
formula to count rows.
COUNT(A1:C1) – Now it can count rows.
IMAGE: CFI’S EXCEL COURSES.
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 only counts numerics, it also counts dates, times, strings, logical
values, errors, empty string, or text.
=COUNTA(value1, [value2], …)
Example:
COUNTA(C2:C13) – Counts rows 2 to 13 in column C regardless of
type. However, like COUNT, you can’t use the same formula to count
rows.You must make an adjustment to the selection inside the
brackets – for example, COUNTA(C2:H2) will count columns C to H
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 beTRUE, 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 the 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
TheTRIM 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:
TRIM(A2) – Removes empty spaces in the value in cell A2.
IMAGE: CFI’S FREE EXCEL CRASH COURSE.
7. MAX & MIN
7. MAX & MIN
The MAX and MIN functions help in finding the maximum number and the minimum number in a range of values.
=MIN(number1, [number2], …)
Example:
=MIN(B2:C11) – Finds the minimum number between column B from B2 and columnC from C2 to row 11 in both columns
B and C.
=MAX(number1, [number2], …)
Example:
=MAX(B2:C11) – Similarly, it finds the maximum number between column B from B2 and column C fromC2 to row 11 in
both columns B and C.
MORE RESOURCES
Thank you for reading CFI’s guide to basic Excel
formulas.To continue your development as a world-
class financial analyst, these additional CFI resources
will be helpful:
Advanced Excel Formulas
Benefits of Excel Shortcuts
List of Excel Functions
Valuation Modeling Excel
https://corporatefinanceinstitute.com/resources/excel/study/b
asic-excel-formulas-beginners/

More Related Content

What's hot

Ms powerpoint 2013
Ms powerpoint 2013Ms powerpoint 2013
Ms powerpoint 2013
Noor Azman Muhammad
 
Introduction to ms power point Grade 9
Introduction to ms power point Grade 9Introduction to ms power point Grade 9
Introduction to ms power point Grade 9
ninoallandanganancarpio
 
Part 2 desktop and start menu
Part 2  desktop and start menuPart 2  desktop and start menu
Part 2 desktop and start menu
Government of India
 
Access lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAccess lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAram SE
 
Microsoft Word
Microsoft WordMicrosoft Word
Microsoft Word
Jack Frost
 
Using Computer Keyboard
Using Computer KeyboardUsing Computer Keyboard
Using Computer Keyboard
Globelle Dala-Pasamante
 
Basic Parts of a Desktop
Basic Parts of a DesktopBasic Parts of a Desktop
Basic Parts of a Desktop
Queenie Elumbaring
 
Microsoft word - teaching slides
Microsoft word  - teaching slidesMicrosoft word  - teaching slides
Microsoft word - teaching slides
Miss-Short
 
Excel for beginner
Excel for beginnerExcel for beginner
Excel for beginner
Shashank Jain
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
Keyboard shortcuts
Keyboard shortcutsKeyboard shortcuts
Keyboard shortcuts
Anitha Rao
 
Ms excel
Ms excelMs excel
computer-studies-grade-8-lesson-plans (1).pdf
computer-studies-grade-8-lesson-plans (1).pdfcomputer-studies-grade-8-lesson-plans (1).pdf
computer-studies-grade-8-lesson-plans (1).pdf
maureenchanda
 
Ms excel ppt presentation
Ms excel ppt presentationMs excel ppt presentation
Ms excel ppt presentation
vethics
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
Blogger Mumma
 
Grade 6 COMPUTER
Grade 6 COMPUTERGrade 6 COMPUTER
Grade 6 COMPUTER
Joel Linquico
 
Oracle Database Sequence
Oracle Database SequenceOracle Database Sequence
Oracle Database Sequence
Eryk Budi Pratama
 
PowerPoint Tutorial
PowerPoint TutorialPowerPoint Tutorial
PowerPoint Tutorial
Ashford University
 

What's hot (20)

Ms powerpoint 2013
Ms powerpoint 2013Ms powerpoint 2013
Ms powerpoint 2013
 
Introduction to ms power point Grade 9
Introduction to ms power point Grade 9Introduction to ms power point Grade 9
Introduction to ms power point Grade 9
 
Part 2 desktop and start menu
Part 2  desktop and start menuPart 2  desktop and start menu
Part 2 desktop and start menu
 
Access lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAccess lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying Forms
 
Microsoft Word
Microsoft WordMicrosoft Word
Microsoft Word
 
Using Computer Keyboard
Using Computer KeyboardUsing Computer Keyboard
Using Computer Keyboard
 
Basic Parts of a Desktop
Basic Parts of a DesktopBasic Parts of a Desktop
Basic Parts of a Desktop
 
Ms excel ppt
Ms excel pptMs excel ppt
Ms excel ppt
 
Microsoft word - teaching slides
Microsoft word  - teaching slidesMicrosoft word  - teaching slides
Microsoft word - teaching slides
 
Excel for beginner
Excel for beginnerExcel for beginner
Excel for beginner
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Keyboard shortcuts
Keyboard shortcutsKeyboard shortcuts
Keyboard shortcuts
 
Ms excel
Ms excelMs excel
Ms excel
 
computer-studies-grade-8-lesson-plans (1).pdf
computer-studies-grade-8-lesson-plans (1).pdfcomputer-studies-grade-8-lesson-plans (1).pdf
computer-studies-grade-8-lesson-plans (1).pdf
 
Ms excel ppt presentation
Ms excel ppt presentationMs excel ppt presentation
Ms excel ppt presentation
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
 
Grade 6 COMPUTER
Grade 6 COMPUTERGrade 6 COMPUTER
Grade 6 COMPUTER
 
Excel ppt
Excel pptExcel ppt
Excel ppt
 
Oracle Database Sequence
Oracle Database SequenceOracle Database Sequence
Oracle Database Sequence
 
PowerPoint Tutorial
PowerPoint TutorialPowerPoint Tutorial
PowerPoint Tutorial
 

Similar to Grade 5 Computer

TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)Patrice Dowtin, MS, MBA
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
Ramesh Meti
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
SpreadsheetTrainer
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007simply_coool
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
JosephIThomas
 
Excel for research
Excel  for researchExcel  for research
Excel for research
JamalBhai
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
AlexHenderson59
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
AllanGuevarra1
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
maharzahid0
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functionssimply_coool
 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in Excel
Kim Estes
 
Excel 2007- Enter Formulas
Excel 2007- Enter FormulasExcel 2007- Enter Formulas
Excel 2007- Enter Formulas
Oklahoma Dept. Mental Health
 
Excel 2007 slide enter formulas
Excel 2007 slide    enter formulasExcel 2007 slide    enter formulas
Excel 2007 slide enter formulas
rezaulslide
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
madhuparna bhowmik
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful TipsParul_100in
 
Chapter.05
Chapter.05Chapter.05
Chapter.05klivsie
 

Similar to Grade 5 Computer (20)

TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
AAG_Excel_2010_Formulas_and_Functions
AAG_Excel_2010_Formulas_and_FunctionsAAG_Excel_2010_Formulas_and_Functions
AAG_Excel_2010_Formulas_and_Functions
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functions
 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in Excel
 
Excel 2007- Enter Formulas
Excel 2007- Enter FormulasExcel 2007- Enter Formulas
Excel 2007- Enter Formulas
 
Excel 2007 slide enter formulas
Excel 2007 slide    enter formulasExcel 2007 slide    enter formulas
Excel 2007 slide enter formulas
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
 
22 Excel Basics
22 Excel Basics22 Excel Basics
22 Excel Basics
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 

More from Joel Linquico

Computer 4
Computer 4Computer 4
Computer 4
Joel Linquico
 
Grade 7 computer
Grade 7 computerGrade 7 computer
Grade 7 computer
Joel Linquico
 
What is genetics
What is geneticsWhat is genetics
What is genetics
Joel Linquico
 
Grade 9 COMPUTER
Grade 9 COMPUTERGrade 9 COMPUTER
Grade 9 COMPUTER
Joel Linquico
 
GRADE 10 STEM
GRADE 10 STEMGRADE 10 STEM
GRADE 10 STEM
Joel Linquico
 
GRADE 10 COMPUTER
GRADE 10 COMPUTERGRADE 10 COMPUTER
GRADE 10 COMPUTER
Joel Linquico
 
GRADE 8 TADT2
GRADE 8 TADT2GRADE 8 TADT2
GRADE 8 TADT2
Joel Linquico
 
Grade 8 COMPUTER
Grade 8 COMPUTERGrade 8 COMPUTER
Grade 8 COMPUTER
Joel Linquico
 
GRADE 7 SCIENCE
GRADE 7 SCIENCEGRADE 7 SCIENCE
GRADE 7 SCIENCE
Joel Linquico
 
GRADE 7 COMPUTER
GRADE 7 COMPUTERGRADE 7 COMPUTER
GRADE 7 COMPUTER
Joel Linquico
 
Grade 6 Mapeh
Grade 6 MapehGrade 6 Mapeh
Grade 6 Mapeh
Joel Linquico
 
Grade 6 Computer
Grade 6 Computer Grade 6 Computer
Grade 6 Computer
Joel Linquico
 
Grade 4 Computer
Grade 4 Computer Grade 4 Computer
Grade 4 Computer
Joel Linquico
 
Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan
Joel Linquico
 
Grade 6 computer
Grade 6 computer Grade 6 computer
Grade 6 computer
Joel Linquico
 
Grade 6 health
Grade 6 healthGrade 6 health
Grade 6 health
Joel Linquico
 
Grade 6 physical education
Grade 6 physical educationGrade 6 physical education
Grade 6 physical education
Joel Linquico
 
Grade 6 arts
Grade 6 artsGrade 6 arts
Grade 6 arts
Joel Linquico
 
Grade 6 MUSIC
Grade 6 MUSICGrade 6 MUSIC
Grade 6 MUSIC
Joel Linquico
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
Joel Linquico
 

More from Joel Linquico (20)

Computer 4
Computer 4Computer 4
Computer 4
 
Grade 7 computer
Grade 7 computerGrade 7 computer
Grade 7 computer
 
What is genetics
What is geneticsWhat is genetics
What is genetics
 
Grade 9 COMPUTER
Grade 9 COMPUTERGrade 9 COMPUTER
Grade 9 COMPUTER
 
GRADE 10 STEM
GRADE 10 STEMGRADE 10 STEM
GRADE 10 STEM
 
GRADE 10 COMPUTER
GRADE 10 COMPUTERGRADE 10 COMPUTER
GRADE 10 COMPUTER
 
GRADE 8 TADT2
GRADE 8 TADT2GRADE 8 TADT2
GRADE 8 TADT2
 
Grade 8 COMPUTER
Grade 8 COMPUTERGrade 8 COMPUTER
Grade 8 COMPUTER
 
GRADE 7 SCIENCE
GRADE 7 SCIENCEGRADE 7 SCIENCE
GRADE 7 SCIENCE
 
GRADE 7 COMPUTER
GRADE 7 COMPUTERGRADE 7 COMPUTER
GRADE 7 COMPUTER
 
Grade 6 Mapeh
Grade 6 MapehGrade 6 Mapeh
Grade 6 Mapeh
 
Grade 6 Computer
Grade 6 Computer Grade 6 Computer
Grade 6 Computer
 
Grade 4 Computer
Grade 4 Computer Grade 4 Computer
Grade 4 Computer
 
Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan
 
Grade 6 computer
Grade 6 computer Grade 6 computer
Grade 6 computer
 
Grade 6 health
Grade 6 healthGrade 6 health
Grade 6 health
 
Grade 6 physical education
Grade 6 physical educationGrade 6 physical education
Grade 6 physical education
 
Grade 6 arts
Grade 6 artsGrade 6 arts
Grade 6 arts
 
Grade 6 MUSIC
Grade 6 MUSICGrade 6 MUSIC
Grade 6 MUSIC
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
 

Recently uploaded

The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 

Recently uploaded (20)

The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 

Grade 5 Computer

  • 2. INTRODUCTION Mastering the basic Excel formulas is critical for beginners to become highly proficient in financial analysis. 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.
  • 3. ONCEYOU’VE MASTEREDTHIS LIST, MOVE ON TO CFI’S ADVANCED EXCEL FORMULAS GUIDE!
  • 4. BASICTERMS IN EXCEL There are two basic ways to perform calculations in Excel: Formulas and Functions.
  • 5. 1. FORMULAS In Excel, a formula is an expression that operates on values in a range of cells or a cell. For example, =A1+A2+A3, which finds the sum of the range of values from cell A1 to cell A3.
  • 6. 2. FUNCTIONS Functions are predefined formulas in Excel.They eliminate laborious manual entry of formulas while giving them human-friendly names. For example: =SUM(A1:A3).The function sums all the values fromA1 to A3.
  • 7. FIVETIME-SAVING WAYSTO INSERT DATA INTO EXCEL When analyzing data, there are five common ways of inserting basic Excel formulas. Each strategy comes with its own advantages.Therefore, before diving further into the main formulas, we’ll clarify those methods, so you can create your preferred workflow earlier on.
  • 8. 1. SIMPLE INSERTION: TYPING A FORMULA INSIDETHE CELL Typing a formula in a cell or the formula bar is the most straightforward method of inserting basic Excel formulas. The process usually starts by typing an equal sign, followed by the name of an Excel function. 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 theTab 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.
  • 9. IMAGE: CFI’S FREE EXCEL CRASH COURSE.
  • 10. 2. USING INSERT FUNCTION OPTION FROM FORMULASTAB If you want full control of your functions insertion, using the Excel Insert Function dialogue box is all you ever need.To achieve this, go to the Formulas tab and select the first menu labeled Insert Function.The dialogue box will contain all the functions you need to complete your financial analysis.
  • 11.
  • 12. 3. SELECTING A FORMULA FROM ONE OF THE GROUPS IN FORMULATAB This option is for those who want to delve into their favorite functions quickly.To find this menu, navigate to the Formulas tab and select your preferred group. Click to show a sub-menu filled with a list of functions. From there, you can select your preference. However, if you find your preferred group is not on the tab, click on the More Functions option – it’s probably just hidden there.
  • 14. 4. USING AUTOSUM OPTION For quick and everyday tasks, the AutoSum function is your go-to option. So, navigate to the Home tab, in the far-right corner, and click the AutoSum option.Then click the caret to show other hidden formulas.This option is also available in the Formulas tab first option after the Insert Function option.
  • 15.
  • 16. 5. QUICK INSERT: USE RECENTLY USED TABS If you find re-typing your most recent formula a monotonous task, then use the Recently Used menu. It’s on the Formulas tab, a third menu option just next to AutoSum.
  • 17.
  • 18. FREE EXCEL FORMULASYOUTUBE TUTORIAL  Watch CFI’s FREE YouTube video tutorial to quickly learn the most important Excel formulas. By watching the video demonstration you’ll quickly learn the most important formulas and functions.
  • 19. SEVEN BASIC EXCEL FORMULAS FOR YOUR WORKFLOW Since you’re now able to insert your preferred formulas and function correctly, let’s check some fundamental Excel functions to get you started.
  • 20. 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: =SUM(B2:G2) – A simple selection that sums the values of a row. =SUM(A2:A8) – A simple selection that sums the values of a column. =SUM(A2:A7, A9, A12:A15) – A sophisticated collection that sums values from range A2 to A7, skips A8, adds A9, jumps A10 and A11, then finally adds from A12 to A15. =SUM(A2:A8)/20 – Shows you can also turn your function into a formula.
  • 21. IMAGE: CFI’S FREE EXCEL CRASH COURSE.
  • 22. 2. AVERAGE TheAVERAGE 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: =AVERAGE(B2:B11) – Shows a simple average, also similar to (SUM(B2:B11)/10)
  • 23.
  • 24. 3. COUNT The COUNT function counts all cells in a given range that contain only numeric values. =COUNT(value1, [value2], …) Example: COUNT(A:A) – Counts all values that are numerical in A column. However, you must adjust the range inside the formula to count rows. COUNT(A1:C1) – Now it can count rows.
  • 26. 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 only counts numerics, it also counts dates, times, strings, logical values, errors, empty string, or text. =COUNTA(value1, [value2], …) Example: COUNTA(C2:C13) – Counts rows 2 to 13 in column C regardless of type. However, like COUNT, you can’t use the same formula to count rows.You must make an adjustment to the selection inside the brackets – for example, COUNTA(C2:H2) will count columns C to H
  • 27.
  • 28. 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 beTRUE, 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 the 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.
  • 29.
  • 30. 6.TRIM TheTRIM 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: TRIM(A2) – Removes empty spaces in the value in cell A2.
  • 31. IMAGE: CFI’S FREE EXCEL CRASH COURSE.
  • 32. 7. MAX & MIN 7. MAX & MIN The MAX and MIN functions help in finding the maximum number and the minimum number in a range of values. =MIN(number1, [number2], …) Example: =MIN(B2:C11) – Finds the minimum number between column B from B2 and columnC from C2 to row 11 in both columns B and C. =MAX(number1, [number2], …) Example: =MAX(B2:C11) – Similarly, it finds the maximum number between column B from B2 and column C fromC2 to row 11 in both columns B and C.
  • 33.
  • 34. MORE RESOURCES Thank you for reading CFI’s guide to basic Excel formulas.To continue your development as a world- class financial analyst, these additional CFI resources will be helpful: Advanced Excel Formulas Benefits of Excel Shortcuts List of Excel Functions Valuation Modeling Excel