Skip to main content

Entering Data into a Spreadsheet

- To begin this part of the course, we'll do something really simply: we'll enter some text and numbers into some cells. When we're finished, our spreadsheet will look like this:
So, to enter something into a cell, do the following:
  • Click on cell A1 with your left hand mouse button
  • Type the text "Numbers" (without the quotation marks)
  • Press the Return key on your keyboard
  • The darker border will jump down one cell to A2
  • Type a 3 and then press the Return Key on your keyboard
  • The darker border will jump down one cell to A3
  • Enter a 6 and a 9 in exactly the same way
When you're finished, your spreadsheet will look like the one in the image above.
The word "Numbers" was our heading. We're not going to do anything to the heading. It is there purely for our benefit, in order to serve as an explanation for what the numbers are.
Except "Numbers" is not very descriptive. Let's change it to something else. We'll change it to "Add these numbers".

Editing data in a cell

When we wanted to enter some data in a cell, we simply clicked on an individual cell and started typing. But you can't edit the data in a cell using that method. If there is already something in a cell, and you tried to type something else, the old contents would be entirely erased. Try it for yourself.
  • Click on the cell A1
  • Type the letter "A" of "Add"
  • The word "Numbers" is erased
  • Click on Edit from the menu bar
  • From the menu that drops down, click on "Undo Typing"
  • The word "Numbers" will be restored
So how do you Edit the data in a cell? You have to do it from the Formula bar. The formula bar is the thin white text area running right across the top of the spreadsheet. You can see it in the picture below:
Notice where it says "Formula Bar". The thin white text area just above the label is the "Formula Bar". Notice, too, that there is some thin lines in the shape of an I. This is actually the mouse pointer. It has changed shape, and is now an I-bar.
Click on the cell A1. Then click inside the formula bar. You will see your cursor flashing away. The spreadsheet should now look like the one in the next picture.

The formula bar is displaying the contents of cell A1. To edit the contents, you can use the backspace key on your keyboard to erase anything you don't want. And you can just type something new in the formula bar. When you've finished editing, press the Return key on your keyboard.
In the next image, the text "Numbers" has been changed to "Add these numbers". Make the changes on your own spreadsheet so that it look like the one below. Notice how the formula bar now reads "3" when the Return key is pressed. The cell A2 is showing in the Name Bar.

Except we now have a problem: The text is too big for the Cell. It is spilling over into the B column. We can solve that by widening the A column. This will be the subject of the next part.

Comments

Popular posts from this blog

Beginners PHP  -This is a complete and free PHP programming course for beginners. It's assumed that you already have some HTML skills. But you don't need to be a guru, by any means. If you need a refresher on HTML, then click the link for the Web Design course on the left of this page. Everything you need to get started with this PHP course is set out in section one below. Good luck! Home Page > PHP Section One - An Introduction to PHP 1. What is PHP and Why do I need it? 2. What you need to get started 3. Installing and testing Wampserver 4. Troubleshooting > PHP Two - Getting Started With Variables 1. What is a Variable? 2. Putting text into variables 3. Variables - some practice 4. More variable practice 5. Joining direct text and variable data 6. Adding up in PHP 7. Subtraction 8. Multiplication 9. Division 10. Floating point numbers > PHP Three - Conditional Logic 1. If Statements 2. Using If Statements 3....
Visual Basic .NET Contents Page   -This computer course is an introduction to Visual Basic.NET programming for beginners. This course assumes that you have no programming experience whatsoever. It's a lot easier than you think, and can be a very rewarding hobby! You don't need to buy any software for this course! You can use the new FREE Visual Basic Express Edition from Microsoft. To see which version you need, click below: Getting the free Visual Studio Express - Which version do I need? > VB .NET One - Getting Started   1. Getting started with VB.NET 2. Visual Basic .NET Forms 3. Adding Controls using the Toolbox Home Page 4. Adding a Textbox to the Form 5. Visual Basic .NET and Properties 6. The Text Property 7. Adding a splash of colour 8. Saving your work 9. Create a New Project >   VB .NET Two - Write your first .NET code   1. What is a Variable? 2. Add a coding button to the Form 3. Writing y...
The Excel SumIF Function  - Another useful Excel function is SumIF. This function is like CountIf, except it adds one more argument: SUMIF( range ,  criteria ,  sum_range ) Range and criteria are the same as with  CountIF  - the range of cells to search, and what you want Excel to look for. The Sum_Range is like range, but it searches a new range of cells. To clarify all that, here's what we'll use SumIF for. (Start a new spreadsheet for this.) Five people have ordered goods from us. Some have paid us, but some haven't. The five people are Elisa, Kelly, Steven, Euan, and Holly. We'll use SumIF to calculate how much in total has been paid to us, and how much is still owed. So in Column A, enter the names: In Column B enter how much each person owes: In Column C, enter TRUE or FALSE values. TRUE means they have paid up, and FALSE means they haven't: Add two more labels: Total Paid, and Still Owed. Your spreadsheet should look something li...