How to select a column of a table in emacs org mode

emacs, org-mode

Solution

I think the easiest way would be to take advantage of emacs rectangles

To create your rectangle, put your cursor at one of the corners of the rectangle you want to create.

Use `C-SPC`, or whatever you have `set-mark-command` set to.

Place your cursor at the diagonal corner of your rectangle.

Use `C-x r r``r` to copy the rectangle to the register named `r`

Use `C-x r i``r` to insert the rectangle that is being held in the register named `r`.

Following this process will copy and insert the columns that you want. You may need to repeat this process if the columns are not adjacent.

NOTE

I am using a bolded `r` to denote that this is technically a name of the register, and not some special input.

Problem

I can't find my way around copying a column, or a series of them, from a table. The only solution I found so far is to copy the whole table and then delete the columns I don't need. I suppose there must be another easier way for this. Maybe I am just too tired to realize how to do it.

Original source

Related problems