From mboxrd@z Thu Jan 1 00:00:00 1970 From: Asif Subject: Spreadsheet formula evaluation without using tables? Date: Thu, 16 Jan 2014 13:47:33 -0800 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=047d7b6760de7c327204f01d5fa4 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3umm-00056r-Rt for emacs-orgmode@gnu.org; Thu, 16 Jan 2014 16:47:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W3uml-0000Rw-EA for emacs-orgmode@gnu.org; Thu, 16 Jan 2014 16:47:36 -0500 Received: from mail-qa0-x230.google.com ([2607:f8b0:400d:c00::230]:61770) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3uml-0000RO-72 for emacs-orgmode@gnu.org; Thu, 16 Jan 2014 16:47:35 -0500 Received: by mail-qa0-f48.google.com with SMTP id f11so2672257qae.35 for ; Thu, 16 Jan 2014 13:47:33 -0800 (PST) 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 --047d7b6760de7c327204f01d5fa4 Content-Type: text/plain; charset=ISO-8859-1 Is it possible to have a list of tasks each with a formula to track progress in percentage based on other subtasks? The result will look like this: * [ 30%] Project Name ** [ 50%] Task A ** [ 10%] Task B This is what my formula in lisp will look like: ** [**(format "%3d" (+ (* TASKA 0.5) (* TASKB 0.5) ))**%] Project Name* *** [**(format "%3d" *(setq TASKA 50) *%] Task A* *** [**(format "%3d" *(setq TASKA 10) *%] Task B* All I need to do is evaluate the code in org-mode to get the result. Is this possible? _ Asif --047d7b6760de7c327204f01d5fa4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Is it possible to have a list of tasks each= with a formula to track progress in percentage based on other subtasks? Th= e result will look like this:

* [ 30%] Project Name
** [ 50%] Task A
** [ 10%] Task B

This is what my formula in lisp will look like:

= * [(format "%3d" (+ (*= TASKA 0.5) (* TASKB 0.5) ))%] Project Name
** [(format &q= uot;%3d" (setq TASKA 50)%] Task A
** [(format "%3d" (setq TASKA 10)%] Task B


= All I need to do is evaluate the code in org-mode to get the result.
Is this possible?

_
Asif
--047d7b6760de7c327204f01d5fa4--