No history yet

Excel Basics

The Lay of the Land

Opening a new Excel file, called a workbook, presents you with a grid of boxes. These boxes are called cells, and they're where all your data lives. Each cell has a unique address, like a street address, based on its column and row. Columns are the vertical stacks labeled with letters (A, B, C), and rows are the horizontal lines labeled with numbers (1, 2, 3).

So, the cell in the top-left corner is A1. The cell below it is A2, and the one to its right is B1.

Above the grid, you'll see two important areas. The Ribbon is the large toolbar at the top, organized into tabs like 'Home,' 'Insert,' and 'Data.' This is your command center for formatting, creating charts, and more. Just below the Ribbon is the Formula Bar. It shows the actual content of the selected cell, which is especially useful when a cell contains a calculation.

Navigating Your Workbook

An Excel file is a workbook, and it can contain one or more pages, called worksheets (or just 'sheets'). You can see the tabs for your worksheets at the bottom-left of the screen. By default, you usually start with one sheet named 'Sheet1'.

You can add more sheets by clicking the plus (+) icon next to the sheet tabs. To rename a sheet, just double-click its tab and type a new name. This helps keep your projects organized, like having separate sheets for monthly budgets in a single annual workbook.

Moving around a worksheet is straightforward. You can click any cell to select it, or use the arrow keys on your keyboard to jump from one cell to an adjacent one. For larger spreadsheets, you can use the scroll bars on the side and bottom to navigate.

Entering and Formatting Data

To enter data, simply click a cell and start typing. When you're done, press Enter to move to the cell below or Tab to move to the cell to the right. Excel is smart about what you type. If you enter '10/15/2024', it recognizes it as a date. If you type 'Hello', it knows it's text.

Raw data is useful, but formatting makes it readable. Most formatting tools are in the 'Home' tab of the Ribbon. You can change the font, make text bold or italic, or change a cell's background color.

One of the most common formatting tasks is setting the number format. This tells Excel how to display numerical data. For example, the number 0.25 can be displayed in several ways:

Typed ValueFormat AppliedHow It Appears
0.25General0.25
0.25Currency$0.25
0.25Percentage25%

Applying these formats doesn't change the underlying value of the cell, only how it looks.

Basic Calculations

Excel's real power comes from its ability to perform calculations. You can tell Excel to calculate something by starting your entry with an equals sign (=). This turns the cell into a calculator.

You can perform simple arithmetic using standard operators. For example, to add 10 and 5, you would type =10+5=10+5 into a cell and press Enter. Excel will display the result, 15. The formula bar, however, will still show the formula you wrote.

The real magic happens when you use cell references in your formulas. If cell A1 has the value 10 and cell A2 has the value 5, you could type =A1+A2=A1+A2 into cell A3. The result would be 15. The best part? If you change the value in A1 to 20, cell A3 will automatically update to 25.

This automatic updating is what makes spreadsheets so powerful for tasks like budgeting, where you might want to see how changing one number affects the total.

Beyond simple math, Excel has hundreds of built-in functions that perform specific calculations. A function has a name, followed by parentheses containing the data it needs (called arguments).

For example, the SUM function adds up a range of cells. To add up the values in cells A1 through A10, you would use the formula:

=SUM(A1:A10)=SUM(A1:A10)

The colon (:) tells Excel to include all the cells from A1 to A10. Here are a few other essential functions you'll use all the time:

  • AVERAGE(range): Calculates the average of the numbers in a range.
  • MAX(range): Finds the largest value in a range.
  • MIN(range): Finds the smallest value in a range.
  • COUNT(range): Counts how many cells in the range contain numbers.

Now, let's test your knowledge on these foundational concepts.

Quiz Questions 1/6

In Excel, what is the unique address of a cell, such as 'B3', determined by?

Quiz Questions 2/6

An Excel file is called a __________, and it can contain one or more pages called __________.

Mastering these basics is the first step. With a solid understanding of the interface, navigation, and simple formulas, you're ready to tackle more complex tasks and eventually leverage Excel's powerful AI features.