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