| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
4.1 Alignment
An entry in a cell can be aligned on the left, on the right, or
centered. All cells in a region can have their alignment set.
The default is left alignment.
- M-a a
- Change the alignment of the cell under the cursor. The options are
def (the default), l (left), r (right), and c
(center).
(
set-cell-alignment).
- M-r a
- Change the alignment of a region. The options are
the same as above.
(
set-region-alignment).
- M-d a
- Change the default alignment. The options are
l (left), r (right), and c
(center).
(
set-default-alignment).
4.2 Formats for numbers
Oleo can display numbers in a variety of formats. In addition to
sixteen user-defined formats, you can choose from a variety of simple
formats. You can set the format for a cell, for a region, and change
the default format.
- M-a f
- Change the format of the cell under the cursor. The options include
integer, float, hidden, graph, general.X,
dollar.X, comma.X, comma.X, percent.X,
fixed.X, exponent.X, where X is an integer from 0 to
14, or the word float.
(
set-cell-format).
- M-r f
- Change the format of a region. The options are
the same as above.
(
set-region-format).
- M-d f
- Change the default format. The options are as above.
(
set-default-format).
There are some examples following a description of the simple and
general formats.
4.2.1 Simple Formats
integer
- The number is rounded to an integer before being displayed.
float
- The number is displayed in normal, everyday notation, using
whatever precision is needed (or fits).
hidden
- The number is not displayed. It is recalculated, etc as
normal, but the cell is displayed as if it were empty.
graph
- The number is displayed as a small graph. If the number is
close to zero, it will be displayed as '0', If it is positive,
a row of '+'-es is displayed. If it is negative, a row of
'-'-es is displayed. For instance, the number 4.234 is displayed as
++++, and the number -5.2 is displayed as -----.
If the number has absolute value greater than 70 (13), then a string of 35 #'s is displayed.
4.2.2 General Formats
The following formats require a precision. The precision may be a number
from zero to 14, in which case that number of digits will always be displayed
after the decimal point (zero-padding or rounding the number as needed), or
the precision may be 'float', in which case Oleo will use as many digits as
necessary.
general
- This uses either normal or scientific notation, depending on
the magnitude of the number and the width of the column.
dollar
- Positive values are preceeded by '$', (so 3 is displayed as
'$3'). Negative values are parenthesized (so -3 is displayed
as '($3)'), and all large values have a ',' every three
digits (so 1000 is displayed as '$1,000').
comma
- This is like the dollar option, but without the '$'. Positive numbers
are presented normally, and negative ones are in parenthesis.
percent
- The value is multiplied by 100, and is displayed with a
trailing '%'. Thus .01 displays as '1%', while 1 displays as
'100%'.
fixed
- The number is displayed in normal, everyday notation, using
the precision specified. 'fixed.float' is the same as
'float'. 'fixed.0' is the same as 'integer'.
exponent
- The number is displayed in scientific notation.
4.2.3 StyleExamples
Suppose that a cell contains `1234.567'. If we set the format of
the cell to the left hand column, the cell is displayed as in the right
hand column:
| | integer 1234
hidden
general.float 1234.567
general.1 1234.6
dollar.0 $1,234
dollar.2 $1,234.57
comma.1 1,234.6
percent.0 123457%
mpty,
B3 contains @sum(C3.D3), and the display shows
| |
| Col B | Col C | Col D |
------|-------|-------|-------|
Row 2 | | 3 | 5 |
------|-------|-------|-------|
Row 3 | 6 | 4 | 2 |
------|-------|-------|-------|
Row 4 | | 1 | 3 |
------|-------|-------|-------|
|
3.3 Deleting
- C-k
-
Delete the current row. With an argument count it deletes
several rows. (
delete-row) For instance, to delete the row
containing the cell cursor, and the next 4 rows, type C-u 5 C-k.
- M-k
- Delete the current column. With an argument count it deletes
several columns. (
delete-col) For instance, to delete the column that
the cell cursor is in, and the 3 columns to the right, type C-u 4 M-k.
- M-C-?
- Delete the contents (value, formula, format, etc) of a
region. This DOES NOT ask for confirmation.
(
delete-region)
- M-x clear-spreadsheet
- This is an extreme action! Erase all the values in the cells,
and reset all the heights and widths.
3.4 Inserting Rows and Columns
These commands insert blank rows and columns.
- C-o
- Insert a row above the cell cursor. With an argument count it adds
several rows. (
insert-row) For instance, to add 5 rows above
the cell cursor, type C-u 5 C-o.
- M-o
- Insert a column to the left of the cell cursor. With an
argument count it adds several columns. (
insert-col) For instance,
to add 4 rows to the left of the cell cursor, type C-u 4 M-o.
4. Style
It is often important to change how the value of a cell is displayed.
It is possible to change the height and width of a cell, the font used
in a cell, the alignment and protection of a cell, and the formats
used to represent numbers. Entire rows and columns can be hidden.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|