Lab 4 - Data Acquisition

Size: px
Start display at page:

Download "Lab 4 - Data Acquisition"

Transcription

1 Spring 11 Lab 4 - Data Acquisition Lab 4-1 Lab 4 - Data Acquisition Format This lab will be conducted during your regularly scheduled lab time in a group format. Each student is responsible for learning all of the material, so I strongly recommend that you rotate roles about every 20 minutes. You may ask the lab monitor for assistance if needed, but successful completion of the lab is your responsibility. Report A short, informal report is due from each lab group at 8:00 AM on the Friday of the week after you complete this lab. This short report does NOT need to follow the formal report format described in the ME 360 course manual. Exercise #5.4 requires two plots (follow all ME 360 lab report rules) and a short table of information about the collected data. Exercises #5.1, #5.2, and #5.3 require screen shots from your wiring diagrams for this lab. When you have completed each of the first three exercises, do the following: 1. Tile the front panel and wiring diagram front panels of you LabVIEW VI (virtual instrument) by pressing Ctrl-T. 2. Press Alt and Print Screen simultaneously to store a screen shot into the clipboard. 3. Open PowerPoint and paste the screen shot onto a page (Edit>>Paste). Use a landscape view to match the orientation of the screen to the page. The pasted image should cover most of the page. 4. When you have completed all three of the LabVIEW exercises you should have a 3 page PowerPoint presentation that can be saved and printed (outside the 360 lab). Introduction Many of the personal computers located in the ME laboratories are equipped with data acquisition systems. In the ME 360 labs we use National Instruments data acquisition boards and the LabVIEW software. The purpose of Lab #5 is to give you some experience using LabVIEW to accomplish typical data acquisition tasks. This lab will not make you a LabVIEW expert, but will provide a foundation upon which you can build in subsequent electives and projects.

2 Spring 11 Lab 4 - Data Acquisition Lab 4-2 Introduction to National Instruments LabVIEW 8 and Data Acquisition (NI-DAQmx) Jeffery Radigan Ohio State University Introduction In this lab, you will create a LabVIEW virtual instrument (VI) to read data, analyze it and display it to the screen. Through the use of virtual instrumentation to acquire the voltages from a battery, you will learn how measurement devices interface with both the computer and the physical world. Objectives Take data measurements using computer-based instrumentation Become familiar with the LabVIEW and DAQ system environment Understand the flow of data through acquiring, analyzing and presenting LabVIEW Creating LabVIEW systems begins with an understanding of PC-based data acquisition. When data is collected from an instrument it passes through three areas of interest. At the lowest level a sensor detects a physical phenomenon and sends it back via a signal to the PC. There, a device known as a Data Acquisition (DAQ) card takes the signal and converts it into digital data that can be processed by the computer. After the data has been collected, steps can be taken to make an analysis and a meaningful conclusion can be drawn. LabVIEW provides the order and structure for these steps to occur. The two parts to a LabVIEW VI are the front panel, a set of controls for the user to manipulate while the system is running and the block diagram, a collection of actions bound together like a flow-chart. The front panel can be customized for any look and feel desired, while the block diagram can be manipulated to clearly show the flow of data. When a LabVIEW system is running, data is moved back and forth between the block diagram and the front panel. It is important that the two be thought of together as a system rather than running independently. The front panel of a LabVIEW VI contains controls and indicators. As their name suggests, controls are the inputs into the system, and the indicators are the outputs. A simple example of what is possible with the front panel is shown in Figure 1.

3 Spring 11 Lab 4 - Data Acquisition Lab 4-3 Figure1. Example Front Panel. In the above example there are six different buttons, five control buttons for the radio and one STOP button which can be pressed with the mouse. To begin, the user would click on the Run button. Then, when one of the five radio buttons is pressed the number of the button appears in the Index of Selection box, the indicator for the system. The LabVIEW system will run continuously displaying the last button pressed until the STOP button is pressed. Alternatively, there is a button shaped like a stop sign called the Abort Execution button to the right of the Run button that can be used to halt the system. It is always better to stop the program with the Stop button on the front panel, however, instead of the Abort Execution button. Buttons and numeric indicators are not the only things that can be placed on the front panel. An assortment of graphical displays, lights, meters, sliders, and other controls and indicators found on traditional instruments such as function generators and oscilloscopes can be used on the VI front panel to make the system interactive and easy to use. The block diagram is where the user can link all of the parts of a LabVIEW system together. Initially the user places the function icons that correspond to the actions they wish the system to take on the block diagram. They are then wired together in a set order to produce a coherent path through the system. To illustrate the flow of a block diagram let us go through the following diagram on the next page together.

