From mboxrd@z Thu Jan 1 00:00:00 1970 From: f.nikolakopoulos@gmail.com Subject: org-mode table to elisp script Date: Tue, 16 Apr 2019 16:52:03 +0300 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:47974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hGOVT-0006J1-D0 for emacs-orgmode@gnu.org; Tue, 16 Apr 2019 09:52:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hGOVS-0004tq-HY for emacs-orgmode@gnu.org; Tue, 16 Apr 2019 09:52:15 -0400 Received: from [195.159.176.226] (port=38824 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hGOVS-0004rn-3l for emacs-orgmode@gnu.org; Tue, 16 Apr 2019 09:52:14 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hGOVO-000vLt-Vb for emacs-orgmode@gnu.org; Tue, 16 Apr 2019 15:52:10 +0200 Content-Language: el-GR 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 I like to export org-table and calculations as an elisp function. I was thinking I can use some cells as variables to calculate rest of the table. Table can be as complicated as possible Function shall return as value another table Procedure shall be: 1) get a table like variable, 2) change some cells, 3) recalculate based on #+TBLFM 4) return another table. Thanks!