]> code.delx.au - gnu-emacs/blob - doc/misc/ses.texi
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
[gnu-emacs] / doc / misc / ses.texi
1 \input texinfo @c -*- mode: texinfo; coding: utf-8; -*-
2 @c %**start of header
3 @setfilename ../../info/ses.info
4 @settitle @acronym{SES}: Simple Emacs Spreadsheet
5 @include docstyle.texi
6 @setchapternewpage off
7 @syncodeindex fn cp
8 @syncodeindex vr cp
9 @syncodeindex ky cp
10 @c %**end of header
11
12 @copying
13 This file documents @acronym{SES}: the Simple Emacs Spreadsheet.
14
15 Copyright @copyright{} 2002--2015 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 You can define printer function local to a sheet with command
439 @code{ses-define-local-printer}. For instance define printer
440 @samp{foo} to @code{"%.2f"} and then use symbol @samp{foo} as a
441 printer function. Then, if you call again
442 @code{ses-define-local-printer} on @samp{foo} to redefine it as
443 @code{"%.3f"} all the cells using printer @samp{foo} will be reprinted
444 accordingly.
445
446 When you define a printer function with a lambda expression taking one
447 argument, please take care that the returned value is a string, or a
448 list containing a string, even when the input argument has an
449 unexpected value. Here is an example:
450
451 @example
452 (lambda (val)
453 (cond
454 ((null val) "")
455 ((and (numberp val) (>= val 0)) (format "%.1f" val))
456 (t (ses-center-span (format "%S" val) ?#))))
457 @end example
458
459 This example will:
460 @itemize
461 @item
462 When the cell is empty (ie.@: when @code{val} is @code{nil}), print an
463 empty string @code{""}
464 @item
465 When the cell value is a non negative number, format the the value in
466 fixed-point notation with one decimal after point
467 @item
468 Otherwise, handle the value as erroneous by printing it as an
469 s-expression (using @code{prin1}), centered and surrounded by @code{#}
470 filling.
471 @end itemize
472
473
474
475
476 @node Clearing cells
477 @section Clearing cells
478 @cindex clearing commands
479 @findex ses-clear-cell-backward
480 @findex ses-clear-cell-forward
481
482 These commands set both formula and printer to @code{nil}:
483
484 @table @kbd
485 @item DEL
486 Clear cell and move left (@code{ses-clear-cell-backward}).
487
488 @item C-d
489 Clear cell and move right (@code{ses-clear-cell-forward}).
490 @end table
491
492
493 @node Copy/cut/paste
494 @section Copy, cut, and paste
495 @cindex copy
496 @cindex cut
497 @cindex paste
498 @findex kill-ring-save
499 @findex mouse-set-region
500 @findex mouse-set-secondary
501 @findex ses-kill-override
502 @findex yank
503 @findex clipboard-yank
504 @findex mouse-yank-at-click
505 @findex mouse-yank-at-secondary
506 @findex ses-yank-pop
507
508 The copy functions work on rectangular regions of cells. You can paste the
509 copies into non-@acronym{SES} buffers to export the print text.
510
511 @table @kbd
512 @item M-w
513 @itemx [copy]
514 @itemx [C-insert]
515 Copy the highlighted cells to kill ring and primary clipboard
516 (@code{kill-ring-save}).
517
518 @item [drag-mouse-1]
519 Mark a region and copy it to kill ring and primary clipboard
520 (@code{mouse-set-region}).
521
522 @item [M-drag-mouse-1]
523 Mark a region and copy it to kill ring and secondary clipboard
524 (@code{mouse-set-secondary}).
525
526 @item C-w
527 @itemx [cut]
528 @itemx [S-delete]
529 The cut functions do not actually delete rows or columns---they copy
530 and then clear (@code{ses-kill-override}).
531
532 @item C-y
533 @itemx [S-insert]
534 Paste from kill ring (@code{yank}). The paste functions behave
535 differently depending on the format of the text being inserted:
536 @itemize @bullet
537 @item
538 When pasting cells that were cut from a @acronym{SES} buffer, the print text is
539 ignored and only the attached formula and printer are inserted; cell
540 references in the formula are relocated unless you use @kbd{C-u}.
541 @item
542 The pasted text overwrites a rectangle of cells whose top left corner
543 is the current cell. If part of the rectangle is beyond the edges of
544 the spreadsheet, you must confirm the increase in spreadsheet size.
545 @item
546 Non-@acronym{SES} text is usually inserted as a replacement formula for the
547 current cell. If the formula would be a symbol, it's treated as a
548 string unless you use @kbd{C-u}. Pasted formulas with syntax errors
549 are always treated as strings.
550 @end itemize
551
552 @item [paste]
553 Paste from primary clipboard or kill ring (@code{clipboard-yank}).
554
555 @item [mouse-2]
556 Set point and paste from primary clipboard (@code{mouse-yank-at-click}).
557
558 @item [M-mouse-2]
559 Set point and paste from secondary clipboard (@code{mouse-yank-secondary}).
560
561 @item M-y
562 Immediately after a paste, you can replace the text with a preceding
563 element from the kill ring (@code{ses-yank-pop}). Unlike the standard
564 Emacs yank-pop, the @acronym{SES} version uses @code{undo} to delete the old
565 yank. This doesn't make any difference?
566 @end table
567
568 @node Customizing @acronym{SES}
569 @section Customizing @acronym{SES}
570 @cindex customizing
571 @vindex enable-local-eval
572 @vindex ses-mode-hook
573 @vindex safe-functions
574 @vindex enable-local-eval
575
576
577 By default, a newly-created spreadsheet has 1 row and 1 column. The
578 column width is 7 and the default printer is @samp{"%.7g"}. Each of these
579 can be customized. Look in group ``ses''.
580
581 After entering a cell value, point normally moves right to the next
582 cell. You can customize @code{ses-after-entry-functions} to move left or
583 up or down. For diagonal movement, select two functions from the
584 list.
585
586 @code{ses-mode-hook} is a normal mode hook (list of functions to
587 execute when starting @acronym{SES} mode for a buffer).
588
589 The variable @code{safe-functions} is a list of possibly-unsafe
590 functions to be treated as safe when analyzing formulas and printers.
591 @xref{Virus protection}. Before customizing @code{safe-functions},
592 think about how much you trust the person who's suggesting this
593 change. The value @code{t} turns off all anti-virus protection. A
594 list-of-functions value might enable a ``gee whiz'' spreadsheet, but it
595 also creates trapdoors in your anti-virus armor. In order for virus
596 protection to work, you must always press @kbd{n} when presented with
597 a virus warning, unless you understand what the questionable code is
598 trying to do. Do not listen to those who tell you to customize
599 @code{enable-local-eval}---this variable is for people who don't wear
600 safety belts!
601
602
603 @c ===================================================================
604
605 @node Advanced Features
606 @chapter Advanced Features
607 @cindex advanced features
608 @findex ses-read-header-row
609
610
611 @table @kbd
612 @item C-c M-C-h
613 (@code{ses-set-header-row}).
614 @findex ses-set-header-row
615 @kindex C-c M-C-h
616 The header line at the top of the @acronym{SES}
617 window normally shows the column letter for each column. You can set
618 it to show a copy of some row, such as a row of column titles, so that
619 row will always be visible. Default is to set the current row as the
620 header; use C-u to prompt for header row. Set the header to row 0 to
621 show column letters again.
622 @item [header-line mouse-3]
623 Pops up a menu to set the current row as the header, or revert to
624 column letters.
625 @item M-x ses-rename-cell
626 @findex ses-rename-cell
627 Rename a cell from a standard A1-like name to any
628 string.
629 @item M-x ses-repair-cell-reference-all
630 @findex ses-repair-cell-reference-all
631 When you interrupt a cell formula update by clicking @kbd{C-g}, then
632 the cell reference link may be broken, which will jeopardize automatic
633 cell update when any other cell on which it depends is changed. To
634 repair that use function @code{ses-repair-cell-reference-all}
635 @end table
636
637 @menu
638 * The print area::
639 * Ranges in formulas::
640 * Sorting by column::
641 * Standard formula functions::
642 * More on cell printing::
643 * Import and export::
644 * Virus protection::
645 * Spreadsheets with details and summary::
646 @end menu
647
648 @node The print area
649 @section The print area
650 @cindex print area
651 @findex widen
652 @findex ses-renarrow-buffer
653 @findex ses-reprint-all
654
655 A @acronym{SES} file consists of a print area and a data area. Normally the
656 buffer is narrowed to show only the print area. The print area is
657 read-only except for special @acronym{SES} commands; it contains cell values
658 formatted by printer functions. The data area records the formula and
659 printer functions, etc.
660
661 @table @kbd
662 @item C-x n w
663 Show print and data areas (@code{widen}).
664
665 @item C-c C-n
666 Show only print area (@code{ses-renarrow-buffer}).
667
668 @item S-C-l
669 @itemx M-C-l
670 Recreate print area by reevaluating printer functions for all cells
671 (@code{ses-reprint-all}).
672 @end table
673
674 @node Ranges in formulas
675 @section Ranges in formulas
676 @cindex ranges
677 @findex ses-insert-range-click
678 @findex ses-insert-range
679 @findex ses-insert-ses-range-click
680 @findex ses-insert-ses-range
681 @vindex from
682 @vindex to
683
684 A formula like
685 @lisp
686 (+ A1 A2 A3)
687 @end lisp
688 is the sum of three specific cells. If you insert a new second row,
689 the formula becomes
690 @lisp
691 (+ A1 A3 A4)
692 @end lisp
693 and the new row is not included in the sum.
694
695 The macro @code{(ses-range @var{from} @var{to})} evaluates to a list of
696 the values in a rectangle of cells. If your formula is
697 @lisp
698 (apply '+ (ses-range A1 A3))
699 @end lisp
700 and you insert a new second row, it becomes
701 @lisp
702 (apply '+ (ses-range A1 A4))
703 @end lisp
704 and the new row is included in the sum.
705
706 While entering or editing a formula in the minibuffer, you can select
707 a range in the spreadsheet (using mouse or keyboard), then paste a
708 representation of that range into your formula. Suppose you select
709 A1-C1:
710
711 @table @kbd
712 @item [S-mouse-3]
713 Inserts "A1 B1 C1" @code{(ses-insert-range-click})
714
715 @item C-c C-r
716 Keyboard version (@code{ses-insert-range}).
717
718 @item [C-S-mouse-3]
719 Inserts "(ses-range A1 C1)" (@code{ses-insert-ses-range-click}).
720
721 @item C-c C-s
722 Keyboard version (@code{ses-insert-ses-range}).
723 @end table
724
725 If you delete the @var{from} or @var{to} cell for a range, the nearest
726 still-existing cell is used instead. If you delete the entire range,
727 the formula relocator will delete the ses-range from the formula.
728
729 If you insert a new row just beyond the end of a one-column range, or
730 a new column just beyond a one-row range, the new cell is included in
731 the range. New cells inserted just before a range are not included.
732
733 Flags can be added to @code{ses-range} immediately after the @var{to}
734 cell.
735 @table @code
736 @item !
737 Empty cells in range can be removed by adding the @code{!} flag. An
738 empty cell is a cell the value of which is one of symbols @code{nil}
739 or @code{*skip*}. For instance @code{(ses-range A1 A4 !)} will do the
740 same as @code{(list A1 A3)} when cells @code{A2} and @code{A4} are
741 empty.
742 @item _
743 Empty cell values are replaced by the argument following flag
744 @code{_}, or @code{0} when flag @code{_} is last in argument list. For
745 instance @code{(ses-range A1 A4 _ "empty")} will do the same as
746 @code{(list A1 "empty" A3 "empty")} when cells @code{A2} and @code{A4}
747 are empty. Similarly, @code{(ses-range A1 A4 _ )} will do the same as
748 @code{(list A1 0 A3 0)}.
749 @item >v
750 When order matters, list cells by reading cells row-wise from top left
751 to bottom right. This flag is provided for completeness only as it is
752 the default reading order.
753 @item <v
754 List cells by reading cells row-wise from top right to bottom left.
755 @item v>
756 List cells by reading cells column-wise from top left to bottom right.
757 @item v<
758 List cells by reading cells column-wise from top right to bottom left.
759 @item v
760 A short hand for @code{v>}.
761 @item ^
762 A short hand for @code{^>}.
763 @item >
764 A short hand for @code{>v}.
765 @item <
766 A short hand for @code{>^}.
767 @item *
768 Instead of listing cells, it makes a Calc vector or matrix of it
769 (@pxref{Top,,,calc,GNU Emacs Calc Manual}). If the range contains only
770 one row or one column a vector is made, otherwise a matrix is made.
771 @item *2
772 Same as @code{*} except that a matrix is always made even when there
773 is only one row or column in the range.
774 @item *1
775 Same as @code{*} except that a vector is always made even when there
776 is only one row or column in the range, that is to say the
777 corresponding matrix is flattened.
778 @end table
779
780 @node Sorting by column
781 @section Sorting by column
782 @cindex sorting
783 @findex ses-sort-column
784 @findex ses-sort-column-click
785
786 @table @kbd
787 @item C-c M-C-s
788 Sort the cells of a range using one of the columns
789 (@code{ses-sort-column}). The rows (or partial rows if the range
790 doesn't include all columns) are rearranged so the chosen column will
791 be in order.
792
793 @item [header-line mouse-2]
794 The easiest way to sort is to click mouse-2 on the chosen column's header row
795 (@code{ses-sort-column-click}).
796 @end table
797
798 The sort comparison uses @code{string<}, which works well for
799 right-justified numbers and left-justified strings.
800
801 With prefix arg, sort is in descending order.
802
803 Rows are moved one at a time, with relocation of formulas. This works
804 well if formulas refer to other cells in their row, not so well for
805 formulas that refer to other rows in the range or to cells outside the
806 range.
807
808
809 @node Standard formula functions
810 @section Standard formula functions
811 @cindex standard formula functions
812 @cindex *skip*
813 @cindex *error*
814 @findex ses-delete-blanks
815 @findex ses-average
816 @findex ses+
817
818 Oftentimes you want a calculation to exclude the blank cells. Here
819 are some useful functions to call from your formulas:
820
821 @table @code
822 @item (ses-delete-blanks &rest @var{args})
823 Returns a list from which all blank cells (value is either @code{nil} or
824 '*skip*) have been deleted.
825
826 @item (ses+ &rest @var{args})
827 Sum of non-blank arguments.
828
829 @item (ses-average @var{list})
830 Average of non-blank elements in @var{list}. Here the list is passed
831 as a single argument, since you'll probably use it with @code{ses-range}.
832 @end table
833
834 @node More on cell printing
835 @section More on cell printing
836 @cindex cell printing, more
837 @findex ses-truncate-cell
838 @findex ses-recalculate-cell
839
840 Special cell values:
841 @itemize
842 @item nil prints the same as "", but allows previous cell to spill over.
843 @item '*skip* replaces nil when the previous cell actually does spill over;
844 nothing is printed for it.
845 @item '*error* indicates that the formula signaled an error instead of
846 producing a value: the print cell is filled with hash marks (#).
847 @end itemize
848
849 If the result from the printer function is too wide for the cell and
850 the following cell is @code{nil}, the result will spill over into the
851 following cell. Very wide results can spill over several cells. If
852 the result is too wide for the available space (up to the end of the
853 row or the next non-@code{nil} cell), the result is truncated if the cell's
854 value is a string, or replaced with hash marks otherwise.
855
856 @acronym{SES} could get confused by printer results that contain newlines or
857 tabs, so these are replaced with question marks.
858
859 @table @kbd
860 @item t
861 Confine a cell to its own column (@code{ses-truncate-cell}). This
862 allows you to move point to a rightward cell that would otherwise be
863 covered by a spill-over. If you don't change the rightward cell, the
864 confined cell will spill over again the next time it is reprinted.
865
866 @item c
867 When applied to a single cell, this command displays in the echo area
868 any formula error or printer error that occurred during
869 recalculation/reprinting (@code{ses-recalculate-cell}). You can use
870 this to undo the effect of @kbd{t}.
871 @end table
872
873 When a printer function signals an error, the fallback printer
874 @samp{"%s"} is substituted. This is useful when your column printer
875 is numeric-only and you use a string as a cell value. Note that the
876 standard default printer is ``%.7g'' which is numeric-only, so cells
877 that are empty of contain strings will use the fallback printer.
878 @kbd{c} on such cells will display ``Format specifier doesn't match
879 argument type''.
880
881
882 @node Import and export
883 @section Import and export
884 @cindex import and export
885 @cindex export, and import
886 @findex ses-export-tsv
887 @findex ses-export-tsf
888
889 @table @kbd
890 @item x t
891 Export a range of cells as tab-separated values (@code{ses-export-tsv}).
892 @item x T
893 Export a range of cells as tab-separated formulas (@code{ses-export-tsf}).
894 @end table
895
896 The exported text goes to the kill ring; you can paste it into
897 another buffer. Columns are separated by tabs, rows by newlines.
898
899 To import text, use any of the yank commands where the text to paste
900 contains tabs and/or newlines. Imported formulas are not relocated.
901
902 @node Virus protection
903 @section Virus protection
904 @cindex virus protection
905
906 Whenever a formula or printer is read from a file or is pasted into
907 the spreadsheet, it receives a ``needs safety check'' marking. Later,
908 when the formula or printer is evaluated for the first time, it is
909 checked for safety using the @code{unsafep} predicate; if found to be
910 ``possibly unsafe'', the questionable formula or printer is displayed
911 and you must press Y to approve it or N to use a substitute. The
912 substitute always signals an error.
913
914 Formulas or printers that you type in are checked immediately for
915 safety. If found to be possibly unsafe and you press N to disapprove,
916 the action is canceled and the old formula or printer will remain.
917
918 Besides viruses (which try to copy themselves to other files),
919 @code{unsafep} can also detect all other kinds of Trojan horses, such as
920 spreadsheets that delete files, send email, flood Web sites, alter
921 your Emacs settings, etc.
922
923 Generally, spreadsheet formulas and printers are simple things that
924 don't need to do any fancy computing, so all potentially-dangerous
925 parts of the Emacs Lisp environment can be excluded without cramping
926 your style as a formula-writer. See the documentation in @file{unsafep.el}
927 for more info on how Lisp forms are classified as safe or unsafe.
928
929 @node Spreadsheets with details and summary
930 @section Spreadsheets with details and summary
931 @cindex details and summary
932 @cindex summary, and details
933
934 A common organization for spreadsheets is to have a bunch of ``detail''
935 rows, each perhaps describing a transaction, and then a set of
936 ``summary'' rows that each show reduced data for some subset of the
937 details. @acronym{SES} supports this organization via the @code{ses-select}
938 function.
939
940 @table @code
941 @item (ses-select @var{fromrange} @var{test} @var{torange})
942 Returns a subset of @var{torange}. For each member in @var{fromrange}
943 that is equal to @var{test}, the corresponding member of @var{torange}
944 is included in the result.
945 @end table
946
947 Example of use:
948 @lisp
949 (ses-average (ses-select (ses-range A1 A5) 'Smith (ses-range B1 B5)))
950 @end lisp
951 This computes the average of the B column values for those rows whose
952 A column value is the symbol 'Smith.
953
954 Arguably one could specify only @var{fromrange} plus
955 @var{to-row-offset} and @var{to-column-offset}. The @var{torange} is
956 stated explicitly to ensure that the formula will be recalculated if
957 any cell in either range is changed.
958
959 File @file{etc/ses-example.el} in the Emacs distribution is an example of a
960 details-and-summary spreadsheet.
961
962
963 @c ===================================================================
964
965 @node For Gurus
966 @chapter For Gurus
967 @cindex advanced features
968
969 @menu
970 * Deferred updates::
971 * Nonrelocatable references::
972 * The data area::
973 * Buffer-local variables in spreadsheets::
974 * Uses of defadvice in @acronym{SES}::
975 @end menu
976
977 @node Deferred updates
978 @section Deferred updates
979 @cindex deferred updates
980 @cindex updates, deferred
981 @vindex run-with-idle-timer
982
983 To save time by avoiding redundant computations, cells that need
984 recalculation due to changes in other cells are added to a set. At
985 the end of the command, each cell in the set is recalculated once.
986 This can create a new set of cells that need recalculation. The
987 process is repeated until either the set is empty or it stops changing
988 (due to circular references among the cells). In extreme cases, you
989 might see progress messages of the form ``Recalculating... (@var{nnn}
990 cells left)''. If you interrupt the calculation using @kbd{C-g}, the
991 spreadsheet will be left in an inconsistent state, so use @kbd{C-_} or
992 @kbd{C-c C-l} to fix it.
993
994 To save even more time by avoiding redundant writes, cells that have
995 changes are added to a set instead of being written immediately to the
996 data area. Each cell in the set is written once, at the end of the
997 command. If you change vast quantities of cells, you might see a
998 progress message of the form ``Writing... (@var{nnn} cells left)''.
999 These deferred cell-writes cannot be interrupted by @kbd{C-g}, so
1000 you'll just have to wait.
1001
1002 @acronym{SES} uses @code{run-with-idle-timer} to move the cell underline when
1003 Emacs will be scrolling the buffer after the end of a command, and
1004 also to narrow and underline after @kbd{C-x C-v}. This is visible as
1005 a momentary glitch after C-x C-v and certain scrolling commands. You
1006 can type ahead without worrying about the glitch.
1007
1008
1009 @node Nonrelocatable references
1010 @section Nonrelocatable references
1011 @cindex nonrelocatable references
1012 @cindex references, nonrelocatable
1013
1014 @kbd{C-y} relocates all cell-references in a pasted formula, while
1015 @kbd{C-u C-y} relocates none of the cell-references. What about mixed
1016 cases?
1017
1018 You can use
1019 @lisp
1020 (symbol-value 'B3)
1021 @end lisp
1022 to make an @dfn{absolute reference}. The formula relocator skips over
1023 quoted things, so this will not be relocated when pasted or when
1024 rows/columns are inserted/deleted. However, B3 will not be recorded
1025 as a dependency of this cell, so this cell will not be updated
1026 automatically when B3 is changed.
1027
1028 The variables @code{row} and @code{col} are dynamically bound while a
1029 cell formula is being evaluated. You can use
1030 @lisp
1031 (ses-cell-value row 0)
1032 @end lisp
1033 to get the value from the leftmost column in the current row. This
1034 kind of dependency is also not recorded.
1035
1036
1037 @node The data area
1038 @section The data area
1039 @cindex data area
1040 @findex ses-reconstruct-all
1041
1042 Begins with an 014 character, followed by sets of cell-definition
1043 macros for each row, followed by column-widths, column-printers,
1044 default-printer, and header-row. Then there's the global parameters
1045 (file-format ID, numrows, numcols) and the local variables (specifying
1046 @acronym{SES} mode for the buffer, etc.).
1047
1048 When a @acronym{SES} file is loaded, first the numrows and numcols values are
1049 loaded, then the entire data area is @code{eval}ed, and finally the local
1050 variables are processed.
1051
1052 You can edit the data area, but don't insert or delete any newlines
1053 except in the local-variables part, since @acronym{SES} locates things by
1054 counting newlines. Use @kbd{C-x C-e} at the end of a line to install
1055 your edits into the spreadsheet data structures (this does not update
1056 the print area, use, e.g., @kbd{C-c C-l} for that).
1057
1058 The data area is maintained as an image of spreadsheet data
1059 structures that area stored in buffer-local variables. If the data
1060 area gets messed up, you can try reconstructing the data area from the
1061 data structures:
1062
1063 @table @kbd
1064 @item C-c M-C-l
1065 (@code{ses-reconstruct-all}).
1066 @end table
1067
1068
1069 @node Buffer-local variables in spreadsheets
1070 @section Buffer-local variables in spreadsheets
1071 @cindex buffer-local variables
1072 @cindex variables, buffer-local
1073
1074 You can add additional local variables to the list at the bottom of
1075 the data area, such as hidden constants you want to refer to in your
1076 formulas.
1077
1078 You can override the variable @code{ses--symbolic-formulas} to be a list of
1079 symbols (as parenthesized strings) to show as completions for the @kbd{'}
1080 command. This initial completions list is used instead of the actual
1081 set of symbols-as-formulas in the spreadsheet.
1082
1083 For an example of this, see file @file{etc/ses-example.ses}.
1084
1085 If (for some reason) you want your formulas or printers to save data
1086 into variables, you must declare these variables as buffer-locals in
1087 order to avoid a virus warning.
1088
1089 You can define functions by making them values for the fake local
1090 variable @code{eval}. Such functions can then be used in your
1091 formulas and printers, but usually each @code{eval} is presented to
1092 the user during file loading as a potential virus. This can get
1093 annoying.
1094
1095 You can define functions in your @file{.emacs} file. Other people can
1096 still read the print area of your spreadsheet, but they won't be able
1097 to recalculate or reprint anything that depends on your functions. To
1098 avoid virus warnings, each function used in a formula needs
1099 @lisp
1100 (put 'your-function-name 'safe-function t)
1101 @end lisp
1102
1103 @node Uses of defadvice in @acronym{SES}
1104 @section Uses of defadvice in @acronym{SES}
1105 @cindex defadvice
1106 @cindex undo-more
1107 @cindex copy-region-as-kill
1108 @cindex yank
1109
1110 @table @code
1111 @item undo-more
1112 Defines a new undo element format (@var{fun} . @var{args}), which
1113 means ``undo by applying @var{fun} to @var{args}''. For spreadsheet
1114 buffers, it allows undos in the data area even though that's outside
1115 the narrowing.
1116
1117 @item copy-region-as-kill
1118 When copying from the print area of a spreadsheet, treat the region as
1119 a rectangle and attach each cell's formula and printer as 'ses
1120 properties.
1121
1122 @item yank
1123 When yanking into the print area of a spreadsheet, first try to yank
1124 as cells (if the yank text has 'ses properties), then as tab-separated
1125 formulas, then (if all else fails) as a single formula for the current
1126 cell.
1127 @end table
1128
1129 @c ===================================================================
1130 @node Index
1131 @unnumbered Index
1132
1133 @printindex cp
1134
1135 @c ===================================================================
1136
1137 @node Acknowledgments
1138 @unnumbered Acknowledgments
1139
1140 Coding by:
1141 @quotation
1142 @c jyavner@@member.fsf.org
1143 Jonathan Yavner,
1144 @c monnier@@gnu.org
1145 Stefan Monnier,
1146 @c shigeru.fukaya@@gmail.com
1147 Shigeru Fukaya
1148 @end quotation
1149
1150 @noindent
1151 Texinfo manual by:
1152 @quotation
1153 @c jyavner@@member.fsf.org
1154 Jonathan Yavner,
1155 @c brad@@chenla.org
1156 Brad Collins
1157 @end quotation
1158
1159 @noindent
1160 Ideas from:
1161 @quotation
1162 @c christoph.conrad@@gmx.de
1163 Christoph Conrad,
1164 @c cyberbob@@redneck.gacracker.org
1165 CyberBob,
1166 @c syver-en@@online.no
1167 Syver Enstad,
1168 @c fischman@@zion.bpnetworks.com
1169 Ami Fischman,
1170 @c Thomas.Gehrlein@@t-online.de
1171 Thomas Gehrlein,
1172 @c c.f.a.johnson@@rogers.com
1173 Chris F.A. Johnson,
1174 @c lyusong@@hotmail.com
1175 Yusong Li,
1176 @c juri@@jurta.org
1177 Juri Linkov,
1178 @c maierh@@myself.com
1179 Harald Maier,
1180 @c anash@@san.rr.com
1181 Alan Nash,
1182 @c pinard@@iro.umontreal.ca
1183 François Pinard,
1184 @c ppinto@@cs.cmu.edu
1185 Pedro Pinto,
1186 @c xsteve@@riic.at
1187 Stefan Reichör,
1188 @c epameinondas@@gmx.de
1189 Oliver Scholz,
1190 @c rms@@gnu.org
1191 Richard M. Stallman,
1192 @c teirllm@@dms.auburn.edu
1193 Luc Teirlinck,
1194 @c jotto@@pobox.com
1195 J. Otto Tennant,
1196 @c jphil@@acs.pagesjaunes.fr
1197 Jean-Philippe Theberge
1198 @end quotation
1199
1200 @c ===================================================================
1201
1202 @node GNU Free Documentation License
1203 @appendix GNU Free Documentation License
1204 @include doclicense.texi
1205
1206 @bye