# Cell Operators
The following operators may be entered in cells instead of typing in values.
# Copy operators
| = | to copy the value from the same cell in the preceding record. |
|---|---|
| =n | to copy the value from the same cell in record n. |
| == | to copy the values from the same cell and all following cells in the preceding record. |
| ==n | to copy the values from the same cell and all following cells in record n. |
# Increment operators
The increment operators copy the value from the same cell in the preceding record and perform an operation on that. They apply to numeric fields only.
| +=f | to add f to the copied value. |
|---|---|
| −=f | to subtract f from the copied value. |
| *=f | to multiply the copied value by f. |
| /=f | to divide the copied value by f. |
If the increment, f, is omitted then the default value is used as the increment.