4 Spring 11 Lab 4 - Data Acquisition Lab 4-4 Figure 2. Block Diagram for a Temperature Data Logger. Note: This block diagram does not correspond to the front panel in the previous example. The flow of data in the LabVIEW block diagram in Figure 2 goes from left to right and top to bottom. This is not always the case, but it is a good practice to format the block diagram so that it is easy to read. The system begins by prompting the user for the name of a file to save the data to. If no name is entered, the file receives the default name Temp.dat. The system then goes on to record the current temperature, date, and time to that file. To log to a file, the system creates a new file, writes the data to that file, and then closes the file so it can be used with other programs. Notice here that closing the file does not destroy the file, it only means that LabVIEW is finished using it. In addition to a graphical measurement and data acquisition tool, LabVIEW can also be used for general purpose program creation. Although the original use of LabVIEW was for measurement and data acquisition, it now has the power to be incorporated into many other areas as a user friendly alternative to text based programming. LabVIEW is a compiled graphical programming language for use by engineers and scientists. All of the basic functions of a traditional text based language such as file input and output, data structure, and program flow are present in LabVIEW. One does not need to be a programmer to use LabVIEW, but for those programmers who choose to use it, LabVIEW has enormous potential as a highly productive, visual language.

5 Spring 11 Lab 4 - Data Acquisition Lab 4-5 Data Acquisition and NI-DAQ In order to acquire data and process it using the PC, there must be some interface for connecting sensors to the computer. This is done through DAQ cards that plug into the PC. At the lab station will be a computer and a set of probes that will plug into that computer. This system can take various types of measurement and instead of having a stand alone instrument for each type of measurement, the PC and DAQ card can be configured to take any one of them. The PC can also be an alternative to collecting the data by hand. By hooking the probes into the data acquisition card the system can be automated to save time, space, and effort. In addition to the physical attachment of the sensors there is an application that runs on the PC called NI-DAQ that allows the user to configure the data acquisition to suit their current needs. This allows multiple sensor readings to be done with a single PC DAQ system. Using NI-DAQ is straightforward and built into LabVIEW 7 with the DAQ-Assistant Express VI. When the user selects the DAQ-Assistant to configure their PC Data Acquisition system, the following window will pop up on the screen. Figure 3. DAQ Assistant. The DAQ-Assistant allows the user to choose the type of measurement they require. This assistant will be used in Part 2 of this lab to acquire voltages.

6 Spring 11 Lab 4 - Data Acquisition Lab 4-6 Exercise 5.1 A LabVIEW Tutorial: Displaying Scaled Random Numbers on a Chart The following tutorial will help you learn the basics of LabVIEW. Read each step completely before executing the step. By the end of the tutorial, you will have constructed a VI that displays scaled random numbers on a chart. After completing this tutorial, you will be better prepared to complete the rest of the lab. Be sure that everyone in the group gets a chance at the computer during the tutorial. To use the LabVIEW system you must become familiar with the Automatic Tool Selection and the different functions that it provides. Previously each task in LabVIEW would use a different tool to complete that task. In LabVIEW 7 the Auto Tool automatically switches itself to the task that you are trying to do. The Auto Tool is activated by default. To turn the Auto Tool on or off go to Windows >> Show Tools Palette to bring up the Tools Palette. The Auto Tool is located at the top of the tools palette. Table 1. Reference of Auto Tool functions and common keyboard commands Command/Tool Purpose Used When Picture Operating tool Changes values You need to change a value in a front panel object Text tool Edits text You need to change a label or a comment Positioning tool Moves and selects objects You need to be move or delete elements or insert new ones Wiring tool Connects objects together Program elements must be connected to allow data to flow between them Delete key Deletes selected objects There are unwanted objects on the front panel or block diagram <Delete> Ctrl-S Saves files You want to save your changes <Ctrl-S> Ctrl-B Removes all broken wires There are several unwanted wires on the block diagram; use with caution <Ctrl-B>

7 Spring 11 Lab 4 - Data Acquisition Lab 4-7 Setup: a. Launch LabVIEW by going to Start >> Programs >> NI LabVIEW b. When the launcher loads click on Blank VI. c. If the tool palette is not currently visible, go to View and click on Tools Palette d. Verify that the Auto Tool is selected for use. e. From the File menu, select Save As and save the file to your floppy disk (or USB drive) under a suitable name. The file extension must be *.vi. It is a good idea to save the file every few minutes during the development process. Save the file after making a change you want to keep. f. Review the commands and tools in Table Virtual Instrument programming: a. With either the block diagram or front panel window selected, press <Ctrl-T> to tile the windows left and right. This way you can see both the block diagram and front panel at the same time. Remember! b. Insert a While Loop onto the block diagram. To do this, open the Functions palette by right clicking with the cursor in the block diagram window. Then move the pointer down to the Execution Control palette button (bottom left button). When the cursor reaches the button, a sub-palette of VIs will appear. Click on the While Loop (icon on the left in the top row). Refer to Figure 4. Figure 4. Palette showing location of While Loop.

