1. Write an Excel text function in cell Company Data!A4, which may be copied down, to string together the first and last name with only the first letter.

Slides:



Advertisements
Similar presentations
1 So, what happens here? ABCDE =(A5+B4)*A7 9 =(B2+C1)*B4.
Advertisements

Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
Visual Basic for Applications. What it does Extends the features and built in functions of Excel – Create and run VB procedures – Some may be easy to.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
 Basically, it’s a sequence of characters.  Character? › Like… a letter. › Or a number. › Or even blank space (like spaces tabs and newlines).
Programming with Microsoft Visual Basic th Edition
Advanced Lesson 1: Advanced Data Organization In Excel 2007, you can use a table to manage and organize related data. You can use the Autofilter tools.
Client & Spouse Name 1234 Client Address City, State Zip Your Name with Company Name Office: Cell: Website:
MS Excel Relative and absolute addresses Name range Comments PivotTables Data Validation Data Auditing Tracing Conditional function IF IS functions Conditional.
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Naming Ranges Functions COUNT, COUNTA, COUNTIF, COUNTIFS.
Chapter 9 Creating Formulas that Manipulate Text Microsoft Office Excel 2003.
DAY 6: EXCEL CHAPTER 2 Tazin Afrin September 05,
MIS: Chapter 7: Data Base and Data Warehouses Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS All assigned.
1 DoD Cardholder Self Registration November 21, 2008.
Chapter 6 Generating Form Letters, Mailing Labels, and a Directory
Miscellaneous Excel Combining Excel and Access. – Importing, exporting and linking Parsing and manipulating data. 1.
Manipulation Masterclass By the VB Gods. In this masterclass, we will learn how to use some of the string manipulation function such as Len, Right, Left,
Mastering Char to ASCII AND DOING MORE RELATED STRING MANIPULATION Why VB.Net ?  The Language resembles Pseudocode - good for teaching and learning fundamentals.
 Agenda: 4/24/13 o External Data o Discuss data manipulation tools and functions o Discuss data import and linking in Excel o Sorting Data o Date and.
Client & Spouse Name 1234 Client Address City, State Zip Your Name with Company Name Office: Cell: Website:
Variables and Functions. Open your Encoder program Let’s begin by opening the “Labyrinth Auto Straight” code. Save this file as Labyrinth with variables.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. a lesson approach Microsoft® Excel 2010 © 2011 The McGraw-Hill Companies,
ACIS Introduction to Data Analytics & Business Intelligence Text Mining Data Cleaning.
Page 1 Excel Text Functions MGMI 311. Page 2 Data Structure Text is Excel = Array of Characters = String (when coding) Text Function  Array Operation.
Validation final steps Stopping gaps being entered in an input.
ASSIGNMENT POINTS DUE DATE: Monday NOV 30 JAVASCRIPT, INPUT VALIDATION, REGEX See 2 nd slide for Form See 3 rd next slide for the required features.
Excel Text Functions 1. LEFT(text, [num_chars])) Returns the number of characters specified starting from the beginning of the text string Syntax Text:
1 CSE 2337 Chapter 7 Organizing Data. 2 Overview Import unstructured data Concatenation Parse Create Excel Lists.
1. Write an Excel text function in cell Company Data!A4, which may be copied down, to string together the first and last name with only the first letter.
Chapter 23 The String Section (String Manipulation) Clearly Visual Basic: Programming with Visual Basic nd Edition.
02/03/ Strings Left, Right and Trim. 202/03/2016 Learning Objectives Explain what the Left, Right and Trim functions do.
Lesson 3: Using Formulas
Data Integration: Excel Data Manipulation Tips & Techniques
Logical Functions Excel Lesson 10.
Excel STDEV.S Function.
Company Name Products and Services
Miscellaneous Excel Combining Excel and Access.
Spring cleaning with Fabrikam
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Event Title Event Intro Event Subtitle Date Time Location
Title of Your Event Event Date Event Time
Company Name Products and Services
Spring cleaning with Fabrikam
Title of Your Event Event Date Event Time
Spring cleaning with Fabrikam
Directions Log In Sharpen All Pencils.
B Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
MIS2502: Data Analytics ICA #4. ETL - Excel Basics
B Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
MIS2502: Data Analytics ETL - Excel Basics
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Event Title Event Intro Event Subtitle Date Time Location
RECEIPT [Receipt description]
Work Order Company Name 123 Your Street Your City, ST, 01234
SALES RECEIPT Downloaded from
INVOICE Downloaded from
[Payee Name] [Street Address] [City, ST ZIP Code]
DELIVERY RECEIPT DELIVERY RECEIPT No : Date : Customer
MS Excel – Analyzing Data
Headline Headline Headline
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Company Name Products and Services
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Presentation transcript:

1. Write an Excel text function in cell Company Data!A4, which may be copied down, to string together the first and last name with only the first letter of each begin capitalized. =PROPER(CONCATENATE('Customer Data'!B4," ",'Customer Data'!A4))

2. Write an Excel text function in cell Company Data!B4, which may be copied down to display the address with the letters, “St.” instead of “Street”. =SUBSTITUTE('Customer Data'!E4,"Street","St.")

3. Write an Excel text function in cell Company Data!C4, which may be copied down to display only the City. =LEFT('Customer Data'!F4,FIND(",",'Customer Data'!F4)-1)

4. Write an Excel text function in cell Company Data!D4, which may be copied down to display only the State. =MID('Customer Data'!F4,FIND(",",'Customer Data'!F4)+2,99) =RIGHT('Customer Data'!F4,LEN('Customer Data'!F4)- FIND(",",'Customer Data'!F4)-1) =MIDB('Customer Data'!F4,FIND(",",'Customer Data'!F4)+2,90)

5. Write an Excel text function in cell Company Data!E4, which may be copied down, to display the words, “INVALID ZIPCODE”, if the billing zip code is does not equal 5 characters. (Note: A blank zip code is valid.) =IF(OR(LEN('Customer Data'!J4)=5,LEN('Customer Data'!J4) =0), " “,"INVALID ZIPCODE")

6. Write an Excel text function in cell Company Data!F4, which may be copied down, to determine TRUE/FALSE if the company should use the customer’s billing address. =AND(EXACT('Customer Data'!E4,'Customer Data'!H4), EXACT('Customer Data'!F4,'Customer Data'!I4), EXACT('Customer Data'!G4, 'Customer Data'!J4))

7. Write an Excel text function in cell Company Data!G4, which may be copied down, to delete extraneous spaces in the Cleaning Type cells. =TRIM('Customer Data'!C4)