From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id cMB5NwSKkV/wZQAA0tVLHw (envelope-from ) for ; Thu, 22 Oct 2020 13:32:52 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id pDHdMQSKkV9GEQAA1q6Kng (envelope-from ) for ; Thu, 22 Oct 2020 13:32:52 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 2C1CB9402A2 for ; Thu, 22 Oct 2020 13:32:52 +0000 (UTC) Received: from localhost ([::1]:45780 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kVai2-0003VL-Uc for larch@yhetil.org; Thu, 22 Oct 2020 09:32:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40320) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kUzM6-000301-Lr for emacs-orgmode@gnu.org; Tue, 20 Oct 2020 17:39:43 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:58374) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kUzM4-0007Ww-7i for emacs-orgmode@gnu.org; Tue, 20 Oct 2020 17:39:42 -0400 Date: Tue, 20 Oct 2020 21:39:33 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lambda.cx; s=protonmail; t=1603229976; bh=LKYVtYGDK6P6XZMPxyrOAS/qgIHX8y4a08/Xn7dzBaE=; h=Date:To:From:Reply-To:Subject:From; b=ixxeBEN62GMhM3hITXPHKuwVJU0ngG3+vntzjSSe5R9AYQHrvtrTuqj/Zh+q5qpyl p/rXSyUAPcHUNY32rO6n1SRQXGsoRjCLo/Vn6EoyUZYKWgKLjxVcFs4z3fAoxBWonR LLXS3rGTa7roHB17BiAv+ZbvKuz/036dVyRr4RcA= To: "emacs-orgmode@gnu.org" From: Dante Catalfamo Subject: =?utf-8?Q?Bug:_Can=E2=80=99t_assign_to_hline_relative_reference?= Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.134; envelope-from=dante@lambda.cx; helo=mail-40134.protonmail.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/20 17:39:37 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Thu, 22 Oct 2020 09:31:03 -0400 X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Dante Catalfamo Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=pass header.d=lambda.cx header.s=protonmail header.b=ixxeBEN6; dmarc=pass (policy=none) header.from=lambda.cx; spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: 0.79 X-TUID: ERQfoO59yh09 Hello, I'm trying to create a table where the third column between two hlines is s= et by a formula referencing the second column. Here is an example: | a | b | c | |-------+-------+--------| | row 1 | 12.00 | 144.00 | | row 2 | | 23.00 | |-------+-------+--------| | sum | 12.00 | 167.00 | #+TBLFM: @I$3..II$3=3Dif($2 !=3D 0, 12*$2, $3);%.2f::@4$2=3Dvsum(@I..II);%.= 2f::@4$3=3Dvsum(@I..II);%.2f When I try to calculate this table however, I get the error "Can=E2=80= =99t assign to hline relative reference". Why is this now allowed? This seems like a fairly mundane use of a table to= me. It is explicitly disabled in the source, but without explanation, and = searching the mailing list doesn't turn up many answers. Is there a recommended way to handle a situation like this? Could this feature be fixed? Thank you, Dante