8 Spring 11 Lab 4 - Data Acquisition Lab 4-8 c. The While Loop first appears in the Block Diagram window as a boxshaped cursor. Insert the while loop by placing the cursor in the upper left corner of the block diagram window and clicking and dragging the icon to the lower right corner. Make the While Loop almost as large as the window. d. Notice that a stop button has appeared on both the block diagram and the front panel. Notice also that on the block diagram the stop button is connected to a conditional terminal of the While Loop. The default setting for the While Loop is Stop if True. With this option, when the stop button is pressed (switched to true) the While Loop will stop running. e. Insert the Random Number Generator function into the While Loop. The random number generator function outputs a number between 0 and 1. To place it on the block diagram first right click on the block diagram as before.. This time, select Arithmetic & Comparison >> Numeric >> Random Num and place it on the block diagram. f. Press <Ctrl-H> to open the Context Help window. Move the cursor to the pair of dice and view the information in the Help window. This help feature can be useful when determining what connections need to be made to a VI. g. Insert a Waveform Chart on the Front Panel to view the random numbers that are being generated. Right-click in the Front Panel window to bring up the Controls palette. Click on Graph Indicators >>Waveform Chart and place it on the Front Panel. h. Name the chart Scaled Data. When you place the Chart on the Front Panel it is possible to just begin typing, or you can double click on the label box to change the name. You should see the text appear in a box near the upper left corner of the chart. i. Point the cursor at the chart and right-click with your mouse. Select Find Terminal from the pop-up menu. This should bring up the Block Diagram window, and the terminal for the chart will be highlighted with dashed lines. Make sure the chart terminal is inside the While Loop. If it isn t, use the Positioning Tool to drag it into the While Loop.

9 Spring 11 Lab 4 - Data Acquisition Lab 4-9 j. Connect the Random Number Generator to the Waveform Chart terminal. Use the Auto Tool to connect the output of the dice to the terminal for the Waveform Chart by pointing the tool at the dice and clicking once. Move the tool to the indicator terminal and click once more. An orange line should appear. k. In order to reduce the amount of data on the chart so it is readable, the while loop will need to run at a set rate. To do this place a Time Delay in the while loop. Go to Functions >> Execution Control >> Time Delay and place it inside the while loop. l. Input 100 milliseconds (0.1 seconds) into the field when prompted for how much time to delay. m. Your block diagram and front panel should look something like Figures 5 and 6. Figure 5. Block Diagram of Random Number Generator.

10 Spring 11 Lab 4 - Data Acquisition Lab 4-10 Figure 6. Front Panel of Random Number Generator. 2. Click on the Front Panel window. Now you can test your VI. Click on the Run button, the single arrow in the upper left corner. To stop the execution, press the STOP button you put on the front panel. Run the VI several times. Does the VI run? How do you know? How could you determine the number of times the while loop executes each time you run the program? Hint: What does the other small square with an i do in the bottom left corner of the While Loop? Answer these questions on your PowerPoint sheet. 3. Have your instructor check your progress. You may want rearrange some of the icons to make the program clearer. In general, it is best to place input terminals on the left and output terminals on the right. Also, the wires in between should not cross unless absolutely necessary. 4. Save the VI. 5. Take a screen shot (Ctrl-Print Screen) with the front panel and block diagram side-by-side (remember Ctrl-T) and paste into PowerPoint for documentation purposes. 6. Close the VI. Click Don t Save SubVIs if necessary.

11 Spring 11 Lab 4 - Data Acquisition Lab 4-11 Exercise 5.2: Building a Voltmeter with LabVIEW A different student in the lab group should enter the information for this exercise. On the solderless breadboard, connect a potentiometer s end terminals to +12V and -12V. Connect the potentiometer wiper to a voltage follower. Build a graphing digital voltmeter using the steps given below. In this part of the lab you will be using the DAQ-Assistant and the knowledge that you gained in Part 1. Building a Voltmeter with LabVIEW 1. Create a new Blank VI and save it to disk as Read Voltage.vi 2. Place a While Loop on the block diagram. 3. Place the DAQ-Assistant inside of the While Loop by going to Functions >> Input >> DAQ Assistant and dropping onto the Block Diagram. 4. When you place the DAQ-Assistant on the Block Diagram, the NI- DAQ screen will pop up and help you configure your system. Choose Acquire Signals / Analog Input from the first screen that pops up as you will be collecting a wide range of data values. 5. The next screen allows you to choose the type of measurement you are going to take. Choose Voltage to make voltage measurements. 6. On the next screen you will select the physical channel that you are collecting measurements on. Choose channel ai0. Connect the orange wire on the CB-68LP terminal block to the output pin from the voltage follower. Connect the black wire to the black/ common row of the solderless breadboard 7. Now that you have completed the initial setup, you will see the screen shown in Figure 7.

