]> code.delx.au - gnu-emacs/blob - doc/misc/ses.texi
Tweak previous authors.el change
[gnu-emacs] / doc / misc / ses.texi
1 \input texinfo @c -*- mode: texinfo; coding: utf-8; -*-
2 @c %**start of header
3 @setfilename ../../info/ses
4 @settitle @acronym{SES}: Simple Emacs Spreadsheet
5 @setchapternewpage off
6 @syncodeindex fn cp
7 @syncodeindex vr cp
8 @syncodeindex ky cp
9 @documentencoding UTF-8
10 @c %**end of header
11
12 @copying
13 This file documents @acronym{SES}: the Simple Emacs Spreadsheet.
14
15 Copyright @copyright{} 2002--2014 Free Software Foundation, Inc.
16
17 @quotation
18 Permission is granted to copy, distribute and/or modify this document
19 under the terms of the GNU Free Documentation License, Version 1.3 or
20 any later version published by the Free Software Foundation; with no
21 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
22 and with the Back-Cover Texts as in (a) below. A copy of the license
23 is included in the section entitled ``GNU Free Documentation License.''
24
25 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
26 modify this GNU manual.''
27 @end quotation
28 @end copying
29
30 @dircategory Emacs misc features
31 @direntry
32 * @acronym{SES}: (ses). Simple Emacs Spreadsheet.
33 @end direntry
34
35 @finalout
36
37 @titlepage
38 @title @acronym{SES}
39 @subtitle Simple Emacs Spreadsheet
40 @author Jonathan A. Yavner
41 @author @email{jyavner@@member.fsf.org}
42
43 @page
44 @vskip 0pt plus 1filll
45 @insertcopying
46 @end titlepage
47
48 @contents
49
50 @c ===================================================================
51
52 @ifnottex
53 @node Top
54 @comment node-name, next, previous, up
55 @top @acronym{SES}: Simple Emacs Spreadsheet
56
57 @display
58 @acronym{SES} is a major mode for GNU Emacs to edit spreadsheet files, which
59 contain a rectangular grid of cells. The cells' values are specified
60 by formulas that can refer to the values of other cells.
61 @end display
62 @end ifnottex
63
64 To report bugs, use @kbd{M-x report-emacs-bug}.
65
66 @insertcopying
67
68 @menu
69 * Sales Pitch:: Why use @acronym{SES}?
70 * Quick Tutorial:: A quick introduction
71 * The Basics:: Basic spreadsheet commands
72 * Advanced Features:: Want to know more?
73 * For Gurus:: Want to know @emph{even more}?
74 * Index:: Concept, Function and Variable Index
75 * Acknowledgments:: Acknowledgments
76 * GNU Free Documentation License:: The license for this documentation.
77 @end menu
78
79 @c ===================================================================
80
81 @node Sales Pitch
82 @comment node-name, next, previous, up
83 @chapter Sales Pitch
84 @cindex features
85
86 @itemize @bullet
87 @item Create and edit simple spreadsheets with a minimum of fuss.
88 @item Full undo/redo/autosave.
89 @item Immune to viruses in spreadsheet files.
90 @item Cell formulas are straight Emacs Lisp.
91 @item Printer functions for control of cell appearance.
92 @item Intuitive keystroke commands: C-o = insert row, M-o = insert column, etc.
93 @item ``Spillover'' of lengthy cell values into following blank cells.
94 @item Header line shows column letters or a selected row.
95 @item Completing-read for entering symbols as cell values.
96 @item Cut, copy, and paste can transfer formulas and printer functions.
97 @item Import and export of tab-separated values or tab-separated formulas.
98 @item Plaintext, easily-hacked file format.
99 @end itemize
100
101 @c ===================================================================
102
103 @node Quick Tutorial
104 @chapter Quick Tutorial
105 @cindex introduction
106 @cindex tutorial
107
108 If you want to get started quickly and think that you know what to
109 expect from a simple spreadsheet, this chapter may be all that you
110 need.
111
112 First, visit a new file with the @file{.ses} extension.
113 Emacs presents you with an empty spreadsheet containing a single cell.
114
115 Begin by inserting a headline: @kbd{"Income"@key{RET}}. The double
116 quotes indicate that this is a text cell. (Notice that Emacs
117 automatically inserts the closing quotation mark.)
118
119 To insert your first income value, you must first resize the
120 spreadsheet. Press @key{TAB} to add a new cell and navigate back up
121 to it. Enter a number, such as @samp{2.23}. Then proceed to add a
122 few more income entries, e.g.:
123
124 @example
125 @group
126 A
127 Income
128 2.23
129 0.02
130 15.76
131 -4.00
132 @end group
133 @end example
134
135 To add up the values, enter a Lisp expression:
136
137 @example
138 (+ A2 A3 A4 A5)
139 @end example
140
141 Perhaps you want to add a cell to the right of cell A4 to explain
142 why you have a negative entry. Pressing @kbd{TAB} in that cell
143 adds an entire new column @samp{B}, where you can add such a note.
144
145 The column is fairly narrow by default, but pressing @kbd{w} allows
146 you to resize it as needed. Make it 20 characters wide. You can
147 now add descriptive legends for all the entries, e.g.:
148
149 @example
150 @group
151 A B
152 Income
153 2.23 Consulting fee
154 0.02 Informed opinion
155 15.76 Lemonade stand
156 -4 Loan to Joe
157 14.01 Total
158 @end group
159 @end example
160
161 By default, the labels in column B are right-justified. To change
162 that, you can enter a printer function for the whole column, using
163 e.g., @kbd{M-p ("%s")}. You can override a column's printer function
164 in any individual cell using @kbd{p}.
165
166 If Joe pays back his loan, you might blank that entry; e.g., by
167 positioning the cursor in cell A5 and pressing @kbd{C-d} twice.
168 If you do that, the total cell will display @samp{######}. That is
169 because the regular @code{+} operator does not handle a range that
170 contains some empty cells. Instead of emptying the cell, you could
171 enter a literal @samp{0}, or delete the entire row using @kbd{C-k}.
172 An alternative is to use the special function @code{ses+} instead of
173 the regular @code{+}:
174
175 @example
176 (ses+ A2 A3 A4 A5)
177 @end example
178
179 To make a formula robust against changes in the spreadsheet geometry,
180 you can use the @code{ses-range} macro to refer to a range of cells by
181 the end-points, e.g.:
182
183 @example
184 (apply 'ses+ (ses-range A2 A5))
185 @end example
186
187 (The @code{apply} is necessary because @code{ses-range} produces a
188 @emph{list} of values. This allows for more complex possibilities.)
189
190 @c ===================================================================
191
192 @node The Basics
193 @comment node-name, next, previous, up
194 @chapter The Basics
195 @cindex basic commands
196 @findex ses-jump
197 @findex ses-mark-row
198 @findex ses-mark-column
199 @findex ses-mark-whole-buffer
200 @findex set-mark-command
201 @findex keyboard-quit
202
203 To create a new spreadsheet, visit a nonexistent file whose name ends
204 with ".ses". For example, @kbd{C-x C-f test.ses RET}.
205
206
207 A @dfn{cell identifier} is a symbol with a column letter and a row
208 number. Cell B7 is the 2nd column of the 7th row. For very wide
209 spreadsheets, there are two column letters: cell AB7 is the 28th
210 column of the 7th row. Super wide spreadsheets get AAA1, etc.
211 You move around with the regular Emacs movement commands.
212
213 @table @kbd
214 @item j
215 Moves point to cell, specified by identifier (@code{ses-jump}).
216 @end table
217
218 Point is always at the left edge of a cell, or at the empty endline.
219 When mark is inactive, the current cell is underlined. When mark is
220 active, the range is the highlighted rectangle of cells (@acronym{SES} always
221 uses transient mark mode). Drag the mouse from A1 to A3 to create the
222 range A1-A2. Many @acronym{SES} commands operate only on single cells, not
223 ranges.
224
225 @table @kbd
226 @item C-@key{SPC}
227 @itemx C-@@
228 Set mark at point (@code{set-mark-command}).
229
230 @item C-g
231 Turn off the mark (@code{keyboard-quit}).
232
233 @item M-h
234 Highlight current row (@code{ses-mark-row}).
235
236 @item S-M-h
237 Highlight current column (@code{ses-mark-column}).
238
239 @item C-x h
240 Highlight all cells (@code{mark-whole-buffer}).
241 @end table
242
243 @menu
244 * Formulas::
245 * Resizing::
246 * Printer functions::
247 * Clearing cells::
248 * Copy/cut/paste::
249 * Customizing @acronym{SES}::
250 @end menu
251
252 @node Formulas
253 @section Cell formulas
254 @cindex formulas
255 @cindex formulas, entering
256 @cindex values
257 @cindex cell values
258 @cindex editing cells
259 @findex ses-read-cell
260 @findex ses-read-symbol
261 @findex ses-edit-cell
262 @findex ses-recalculate-cell
263 @findex ses-recalculate-all
264
265 To insert a value into a cell, simply type a numeric expression,
266 @samp{"double-quoted text"}, or a Lisp expression.
267
268 @table @kbd
269 @item 0..9
270 Self-insert a digit (@code{ses-read-cell}).
271
272 @item -
273 Self-insert a negative number (@code{ses-read-cell}).
274
275 @item .
276 Self-insert a fractional number (@code{ses-read-cell}).
277
278 @item "
279 Self-insert a quoted string. The ending double-quote
280 is inserted for you (@code{ses-read-cell}).
281
282 @item (
283 Self-insert an expression. The right-parenthesis is inserted for you
284 (@code{ses-read-cell}). To access another cell's value, just use its
285 identifier in your expression. Whenever the other cell is changed,
286 this cell's formula will be reevaluated. While typing in the
287 expression, you can use @kbd{M-@key{TAB}} to complete symbol names.
288
289 @item ' @r{(apostrophe)}
290 Enter a symbol (ses-read-symbol). @acronym{SES} remembers all symbols that have
291 been used as formulas, so you can type just the beginning of a symbol
292 and use @kbd{@key{SPC}}, @kbd{@key{TAB}}, and @kbd{?} to complete it.
293 @end table
294
295 To enter something else (e.g., a vector), begin with a digit, then
296 erase the digit and type whatever you want.
297
298 @table @kbd
299 @item RET
300 Edit the existing formula in the current cell (@code{ses-edit-cell}).
301
302 @item C-c C-c
303 Force recalculation of the current cell or range (@code{ses-recalculate-cell}).
304
305 @item C-c C-l
306 Recalculate the entire spreadsheet (@code{ses-recalculate-all}).
307 @end table
308
309 @node Resizing
310 @section Resizing the spreadsheet
311 @cindex resizing spreadsheets
312 @cindex dimensions
313 @cindex row, adding or removing
314 @cindex column, adding or removing
315 @cindex adding rows or columns
316 @cindex inserting rows or columns
317 @cindex removing rows or columns
318 @cindex deleting rows or columns
319 @findex ses-insert-row
320 @findex ses-insert-column
321 @findex ses-delete-row
322 @findex ses-delete-column
323 @findex ses-set-column-width
324 @findex ses-forward-or-insert
325 @findex ses-append-row-jump-first-column
326
327
328 Basic commands:
329
330 @table @kbd
331 @item C-o
332 (@code{ses-insert-row})
333
334 @item M-o
335 (@code{ses-insert-column})
336
337 @item C-k
338 (@code{ses-delete-row})
339
340 @item M-k
341 (@code{ses-delete-column})
342
343 @item w
344 (@code{ses-set-column-width})
345
346 @item TAB
347 Moves point to the next rightward cell, or inserts a new column if
348 already at last cell on line, or inserts a new row if at endline
349 (@code{ses-forward-or-insert}).
350
351 @item C-j
352 Linefeed inserts below the current row and moves to column A
353 (@code{ses-append-row-jump-first-column}).
354 @end table
355
356 Resizing the spreadsheet (unless you're just changing a column width)
357 relocates all the cell-references in formulas so they still refer to
358 the same cells. If a formula mentioned B1 and you insert a new first
359 row, the formula will now mention B2.
360
361 If you delete a cell that a formula refers to, the cell-symbol is
362 deleted from the formula, so @code{(+ A1 B1 C1)} after deleting the third
363 column becomes @code{(+ A1 B1)}. In case this is not what you wanted:
364
365 @table @kbd
366 @item C-_
367 @itemx C-x u
368 Undo previous action (@code{(undo)}).
369 @end table
370
371
372 @node Printer functions
373 @section Printer functions
374 @cindex printer functions
375 @cindex cell formatting
376 @cindex formatting cells
377 @findex ses-read-cell-printer
378 @findex ses-read-column-printer
379 @findex ses-read-default-printer
380 @findex ses-center
381 @findex ses-center-span
382 @findex ses-dashfill
383 @findex ses-dashfill-span
384 @findex ses-tildefill-span
385
386
387 Printer functions convert binary cell values into the print forms that
388 Emacs will display on the screen.
389
390 A printer can be a format string, like @samp{"$%.2f"}. The result
391 string is right-aligned within the print cell. To get left-alignment,
392 use parentheses: @samp{("$%.2f")}. A printer can also be a
393 one-argument function (a symbol or a lambda), whose result is a string
394 (right-aligned) or list of one string (left-aligned). While typing in
395 a lambda, you can use @kbd{M-@key{TAB}} to complete the names of symbols.
396
397 Each cell has a printer. If @code{nil}, the column-printer for the cell's
398 column is used. If that is also @code{nil}, the default-printer for the
399 spreadsheet is used.
400
401 @table @kbd
402 @item p
403 Enter a printer for current cell or range (@code{ses-read-cell-printer}).
404
405 @item M-p
406 Enter a printer for the current column (@code{ses-read-column-printer}).
407
408 @item C-c C-p
409 Enter the default printer for the spreadsheet
410 (@code{ses-read-default-printer}).
411 @end table
412
413 The @code{ses-read-@r{XXX}-printer} commands have their own minibuffer
414 history, which is preloaded with the set of all printers used in this
415 spreadsheet, plus the standard printers.
416
417 The standard printers are suitable only for cells, not columns or
418 default, because they format the value using the column-printer (or
419 default-printer if @code{nil}) and then center the result:
420
421 @table @code
422 @item ses-center
423 Just centering.
424
425 @item ses-center-span
426 Centering with spill-over to following blank cells.
427
428 @item ses-dashfill
429 Centering using dashes (-) instead of spaces.
430
431 @item ses-dashfill-span
432 Centering with dashes and spill-over.
433
434 @item ses-tildefill-span
435 Centering with tildes (~) and spill-over.
436 @end table
437
438
439 @node Clearing cells
440 @section Clearing cells
441 @cindex clearing commands
442 @findex ses-clear-cell-backward
443 @findex ses-clear-cell-forward
444
445 These commands set both formula and printer to @code{nil}:
446
447 @table @kbd
448 @item DEL
449 Clear cell and move left (@code{ses-clear-cell-backward}).
450
451 @item C-d
452 Clear cell and move right (@code{ses-clear-cell-forward}).
453 @end table
454
455
456 @node Copy/cut/paste
457 @section Copy, cut, and paste
458 @cindex copy
459 @cindex cut
460 @cindex paste
461 @findex kill-ring-save
462 @findex mouse-set-region
463 @findex mouse-set-secondary
464 @findex ses-kill-override
465 @findex yank
466 @findex clipboard-yank
467 @findex mouse-yank-at-click
468 @findex mouse-yank-at-secondary
469 @findex ses-yank-pop
470
471 The copy functions work on rectangular regions of cells. You can paste the
472 copies into non-@acronym{SES} buffers to export the print text.
473
474 @table @kbd
475 @item M-w
476 @itemx [copy]
477 @itemx [C-insert]
478 Copy the highlighted cells to kill ring and primary clipboard
479 (@code{kill-ring-save}).
480
481 @item [drag-mouse-1]
482 Mark a region and copy it to kill ring and primary clipboard
483 (@code{mouse-set-region}).
484
485 @item [M-drag-mouse-1]
486 Mark a region and copy it to kill ring and secondary clipboard
487 (@code{mouse-set-secondary}).
488
489 @item C-w
490 @itemx [cut]
491 @itemx [S-delete]
492 The cut functions do not actually delete rows or columns---they copy
493 and then clear (@code{ses-kill-override}).
494
495 @item C-y
496 @itemx [S-insert]
497 Paste from kill ring (@code{yank}). The paste functions behave
498 differently depending on the format of the text being inserted:
499 @itemize @bullet
500 @item
501 When pasting cells that were cut from a @acronym{SES} buffer, the print text is
502 ignored and only the attached formula and printer are inserted; cell
503 references in the formula are relocated unless you use @kbd{C-u}.
504 @item
505 The pasted text overwrites a rectangle of cells whose top left corner
506 is the current cell. If part of the rectangle is beyond the edges of
507 the spreadsheet, you must confirm the increase in spreadsheet size.
508 @item
509 Non-@acronym{SES} text is usually inserted as a replacement formula for the
510 current cell. If the formula would be a symbol, it's treated as a
511 string unless you use @kbd{C-u}. Pasted formulas with syntax errors
512 are always treated as strings.
513 @end itemize
514
515 @item [paste]
516 Paste from primary clipboard or kill ring (@code{clipboard-yank}).
517
518 @item [mouse-2]
519 Set point and paste from primary clipboard (@code{mouse-yank-at-click}).
520
521 @item [M-mouse-2]
522 Set point and paste from secondary clipboard (@code{mouse-yank-secondary}).
523
524 @item M-y
525 Immediately after a paste, you can replace the text with a preceding
526 element from the kill ring (@code{ses-yank-pop}). Unlike the standard
527 Emacs yank-pop, the @acronym{SES} version uses @code{undo} to delete the old
528 yank. This doesn't make any difference?
529 @end table
530
531 @node Customizing @acronym{SES}
532 @section Customizing @acronym{SES}
533 @cindex customizing
534 @vindex enable-local-eval
535 @vindex ses-mode-hook
536 @vindex safe-functions
537 @vindex enable-local-eval
538
539
540 By default, a newly-created spreadsheet has 1 row and 1 column. The
541 column width is 7 and the default printer is @samp{"%.7g"}. Each of these
542 can be customized. Look in group ``ses''.
543
544 After entering a cell value, point normally moves right to the next
545 cell. You can customize @code{ses-after-entry-functions} to move left or
546 up or down. For diagonal movement, select two functions from the
547 list.
548
549 @code{ses-mode-hook} is a normal mode hook (list of functions to
550 execute when starting @acronym{SES} mode for a buffer).
551
552 The variable @code{safe-functions} is a list of possibly-unsafe
553 functions to be treated as safe when analyzing formulas and printers.
554 @xref{Virus protection}. Before customizing @code{safe-functions},
555 think about how much you trust the person who's suggesting this
556 change. The value @code{t} turns off all anti-virus protection. A
557 list-of-functions value might enable a ``gee whiz'' spreadsheet, but it
558 also creates trapdoors in your anti-virus armor. In order for virus
559 protection to work, you must always press @kbd{n} when presented with
560 a virus warning, unless you understand what the questionable code is
561 trying to do. Do not listen to those who tell you to customize
562 @code{enable-local-eval}---this variable is for people who don't wear
563 safety belts!
564
565
566 @c ===================================================================
567
568 @node Advanced Features
569 @chapter Advanced Features
570 @cindex advanced features
571 @findex ses-read-header-row
572
573
574 @table @kbd
575 @item C-c M-C-h
576 (@code{ses-set-header-row}).
577 @findex ses-set-header-row
578 @kindex C-c M-C-h
579 The header line at the top of the @acronym{SES}
580 window normally shows the column letter for each column. You can set
581 it to show a copy of some row, such as a row of column titles, so that
582 row will always be visible. Default is to set the current row as the
583 header; use C-u to prompt for header row. Set the header to row 0 to
584 show column letters again.
585 @item [header-line mouse-3]
586 Pops up a menu to set the current row as the header, or revert to
587 column letters.
588 @item M-x ses-rename-cell
589 @findex ses-rename-cell
590 Rename a cell from a standard A1-like name to any
591 string.
592 @item M-x ses-repair-cell-reference-all
593 @findex ses-repair-cell-reference-all
594 When you interrupt a cell formula update by clicking @kbd{C-g}, then
595 the cell reference link may be broken, which will jeopardize automatic
596 cell update when any other cell on which it depends is changed. To
597 repair that use function @code{ses-repair-cell-reference-all}
598 @end table
599
600 @menu
601 * The print area::
602 * Ranges in formulas::
603 * Sorting by column::
604 * Standard formula functions::
605 * More on cell printing::
606 * Import and export::
607 * Virus protection::
608 * Spreadsheets with details and summary::
609 @end menu
610
611 @node The print area
612 @section The print area
613 @cindex print area
614 @findex widen
615 @findex ses-renarrow-buffer
616 @findex ses-reprint-all
617
618 A @acronym{SES} file consists of a print area and a data area. Normally the
619 buffer is narrowed to show only the print area. The print area is
620 read-only except for special @acronym{SES} commands; it contains cell values
621 formatted by printer functions. The data area records the formula and
622 printer functions, etc.
623
624 @table @kbd
625 @item C-x n w
626 Show print and data areas (@code{widen}).
627
628 @item C-c C-n
629 Show only print area (@code{ses-renarrow-buffer}).
630
631 @item S-C-l
632 @itemx M-C-l
633 Recreate print area by reevaluating printer functions for all cells
634 (@code{ses-reprint-all}).
635 @end table
636
637 @node Ranges in formulas
638 @section Ranges in formulas
639 @cindex ranges
640 @findex ses-insert-range-click
641 @findex ses-insert-range
642 @findex ses-insert-ses-range-click
643 @findex ses-insert-ses-range
644 @vindex from
645 @vindex to
646
647 A formula like
648 @lisp
649 (+ A1 A2 A3)
650 @end lisp
651 is the sum of three specific cells. If you insert a new second row,
652 the formula becomes
653 @lisp
654 (+ A1 A3 A4)
655 @end lisp
656 and the new row is not included in the sum.
657
658 The macro @code{(ses-range @var{from} @var{to})} evaluates to a list of
659 the values in a rectangle of cells. If your formula is
660 @lisp
661 (apply '+ (ses-range A1 A3))
662 @end lisp
663 and you insert a new second row, it becomes
664 @lisp
665 (apply '+ (ses-range A1 A4))
666 @end lisp
667 and the new row is included in the sum.
668
669 While entering or editing a formula in the minibuffer, you can select
670 a range in the spreadsheet (using mouse or keyboard), then paste a
671 representation of that range into your formula. Suppose you select
672 A1-C1:
673
674 @table @kbd
675 @item [S-mouse-3]
676 Inserts "A1 B1 C1" @code{(ses-insert-range-click})
677
678 @item C-c C-r
679 Keyboard version (@code{ses-insert-range}).
680
681 @item [C-S-mouse-3]
682 Inserts "(ses-range A1 C1)" (@code{ses-insert-ses-range-click}).
683
684 @item C-c C-s
685 Keyboard version (@code{ses-insert-ses-range}).
686 @end table
687
688 If you delete the @var{from} or @var{to} cell for a range, the nearest
689 still-existing cell is used instead. If you delete the entire range,
690 the formula relocator will delete the ses-range from the formula.
691
692 If you insert a new row just beyond the end of a one-column range, or
693 a new column just beyond a one-row range, the new cell is included in
694 the range. New cells inserted just before a range are not included.
695
696 Flags can be added to @code{ses-range} immediately after the @var{to}
697 cell.
698 @table @code
699 @item !
700 Empty cells in range can be removed by adding the @code{!} flag. An
701 empty cell is a cell the value of which is one of symbols @code{nil}
702 or @code{*skip*}. For instance @code{(ses-range A1 A4 !)} will do the
703 same as @code{(list A1 A3)} when cells @code{A2} and @code{A4} are
704 empty.
705 @item _
706 Empty cell values are replaced by the argument following flag
707 @code{_}, or @code{0} when flag @code{_} is last in argument list. For
708 instance @code{(ses-range A1 A4 _ "empty")} will do the same as
709 @code{(list A1 "empty" A3 "empty")} when cells @code{A2} and @code{A4}
710 are empty. Similarly, @code{(ses-range A1 A4 _ )} will do the same as
711 @code{(list A1 0 A3 0)}.
712 @item >v
713 When order matters, list cells by reading cells row-wise from top left
714 to bottom right. This flag is provided for completeness only as it is
715 the default reading order.
716 @item <v
717 List cells by reading cells row-wise from top right to bottom left.
718 @item v>
719 List cells by reading cells column-wise from top left to bottom right.
720 @item v<
721 List cells by reading cells column-wise from top right to bottom left.
722 @item v
723 A short hand for @code{v>}.
724 @item ^
725 A short hand for @code{^>}.
726 @item >
727 A short hand for @code{>v}.
728 @item <
729 A short hand for @code{>^}.
730 @item *
731 Instead of listing cells, it makes a Calc vector or matrix of it
732 (@pxref{Top,,,calc,GNU Emacs Calc Manual}). If the range contains only
733 one row or one column a vector is made, otherwise a matrix is made.
734 @item *2
735 Same as @code{*} except that a matrix is always made even when there
736 is only one row or column in the range.
737 @item *1
738 Same as @code{*} except that a vector is always made even when there
739 is only one row or column in the range, that is to say the
740 corresponding matrix is flattened.
741 @end table
742
743 @node Sorting by column
744 @section Sorting by column
745 @cindex sorting
746 @findex ses-sort-column
747 @findex ses-sort-column-click
748
749 @table @kbd
750 @item C-c M-C-s
751 Sort the cells of a range using one of the columns
752 (@code{ses-sort-column}). The rows (or partial rows if the range
753 doesn't include all columns) are rearranged so the chosen column will
754 be in order.
755
756 @item [header-line mouse-2]
757 The easiest way to sort is to click mouse-2 on the chosen column's header row
758 (@code{ses-sort-column-click}).
759 @end table
760
761 The sort comparison uses @code{string<}, which works well for
762 right-justified numbers and left-justified strings.
763
764 With prefix arg, sort is in descending order.
765
766 Rows are moved one at a time, with relocation of formulas. This works
767 well if formulas refer to other cells in their row, not so well for
768 formulas that refer to other rows in the range or to cells outside the
769 range.
770
771
772 @node Standard formula functions
773 @section Standard formula functions
774 @cindex standard formula functions
775 @cindex *skip*
776 @cindex *error*
777 @findex ses-delete-blanks
778 @findex ses-average
779 @findex ses+
780
781 Oftentimes you want a calculation to exclude the blank cells. Here
782 are some useful functions to call from your formulas:
783
784 @table @code
785 @item (ses-delete-blanks &rest @var{args})
786 Returns a list from which all blank cells (value is either @code{nil} or
787 '*skip*) have been deleted.
788
789 @item (ses+ &rest @var{args})
790 Sum of non-blank arguments.
791
792 @item (ses-average @var{list})
793 Average of non-blank elements in @var{list}. Here the list is passed
794 as a single argument, since you'll probably use it with @code{ses-range}.
795 @end table
796
797 @node More on cell printing
798 @section More on cell printing
799 @cindex cell printing, more
800 @findex ses-truncate-cell
801 @findex ses-recalculate-cell
802
803 Special cell values:
804 @itemize
805 @item nil prints the same as "", but allows previous cell to spill over.
806 @item '*skip* replaces nil when the previous cell actually does spill over;
807 nothing is printed for it.
808 @item '*error* indicates that the formula signaled an error instead of
809 producing a value: the print cell is filled with hash marks (#).
810 @end itemize
811
812 If the result from the printer function is too wide for the cell and
813 the following cell is @code{nil}, the result will spill over into the
814 following cell. Very wide results can spill over several cells. If
815 the result is too wide for the available space (up to the end of the
816 row or the next non-@code{nil} cell), the result is truncated if the cell's
817 value is a string, or replaced with hash marks otherwise.
818
819 @acronym{SES} could get confused by printer results that contain newlines or
820 tabs, so these are replaced with question marks.
821
822 @table @kbd
823 @item t
824 Confine a cell to its own column (@code{ses-truncate-cell}). This
825 allows you to move point to a rightward cell that would otherwise be
826 covered by a spill-over. If you don't change the rightward cell, the
827 confined cell will spill over again the next time it is reprinted.
828
829 @item c
830 When applied to a single cell, this command displays in the echo area
831 any formula error or printer error that occurred during
832 recalculation/reprinting (@code{ses-recalculate-cell}). You can use
833 this to undo the effect of @kbd{t}.
834 @end table
835
836 When a printer function signals an error, the fallback printer
837 @samp{"%s"} is substituted. This is useful when your column printer
838 is numeric-only and you use a string as a cell value. Note that the
839 standard default printer is ``%.7g'' which is numeric-only, so cells
840 that are empty of contain strings will use the fallback printer.
841 @kbd{c} on such cells will display ``Format specifier doesn't match
842 argument type''.
843
844
845 @node Import and export
846 @section Import and export
847 @cindex import and export
848 @cindex export, and import
849 @findex ses-export-tsv
850 @findex ses-export-tsf
851
852 @table @kbd
853 @item x t
854 Export a range of cells as tab-separated values (@code{ses-export-tsv}).
855 @item x T
856 Export a range of cells as tab-separated formulas (@code{ses-export-tsf}).
857 @end table
858
859 The exported text goes to the kill ring; you can paste it into
860 another buffer. Columns are separated by tabs, rows by newlines.
861
862 To import text, use any of the yank commands where the text to paste
863 contains tabs and/or newlines. Imported formulas are not relocated.
864
865 @node Virus protection
866 @section Virus protection
867 @cindex virus protection
868
869 Whenever a formula or printer is read from a file or is pasted into
870 the spreadsheet, it receives a ``needs safety check'' marking. Later,
871 when the formula or printer is evaluated for the first time, it is
872 checked for safety using the @code{unsafep} predicate; if found to be
873 ``possibly unsafe'', the questionable formula or printer is displayed
874 and you must press Y to approve it or N to use a substitute. The
875 substitute always signals an error.
876
877 Formulas or printers that you type in are checked immediately for
878 safety. If found to be possibly unsafe and you press N to disapprove,
879 the action is canceled and the old formula or printer will remain.
880
881 Besides viruses (which try to copy themselves to other files),
882 @code{unsafep} can also detect all other kinds of Trojan horses, such as
883 spreadsheets that delete files, send email, flood Web sites, alter
884 your Emacs settings, etc.
885
886 Generally, spreadsheet formulas and printers are simple things that
887 don't need to do any fancy computing, so all potentially-dangerous
888 parts of the Emacs Lisp environment can be excluded without cramping
889 your style as a formula-writer. See the documentation in @file{unsafep.el}
890 for more info on how Lisp forms are classified as safe or unsafe.
891
892 @node Spreadsheets with details and summary
893 @section Spreadsheets with details and summary
894 @cindex details and summary
895 @cindex summary, and details
896
897 A common organization for spreadsheets is to have a bunch of ``detail''
898 rows, each perhaps describing a transaction, and then a set of
899 ``summary'' rows that each show reduced data for some subset of the
900 details. @acronym{SES} supports this organization via the @code{ses-select}
901 function.
902
903 @table @code
904 @item (ses-select @var{fromrange} @var{test} @var{torange})
905 Returns a subset of @var{torange}. For each member in @var{fromrange}
906 that is equal to @var{test}, the corresponding member of @var{torange}
907 is included in the result.
908 @end table
909
910 Example of use:
911 @lisp
912 (ses-average (ses-select (ses-range A1 A5) 'Smith (ses-range B1 B5)))
913 @end lisp
914 This computes the average of the B column values for those rows whose
915 A column value is the symbol 'Smith.
916
917 Arguably one could specify only @var{fromrange} plus
918 @var{to-row-offset} and @var{to-column-offset}. The @var{torange} is
919 stated explicitly to ensure that the formula will be recalculated if
920 any cell in either range is changed.
921
922 File @file{etc/ses-example.el} in the Emacs distribution is an example of a
923 details-and-summary spreadsheet.
924
925
926 @c ===================================================================
927
928 @node For Gurus
929 @chapter For Gurus
930 @cindex advanced features
931
932 @menu
933 * Deferred updates::
934 * Nonrelocatable references::
935 * The data area::
936 * Buffer-local variables in spreadsheets::
937 * Uses of defadvice in @acronym{SES}::
938 @end menu
939
940 @node Deferred updates
941 @section Deferred updates
942 @cindex deferred updates
943 @cindex updates, deferred
944 @vindex run-with-idle-timer
945
946 To save time by avoiding redundant computations, cells that need
947 recalculation due to changes in other cells are added to a set. At
948 the end of the command, each cell in the set is recalculated once.
949 This can create a new set of cells that need recalculation. The
950 process is repeated until either the set is empty or it stops changing
951 (due to circular references among the cells). In extreme cases, you
952 might see progress messages of the form ``Recalculating... (@var{nnn}
953 cells left)''. If you interrupt the calculation using @kbd{C-g}, the
954 spreadsheet will be left in an inconsistent state, so use @kbd{C-_} or
955 @kbd{C-c C-l} to fix it.
956
957 To save even more time by avoiding redundant writes, cells that have
958 changes are added to a set instead of being written immediately to the
959 data area. Each cell in the set is written once, at the end of the
960 command. If you change vast quantities of cells, you might see a
961 progress message of the form ``Writing... (@var{nnn} cells left)''.
962 These deferred cell-writes cannot be interrupted by @kbd{C-g}, so
963 you'll just have to wait.
964
965 @acronym{SES} uses @code{run-with-idle-timer} to move the cell underline when
966 Emacs will be scrolling the buffer after the end of a command, and
967 also to narrow and underline after @kbd{C-x C-v}. This is visible as
968 a momentary glitch after C-x C-v and certain scrolling commands. You
969 can type ahead without worrying about the glitch.
970
971
972 @node Nonrelocatable references
973 @section Nonrelocatable references
974 @cindex nonrelocatable references
975 @cindex references, nonrelocatable
976
977 @kbd{C-y} relocates all cell-references in a pasted formula, while
978 @kbd{C-u C-y} relocates none of the cell-references. What about mixed
979 cases?
980
981 You can use
982 @lisp
983 (symbol-value 'B3)
984 @end lisp
985 to make an @dfn{absolute reference}. The formula relocator skips over
986 quoted things, so this will not be relocated when pasted or when
987 rows/columns are inserted/deleted. However, B3 will not be recorded
988 as a dependency of this cell, so this cell will not be updated
989 automatically when B3 is changed.
990
991 The variables @code{row} and @code{col} are dynamically bound while a
992 cell formula is being evaluated. You can use
993 @lisp
994 (ses-cell-value row 0)
995 @end lisp
996 to get the value from the leftmost column in the current row. This
997 kind of dependency is also not recorded.
998
999
1000 @node The data area
1001 @section The data area
1002 @cindex data area
1003 @findex ses-reconstruct-all
1004
1005 Begins with an 014 character, followed by sets of cell-definition
1006 macros for each row, followed by column-widths, column-printers,
1007 default-printer, and header-row. Then there's the global parameters
1008 (file-format ID, numrows, numcols) and the local variables (specifying
1009 @acronym{SES} mode for the buffer, etc.).
1010
1011 When a @acronym{SES} file is loaded, first the numrows and numcols values are
1012 loaded, then the entire data area is @code{eval}ed, and finally the local
1013 variables are processed.
1014
1015 You can edit the data area, but don't insert or delete any newlines
1016 except in the local-variables part, since @acronym{SES} locates things by
1017 counting newlines. Use @kbd{C-x C-e} at the end of a line to install
1018 your edits into the spreadsheet data structures (this does not update
1019 the print area, use, e.g., @kbd{C-c C-l} for that).
1020
1021 The data area is maintained as an image of spreadsheet data
1022 structures that area stored in buffer-local variables. If the data
1023 area gets messed up, you can try reconstructing the data area from the
1024 data structures:
1025
1026 @table @kbd
1027 @item C-c M-C-l
1028 (@code{ses-reconstruct-all}).
1029 @end table
1030
1031
1032 @node Buffer-local variables in spreadsheets
1033 @section Buffer-local variables in spreadsheets
1034 @cindex buffer-local variables
1035 @cindex variables, buffer-local
1036
1037 You can add additional local variables to the list at the bottom of
1038 the data area, such as hidden constants you want to refer to in your
1039 formulas.
1040
1041 You can override the variable @code{ses--symbolic-formulas} to be a list of
1042 symbols (as parenthesized strings) to show as completions for the '
1043 command. This initial completions list is used instead of the actual
1044 set of symbols-as-formulas in the spreadsheet.
1045
1046 For an example of this, see file @file{etc/ses-example.ses}.
1047
1048 If (for some reason) you want your formulas or printers to save data
1049 into variables, you must declare these variables as buffer-locals in
1050 order to avoid a virus warning.
1051
1052 You can define functions by making them values for the fake local
1053 variable @code{eval}. Such functions can then be used in your
1054 formulas and printers, but usually each @code{eval} is presented to
1055 the user during file loading as a potential virus. This can get
1056 annoying.
1057
1058 You can define functions in your @file{.emacs} file. Other people can
1059 still read the print area of your spreadsheet, but they won't be able
1060 to recalculate or reprint anything that depends on your functions. To
1061 avoid virus warnings, each function used in a formula needs
1062 @lisp
1063 (put 'your-function-name 'safe-function t)
1064 @end lisp
1065
1066 @node Uses of defadvice in @acronym{SES}
1067 @section Uses of defadvice in @acronym{SES}
1068 @cindex defadvice
1069 @cindex undo-more
1070 @cindex copy-region-as-kill
1071 @cindex yank
1072
1073 @table @code
1074 @item undo-more
1075 Defines a new undo element format (@var{fun} . @var{args}), which
1076 means ``undo by applying @var{fun} to @var{args}''. For spreadsheet
1077 buffers, it allows undos in the data area even though that's outside
1078 the narrowing.
1079
1080 @item copy-region-as-kill
1081 When copying from the print area of a spreadsheet, treat the region as
1082 a rectangle and attach each cell's formula and printer as 'ses
1083 properties.
1084
1085 @item yank
1086 When yanking into the print area of a spreadsheet, first try to yank
1087 as cells (if the yank text has 'ses properties), then as tab-separated
1088 formulas, then (if all else fails) as a single formula for the current
1089 cell.
1090 @end table
1091
1092 @c ===================================================================
1093 @node Index
1094 @unnumbered Index
1095
1096 @printindex cp
1097
1098 @c ===================================================================
1099
1100 @node Acknowledgments
1101 @unnumbered Acknowledgments
1102
1103 Coding by:
1104 @quotation
1105 @c jyavner@@member.fsf.org
1106 Jonathan Yavner,
1107 @c monnier@@gnu.org
1108 Stefan Monnier,
1109 @c shigeru.fukaya@@gmail.com
1110 Shigeru Fukaya
1111 @end quotation
1112
1113 @noindent
1114 Texinfo manual by:
1115 @quotation
1116 @c jyavner@@member.fsf.org
1117 Jonathan Yavner,
1118 @c brad@@chenla.org
1119 Brad Collins
1120 @end quotation
1121
1122 @noindent
1123 Ideas from:
1124 @quotation
1125 @c christoph.conrad@@gmx.de
1126 Christoph Conrad,
1127 @c cyberbob@@redneck.gacracker.org
1128 CyberBob,
1129 @c syver-en@@online.no
1130 Syver Enstad,
1131 @c fischman@@zion.bpnetworks.com
1132 Ami Fischman,
1133 @c Thomas.Gehrlein@@t-online.de
1134 Thomas Gehrlein,
1135 @c c.f.a.johnson@@rogers.com
1136 Chris F.A. Johnson,
1137 @c lyusong@@hotmail.com
1138 Yusong Li,
1139 @c juri@@jurta.org
1140 Juri Linkov,
1141 @c maierh@@myself.com
1142 Harald Maier,
1143 @c anash@@san.rr.com
1144 Alan Nash,
1145 @c pinard@@iro.umontreal.ca
1146 François Pinard,
1147 @c ppinto@@cs.cmu.edu
1148 Pedro Pinto,
1149 @c xsteve@@riic.at
1150 Stefan Reichör,
1151 @c epameinondas@@gmx.de
1152 Oliver Scholz,
1153 @c rms@@gnu.org
1154 Richard M. Stallman,
1155 @c teirllm@@dms.auburn.edu
1156 Luc Teirlinck,
1157 @c jotto@@pobox.com
1158 J. Otto Tennant,
1159 @c jphil@@acs.pagesjaunes.fr
1160 Jean-Philippe Theberge
1161 @end quotation
1162
1163 @c ===================================================================
1164
1165 @node GNU Free Documentation License
1166 @appendix GNU Free Documentation License
1167 @include doclicense.texi
1168
1169 @bye