Flux rss
Bookmark Bookmark & Share
Foglio elettronico - Le celle Folha de cálculo - As células Tabellenkalkulation - die Zellen Tableur - Les cellules

The Concept of a Cell

A "cell" is the intersection between a line (horizontal) and a column (vertical) on a worksheet. Thus, the name of the line combined with the name of the column gives the cell's coordinates (the term address is sometimes also used).

Coordinates (called reference styles) are generally grouped into two types, depending on the worksheet:

  • The mode known as L1C1 (Line 1, Column 1), where the cell is located by the line number preceded by the letter L and the column number preceded by the letter C. L12C34 designates the cell at the intersection of the 12th line and the 34th column.

    L1C1 mode

  • The mode known as A1, where line numbers are designated by numbers and columns by letters. Thus AA17 designates the cell at the intersection of the 27th column and the 17th line.

    A1 mode

Nota Bene Most spreadsheets have options to allow both modes to be used. With Excel and StarOffice, go into Tools > Options > General and click the box "L1C1 Reference Style".

Cell References

In order to work with data from cells when performing calculations, it is necessary to reference the cells. Many ways of referencing cells exist:

Absolute References

An absolute reference represents the method of distinguishing a unique cell in a worksheet. Depending on the reference mode (L1C1 or A1), the absolute reference will be written differently:

  • In L1C1 mode: a cell's absolute reference is written by preceding the number by a letter L and the column number by the letter C.
    LLineNumberCColumnNumber
    For example, L12C24 represents the cell located at the intersection of line 12 and column 24.
  • In A1 mode: a cell's absolute reference is written by preceding the line number and the column number by the $ sign.
    $ColumnLetter$LineNumber
    For example, $AC$34 represents the cell located at the intersection of the indicated column, AC, and line, 34.

Relative References

A cell's relative reference is the expression of its position relative to another cell. Thus, the relative reference gives the difference (in terms of the number of lines and columns) between the cell (called reference) and the target cell (called referenced cell). By convention, upward difference along the vertical axis and difference towards the left along the horizontal axis are negative.

  • In L1C1 mode: the relative difference of a cell is shown as cell coordinates in parenthesis:
    L(LineNumber) C(ColumnNumber)
    For example, L(3)C(-2) represents a cell located 3 lines lower and 2 columns left of the reference cell:

    relative reference in L1C1 mode

    When there is no difference, a zero is not required in the parenthesis. Thus, L(0)C(12) may be written as LC(12).

  • In A1 mode, the expression of the difference between the cells is hidden. In effect, a relative reference in A1 mode is implicit: just click on the coordinates of the target cell (referenced) without writing the $ sign:

    relative reference in A1 mode

Mixed References

A mixed reference is a reference where the horizontal position is expressed in an absolute manner and the vertical position in a relative manner, or vice-versa.

  • In L1C1 notation, a mixed reference could look like L2C(3) or L(4)C17.
  • In A1 notation, a mixed reference could look like $C5 or F$18.

Named References

A name may be given to a cell or to a group of cells.

Nota Bene To name a cell in Excel, select the cell or the range of cells to be named and go to Insert > Name > Define

When a cell or the range of cells has a name (the term label is sometimes used), it may be referenced by name. This functionality is especially useful when certain cells or cell ranges contain characteristic data because they may be referenced by name even if the cell or the group of cells has been moved.

For example, on an invoice, using a cell name such as total_bt for the cell that gives the total of an order before taxes is a good idea. You can also create a cell called VAT that contains the value of the VAT. Thus, when you need to calculate the total with taxes included, it is as easy as multiplying the cell called total_bt with the cell called VAT.

Comments

Commentary (sometimes called an annotation) may be added to a cell to provide additional information that we do not wish (or that we cannot) show on the worksheet.

To add a comment to a cell in Excel, select the cell or the range of cells to be named and then go to Insert > Comment or click on the cell or group of cells with the right mouse button and choose Insert a comment.

Inserting comments into a cell

Nota Bene The small red triangle on the upper right of the cell D5 shows that the cell has a comment. This encourages the user to slide the mouse over the cell to read its contents.