12 Spring 11 Lab 4 - Data Acquisition Lab 4-12 Figure 7. DAQ-Assistant Configuration Window. 8. This window is where most of the configuration lies. There are three different areas of this window that are important. In the top right corner you can specify the Input Range of the voltage signal that you are collecting. The closer the range of voltages that you input to the range of voltages that you will be measuring, the more accurate your measurement becomes. 9. Below the Input Range are the Terminal Configuration and Scaling menus. If your acquired signal requires any scaling you can enter it here. For now, we will leave these two as they are. 10. The last area of the window is the timing and triggering section. Here you specify how to acquire data and if there are specific points at which you wish to begin or stop acquiring. Change the task timing section to 1 Sample (On Demand). Leave the triggering section as it is.

13 Spring 11 Lab 4 - Data Acquisition Lab Click OK and return to the Block Diagram. 12. Press <Ctrl-E> to switch to the Front Panel. 13. Place a Numeric Indicator on the front panel by going to Controls >> Numeric Indicators >> Numeric Indicator and dropping it anywhere on the front panel. 14. Go back to the Block Diagram. This can be done by clicking on the Block Diagram or pressing <Ctrl-E>. 15. Move the numeric indicator to a position inside the While loop and to the right of the DAQ Assistant. Wire the data terminal of the DAQ-Assistant to the input of the numeric indicator. 16. Run the program by clicking the right arrow on the front panel. 17. How could you slow down the output of voltages that are written to the screen? See if you can get a 2 times per second update. 18. Add an output gauge to the front panel as shown below. Controls >> Numeric Indicators and select the Gauge. 19. Click the 0 on the gauge and change to -10 as shown above. 20. On the block diagram move the gauge inside the While loop and connect the input of the gauge to the wire running to the Numeric indicator. You might find it easier to delete lines and then reconnect them. Run program again and see what happens. 21. Save the VI. 22. Take a screen shot (Ctrl-Print Screen) with the front panel and block diagram side-by-side (remember Ctrl-T) and paste into PowerPoint for documentation purposes. 23. Close the VI. Click Don t Save SubVIs if necessary.

14 Spring 11 Lab 4 - Data Acquisition Lab 4-14 Exercise 5.3: Voltmeter VI A different student in the lab group should enter the information for this exercise. Complete the following steps to build a VI that acquires a sine wave from a function generator and scales it. Verify your function generator is connected to channel ai1 (yellow/black wires) and set it to a sine output of about 5 Hz. 1. Open a new VI and build the following front panel (Figure 8). Figure 8. Exercise 3 Front Panel. 2. Place the DAQ Assistant on the Block Diagram. The DAQ Assistant can be found under Functions >> Input >> DAQ Assistant. A window will come up asking for the type of measurement you are taking. Choose Analog Input >> Voltage >> Dev1/ai1 from the menus. This will allow you to take measurements on channel 1 of Device 1. The screen shown in Figure 9 will appear.

15 Spring 11 Lab 4 - Data Acquisition Lab 4-15 Figure 9. DAQ Assistant. 3. The three important parts of the DAQ Assistant configuration page are the 1) Settings, 2) the Task Timing, and 3) Task Triggering. Set the Task Timing to Acquire 1 Sample. 4. Under Settings >> Custom Scaling the value should be <No Scale>. Click the drop down box and select Create New. The screen shown in Figure 10 will appear.

16 Spring 11 Lab 4 - Data Acquisition Lab 4-16 Figure 10. DAQ Assistant Custom Scaling (may look different) For this lab we will amplify the sine wave by a factor of 5. Choose Linear and enter Amplifier for the name of the scale. 5. In the box entitle Slope enter a value of 5. In the Units - Scaled box enter Scaled Waveform. Click OK to complete the scale setup. 6. Now that the input is scaled by a factor of 5, you will need to adjust the range of the data. In the section of the DAQ Assistant configuration page labeled Input Range, specify a range that will encompass the scaled input data. For example, if you function generator is outputting a signal from +/- 1 V, and you are scaling it by 5, the input range should be set to be +/- 5 V or greater. Click OK to close the DAQ Assistant.

