emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org table how to «convert» column formula into row formula
@ 2023-09-30 12:16 Uwe Brauer
  2023-09-30 12:26 ` [Solved sort of ] (was: org table how to «convert» column formula into row formula) Uwe Brauer
  0 siblings, 1 reply; 2+ messages in thread
From: Uwe Brauer @ 2023-09-30 12:16 UTC (permalink / raw)
  To: emacs-orgmode


Hi

I have the following table 
| name | pos | rango | weight |
|------+-----+-------+--------|
|      |  23 |   329 |    307 |
|      |  71 |   329 |    259 |
|      |  77 |   333 |    257 |
|      |  58 |   333 |    276 |
|      |  45 |   329 |    285 |
|      |  47 |   330 |    284 |
|      |  71 |   329 |    259 |
|      |  77 |   333 |    257 |
|      |  77 |   333 |    257 |
|      | 155 |   310 |    156 |
|      | 164 |   325 |    162 |
|      | 203 |   330 |    128 |
#+TBLFM: $4=($3+1)-$2

I might be forced to add quite a bit of additional columns to that table
making it difficult to read. So I thought to transpose the table as
this, but how can I calculate the last row, using a calc operation.





| Name   |     |     |     |     |     |     |     |     |     |     |     |     |
|--------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----|
| pos    |  23 |  71 |  77 |  58 |  45 |  47 |  71 |  77 |  77 | 155 | 164 | 203 |
| rango  | 329 | 329 | 333 | 333 | 329 | 330 | 329 | 333 | 333 | 310 | 325 | 330 |
| weight |     |     |     |     |     |     |     |     |     |     |     |     |

I tried 

#+TBLFM: @4$2..@4$13=(@3$2+1..@3$13+1)-(@2$2..@2$13);f1
but it did not work, of course I could try out to set a formula for each
cell but frankly this would not be practical.

Any suggestions?

thanks

Uwe Brauer 

-- 
Warning: Content may be disturbing to some audiences
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the NATO membership of the Ukraine.
I support the EU membership of the Ukraine. 
https://addons.thunderbird.net/en-US/thunderbird/addon/gmail-conversation-view/



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Solved sort of ] (was: org table how to «convert» column formula into row formula)
  2023-09-30 12:16 org table how to «convert» column formula into row formula Uwe Brauer
@ 2023-09-30 12:26 ` Uwe Brauer
  0 siblings, 0 replies; 2+ messages in thread
From: Uwe Brauer @ 2023-09-30 12:26 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 2145 bytes --]

>>> "UB" == Uwe Brauer <oub@mat.ucm.es> writes:

> Hi

> I have the following table 
> | name | pos | rango | weight |
> |------+-----+-------+--------|
> |      |  23 |   329 |    307 |
> |      |  71 |   329 |    259 |
> |      |  77 |   333 |    257 |
> |      |  58 |   333 |    276 |
> |      |  45 |   329 |    285 |
> |      |  47 |   330 |    284 |
> |      |  71 |   329 |    259 |
> |      |  77 |   333 |    257 |
> |      |  77 |   333 |    257 |
> |      | 155 |   310 |    156 |
> |      | 164 |   325 |    162 |
> |      | 203 |   330 |    128 |

> #+TBLFM: $4=($3+1)-$2

> I might be forced to add quite a bit of additional columns to that table
> making it difficult to read. So I thought to transpose the table as
> this, but how can I calculate the last row, using a calc operation.





> | Name   |     |     |     |     |     |     |     |     |     |     |     |     |
> |--------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----|
> | pos    |  23 |  71 |  77 |  58 |  45 |  47 |  71 |  77 |  77 | 155 | 164 | 203 |
> | rango  | 329 | 329 | 333 | 333 | 329 | 330 | 329 | 333 | 333 | 310 | 325 | 330 |
> | weight |     |     |     |     |     |     |     |     |     |     |     |     |

> I tried 


It seems that 
#+Name: row
| Name  |     |     |     |     |     |     |     |     |     |     |     |     |
|-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----|
| pos   |  23 |  71 |  77 |  58 |  45 |  47 |  71 |  77 |  77 | 155 | 164 | 203 |
| rango | 329 | 329 | 333 | 333 | 329 | 330 | 329 | 333 | 333 | 310 | 325 | 330 |
| peso  | 307 | 259 | 257 | 276 | 285 | 284 | 259 | 257 | 257 | 156 | 162 | 128 |
#+TBLFM: @4$2..@4$13=@3+1-@2

Gives the correct result


-- 
Warning: Content may be disturbing to some audiences
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the NATO membership of the Ukraine.
I support the EU membership of the Ukraine. 
https://addons.thunderbird.net/en-US/thunderbird/addon/gmail-conversation-view/

[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-30 12:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-30 12:16 org table how to «convert» column formula into row formula Uwe Brauer
2023-09-30 12:26 ` [Solved sort of ] (was: org table how to «convert» column formula into row formula) Uwe Brauer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).