Last update on Thursday October 16, 2008 02:43:17 PM.This document entitled « Worksheet - Cells » from Kioskea (en.kioskea.net) is made available under the Creative Commons license. You can copy, modify copies of this page, under the conditions stipulated by the licence, as this note appears clearly.
Spreadsheets - Cell Selection Cell Selection Spreadsheets are powerful tools for working with data. However, to work with data, it is necessary to have tools to rapidly choose the required cells. Line Selection An entire line can be chosen by clicking directly on the line... en.kioskea.net/contents/tableur/tabcellselect-1.php3
Excel tips : How to insert date In an Excel cell Excel tips : How to insert date In an Excel cell Below are some tips on how to insert date and time in an excel cell for a specific purpose:- To insert current date, press “CTRL”+ “;” in the chosen cell. To insert current... en.kioskea.net/faq/sujet-313-excel-tips-how-to-insert-date-in-an-excel-cell
Colouring cells on conditions Colouring cells on conditions There are many pratical functions under Excel which is not commonly used. Example: If you wish a cell automatically turns red (or other formatting border, frame etc) under one condition: a result, a... en.kioskea.net/faq/sujet-956-colouring-cells-on-conditions
[VBA] Detecting changes in cell[VBA] Detecting changes in cell The Event Change feature of a sheet will detects the change in the active cell but it gives no information about the content. The example given below will help you to find out if the cell was changed,... en.kioskea.net/faq/sujet-1117-vba-detecting-changes-in-cell
Basic Excel FormulasBasic Excel Formulas Below are some basic formulas for Microsoft excel: Basic formula : ADDITION cell A1 to A10 = sum (A1: A10) AVERAGE cell A1 to A10 = average (A1: A10) MAXIMUM cell A1 to A10 = max (A1: A10) MINIMUM... en.kioskea.net/faq/sujet-1114-basic-excel-formulas
Avoid duplicates in ExcelAvoid duplicates in Excel In order to avoid duplication when encoding in a column from an excel sheet: take the conditional format on the first cell under the headings (eg A2) choose the following formula:... en.kioskea.net/faq/sujet-1401-avoid-duplicates-in-excel
Excel vb find blank cells replace with calc (Solved)Hello, I'm trying to write a simple vb script in excel which will find blank cell values in a specific row, and then calculate a new value for each blank cell defined as the average of the immediate value above the empty cell, and the immediate value... en.kioskea.net/forum/affich-42747-excel-vb-find-blank-cells-replace-with-calc
Excel: If date >= 30 days, cell change color (Solved)Hello, I have a date, say 3/1/09 in cell A1. I want cell B1 to change color if A1 is over 30 days. How can I do this? en.kioskea.net/forum/affich-88894-excel-if-date-30-days-cell-change-color
Select a subset of cells within a row (Solved)Hello, I am trying to select a number of cells within a row - I want to use this in a macro. Whatever cell is currently active, I want to select cells from column B to Column M in the current row. Thanks, M en.kioskea.net/forum/affich-22683-select-a-subset-of-cells-within-a-row
Download Internet Cell BoostInternet Cell Boost is a software for optimizing Internet connection. The principle is simple, the program is based on several options such as: the length of the packet TTL (Time To Live), the TCP RFC1323 Optimization, Protection of TCP / IP and... en.kioskea.net/telecharger/telecharger-3672-internet-cell-boost
Most Americans phone while driving despite dangersA woman dials a cell phone in her car in San Clemente, California. The vast majority of US mobile phone users know that making calls, texting and using other features while driving is dangerous, but admit doing so anyway, a poll showed Tuesday. The... en.kioskea.net/actualites/most-americans-phone-while-driving-despite-dangers-13000-actualite.php3
India expects 650 mln mobile phone users by 2012: PMAn Indian labourer talks on his cellular phone while waiting for customers at a wholesale grain market in New Delhi in April 2008. India could double its number of mobile subscribers by 2012 to 650 million, Prime Minister Manmohan Singh forecast... en.kioskea.net/actualites/india-expects-650-mln-mobile-phone-users-by-2012-pm-11068-actualite.php3
Mitsubishi Electric plans major solar cell investmentThe roof of a house in Dardesheim, eastern Germany, is covered with solar cells. Japan's Mitsubishi Electric Corp. said Wednesday it planned to invest 70 million dollars to boost production of solar cells as global demand rises on high oil costs... en.kioskea.net/actualites/mitsubishi-electric-plans-major-solar-cell-investment-10219-actualite.php3
Spreadsheet - FormulasIntroduction to Formulas The main use of a spreadsheet is to automate calculations, which means using cells to perform operations based on values in other cells. The spreadsheet recalculates all the values each time a change is made to the value of... en.kioskea.net/contents/tableur/tabformules.php3
Spreadsheets - Data EntryCell Content A cell of a worksheet can contain a value or be empty. The value of a cell has two essential characteristics: a type, which means the intrinsic type of the data. There are generally three types of values: numeric values, for example... en.kioskea.net/contents/tableur/tabsaisie.php3