MID, CONCANTENATE, FIND, SUBTITUTE, LOWER, UPPER, DATE, NOW

Slides:



Advertisements
Similar presentations
1 After completing this lesson, you will be able to: Check spelling in a document. Check for grammatical errors. Find specific text. Replace specific text.
Advertisements

Manipulating Strings String Functions. VB provides a large number of functions that facilitate working with strings. These are found in Microsoft.VisualBasic.Strings.
1 So, what happens here? ABCDE =(A5+B4)*A7 9 =(B2+C1)*B4.
Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
1 Working with String Duo Wei CS110A_ Empty Strings An empty string has no characters; its length is 0. Not to be confused with an uninitialized.
Intro to Python Welcome to the Wonderful world of GIS programing!
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
Tableau Lab 2 Calculations and Parameters. Data Set The fundraising data set uses a JOIN to combine two worksheets - Funds and Pledges - from one source.
 Basically, a sequence of characters  Character? › Like… a letter › Or a number › Or even blank space.
Middle on the Normal distribution. Z = =.1003 What is going on here? It is just an exercise in using.
Introduction to Oracle9i: SQL1 Selected Single-Row Functions.
 UPPER – Changes stuff to UPPERCASE › “cookie” becomes “COOKIE”  lower – Anybody wanna guess? › “DuH LoLoLoL” becomes “duh lololol”  Valuable for checking.
On to… string operations & functions. Concatenation (&) §When we want to combine two character strings into one new (longer) string, we can concatenate.
Chapter 06: Lecture Notes (CSIT 104) 1 Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Copyright © 2008 Prentice-Hall. All rights reserved.
Computer Science 1000 Spreadsheets II Permission to redistribute these slides is strictly prohibited without permission.
Chapter 9 Creating Formulas that Manipulate Text Microsoft Office Excel 2003.
EXCEL FUNCTIONS MIS THE BASICS  LEFT(), RIGHT(), MID()  Keep X characters from string  CONCATENATE()  Join two strings together  TRIM()  Drop.
Importing Data Text Data Parsing Scrubbing Data June 21, 2012.
MIS: Chapter 7: Data Base and Data Warehouses Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS All assigned.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
1 Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall. by Mary Anne Poatsy, Keith Mulbery, Jason Davidson Chapter 10 Imports, Web Queries,
Excel Functions Abby Wiertzema
The Web Wizard’s Guide To JavaScript Chapter 6 Working with Dates and Times.
Mastering Char to ASCII AND DOING MORE RELATED STRING MANIPULATION Why VB.Net ?  The Language resembles Pseudocode - good for teaching and learning fundamentals.
Chapter 5 Selected Single-Row Functions. Chapter Objectives  Use the UPPER, LOWER, and INITCAP functions to change the case of field values and character.
 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.
