Re: [Orgmode] Problem with lisp code in spreadsheet

2007-06-17 Thread Carsten Dominik
On Jun 17, 2007, at 8:22, Cecil Westerhof wrote: Op zo, 17-06-2007 te 00:14 +0200, schreef Carsten Dominik: In a row I have the following formula's: =$3 ='(getHours $2);%.2f ='(/ 67 0.72);%.1f ='(/ $3 (getHours $2));%.1f This gives: 67 0.72 93.1 0.0 I would expect the last two

Re: [Orgmode] Problem with lisp code in spreadsheet

2007-06-16 Thread Cecil Westerhof
Op zo, 17-06-2007 te 00:14 +0200, schreef Carsten Dominik: > > In a row I have the following formula's: > > =$3 > > ='(getHours $2);%.2f > > ='(/ 67 0.72);%.1f > > ='(/ $3 (getHours $2));%.1f > > This gives: > > 67 > > 0.72 > > 93.1 > > 0.0 > > > > I would expect the last two to ret

Re: [Orgmode] Problem with lisp code in spreadsheet

2007-06-16 Thread Carsten Dominik
On Jun 16, 2007, at 19:50, Cecil Westerhof wrote: In a row I have the following formula's: =$3 ='(getHours $2);%.2f ='(/ 67 0.72);%.1f ='(/ $3 (getHours $2));%.1f This gives: 67 0.72 93.1 0.0 I would expect the last two to return the same number. Why is this not the case? When

[Orgmode] Problem with lisp code in spreadsheet

2007-06-16 Thread Cecil Westerhof
In a row I have the following formula's: =$3 ='(getHours $2);%.2f ='(/ 67 0.72);%.1f ='(/ $3 (getHours $2));%.1f This gives: 67 0.72 93.1 0.0 I would expect the last two to return the same number. Why is this not the case? When I change the last formula to: ='(/ 67 (getHours $2)