17 Spring 11 Lab 4 - Data Acquisition Lab Build the Block Diagram to look similar to that shown in Figure 11. The Time Delay VI can be found under Functions >> Execution Control >> Time Delay. Set the time delay to seconds. Figure 11. Exercise 2 Block Diagram. 8. Display the Front Panel and run the VI. The graph displays the scaled sine wave to the screen. Vary the frequency and notice how the signal on the screen changes. 9. Save the VI. 10. Take a screen shot (Ctrl-Print Screen) with the front panel and block diagram side-by-side (remember Ctrl-T) and paste into PowerPoint for documentation purposes. 11. Close the VI. Click Don t Save SubVIs if necessary.

18 Spring 11 Lab 4 - Data Acquisition Lab 4-18 Exercise 5.4: Aliasing Close LabVIEW and use Signal Express for all parts of Exercise 5.4. Set the function generator to output a sine wave at about 590 to 610 Hz with amplitude of about 5 volts peak-to-peak (~ 5 V P-P ). Collect data from the function generator at the following sampling frequencies and total sample times. Data Set Sampling Rate Total Sample Time Number of Samples #1 20 khz sec #2 5 khz sec #3 2 khz sec #4 1 khz sec #5 20 khz sec #6 800 Hz sec #7 600 Hz sec #8 400 Hz sec Outside of class: The first 4 sets of data will be plotted together on one graph, while data sets #5 to #8 are plotted together on a second graph. Experimental data is normally plotted with points only. However, since this experimental data is known to be sine waves, connect the individual data points with straight lines in your two plots. Also create a legend to identify the four sets of data on each plot. Based on your data, create a table and fill out the information below for all 8 data sets based on the data shown in your two plots. Data Set Amplitude of Displayed Waveform (V P-P ) Frequency of Displayed Waveform (Hz) Aliased? (Yes/No) #1 #2 : #8

EET 310 Programming Tools

EET 310 Programming Tools Introduction EET 310 Programming Tools LabVIEW Part 1 (LabVIEW Environment) LabVIEW (short for Laboratory Virtual Instrumentation Engineering Workbench) is a graphical programming environment from National

More information

Lab 3: Introduction to Data Acquisition Cards

Lab 3: Introduction to Data Acquisition Cards Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied

More information

LabVIEW Day 1 Basics. Vern Lindberg. 1 The Look of LabVIEW

LabVIEW Day 1 Basics. Vern Lindberg. 1 The Look of LabVIEW LabVIEW Day 1 Basics Vern Lindberg LabVIEW first shipped in 1986, with very basic objects in place. As it has grown (currently to Version 10.0) higher level objects such as Express VIs have entered, additional

More information

Exercise 10: Basic LabVIEW Programming

Exercise 10: Basic LabVIEW Programming Exercise 10: Basic LabVIEW Programming In this exercise we will learn the basic principles in LabVIEW. LabVIEW will be used in later exercises and in the project part, as well in other courses later, so

More information

Dash 18X / Dash 18 Data Acquisition Recorder

Dash 18X / Dash 18 Data Acquisition Recorder 75 Dash 18X / Dash 18 Data Acquisition Recorder QUICK START GUIDE Supports Recorder System Software Version 3.1 1. INTRODUCTION 2. GETTING STARTED 3. HARDWARE OVERVIEW 4. MENUS & BUTTONS 5. USING THE DASH

More information

Data Acquisition Using NI-DAQmx

Data Acquisition Using NI-DAQmx Instructor s Portion Data Acquisition Using NI-DAQmx Wei Lin Department of Biomedical Engineering Stony Brook University Summary This experiment requires the student to use NI-DAQmx to acquire voltage

More information

Dash 8Xe / Dash 8X Data Acquisition Recorder

Dash 8Xe / Dash 8X Data Acquisition Recorder 75 Dash 8Xe / Dash 8X Data Acquisition Recorder QUICK START GUIDE Supports Recorder System Software Version 2.0 1. INTRODUCTION 2. GETTING STARTED 3. HARDWARE OVERVIEW 4. MENUS & BUTTONS 5. USING THE DASH

More information

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS 1 EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS The oscilloscope is the most versatile and most important tool in this lab and is probably the best tool an electrical engineer uses. This outline guides

More information

LabVIEW Lesson 5 Clusters

