From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: Re: extract a region from a table and export it Date: Tue, 14 Jun 2016 12:17:30 +0000 Message-ID: <87d1nkvuat.fsf@mat.ucm.es> References: <87oa74vyma.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35486) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCnKE-0005k8-0N for emacs-orgmode@gnu.org; Tue, 14 Jun 2016 08:20:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCnK9-0003Yp-RQ for emacs-orgmode@gnu.org; Tue, 14 Jun 2016 08:20:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:58809) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCnK9-0003Yj-KR for emacs-orgmode@gnu.org; Tue, 14 Jun 2016 08:20:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bCnK6-0004Tv-MN for emacs-orgmode@gnu.org; Tue, 14 Jun 2016 14:20:02 +0200 Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Jun 2016 14:20:02 +0200 Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Jun 2016 14:20:02 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org >>> "John" == John Kitchin writes: > or, rows 0, 1 and 4. > #+BEGIN_SRC emacs-lisp :var d=data > (loop for i in '(0 1 4) collect (elt d i)) > #+END_SRC Ok the second code works now, and is almost what I want, but I need it mostly for columns, it is not obvious for me that corresponds in the syntax above to columns. > #+RESULTS: > | 1 | a | > | 2 | r | > | 8 | y | > Uwe Brauer writes: >> Hi >> >> Is it possible to extract just say two regions from a huge table and >> convert it to say CSV? >> >> Uwe Brauer