Excel Functions. Part 1. Introduction 2 An Excel function is a formula or a procedure that is performed in the Visual Basic environment, outside the.

Slides:



Advertisements
Similar presentations
TWO STEP EQUATIONS 1. SOLVE FOR X 2. DO THE ADDITION STEP FIRST
Advertisements

Numbers Treasure Hunt Following each question, click on the answer. If correct, the next page will load with a graphic first – these can be used to check.
1
Feichter_DPG-SYKL03_Bild-01. Feichter_DPG-SYKL03_Bild-02.
© 2008 Pearson Addison Wesley. All rights reserved Chapter Seven Costs.
Copyright © 2003 Pearson Education, Inc. Slide 1 Computer Systems Organization & Architecture Chapters 8-12 John D. Carpinelli.
Chapter 1 The Study of Body Function Image PowerPoint
BASIC SKILLS AND TOOLS USING ACCESS
Copyright © 2011, Elsevier Inc. All rights reserved. Chapter 6 Author: Julia Richards and R. Scott Hawley.
Author: Julia Richards and R. Scott Hawley
1 Copyright © 2013 Elsevier Inc. All rights reserved. Appendix 01.
Properties Use, share, or modify this drill on mathematic properties. There is too much material for a single class, so you’ll have to select for your.
UNITED NATIONS Shipment Details Report – January 2006.
We need a common denominator to add these fractions.
1 RA I Sub-Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Casablanca, Morocco, 20 – 22 December 2005 Status of observing programmes in RA I.
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Title Subtitle.
Properties of Real Numbers CommutativeAssociativeDistributive Identity + × Inverse + ×
Exit a Customer Chapter 8. Exit a Customer 8-2 Objectives Perform exit summary process consisting of the following steps: Review service records Close.
Create an Application Title 1A - Adult Chapter 3.
Multiplying binomials You will have 20 seconds to answer each of the following multiplication problems. If you get hung up, go to the next problem when.
FACTORING ax2 + bx + c Think “unfoil” Work down, Show all steps.
Year 6 mental test 5 second questions
Year 6 mental test 10 second questions
1 Discreteness and the Welfare Cost of Labour Supply Tax Distortions Keshab Bhattarai University of Hull and John Whalley Universities of Warwick and Western.
Rhesy S.ppt proRheo GmbH
Solve Multi-step Equations
REVIEW: Arthropod ID. 1. Name the subphylum. 2. Name the subphylum. 3. Name the order.
PP Test Review Sections 6-1 to 6-6
EU market situation for eggs and poultry Management Committee 20 October 2011.
EU Market Situation for Eggs and Poultry Management Committee 21 June 2012.
Vanderbilt Business Objects Users Group 1 Reporting Techniques & Formatting Beginning & Advanced.
1 Undirected Breadth First Search F A BCG DE H 2 F A BCG DE H Queue: A get Undiscovered Fringe Finished Active 0 distance from A visit(A)
2 |SharePoint Saturday New York City
Green Eggs and Ham.
Exarte Bezoek aan de Mediacampus Bachelor in de grafische en digitale media April 2014.
VOORBLAD.
Benchmark Series Microsoft Excel 2013 Level 2
1 public class Newton { public static double sqrt(double c) { double epsilon = 1E-15; if (c < 0) return Double.NaN; double t = c; while (Math.abs(t - c/t)
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
1 RA III - Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Buenos Aires, Argentina, 25 – 27 October 2006 Status of observing programmes in RA.
Factor P 16 8(8-5ab) 4(d² + 4) 3rs(2r – s) 15cd(1 + 2cd) 8(4a² + 3b²)
Basel-ICU-Journal Challenge18/20/ Basel-ICU-Journal Challenge8/20/2014.
1..
CONTROL VISION Set-up. Step 1 Step 2 Step 3 Step 5 Step 4.
© 2012 National Heart Foundation of Australia. Slide 2.
Understanding Generalist Practice, 5e, Kirst-Ashman/Hull
Note to the teacher: Was 28. A. to B. you C. said D. on Note to the teacher: Make this slide correct answer be C and sound to be “said”. to said you on.
Model and Relationships 6 M 1 M M M M M M M M M M M M M M M M
25 seconds left…...
Januar MDMDFSSMDMDFSSS
Analyzing Genes and Genomes
We will resume in: 25 Minutes.
©Brooks/Cole, 2001 Chapter 12 Derived Types-- Enumerated, Structure and Union.
Essential Cell Biology
Intracellular Compartments and Transport
PSSA Preparation.
Essential Cell Biology
Immunobiology: The Immune System in Health & Disease Sixth Edition
1 Chapter 13 Nuclear Magnetic Resonance Spectroscopy.
Energy Generation in Mitochondria and Chlorplasts
Murach’s OS/390 and z/OS JCLChapter 16, Slide 1 © 2002, Mike Murach & Associates, Inc.
Benchmark Series Microsoft Excel 2013 Level 2
Excel Functions. Part 1. Introduction 2 An Excel function is a formula or a procedure that is performed in the Visual Basic environment, outside the.
Presentation transcript:

Excel Functions

Part 1. Introduction 2

An Excel function is a formula or a procedure that is performed in the Visual Basic environment, outside the Excel spreadsheet. 3

For example, the sum of two variables can be evaluated in an Excel spreadsheet as follows: 4

Sumx + y x =5 Y =3 Sum =8 5 Sum of two variables in an Excel spreadsheet

This same sum can be done in the environment of Visual Basic (VB) 6

You can define a function called "Sum", which receives the value of two inputs "x" and "y" and returns the value of the sum of them 7

How to build the function "Sum" 8

- Click on the "Programmer" tab 9

10 If the tab is not available, see Note 1 "Activate tab" at the end of the document.

- Click on the "Programmer" tab 11

Click on "view code" 12

The "Visual Basic" ambient is open 13

Function code 14

Function code 15 The codes are written in the VB "Modules"

Function code 16 The codes are written in the VB "Modules" To open a module

Function code 17 The codes are written in the VB "Modules" To open a module Click right button on the left side window

Function code 18 The codes are written in the VB "Modules" To open a module Click right button on the left side window It opens a window

19 Select Insert

Click Module 20

Appears the new created VB module, with the name Module1. 21 This name can be changed later by a more suitable one.

The right window displays a flashing line 22

The right window displays a flashing line 23 The module is now ready for use

Sum Function Code 24

Código de la función Suma 25 In the right window type the function name followed by the dependent variables.

Código de la función Suma 26 In the right window type the function name followed by the dependent variables Function Suma(x,y)

Código de la función Suma 27 In the right window type the function name followed by the dependent variables. Function Suma(x,y) When you "Enter", VB automatically puts the final line of the function.

Sum Function Code 28 In the right window type the function name followed by the dependent variables. Function Suma(x,y) End Function

The new code must be written between these two commands. 29

The new code must be written between these two commands. 30 In this case, the code consists of a single line

The new code must be written between these two commands. 31 In this case, the code consists of a single line Suma = x + y

32 The complete function looks like

x =5 Y =3 Sum = =SUMA(C5,C6) Sum =8 33 Application of the Sum function in the Excel spreadsheet

End of Part 1. Introduction 34

Activating the "Programmer" tab 35

Activating the "Programmer" tab 36 Nota 1 To activate the Programmer tab 1. Click the File tab. 2. Under Help, click Options. 3. Click Customize Ribbon. 4. Select the Developer check box.