LabVIEW Lesson 5 Clusters LabVIEW Lesson 5 Clusters Lesson Overview What are clusters? How to create a cluster. How to create a constant cluster. How to use the various cluster functions. I. What is a cluster? a. A cluster is similar

More information

Hands-onIntroduction todataacquisition

Hands-onIntroduction todataacquisition ni.com/events Hands-onIntroduction todataacquisition withlabview ni.com/uk ni.com/ireland ni.com/uk/handson Introduction to LabVIEW and Computer-Based Measurements Hands-On Seminar 1 Company Profile Leaders

More information

Cell Phone Vibration Experiment

Cell Phone Vibration Experiment Objective Cell Phone Vibration Experiment Most cell phones are designed to vibrate. But at what frequency do they vibrate? With an accelerometer, data acquisition and signal analysis the vibration frequency

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

RLC Series Resonance

RLC Series Resonance RLC Series Resonance 11EM Object: The purpose of this laboratory activity is to study resonance in a resistor-inductor-capacitor (RLC) circuit by examining the current through the circuit as a function

More information

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor)

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Concept: circuits Time: 30 m SW Interface: 750 Windows file: RLC.SWS EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage

More information

Hands-On: Introduction to Object-Oriented Programming in LabVIEW

Hands-On: Introduction to Object-Oriented Programming in LabVIEW Version 13.11 1 Hr Hands-On: Introduction to Object-Oriented Programming in LabVIEW Please do not remove this manual. You will be sent an email which will enable you to download the presentations and an

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class.

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. Creating a Pie Graph Step-by-step directions In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. 1. Enter Data A. Open

More information

First Bytes Programming Lab 2

First Bytes Programming Lab 2 First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5 Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities

More information

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster View the Best Practices in Poster Design located at http://www.emich.edu/training/poster before you begin creating a poster. Then in PowerPoint: (A) set up the poster size and orientation, (B) add and

More information

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER 2014 Amplifier - 1 FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER The objectives of this experiment are: To understand the concept of HI-FI audio equipment To generate a frequency response curve for an audio

More information

Creating a PowerPoint Poster using Windows

Creating a PowerPoint Poster using Windows Creating a PowerPoint Poster using Windows Copyright 2001 Michael Dougherty (michael@nmsu.edu) Purpose The purpose of this tutorial is to illustrate how to create a 3 x 4 ft. poster using PowerPoint. This

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE

GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE Society for the Teaching of Psychology (APA Division 2) OFFICE OF TEACHING RESOURCES IN PSYCHOLOGY (OTRP) Department of Psychology, Georgia Southern University, P. O. Box 8041, Statesboro, GA 30460-8041

More information

A Guide to Using Excel in Physics Lab

A Guide to Using Excel in Physics Lab A Guide to Using Excel in Physics Lab Excel has the potential to be a very useful program that will save you lots of time. Excel is especially useful for making repetitious calculations on large data sets.

More information

PowerPoint 2013: Basic Skills

PowerPoint 2013: Basic Skills PowerPoint 2013: Basic Skills Information Technology September 1, 2014 1 P a g e Getting Started There are a variety of ways to start using PowerPoint software. You can click on a shortcut on your desktop

More information

LabVIEW Day 6: Saving Files and Making Sub vis

LabVIEW Day 6: Saving Files and Making Sub vis LabVIEW Day 6: Saving Files and Making Sub vis Vern Lindberg You have written various vis that do computations, make 1D and 2D arrays, and plot graphs. In practice we also want to save that data. We will

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

Oscilloscope, Function Generator, and Voltage Division

Oscilloscope, Function Generator, and Voltage Division 1. Introduction Oscilloscope, Function Generator, and Voltage Division In this lab the student will learn to use the oscilloscope and function generator. The student will also verify the concept of voltage

More information

Getting Started with the LabVIEW Mobile Module Version 2009

Getting Started with the LabVIEW Mobile Module Version 2009 Getting Started with the LabVIEW Mobile Module Version 2009 Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that

More information

How to make a line graph using Excel 2007

How to make a line graph using Excel 2007 How to make a line graph using Excel 2007 Format your data sheet Make sure you have a title and each column of data has a title. If you are entering data by hand, use time or the independent variable in

More information

Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT)

Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT) Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT) Reference Text : Process Dynamics and Control 2 nd edition, by Seborg, Edgar, Mellichamp,

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Electronic WorkBench tutorial

Electronic WorkBench tutorial Electronic WorkBench tutorial Introduction Electronic WorkBench (EWB) is a simulation package for electronic circuits. It allows you to design and analyze circuits without using breadboards, real components

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1

EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1 EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1 Objective: To build, simulate, and analyze three-phase circuits using OrCAD Capture Pspice Schematics under balanced

