WD2000: How to Set up a Table as a Worksheet in WordID: Q211255
|
This article describes how to create simple worksheets in Microsoft Word, using tables and the Formula (=) field. In these worksheets, you can add, subtract, multiply, and divide values entered in cells.
Row Column
--- ---------
A B C
-------------
1 | 2 | 5 | 4 |
-------------
2 | 7 | 3 | 6 |
-------------
3 | 8 | 1 | 0 |
-------------
4 | | | |
-------------
When you use this example, you can enter the sum of column A into the blank
cell A4 by following these steps:
Use a formula Result from
To do this similar to this the sample
------------------------------------------------------------
Add a number to a cell =(A1) + 3 5
Add two adjacent cells =SUM(A1:A2) 9
-or-
=(A1+A2)
Add two non-adjacent cells =(A1+A3) 10
Add a range of cells =SUM(B:B) 9
-or-
=SUM(B1:B3)
Subtraction:
Use a formula Result from
To do this similar to this the sample
------------------------------------------------------------
Subtract a number from a cell =(A1)- 3 1
Subtract two cells =(A3-B2) 5
Multiplication:
Use a formula Result from
To do this similar to this the sample
---------------------------------------------------------------
Multiply a number by a cell =(A1)* 3 6
Multiply two adjacent cells =PRODUCT(A1:A2) 14
Multiply two non-adjacent cells =PRODUCT(A1,A3) 16
Multiply a range of cells =PRODUCT(B:B) 15
-or-
=PRODUCT(B1:B2)
Division:
Use a formula Result from
To do this similar to this the sample
------------------------------------------------------------
Divide a number by a cell =(A1)/3 .67
Divide two cells =C2/A1 3
Unlike earlier versions of Word, individual cell references do not need to be enclosed in brackets and parentheses. However, cell ranges, which are separated with a colon such as (A1:A6), must be enclosed in parentheses.Referencing Cell Ranges:
If the cells are in a contiguous block (they cover a rectangular area), you can shorten the reference to them. For instance, the eight-cell area from A1 to D2 can be referenced as A1:D2.Referencing Nonadjacent Cells:
When you add or multiply nonadjacent cells, you can refer to each cell individually, or you can separate the references themselves with commas.
NOTE: You can use commas only with the Sum and Product functions.
For example, these formulas are equivalent:
Sum Example
Product Example{=SUM(A1) + SUM(C2) + SUM(B2)} {=SUM(A1,C2,B2)}
When you subtract or divide nonadjacent cells, you must refer to each cell separately (that is, you cannot use commas), as in the following examples:{=PRODUCT(A1) + PRODUCT(C2) + PRODUCT(B2)} {=PRODUCT(A1,C2,B2)}
{=SUM(A1) - SUM(C2) - SUM(B3)} {=SUM(A1) / SUM(C2) / SUM(B3)}
Relative references are useful when you want a generic formula that doesn't refer to specific cells. You can add and delete rows and maintain a correct result. Relative references are also useful when you don't want to retype a formula. For instance, if you want each cell in the fifth column to contain the sum of the numbers of the first four columns in the same row, you can use a relative reference. In this example, the field would resemble the following:You can also combine relative references with absolute references (references to a specific cell).{=SUM(LEFT)}
You can apply a bookmark to the contents of any cell or field and use that bookmark in a calculation. This can often simplify the construction of other fields and can save typing.
For example, if you apply a bookmark called "Quantity_Sold" to the contents of cell A3, you can refer to it in another cell.
{=Quantity_Sold*.10} {=Quantity_Sold*SUM(B2)} {=Quantity_Sold*Commission}
Example of the type of fields to avoid:For additional information, please see the following articles in the Microsoft Knowledge Base:
adds the entire column, including the result. Each time you update this field, the result is the sum of the column plus the field's previous total. To prevent this behavior, use an absolute reference instead, and place the field in another column.{=SUM(C:C)}
Q211251 WD2000: Incorrect Value/Table Cell Inserted Referencing Bookmark
Q211253 WD2000: Calculation in Form Field Shows Wrong Result
Q211256 WD2000: How to Modify a Calculation Field to Appear Blank
Additional query words: display worksheet workbook
Keywords : kbdta kbfield kbtable wd2000
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: May 24, 1999