SlideShare ist ein Scribd-Unternehmen logo
1 von 35
BASIC EXCEL FORMULAS
GUIDE
GRADE 6 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/

Weitere ähnliche Inhalte

Was ist angesagt?

10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any JobHitesh Biyani
 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in ExcelKim Estes
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
2. mathematical functions in excel
2. mathematical functions in excel2. mathematical functions in excel
2. mathematical functions in excelDr. Prashant Vats
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika khalil
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use ithayat25in
 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excelMalika khalil
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel FunctionsGautam Gupta
 
Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersStat Analytica
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Pranav Kumar
 
Excel project 2 formulas functions and formatting
Excel project 2 formulas functions and formattingExcel project 2 formulas functions and formatting
Excel project 2 formulas functions and formattingWilmington High School
 

Was ist angesagt? (19)

10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job
 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in Excel
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Excel Function Training
Excel Function TrainingExcel Function Training
Excel Function Training
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
 
2. mathematical functions in excel
2. mathematical functions in excel2. mathematical functions in excel
2. mathematical functions in excel
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use it
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excel
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel Functions
 
Excelformulas
ExcelformulasExcelformulas
Excelformulas
 
Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The Beginners
 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
 
Excel project 2 formulas functions and formatting
Excel project 2 formulas functions and formattingExcel project 2 formulas functions and formatting
Excel project 2 formulas functions and formatting
 

Ähnlich wie Grade 6 Computer

Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Ramesh Meti
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialSpreadsheetTrainer
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptJosephIThomas
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptAllanGuevarra1
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdfFranzLawrenzDeTorres1
 
Excel 2007 slide enter formulas
Excel 2007 slide    enter formulasExcel 2007 slide    enter formulas
Excel 2007 slide enter formulasrezaulslide
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excelmadhuparna bhowmik
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful TipsParul_100in
 
Chapter.05
Chapter.05Chapter.05
Chapter.05klivsie
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptdejene3
 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheetdpd
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxEdwinAdeolaOluwasina1
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functionsricsanmae
 
Basic Excel for Fixed Assets.ppt
Basic Excel for Fixed Assets.pptBasic Excel for Fixed Assets.ppt
Basic Excel for Fixed Assets.pptGreg Ezeilo
 

Ähnlich wie Grade 6 Computer (20)

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
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
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
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Excel 2007- Enter Formulas
Excel 2007- Enter FormulasExcel 2007- Enter Formulas
Excel 2007- Enter Formulas
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Excel 2007 slide enter formulas
Excel 2007 slide    enter formulasExcel 2007 slide    enter formulas
Excel 2007 slide enter formulas
 
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
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
 
Excel
ExcelExcel
Excel
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptx
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functions
 
Basic Excel for Fixed Assets.ppt
Basic Excel for Fixed Assets.pptBasic Excel for Fixed Assets.ppt
Basic Excel for Fixed Assets.ppt
 
Excel functions
Excel functionsExcel functions
Excel functions
 

Mehr von 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 5 Computer
Grade 5 ComputerGrade 5 Computer
Grade 5 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
 

Kürzlich hochgeladen

Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 

Kürzlich hochgeladen (20)

Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 

Grade 6 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