Microsoft Excel & VBA Day 3. Objectives for today: You will be able to… …implement functions in Excel. …write simple functions using VBA.

Slides:



Advertisements
Similar presentations
Lecture 9: Character and String
Advertisements

CREATING a HUFFMAN CODE EVERY EGG IS GREEN E ///// V/V/ R // Y/Y/ I/I/ S/S/ N/N/ Sp /// V/V/ Y/Y/ I/I/ S/S/ N/N/ R // Sp /// G /// E /////
Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
Session 5 of 10 Review + Multiple Sprites
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
What is the ASCII Code? The American Standard Code for Information Interchange is a character-encoding scheme based on the ordering of the English alphabet.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Lesson Objectives Explain the use of binary codes to represent characters Explain the term “Character set” Describe with examples (for examples ASCII and.
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Computer Science & Engineering 2111 Data Validation and Macros 1 CSE 2111 Lecture-Data Validation and Macros.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
PI / Acton Software WinX32 Automation Interface Examples.
Computer Structure & Architecture 7c - Data Representation.
INFOCODING BASICS & EXAMPLES OF CURRENT USE Introduction to Computer Science Using Ruby (c) 2010 Gideon Frieder.
Hans-Peter Plag October 9, 2014 Session 2 Storing Information File Formats Accessing Information Processing Information.
Binary Code.
Characters In Java single characters are represented using the data type char. Character constants are written as symbols enclosed in single quotes, for.
1.11, 1.12, 1.13, 1.14, 1.18, 1.20, 1.23, 1.24, 1.25, 1.32, 1.33.
1.7 BINARY CODES BCD Code (Binary –Coded Decimal ) BCD Addition
Introduction to Video Game Programming (VGP) Mr. Shultz.
Plan for today (13 July) Introduce time value of money (TVM) by illustrating how TVM can help us understand why maximizing shareholder wealth is an appropriate.
Work Flow Control and Documentation Name: J. Douglas Wells Sponsor: Molded Plastic Ventures (MPV)
©Contrinex JDC PPT_XF_BinHexDecASCII Encoding information J.-D. Chatelain.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
Welcome to SRT 2 Mr. Davis and Mr. Evans A1/B4 - B310.
Time Value of Money 1 Future Value= PV(1 + I)T How much will I have…..Pages
SEC (1.4) Representing Information as bit patterns.
Representing Characters in a computer Pressing a key on the computer a code is generated that the computer can convert into a symbol for displaying or.
Agenda Character representation Numerical Conversions ASCII EBCDIC
Signed Binary Numbers Arithmetic Subtraction – In 2’s-complement form: Example: 1.Take the 2’s complement of the subtrahend (including the sign bit) and.
 How do you represent a number with no value?  Mathematicians defined the “number” 0 (zero)  How do we represent a string with no value?  Use an empty.
OFF = 0 ON = 1 = 63 BINARY system
After completing this lesson, you will be able to: Identify the basic features of productivity programs. Lesson: 1 Introduction to Productivity Programs.
Characters CS240.
Representing Characters in a Computer System Representation of Data in Computer Systems.
Information Coding Schemes Group Member : Yvonne Tiffany Jurifah bt Junaidi Clara Jane George.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
Institute for the Protection and Security of the Citizen HAZAS – Hazard Assessment ECCAIRS Technical Course Provided by the Joint Research Centre - Ispra.
Microsoft Excel & VBA Day 2 Log onto a computer..
Lecture 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
VB.NET and Excel VB.NET allows you to write code to manipulate Excel. You can create, open, and save Excel files. You can read data from Excel. You can.
Clear Lines Consulting · clear-lines.comApril 21, 2010 · 1 The Joy of Pex
The ASCII Alphanumeric Code What is it? Why use it? How do we use it?
1.4 Representation of data in computer systems Character.
Lecture Coding Schemes. Representing Data English language uses 26 symbols to represent an idea Different sets of bit patterns have been designed to represent.
1 Non-Numeric Data Representation V1.0 (22/10/2005)
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Lesson Objectives Aims You should be able to:
Data Transfer ASCII FILES.
1.11, 1.12, 1.13, 1.14, 1.18, 1.20, 1.23, 1.24, 1.25, 1.32, 1.33 ( 47 )8 = ( )2 ( 47 )16 = ( )2 ( 20 )10.
What is Binary? Binary is a two-digit (Base-2) numerical system, which computers use to process and store data. The reason computers use the binary system.
Representing Information as bit patterns
Data Encoding Characters.
How to open password- protected Excel file
How does a computer represent everything using just zeros and ones?
أ.إسراء الطريقي أ. هاله الشملان , 102 تقن , المعمل الخامس
Microsoft Excel & VBA Day 7.
Digital Encodings.
Професионално портфолио
Starter Questions Calculate the area of the following shapes :- a. 4m
Понарамалық сабақ.
Table 1.1 Powers of Two.
Unit 3 Review (Calculator)
Learning Intention I will learn how computers store text.
Calculate 9 x 81 = x 3 3 x 3 x 3 x 3 3 x 3 x 3 x 3 x 3 x 3 x =
C Programming Language
Presentation transcript:

Microsoft Excel & VBA Day 3

Objectives for today: You will be able to… …implement functions in Excel. …write simple functions using VBA.

Format of functions within VBA Function Function_Name(variables) … Function_Name = … End Function

Challenge #1 Write a function in VBA to calculate the area of a triangle.

Challenge #2 Write a function in VBA to calculate windchill.

ASCII American Standard Code for Information Interchange Developed in the 1960’s 128 characters 33 are non-printing control characters

ASCII American Standard Code for Information Interchange Developed in the 1960’s 128 characters 33 are non-printing control characters

Using functions from Excel WorksheetFunction.FunctionName( …)

Select Case Select Case ThingToCheck Case … … Case … … End Select

Challenge #3 Write a function in VBA to generate passwords.

Objectives for today: You will be able to… …implement functions in Excel. …write simple functions using VBA.