From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: Bug: Table formula does not copy time interval correctly [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.0.94/lisp/org/)] Date: Thu, 7 Jul 2016 08:52:36 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bL3Au-0007Pl-KU for emacs-orgmode@gnu.org; Thu, 07 Jul 2016 02:52:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bL3At-0005Ov-0L for emacs-orgmode@gnu.org; Thu, 07 Jul 2016 02:52:39 -0400 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:36118) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bL3As-0005Or-Om for emacs-orgmode@gnu.org; Thu, 07 Jul 2016 02:52:38 -0400 Received: by mail-wm0-x242.google.com with SMTP id i4so2765629wmg.3 for ; Wed, 06 Jul 2016 23:52:38 -0700 (PDT) In-Reply-To: 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: Rares Vernica Cc: Org Mode Hi Rares On Mon, Jul 4, 2016 at 6:28 PM, Rares Vernica wrote: > | [2016-07-03 Sun]--[2016-07-04 Mon] | 1d | d | > | [2016-07-03 Sun]--[2016-07-05 Tue] | 2d | 2 d | > #+TBLFM: $3=$2 A Calc formula interprets field values as a symbolic expressions to calculate with. To copy literally one needs a Lisp formula: | [2016-07-03 Sun]--[2016-07-04 Mon] | 1d | 1d | | [2016-07-03 Sun]--[2016-07-05 Tue] | 2d | 2d | #+TBLFM: $3 = '(identity $2) Michael