Re: New User
- From: John Machin <sjmachin lexicon net>
- To: Uri David Akavia <uridavid akavia gmail com>
- Cc: gnumeric-list gnome org
- Subject: Re: New User
- Date: Thu, 06 Sep 2007 08:04:15 +1000
On 4/09/2007 5:30 AM, Uri David Akavia wrote:
Hi.
First, you can combine the two formulas.
=IF(AND(condition1, condition2), 1, 0)
That will save you a row there.
I think that you can also format the output cells (Ctrl-1, I believe,
but you can check the menus), and try to find some kind of formatting
that turns TRUE into 1 and FALSE into 0.
Internally, TRUE is 1 and FALSE is zero, but attempting to apply a
numeric format (with zero decimal places) doesn't work. However you can
trick it with less typing than the IF() method:
=(any Boolean expression) + 0
converts the value to a number, and the default number format displays
it as 1 or 0. Thus in the OP's case, use:
=AND(condition1, condition2) + 0
Cheers,
John
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]