[libreoffice-users] LO Calc - Only display results on active row?

2014-07-09 Thread Ian Whitfield
Hi All I have several of Spreadsheets that work with monthly figures. They also have columns with calculations of these figures. (ie Totals, averages etc). At the moment I get a lot of 'DIV by Zero' results and the current total repeating BELOW the current month. Is there a way to only show

Re: [libreoffice-users] LO Calc - Only display results on active row?

2014-07-09 Thread Brian Barker
At 11:11 09/07/2014 +0200, Ian Whitfield wrote: I have several of Spreadsheets that work with monthly figures. They also have columns with calculations of these figures. (ie Totals, averages etc). At the moment I get a lot of 'DIV by Zero' results ... Then you must have your formulae wrong.

Re: [libreoffice-users] LO Calc - Only display results on active row?

2014-07-09 Thread Ian Whitfield
On 07/09/2014 11:28 AM, Brian Barker wrote: Yes: there is the IF() function: is that a close enough equivalent? Just put =IF(condition;expression-for-true;expression-for-false) . Your expression for false may well be consecutive double-quote marks, representing the null string. Thanks Brian

Re: [libreoffice-users] LO Calc - Only display results on active row?

2014-07-09 Thread Brian Barker
At 12:06 09/07/2014 +0200, Ian Whitfield wrote: On 07/09/2014 11:28 AM, Brian Barker wrote: Yes: there is the IF() function: is that a close enough equivalent? Just put =IF(condition;expression-for-true;expression-for-false) . Your expression for false may well be consecutive double-quote

Re: [libreoffice-users] LO Calc - Only display results on active row? [SOLVED]

2014-07-09 Thread Ian Whitfield
On 07/09/2014 12:23 PM, Brian Barker wrote: Yes - but you don't say what the controlling factor might be. There must be some aspect of the list that indicates the point at which you want the totals to stop. Instead of using =X100-X99 you need something like =IF(condition;X100-X99;) with