SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Downloaden Sie, um offline zu lesen
EXCEL
Yacar-Yacara Consults
What is Excel?
Microsoft Excel is a spreadsheet program
written and distributed by Microsoft for
computers using the Microsoft Windows
operating system and for Apple Macintosh
computers.
Uses of excel
Data analysis
Building models (Financial, Operational,
Marketing, Etc)
Calculator
Graphical presentations
Excel Window Overview
• THE TITLE BAR
Title Bar shows the name of the application,
document, group, directory or file.
MENU MAR
Menu Bar contains the available menus from
which you can choose commands.
STANDARD & FORMATTING BAR
Standard & Formatting Toolbar provide a quick
method of working with various parts of the
worksheet. Toolbars can be customized and
multiple toolbars can be displayed at the same
time.
ACTIVE CELL
Active Cell has a black border that appears
around it.
VERTICAL & HORIZONTAL SCROLL BARS
Vertical & Horizontal Scroll Bars enable you to
move through a spreadsheet when the entire
spreadsheet does not fit in the window or the
allotted space. Click the scroll arrows with the
mouse to move through the spreadsheet or to
see one line at a time
Worksheet
• A worksheet contains rows and columns that
intersect to form cells. A black border appears
around the active cell.
Columns and Rows
• A column in Excel is a vertical arrangement of
data, and a row in Excel is a horizontal
arrangement of data. There are 16,384
columns and 1,048,576 rows available in a
worksheet.
Selecting and de-selecting Cells
• To select one cell, click it.
• To select a group of cells, be sure the mouse
pointer shows as the selection mouse pointer,
click in the first cell and drag through to the last
cell (first cell will show white and all others will
be shaded).
• To de-select cells, click once in any cell – there
will always be one cell active
• To select the entire worksheet, press Ctrl + A on
the keyboard or click the blank area to the left of
column A and just above row 1.
Selecting rows or columns
• To select one column (e.g. column A), click on the
A (above the cells) – the entire column shows
selected.
• To select one row (e.g. row 1), click on the 1 (to
the left of the cells) – the entire row is selected.
• To select multiple columns click the letter for one
column and drag right or left to include other
columns
• To select multiple rows click the number for one
row and drag down or up to include other rows
Freezing Rows or Columns
When you need to keep the top row or left
column in view as you work with a large amount
of data, you can Freeze it so it’s always visible on
the screen.
1. Go to View/Freeze Panes
2. Select either Freeze Top Row (freezes row 1)
or Freeze
3. First Column (freezes column A)
4. To unfreeze, select Unfreeze Panes
Protecting Worksheets
On the Menu Tab,
• Click on review
• Click on Protect Sheet
• Select protect worksheets and contents of locked cells
• Define the scope of protection by ticking and un-ticking
the options
• Type your password (Note: You will not be able to do
anything when you forget your password)
• Re-enter the password and click Ok.
• Click Ok
Protecting Workbooks
• On the Menu Tab,
• Click on file
• Click on Protect Workbook
• Select encrypt with password
• Type your password (Note: You will not be able to
do anything when you forget your password)
• Re-enter the password and click Ok.
• Click Ok
• http://www.excel-
easy.com/vba/examples/protect-macro.html
Yacar-Yacara Consults
FUNCTIONS
Functions by categories
• Information
• Financial
• Date and Time
• Financial
• Text
• Logical
• Database
• Engineering
• Maths and Arithmetic
• Statistics
• Lookup and references
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
TEXT FUNCTIONS
CONCATENATE Joins together two or more text strings
LEFT
Returns a specified number of characters from the start of a
supplied text string
RIGHT
Returns a specified number of characters from the end of a
supplied text string
REPT
Returns a string consisting of a supplied text string, repeated
a specified number of times
LOWER Converts all characters in a supplied text string to lower case
PROPER
Converts all characters in a supplied text string to proper
case (i.e. letters that do not follow another letter are upper
case and all other characters are lower case)
UPPER
Converts all characters in a supplied text string to upper case
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
INFORMATION FUNCTIONS
CELL Returns information about the formatting, location, or
contents of a cell
INFO Returns information about the current operating
environment
ISBLANK Returns TRUE if the value is blank
ISERROR Returns TRUE if the value is any error value
ISEVEN Returns TRUE if the number is even
ISLOGICAL Returns TRUE if the value is a logical value
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
ISNA Returns TRUE if the value is the #N/A error value
ISNONTEXT Returns TRUE if the value is not text
ISNUMBER Returns TRUE if the value is a number
ISODD Returns TRUE if the number is odd
ISTEXT Returns TRUE if the value is text
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
DATE & TIME FUNCTIONS
DATE Returns a date, from a user-supplied year, month and day
TIME Returns a time, from a user-supplied hour, minute and second
TODAY Returns today's date
HOUR Returns the hour part of a user-supplied time
MINUTE Returns the minute part of a user-supplied time
SECOND Returns the seconds part of a user-supplied time
WEEKNUM
Returns an integer representing the week number (from 1 to 53) of
the year from a user-supplied date
NOW Returns the serial number of the current date and time
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
MATHS & STATS FUNCTIONS
SUM Returns the sum of a supplied list of numbers
SUMIF Adds the cells in a supplied range, that satisfy a given criteria
COUNT Counts how many numbers are in the list of arguments
COUNTBLANK Counts the number of blank cells within a range
COUNTIF Counts the number of cells within a range that meet the given
criteria
SQRT Returns the positive square root of a given number
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
STATISTICAL FUNCTIONS
COUNT Counts how many numbers are in the list of arguments
COUNTBLANK Counts the number of blank cells within a range
COUNTIF Counts the number of cells within a range that meet the given
criteria
SQRT Returns the positive square root of a given number
MAX Returns the maximum value in a list of arguments
MIN Returns the minimum value in a list of arguments
MEDIAN Returns the median of the given numbers
MODE Returns the most common value in a data set
AVERAGE Returns the average of its arguments
AVERAGEIF Returns the average (arithmetic mean) of all the cells in a range
that meet a given criteria
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
LOGICAL FUNCTIONS
FALSE Returns the logical value FALSE
IF Specifies a logical test to perform
NOT Reverses the logic of its argument
TRUE Returns the logical value TRUE
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
LOGICAL FUNCTIONS
RULES OF LOGICAL FUNCTIONS
<= for less than or equal to
>= for greater than or equal to
= equal to
-= for not equal to
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
IF(logical_test, [value_if_true], [value_if_false])
• logical_test (Required)
Any value or expression that can be evaluated to
TRUE or FALSE. For example, A10=100 is a logical
expression; if the value in cell A10 is equal to
100, the expression evaluates to TRUE.
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
IF(logical_test, [value_if_true],
[value_if_false])
• value_if_true Optional. The value that you want to be
returned if the logical_test argument evaluates to
TRUE.
• For example, if the value of this argument is the text
string “QUALIFIED" and the logical_test argument
evaluates to TRUE, the IF function returns the text
"Within budget."
• If logical_test evaluates to TRUE and the value_if_true
argument is omitted (that is, there is only a comma
following the logical_test argument), the IF function
returns 0 (zero). To display the word TRUE, use the
logical value TRUE for the value_if_true argument.
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)
EG.
• =IF(H2<22,“FAILED",“PASSED")
=IF(B2<25,"fail",IF(B2=25,"pass",IF(B2>25,"exc
el")))
YACAR-YACARA CONSULTS: Financial
Modelling (Intermediate)

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (19)

Ppt on ms excel
Ppt on ms excelPpt on ms excel
Ppt on ms excel
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
MS Excel Ch 3 PPT
MS Excel Ch 3 PPTMS Excel Ch 3 PPT
MS Excel Ch 3 PPT
 
SPSS
SPSSSPSS
SPSS
 
MS Excel Ch 2 PPT
MS Excel Ch 2 PPTMS Excel Ch 2 PPT
MS Excel Ch 2 PPT
 
090225 Excel Training
090225 Excel Training090225 Excel Training
090225 Excel Training
 
MS Excel Ch 1 PPT
MS Excel Ch 1 PPTMS Excel Ch 1 PPT
MS Excel Ch 1 PPT
 
Advanced Excel Demo
Advanced Excel DemoAdvanced Excel Demo
Advanced Excel Demo
 
Spss presentation
Spss presentationSpss presentation
Spss presentation
 
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
 
Excel 2007 - Create a chart
Excel 2007 - Create a chartExcel 2007 - Create a chart
Excel 2007 - Create a chart
 
presentationMs excel
presentationMs excelpresentationMs excel
presentationMs excel
 
Tech training workshop 3 final 090810
Tech training   workshop 3 final 090810Tech training   workshop 3 final 090810
Tech training workshop 3 final 090810
 
Kofi nyanteng excel notes
Kofi nyanteng excel notesKofi nyanteng excel notes
Kofi nyanteng excel notes
 
An introduction to spss
An introduction to spssAn introduction to spss
An introduction to spss
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
MS-EXCEL Assignment Help
MS-EXCEL Assignment HelpMS-EXCEL Assignment Help
MS-EXCEL Assignment Help
 
Data Analysis & Visualization using MS. Excel
Data Analysis & Visualization using MS. ExcelData Analysis & Visualization using MS. Excel
Data Analysis & Visualization using MS. Excel
 
Basic guide to spss
Basic guide to spssBasic guide to spss
Basic guide to spss
 

Andere mochten auch

Fundamentos de la dirección de proyectos
Fundamentos de la dirección de proyectosFundamentos de la dirección de proyectos
Fundamentos de la dirección de proyectosTensor
 
I Found a Bone by Teo Kah Leng (and historical background)
I Found a Bone by Teo Kah Leng (and historical background)I Found a Bone by Teo Kah Leng (and historical background)
I Found a Bone by Teo Kah Leng (and historical background)Lloyd Yeo
 
Fabric Science - Wool
Fabric Science - WoolFabric Science - Wool
Fabric Science - WoolShubham Singh
 
Learning Management System
Learning Management SystemLearning Management System
Learning Management SystemShubham Singh
 
Open Service Containers: a virtual machine hosting environment directly into ...
Open Service Containers: a virtual machine hosting environment directly into ...Open Service Containers: a virtual machine hosting environment directly into ...
Open Service Containers: a virtual machine hosting environment directly into ...Cisco DevNet
 
Georeferenciación de imagenes en Google Earth
Georeferenciación de imagenes en Google EarthGeoreferenciación de imagenes en Google Earth
Georeferenciación de imagenes en Google EarthCOLPOS
 
[peering bootcamp]serious peering2
[peering bootcamp]serious peering2[peering bootcamp]serious peering2
[peering bootcamp]serious peering2Yutaka Kumamoto
 
الترقيم وثيقة 9 اساسي
الترقيم وثيقة 9 اساسي الترقيم وثيقة 9 اساسي
الترقيم وثيقة 9 اساسي messaoudi mohamed
 
Best Practices of IoT in the Cloud
Best Practices of IoT in the CloudBest Practices of IoT in the Cloud
Best Practices of IoT in the CloudAmazon Web Services
 
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】tsuchimon
 
ID連携概要 - OpenID TechNight vol.13
ID連携概要 - OpenID TechNight vol.13ID連携概要 - OpenID TechNight vol.13
ID連携概要 - OpenID TechNight vol.13Nov Matake
 
Presentacion Método CPM
Presentacion Método CPMPresentacion Método CPM
Presentacion Método CPMOmar Enriquez
 
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜Masaru Kurahayashi
 
Electronic CAD Tool Options for Schematic and PCB work
Electronic CAD Tool Options for Schematic and PCB workElectronic CAD Tool Options for Schematic and PCB work
Electronic CAD Tool Options for Schematic and PCB workDavid Fowler
 
Cadenas y funciones de cadena
Cadenas y funciones de cadenaCadenas y funciones de cadena
Cadenas y funciones de cadenaTensor
 

Andere mochten auch (17)

Fundamentos de la dirección de proyectos
Fundamentos de la dirección de proyectosFundamentos de la dirección de proyectos
Fundamentos de la dirección de proyectos
 
I Found a Bone by Teo Kah Leng (and historical background)
I Found a Bone by Teo Kah Leng (and historical background)I Found a Bone by Teo Kah Leng (and historical background)
I Found a Bone by Teo Kah Leng (and historical background)
 
Fabric Science - Wool
Fabric Science - WoolFabric Science - Wool
Fabric Science - Wool
 
Learning Management System
Learning Management SystemLearning Management System
Learning Management System
 
Open Service Containers: a virtual machine hosting environment directly into ...
Open Service Containers: a virtual machine hosting environment directly into ...Open Service Containers: a virtual machine hosting environment directly into ...
Open Service Containers: a virtual machine hosting environment directly into ...
 
Georeferenciación de imagenes en Google Earth
Georeferenciación de imagenes en Google EarthGeoreferenciación de imagenes en Google Earth
Georeferenciación de imagenes en Google Earth
 
6. Propiedades de los textos
6. Propiedades de los textos6. Propiedades de los textos
6. Propiedades de los textos
 
[peering bootcamp]serious peering2
[peering bootcamp]serious peering2[peering bootcamp]serious peering2
[peering bootcamp]serious peering2
 
I. Generalidades
I. GeneralidadesI. Generalidades
I. Generalidades
 
الترقيم وثيقة 9 اساسي
الترقيم وثيقة 9 اساسي الترقيم وثيقة 9 اساسي
الترقيم وثيقة 9 اساسي
 
Best Practices of IoT in the Cloud
Best Practices of IoT in the CloudBest Practices of IoT in the Cloud
Best Practices of IoT in the Cloud
 
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】
AWS IoTで家庭内IoTをやってみた【JAWS DAYS 2016】
 
ID連携概要 - OpenID TechNight vol.13
ID連携概要 - OpenID TechNight vol.13ID連携概要 - OpenID TechNight vol.13
ID連携概要 - OpenID TechNight vol.13
 
Presentacion Método CPM
Presentacion Método CPMPresentacion Método CPM
Presentacion Método CPM
 
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜
OpenID Connect 入門 〜コンシューマーにおけるID連携のトレンド〜
 
Electronic CAD Tool Options for Schematic and PCB work
Electronic CAD Tool Options for Schematic and PCB workElectronic CAD Tool Options for Schematic and PCB work
Electronic CAD Tool Options for Schematic and PCB work
 
Cadenas y funciones de cadena
Cadenas y funciones de cadenaCadenas y funciones de cadena
Cadenas y funciones de cadena
 

Ähnlich wie Kofi Nyanteng Introduction excel modelling

9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptxSheryldeVilla2
 
Excel_Breif_Overview.pptx
Excel_Breif_Overview.pptxExcel_Breif_Overview.pptx
Excel_Breif_Overview.pptxNitish Nagar
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALRishabh Bansal
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptxPizzaM
 
Microsoft Excel.pptx
Microsoft Excel.pptxMicrosoft Excel.pptx
Microsoft Excel.pptxSIMNchannel
 
ExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxJohn Donahue
 
Introduction to MS Excel
Introduction to MS ExcelIntroduction to MS Excel
Introduction to MS ExcelTarek Dib
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxvanshikatyagi74
 
IPT Preliminary Spreadsheets
IPT Preliminary SpreadsheetsIPT Preliminary Spreadsheets
IPT Preliminary Spreadsheetsthowell1985
 
Spreadsheet Purposes
Spreadsheet PurposesSpreadsheet Purposes
Spreadsheet Purposesmike2018
 
Introduction - Using Stata
Introduction - Using StataIntroduction - Using Stata
Introduction - Using StataRyan Herzog
 

Ähnlich wie Kofi Nyanteng Introduction excel modelling (20)

Excel Training
Excel TrainingExcel Training
Excel Training
 
9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx
 
Intermediate Excel
Intermediate Excel Intermediate Excel
Intermediate Excel
 
Excel_Breif_Overview.pptx
Excel_Breif_Overview.pptxExcel_Breif_Overview.pptx
Excel_Breif_Overview.pptx
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
 
ms-excel.pptx
ms-excel.pptxms-excel.pptx
ms-excel.pptx
 
'Spreadsheet'
'Spreadsheet''Spreadsheet'
'Spreadsheet'
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptx
 
Microsoft Excel.pptx
Microsoft Excel.pptxMicrosoft Excel.pptx
Microsoft Excel.pptx
 
ExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptx
 
Excel
ExcelExcel
Excel
 
Introduction to MS Excel
Introduction to MS ExcelIntroduction to MS Excel
Introduction to MS Excel
 
Lect11
Lect11Lect11
Lect11
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
IPT Preliminary Spreadsheets
IPT Preliminary SpreadsheetsIPT Preliminary Spreadsheets
IPT Preliminary Spreadsheets
 
Kofi nyanteng excel notes
Kofi nyanteng excel notesKofi nyanteng excel notes
Kofi nyanteng excel notes
 
Spreadsheet Purposes
Spreadsheet PurposesSpreadsheet Purposes
Spreadsheet Purposes
 
Introduction - Using Stata
Introduction - Using StataIntroduction - Using Stata
Introduction - Using Stata
 

Mehr von Kofi Kyeremateng Nyanteng

Mehr von Kofi Kyeremateng Nyanteng (17)

Kofi nyanteng excel modelling (what if analysis)
Kofi nyanteng excel modelling (what if analysis)Kofi nyanteng excel modelling (what if analysis)
Kofi nyanteng excel modelling (what if analysis)
 
Kofi Nyanteng Introduction excel modelling
Kofi Nyanteng Introduction excel modellingKofi Nyanteng Introduction excel modelling
Kofi Nyanteng Introduction excel modelling
 
Kofi nyanteng excel models
Kofi nyanteng   excel modelsKofi nyanteng   excel models
Kofi nyanteng excel models
 
Kofi nyanteng excel modelling (what if analysis)
Kofi nyanteng excel modelling (what if analysis)Kofi nyanteng excel modelling (what if analysis)
Kofi nyanteng excel modelling (what if analysis)
 
Kofi nyanteng spss descriptives
Kofi nyanteng spss descriptivesKofi nyanteng spss descriptives
Kofi nyanteng spss descriptives
 
Kofi nyanteng spss associative data analysis
Kofi nyanteng spss associative data analysisKofi nyanteng spss associative data analysis
Kofi nyanteng spss associative data analysis
 
Kofi nyanteng cleaning and screning data using spss
Kofi nyanteng   cleaning and screning data using spssKofi nyanteng   cleaning and screning data using spss
Kofi nyanteng cleaning and screning data using spss
 
Marketing Mgt. notes and Planning template for SMEs
Marketing Mgt. notes and Planning template for SMEsMarketing Mgt. notes and Planning template for SMEs
Marketing Mgt. notes and Planning template for SMEs
 
Starting your business & Idea evaluation
Starting your business & Idea evaluationStarting your business & Idea evaluation
Starting your business & Idea evaluation
 
Social media planning template
Social media planning templateSocial media planning template
Social media planning template
 
Social Media
Social MediaSocial Media
Social Media
 
Developing the social media plan &amp; policy
Developing the social media plan &amp; policyDeveloping the social media plan &amp; policy
Developing the social media plan &amp; policy
 
Personal Branding 1
Personal Branding 1Personal Branding 1
Personal Branding 1
 
SPSS SLIDES
SPSS SLIDES SPSS SLIDES
SPSS SLIDES
 
SPSS
SPSSSPSS
SPSS
 
SPSS
SPSSSPSS
SPSS
 
STATA 13
STATA 13STATA 13
STATA 13
 

Kürzlich hochgeladen

Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxolyaivanovalion
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Onlineanilsa9823
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramMoniSankarHazra
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...Pooja Nehwal
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 

Kürzlich hochgeladen (20)

Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 

Kofi Nyanteng Introduction excel modelling

  • 2. What is Excel? Microsoft Excel is a spreadsheet program written and distributed by Microsoft for computers using the Microsoft Windows operating system and for Apple Macintosh computers.
  • 3. Uses of excel Data analysis Building models (Financial, Operational, Marketing, Etc) Calculator Graphical presentations
  • 4. Excel Window Overview • THE TITLE BAR Title Bar shows the name of the application, document, group, directory or file.
  • 5. MENU MAR Menu Bar contains the available menus from which you can choose commands.
  • 6. STANDARD & FORMATTING BAR Standard & Formatting Toolbar provide a quick method of working with various parts of the worksheet. Toolbars can be customized and multiple toolbars can be displayed at the same time.
  • 7. ACTIVE CELL Active Cell has a black border that appears around it.
  • 8. VERTICAL & HORIZONTAL SCROLL BARS Vertical & Horizontal Scroll Bars enable you to move through a spreadsheet when the entire spreadsheet does not fit in the window or the allotted space. Click the scroll arrows with the mouse to move through the spreadsheet or to see one line at a time
  • 9.
  • 10. Worksheet • A worksheet contains rows and columns that intersect to form cells. A black border appears around the active cell. Columns and Rows • A column in Excel is a vertical arrangement of data, and a row in Excel is a horizontal arrangement of data. There are 16,384 columns and 1,048,576 rows available in a worksheet.
  • 11. Selecting and de-selecting Cells • To select one cell, click it. • To select a group of cells, be sure the mouse pointer shows as the selection mouse pointer, click in the first cell and drag through to the last cell (first cell will show white and all others will be shaded). • To de-select cells, click once in any cell – there will always be one cell active • To select the entire worksheet, press Ctrl + A on the keyboard or click the blank area to the left of column A and just above row 1.
  • 12. Selecting rows or columns • To select one column (e.g. column A), click on the A (above the cells) – the entire column shows selected. • To select one row (e.g. row 1), click on the 1 (to the left of the cells) – the entire row is selected. • To select multiple columns click the letter for one column and drag right or left to include other columns • To select multiple rows click the number for one row and drag down or up to include other rows
  • 13. Freezing Rows or Columns When you need to keep the top row or left column in view as you work with a large amount of data, you can Freeze it so it’s always visible on the screen. 1. Go to View/Freeze Panes 2. Select either Freeze Top Row (freezes row 1) or Freeze 3. First Column (freezes column A) 4. To unfreeze, select Unfreeze Panes
  • 14. Protecting Worksheets On the Menu Tab, • Click on review • Click on Protect Sheet • Select protect worksheets and contents of locked cells • Define the scope of protection by ticking and un-ticking the options • Type your password (Note: You will not be able to do anything when you forget your password) • Re-enter the password and click Ok. • Click Ok
  • 15. Protecting Workbooks • On the Menu Tab, • Click on file • Click on Protect Workbook • Select encrypt with password • Type your password (Note: You will not be able to do anything when you forget your password) • Re-enter the password and click Ok. • Click Ok
  • 19. Functions by categories • Information • Financial • Date and Time • Financial • Text • Logical • Database • Engineering • Maths and Arithmetic • Statistics • Lookup and references YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 20. TEXT FUNCTIONS CONCATENATE Joins together two or more text strings LEFT Returns a specified number of characters from the start of a supplied text string RIGHT Returns a specified number of characters from the end of a supplied text string REPT Returns a string consisting of a supplied text string, repeated a specified number of times LOWER Converts all characters in a supplied text string to lower case PROPER Converts all characters in a supplied text string to proper case (i.e. letters that do not follow another letter are upper case and all other characters are lower case) UPPER Converts all characters in a supplied text string to upper case YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 21. INFORMATION FUNCTIONS CELL Returns information about the formatting, location, or contents of a cell INFO Returns information about the current operating environment ISBLANK Returns TRUE if the value is blank ISERROR Returns TRUE if the value is any error value ISEVEN Returns TRUE if the number is even ISLOGICAL Returns TRUE if the value is a logical value YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 22. ISNA Returns TRUE if the value is the #N/A error value ISNONTEXT Returns TRUE if the value is not text ISNUMBER Returns TRUE if the value is a number ISODD Returns TRUE if the number is odd ISTEXT Returns TRUE if the value is text YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 23. DATE & TIME FUNCTIONS DATE Returns a date, from a user-supplied year, month and day TIME Returns a time, from a user-supplied hour, minute and second TODAY Returns today's date HOUR Returns the hour part of a user-supplied time MINUTE Returns the minute part of a user-supplied time SECOND Returns the seconds part of a user-supplied time WEEKNUM Returns an integer representing the week number (from 1 to 53) of the year from a user-supplied date NOW Returns the serial number of the current date and time YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 24. MATHS & STATS FUNCTIONS SUM Returns the sum of a supplied list of numbers SUMIF Adds the cells in a supplied range, that satisfy a given criteria COUNT Counts how many numbers are in the list of arguments COUNTBLANK Counts the number of blank cells within a range COUNTIF Counts the number of cells within a range that meet the given criteria SQRT Returns the positive square root of a given number YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 25. STATISTICAL FUNCTIONS COUNT Counts how many numbers are in the list of arguments COUNTBLANK Counts the number of blank cells within a range COUNTIF Counts the number of cells within a range that meet the given criteria SQRT Returns the positive square root of a given number MAX Returns the maximum value in a list of arguments MIN Returns the minimum value in a list of arguments MEDIAN Returns the median of the given numbers MODE Returns the most common value in a data set AVERAGE Returns the average of its arguments AVERAGEIF Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 26. LOGICAL FUNCTIONS FALSE Returns the logical value FALSE IF Specifies a logical test to perform NOT Reverses the logic of its argument TRUE Returns the logical value TRUE YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 27. LOGICAL FUNCTIONS RULES OF LOGICAL FUNCTIONS <= for less than or equal to >= for greater than or equal to = equal to -= for not equal to YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 28. IF(logical_test, [value_if_true], [value_if_false]) • logical_test (Required) Any value or expression that can be evaluated to TRUE or FALSE. For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, the expression evaluates to TRUE. YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)
  • 29. IF(logical_test, [value_if_true], [value_if_false]) • value_if_true Optional. The value that you want to be returned if the logical_test argument evaluates to TRUE. • For example, if the value of this argument is the text string “QUALIFIED" and the logical_test argument evaluates to TRUE, the IF function returns the text "Within budget." • If logical_test evaluates to TRUE and the value_if_true argument is omitted (that is, there is only a comma following the logical_test argument), the IF function returns 0 (zero). To display the word TRUE, use the logical value TRUE for the value_if_true argument. YACAR-YACARA CONSULTS: Financial Modelling (Intermediate)