10

I'm taking my first steps in org mode. In the spreadsheet section, they give an example:

$3 = remote(FOO, @@#$2)

Where FOO is another table. However, they don't explain how can I give a name to a table. Does any of you know how to do this?

Múna
  • 312
  • 3
  • 11
Yotam
  • 10,295
  • 30
  • 88
  • 128

1 Answers1

20

Put the line

#+NAME: FOO

immediately before the table.

This applies for all current versions of org, i.e. 8.x and later. For earlier versions of org, use

#+TBLNAME: FOO
ataylor
  • 64,891
  • 24
  • 161
  • 189
  • 3
    This is #NAME: FOO in recent versions of org-mode, see http://orgmode.org/manual/References.html at the bottom. – rvf0068 Feb 28 '14 at 00:06