MS-Excel XP Lesson 6. NOW Function 1.Returns the current date and time formatted as a date and time. 2.A1  =NOW() 3.A2  Select Insert menu Select Function.
Formula? Unit?.  Formula ?  Unit?  Formula?  Unit?
Copyright © 2008 Pearson Prentice Hall. All rights reserved Chapter 6 Data Tables and Amortization Tables Exploring Microsoft Office Excel 2007.
Using Spreadsheets In Analytical Chemistry Chap 3. Using Spreadsheets in Analytical Chemistry (1) Getting started : Excel (2) The basic usage  basic usage.
Homework Discussion Homework 4 (Glade Manual Chapter 4) More on Logical, Information and Text Functions.
Working with the Data Table USINGQTP65-STUDENT-01A.
EXCEL Intro to Microsoft Excel. Objectives for the Week Content ObjectivesLanguage Objectives I can create and manipulate charts, graphs, and reports.
Advanced SELECT Queries CS 146. Review: Retrieving Data From a Single Table Syntax: Limitation: Retrieves "raw" data Note the default formats… SELECT.
IFS Intro to Data Management Chapter 5 Getting More Than Simple Columns.
Page 1 Excel Text Functions MGMI 311. Page 2 Data Structure Text is Excel = Array of Characters = String (when coding) Text Function  Array Operation.
1 CSE Computer Use: Fundamentals Week 5: Glade Manual Chapter 4 Gates and Circuits (Dale & Lewis Ch. 4)
Variables and Strings. Variables  When we are writing programs, we will frequently have to remember a value for later use  We will want to give this.
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 Inside Module 8 Extracting Data Page n Using the Extract command2 n Coercion3 n $-functions4 n Extract from a table7.
[ ] Square brackets enclose syntax options { } Braces enclose items of which only one is required | A vertical bar denotes options … Three dots indicate.
Lab String Concatenation String s3 = s1.concat(s2); String s3 = s1 + s2; s1 + s2 + s3 + s4 + s5 same as (((s1.concat(s2)).concat(s3)).concat(s4)).concat(s5);
Gollis University Faculty of Computer Engineering Chapter Five: Retrieval, Functions Instructor: Mukhtar M Ali “Hakaale” BCS.
Chapter Four Common facilities of procedural languages.
Logical Functions Excel Lesson 10.
Excel STDEV.S Function.
String Methods Programming Guides.
Creates the file on disk and opens it for writing
Excel REPT Function.
Analyzing Data Using Formulas
Using Spreadsheets In Analytical Chemistry
Has Payment, for AMI, to above National Average Hospitals, Increased?
F - Ratio Table Degrees of Freedom for the Factor
Manipulating Text In today’s lesson we will look at:
Creates the file on disk and opens it for writing
TITLE TITLE TITLE TITLE
MIS2502: Data Analytics ICA #4. ETL - Excel Basics
The Variance How to calculate it.
Microsoft Excel Chapters 2 &3
MIS2502: Data Analytics ETL - Excel Basics
String.
String Processing 1 MIS 3406 Department of MIS Fox School of Business
Introduction to Computer Science
CSE 231 Lab 3.
Lecture 5 SQL FUNCTIONS.
MS Excel – Analyzing Data
The Web Wizard’s Guide To JavaScript
REACH Computer Resource Center
Presentation transcript:

MID, CONCANTENATE, FIND, SUBTITUTE, LOWER, UPPER, DATE, NOW TEXT AND DATE FORMULAS MID, CONCANTENATE, FIND, SUBTITUTE, LOWER, UPPER, DATE, NOW

TEXT FORMULAS MID Return the characters from a middle text of strings FORMULA : MID(TEXT,START_POS,TOTAL_CHAR) Example: MID(“Bummi Dwi Putera”,1,9) // Bummi Dwi

CONCATENATE Joining The String/Text/Char FORMULAS CONCATENATE(TEXT,OTHER_TEXT,N_TEXT) Example CONCATENATE (“BUM”,”M”,”I”) //BUMMI

FIND Return position of Character found on the Strings FORMULAS FIND(FIND_TEXT,WITHIN_TEXT,START_NUM) Example FIND(“DWI”,”BUMMI DWI”,1) // 7

SUBTITUTE Replace existing text with new text within a strings FORMULAS SUBTITUTE(TEXT,OLD_TEXT,NEW_TEXT) Example SUBTITUTE(“BUMI”,”MI”,”MMI”) //BUMMI

LOWER and UPPER CASE Convert STRINGS To Lower / Upper Case FORMULAS LOWER(STRINGS) UPPER(STRINGS) Example LOWER(“APA AJA dah”) // apa aja dah UPPER(“apa AJA Dah”) // APA AJA DAH

DATE FORMULAS DATE and NOW Return value of date format FORMULAS DATE(year,month,day) NOW() Example DATE(2012,03,04) // 2012/03/04 NOW() // 3/24/2012 2:43

Raw Data Table

Format Report

TEXT PROCESSING IN EXCEL If We use, same formula This Error show up for this section, it because The String just have one word