Re: [O] Crashing bug in spreadsheet

2011-07-23 Thread Bastien
Hi Ken, ken.willi...@thomsonreuters.com writes: Yeah, I get that, but I was hoping a circular reference (or alternatively a seemingly invalid reference, since I have no third h-line) would cause an error rather than force me to kill Emacs. Right. This is now the case. Thanks for bringing

[O] Crashing bug in spreadsheet

2011-07-22 Thread Ken.Williams
Hi, I had the following text in a table, and hit tab in the bottom-right cell: | Who | Amt | |-+-| | A | 36.70 | | A | 679.96 | | B | 192.31 | | B | 2500.03 | | B | 74.47 | | C | 26.64 | | D | 82.00 | |-+-| | | :=vsum(@II..@III) |

Re: [O] Crashing bug in spreadsheet

2011-07-22 Thread Juan Pechiar
Hi, '@II..@III' means all rows between the second and third h-lines. In your case, this is the same vsum(), so you get a circular reference. Try @I..@II instead Regards, .j. On Fri, Jul 22, 2011 at 06:48:36PM +, ken.willi...@thomsonreuters.com wrote: Hi, I had the following text in a

Re: [O] Crashing bug in spreadsheet

2011-07-22 Thread Ken.Williams
On 7/22/11 4:35 PM, Juan Pechiar j...@pechiar.com wrote: Hi, '@II..@III' means all rows between the second and third h-lines. In your case, this is the same vsum(), so you get a circular reference. Try @I..@II instead Yeah, I get that, but I was hoping a circular reference (or alternatively