Questions tagged [org-table]
For questions about Org mode's ASCII table editor. Use this tag for its spreadsheet calculations and plotting features as well.
390 questions
2
votes
1
answer
75
views
org-mode use reference and loop over several tables -> error handling
Follow this question
I have error when I look for the missing value :
* t1
#+tblname: t1
|----+---|
| P1 | 1 |
| P2 | 2 |
| P3 | 3 |
|----+---+
* t2
#+tblname: t2
|----+---|
| P1 | ...
1
vote
1
answer
58
views
org-mode use reference and loop over several tables
I try to get value from tables with org-lookup-first by looping on the tblname value :
* Papie&Mamie
#+tblname: pm
|--------------+------+----+--------|
| Intense Brut | 5.95 | 6 | 35.70 |
...
1
vote
1
answer
49
views
How to change variable in source block with org-sbe from tblfm?
I have this source block and table in an org-file.
#+NAME: testlisp
#+begin_src elisp :var testvariable="default string"
(progn
(message testvariable) ;use the variable in some way
...
2
votes
0
answers
45
views
org-table named row reference?
Is it possible to name rows in a table and refer to them by name? Something like
| rowname | Description | input |
|---------+-------------------------------+-------------|
| ...
0
votes
0
answers
66
views
Using org-table entries to set header arguments
I would like to use an org table at the start of one of my files to control whether the blocks in some sections are evaluated or not. Below is a stripped down version of that:
#+name: control
| ...
0
votes
1
answer
69
views
Specify column padding?
I have this org-mode table
#+NAME: LSTable1
#+ATTR_HTML: :border 0
| | |
|-----------------...
1
vote
1
answer
190
views
table.el table not realigning after editing cell contents
I inserted the following table:
+-----+-----+-----+
| | | |
+-----+-----+-----+
| | | |
+-----+-----+-----+
| | | |
+-----+-----+-----+
I then entered some data ...
1
vote
1
answer
125
views
How to create org-mode 2xN table from two lists
I have a list that's supposed to be a column of data like this
A
B
C
...
and a second list like this that should match the first
1
2
3
...
for which I want to place in a 2xN table where A is beside ...
0
votes
1
answer
82
views
Joining Org Table Strings and Formula Results
I have an Org Mode table where I'm tracking draft and revision durations for various writing projects. It's set up like so:
| Title | Draft Start | Draft End | Draft Duration | Revision Start | ...
1
vote
1
answer
107
views
How can I produce a multiplication table using org-tables?
I could produce a multiplication table by writing
| 3 | 9 | 15 | 21 |
| 5 | 15 | 25 | 35 |
| 7 | 21 | 35 | 49 |
#+TBLFM: $2=$1*3::$3=$1*5::$4=$1*7
but it would be a lot clearer if I started from
| ...
1
vote
0
answers
43
views
Is there a way to enable something along the lines of `C-u` in a hydra?
For instance I want to use a hydra to move columns of an org-table left or right in a hydra, ie not just a single column but a group of them, so the equivalent of C-u X would select the current column ...
2
votes
1
answer
64
views
How to make JS code retrieve data from an org-table?
Suppose the following org file:
#+name: data-input
|------------+------|
| Date | Kg |
|------------+------|
| 2024-08-03 | 74.9 |
| 2024-08-04 | 75.3 |
| 2024-08-05 | 74.4 |
| 2024-08-06 | 74....
0
votes
1
answer
154
views
Org table fonts
On org tables I had Courier font and that looked very nice. (My general font is Monaco)
Today while installing something else, for some reason, Brew installed a new version of Emacs and some of my ...
0
votes
1
answer
127
views
Minimum Calculation using table formula ignoring empty cells emacs org mode
Suppose I have the following table:
| Headline | Time | Effort | Pay |
|--------------+------+--------+-------|
| *Total time* |*1:16*| | |
|--------------+------+--------+-------|
|...
0
votes
1
answer
162
views
Can org-sbe populate a whole table column?
Is it possible to populate table columns from org-sbe? The idea is that a code block would return multiple values, which would each end up in one cell of the designated column. This is what I have ...