1 CSE 2337 Chapter 7 Organizing Data. 2 Overview Import unstructured data Concatenation Parse Create Excel Lists.

Slides:



Advertisements
Similar presentations
Excel Lesson 11 Improving Data Accuracy
Advertisements

 Microsoft Excel is an electronic spreadsheet.  As with a paper spreadsheet, you can use Excel to organize your data into rows and columns and to perform.
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.
Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
Excel Objects, User Interface, and Data Entry. ◦ Application Window  Title Bar  Menu Bar  Toolbars  Status Bar  Worksheet Window  Worksheet Input.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
CS1100: Computer Science and Its Applications Text Processing Created By Martin Schedlbauer
Advanced Programming Collage of Information Technology University of Palestine, Gaza Prepared by: Mahmoud Rafeek Alfarra Lecture 16: Working with Text.
Spreadsheets Objective 6.02
Chapter 06: Lecture Notes (CSIT 104) 1 Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Copyright © 2008 Prentice-Hall. All rights reserved.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Chapter 9 Creating Formulas that Manipulate Text Microsoft Office Excel 2003.
DAY 6: EXCEL CHAPTER 2 Tazin Afrin September 05,
DAY 6: MICROSOFT EXCEL – CHAPTER 2 CONTD. MICROSOFT EXCEL – CHAPTER 3 Akhila Kondai September 04, 2013.
Importing Data Text Data Parsing Scrubbing Data June 21, 2012.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel
1 Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall. by Mary Anne Poatsy, Keith Mulbery, Jason Davidson Chapter 10 Imports, Web Queries,
Excel has a number of Count Functions that will total the number of cells in a selected range. We’re going to look at: COUNT COUNTA COUNTBLANK COUNTIF.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 9 More About Strings.
MICROSOFT EXCEL – CHAPTER 2 CONTD. MICROSOFT EXCEL – CHAPTER 10 Sravanthi Lakkimsetty Aug 31,2015
Miscellaneous Excel Combining Excel and Access. – Importing, exporting and linking Parsing and manipulating data. 1.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 2 Input, Processing, and Output.
 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.
With Microsoft Office 2007 Intermediate© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Office 2007 Intermediate.
Copyright © 2008 Pearson Prentice Hall. All rights reserved Chapter 6 Data Tables and Amortization Tables Exploring Microsoft Office Excel 2007.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
Working With Files. Sources of Data Adding data to a spreadsheet can be done in several ways, including: – Type it in piece by piece – Read it from a.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley STARTING OUT WITH Python Python First Edition by Tony Gaddis Chapter 8 Working.
Clearly Visual Basic: Programming with Visual Basic 2008 Chapter 24 The String Section.
Guide to Oracle 10g ITBIS373 Database Development Lecture 4a - Chapter 4: Using SQL Queries to Insert, Update, Delete, and View Data.
Instructor: Craig Duckett Lecture 08: Thursday, October 22 nd, 2015 Patterns, Order of Evaluation, Concatenation, Substrings, Trim, Position 1 BIT275:
Project 1: Using Arrays and Manipulating Strings Essentials for Design JavaScript Level Two Michael Brooks.
ACIS Introduction to Data Analytics & Business Intelligence Text Mining Data Cleaning.
1 CSE Computer Use: Fundamentals Week 5: Glade Manual Chapter 4 Gates and Circuits (Dale & Lewis Ch. 4)
GET 236: E NTERPRISE DATA ANALYSIS : TOOLS AND TECHNIQUES W EEK 04: F ORMATTING AND F UNCTIONS.
CS1100: Computer Science and Its Applications Text Parsing in Excel Martin Schedlbauer, Ph.D.
Processing Text Excel can not only be used to process numbers, but also text. This often involves taking apart (parsing) or putting together text values.
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 5 Retrieving Data with Lookups.
Computer Programming 2 Lab (1) I.Fatimah Alzahrani.
MICROSOFT EXCEL – CHAPTER 10 Sravanthi Lakkimsetty Jan 20,2016
Logical Functions Excel Lesson 10.
Excel STDEV.S Function.
Regular Expressions Upsorn Praphamontripong CS 1110
Adirondack Solutions Users Group 2017
Miscellaneous Excel Combining Excel and Access.
Computer Programming ||
Creates the file on disk and opens it for writing
Containers and Lists CIS 40 – Introduction to Programming in Python
Chapter 6 Filters.
Excel REPT Function.
SAS in Data Cleaning.
WEB PROGRAMMING JavaScript.
Creates the file on disk and opens it for writing
CS 106 Computing Fundamentals II Chapter 66 “Working With Strings”
AUTOCALL MACROS- A QUICK OVERVIEW
String Manipulation and More Controls
Microsoft Excel Chapters 2 &3
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Microsoft Visual Basic 2005: Reloaded Second Edition
Topic 6 Lesson 1 – Text Processing
Topics Basic String Operations String Slicing
Spreadsheets Objective 6.02
String Processing 1 MIS 3406 Department of MIS Fox School of Business
Spreadsheets Objective 6.02
Topics Basic String Operations String Slicing
MS Excel – Analyzing Data
Excel Tips & Tricks July 18, 2019.
REACH Computer Resource Center
Topics Basic String Operations String Slicing
Presentation transcript:

1 CSE 2337 Chapter 7 Organizing Data

2 Overview Import unstructured data Concatenation Parse Create Excel Lists

3 CSV Files –Comma Separated Values –aka Comma Delimited files –Can easily import into Excel –Must know where you’re going with imported data

4 Concatenate Combines values in a range of cells into one text item in a new cell =CONCATENATE(text1,text2,…) Can have multiple arguments

5 Example

6 Left and Right May be used to remove incorrect entries RIGHT function –Returns last character(s) in a text string, based on number of characters specified –=RIGHT(text,num_chars) LEFT function –Extracts characters from the beginning or “left side” of a text string –=LEFT(text,num_chars)

7 Right Example

8 Trim TRIM function –Removes all spaces in a text string except for the single spaces between words –=TRIM(text)

9 Trim

10 Finding Characters FIND function –Returns the starting position of one text value within another text value –Case sensitive –=FIND(find_text,within_text,start_num) SEARCH function –Does same thing as FIND function, but is not case sensitive

11 Find

12 Other Text Functions

13 Other Text Functions