More information

Statgraphics Getting started

Statgraphics Getting started Statgraphics Getting started The aim of this exercise is to introduce you to some of the basic features of the Statgraphics software. Starting Statgraphics 1. Log in to your PC, using the usual procedure

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Lab #9: AC Steady State Analysis

Lab #9: AC Steady State Analysis Theory & Introduction Lab #9: AC Steady State Analysis Goals for Lab #9 The main goal for lab 9 is to make the students familar with AC steady state analysis, db scale and the NI ELVIS frequency analyzer.

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

More information

Lab 1: The Digital Oscilloscope

Lab 1: The Digital Oscilloscope PHYSICS 220 Physical Electronics Lab 1: The Digital Oscilloscope Object: To become familiar with the oscilloscope, a ubiquitous instrument for observing and measuring electronic signals. Apparatus: Tektronix

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction This tutorial is designed for people who are new

More information

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS Build a emperature Sensor Project A sensor is a device that measures a physical quantity and converts it into an electrical signal. Some sensors measure physical properties directly, while other sensors

More information

Summary of important mathematical operations and formulas (from first tutorial):

Summary of important mathematical operations and formulas (from first tutorial): EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

Kurz MODBUS Client User s Guide

Kurz MODBUS Client User s Guide Kurz MODBUS Client User s Guide Introduction The Kurz MODBUS Client program can be used to demonstrate how the Kurz MFTB and MFTA Series products can be used in a MODBUS protocol network. The program is

More information

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 INFORMATION SERVICES Version 3.0 July 2011 Table of Contents Section 1 - Introduction... 1 Section 2 - Initial Preparation... 2 2.1 Overall

More information

DSP Laboratory: Analog to Digital and Digital to Analog Conversion

DSP Laboratory: Analog to Digital and Digital to Analog Conversion OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

Power Point 2003 Table of Contents

Power Point 2003 Table of Contents Power Point 2003 Table of Contents Creating a Presentation... 2 Selecting Background and Format for Slide... 3 Creating the Title Slide... 4 Adding a New Slide... 5 Types of Text for a Slide: Taken from

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Microsoft PowerPoint 2007 PowerPoint is currently the most common software used for making visual aids for presentations. It has been redesigned for the 2007 release with a much more user-friendly and

More information

CREATE A 3D MOVIE IN DIRECTOR

CREATE A 3D MOVIE IN DIRECTOR CREATE A 3D MOVIE IN DIRECTOR 2 Building Your First 3D Movie in Director Welcome to the 3D tutorial for Adobe Director. Director includes the option to create three-dimensional (3D) images, text, and animations.

More information

TabletWorks Help Index 1

TabletWorks Help Index 1 TabletWorks Help Index 1 When the driver for your tablet type has been installed, the TabletWorks Control Panel is set up on the Windows Control Panel. The TabletWorks Control Panel is divided into several

More information

Getting Started on the Computer With Mouseaerobics! Windows XP

Getting Started on the Computer With Mouseaerobics! Windows XP This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

GETTING STARTED TABLE OF CONTENTS

GETTING STARTED TABLE OF CONTENTS Windows 7 Tutorial GETTING STARTED An operating system, sometimes called an OS, is the main program the computer uses to function properly. Operating systems act as a link between you, the user, and the

More information

ADINSTRUMENTS. making science easier. LabChart 7. Student Quick Reference Guide

ADINSTRUMENTS. making science easier. LabChart 7. Student Quick Reference Guide ADINSTRUMENTS making science easier LabChart 7 Student Quick Reference Guide How to use this guide The LabChart Student Quick Reference Guide is a resource for users of PowerLab systems in the classroom

More information

Introduction to LabVIEW

Introduction to LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Introduction to LabVIEW HANS- PETTER HALVORSEN, 2014.03.07 Faculty of Technology, Postboks 203,

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

Introduction to Microsoft PowerPoint

Introduction to Microsoft PowerPoint Introduction to Microsoft PowerPoint School of Medicine Library University of South Carolina WHAT IS POWERPOINT? PowerPoint (PPT) is a powerful, easy-to-use presentation graphics software program which

More information

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................

More information

Microsoft Excel Tutorial

Microsoft Excel Tutorial Microsoft Excel Tutorial by Dr. James E. Parks Department of Physics and Astronomy 401 Nielsen Physics Building The University of Tennessee Knoxville, Tennessee 37996-1200 Copyright August, 2000 by James

More information

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14 LogicWorks 4 Tutorials Jianjian Song Department of Electrical and Computer Engineering Rose-Hulman Institute of Technology March 23 Table of Contents LogicWorks 4 Installation and update...2 2 Tutorial

