From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thierry =?utf-8?b?UGVsbMOp?= Subject: Computations on properties Date: Wed, 9 Oct 2013 12:19:52 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTspJ-0001dT-CU for emacs-orgmode@gnu.org; Wed, 09 Oct 2013 08:25:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VTspA-0002r7-7a for emacs-orgmode@gnu.org; Wed, 09 Oct 2013 08:25:16 -0400 Received: from plane.gmane.org ([80.91.229.3]:52911) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTsp9-0002pn-WF for emacs-orgmode@gnu.org; Wed, 09 Oct 2013 08:25:08 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VTsp6-0008U2-P0 for emacs-orgmode@gnu.org; Wed, 09 Oct 2013 14:25:04 +0200 Received: from modem.soliavos.fr ([109.190.80.161]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Oct 2013 14:25:04 +0200 Received: from thierry.pelle by modem.soliavos.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Oct 2013 14:25:04 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I'm seeking how to do something like that Let the following text inserted in an org-mode file * Mean Calculation :PROPERTIES: :VAL1: 5 :VAL2: 10 :COEF: 10 :END: I would like to append the result of a computation like RES=(VAL1*COEF+VAL2)/(COEF+1) Something like * Mean Calculation ... :END: Mean Calculation=RES (where RES is the value of the result) I think to do this with a python script but is there a more org-mode/emacs method to do it? Thanks Thierry PS: I don't want to use org spreadsheet