More information

Electrical Resonance

Electrical Resonance Electrical Resonance (R-L-C series circuit) APPARATUS 1. R-L-C Circuit board 2. Signal generator 3. Oscilloscope Tektronix TDS1002 with two sets of leads (see Introduction to the Oscilloscope ) INTRODUCTION

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Task Card #2 SMART Board: Notebook

Task Card #2 SMART Board: Notebook Task Card #2 SMART Board: Notebook Objectives: Participants will learn how to utilize the SMART Notebook. Table of Contents: Launching The SMART Notebook Page 1 Entering Text Page 1 Top Toolbar Page 2

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing

More information

SW43W. Users Manual. FlukeView Power Quality Analyzer Software Version 3.20 onwards

SW43W. Users Manual. FlukeView Power Quality Analyzer Software Version 3.20 onwards SW43W FlukeView Power Quality Analyzer Software Version 3.20 onwards Users Manual 4822 872 30778 December 2005, Rev.1, 04/06 2005 Fluke Corporation, All rights reserved. All product names are trademarks

More information

Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different)

Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets are computer programs that allow the user to enter and manipulate numbers. They are capable

More information

CurveMaker v2.1 DYNAFS programmable ignition software

CurveMaker v2.1 DYNAFS programmable ignition software CurveMaker v2.1 DYNAFS programmable ignition software Dynatek 164 S Valencia St. Glendora CA 91741 phone (626)963-1669 fax (626)963-7399 Contents 1) Installation...1 2) Overview...1 3) Programming a Curve...4

More information

Introduction to the TI-Nspire CX

Introduction to the TI-Nspire CX Introduction to the TI-Nspire CX Activity Overview: In this activity, you will become familiar with the layout of the TI-Nspire CX. Step 1: Locate the Touchpad. The Touchpad is used to navigate the cursor

More information

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window. Word Processing Microsoft Works Windows 95 The intention of this section is to instruct basic word processing skills such as creating, editing, formatting, saving and closing a new document. Microsoft

More information

Getting Started with the LabVIEW Mobile Module

Getting Started with the LabVIEW Mobile Module Getting Started with the LabVIEW Mobile Module Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that run on Windows

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Lab 1: Introduction to PSpice

Lab 1: Introduction to PSpice Lab 1: Introduction to PSpice Objectives A primary purpose of this lab is for you to become familiar with the use of PSpice and to learn to use it to assist you in the analysis of circuits. The software

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

More information

Numerical Parameters Analysis of Boonton 4540 Peak Power Meter

Numerical Parameters Analysis of Boonton 4540 Peak Power Meter Application Note Numerical Parameters Analysis of Boonton 4540 Peak Power Meter Mazumder Alam Product Marketing Manager, Boonton Electronics Introduction The Boonton 4540 series RF peak power meters consisting

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

This activity will show you how to draw graphs of algebraic functions in Excel.

This activity will show you how to draw graphs of algebraic functions in Excel. This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Power Log PC Application Software

Power Log PC Application Software Power Log PC Application Software Users Manual May 2007 Rev. 1, 5/08 2007-2008 Fluke Corporation. All rights reserved. Specifications are subject to change without notice. All product names are trademarks

More information

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law OBJECTIVES: To verify Ohm s law, the mathematical relationship among current, voltage or potential difference, and resistance, in a simple circuit.

More information

A Quick Start Guide to Using PowerPoint For Image-based Presentations

A Quick Start Guide to Using PowerPoint For Image-based Presentations A Quick Start Guide to Using PowerPoint For Image-based Presentations By Susan Jane Williams & William Staffeld, Knight Visual Resources Facility College of Architecture, Art and Planning Cornell University.

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Microsoft Access 2007

Microsoft Access 2007 How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed

More information

ADMINISTRATORS GUIDE EPISUITE 6

ADMINISTRATORS GUIDE EPISUITE 6 ADMINISTRATORS GUIDE EPISUITE 6 A quick tutorial on how to set up and implement Episuite Software created by IDentiphoto Specialists in IDentification 1810 Joseph Lloyd Pkwy. Willoughby, OH 44094 Phone:

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Building Montages in Petrel Most Petrel projects require display maps to be made for presentations; either for partners or peers. This TIPS&TRICKS provides

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day

More information

Microsoft PowerPoint Exercises 4

Microsoft PowerPoint Exercises 4 Microsoft PowerPoint Exercises 4 In these exercises, you will be working with your Music Presentation file used in part 1 and 2. Open that file if you haven t already done so. Exercise 1. Slide Sorter

More information