tableur et booleen

Posted:
10 Sep 2019, 18:19
by jeff68
bonjour
je voudrais mettre cette formule
=SI(ET(C3-B3>0;C4-B4>0);B7;SI(ET(C3-B3<0;C4-B4>0);B7+400;B7+200))
dans le tableur de la TI-nspire cx cas
pouvez vous m'aider?
Re: tableur et booleen

Posted:
10 Sep 2019, 18:36
by critor
Bonjour.
Dans le tableur Nspire, SI() se dit WHEN(), et il faudra traduire le test.
=SI(ET(C3-B3>0;C4-B4>0);B7;SI(ET(C3-B3<0;C4-B4>0);B7+400;B7+200))
=when(C3-B3>0 and C4-B4>0,B7,when(C3-B3<0 and C4-B4>0,B7+400,B7+200))
Re: tableur et booleen

Posted:
10 Sep 2019, 18:41
by Hamza.S
il y a aussi iffn() qui fait la meme chose que when
Re: tableur et booleen

Posted:
11 Sep 2019, 16:56
by jeff68
bonjour
ça me met ça
piecewise(15,...,415,...,215,..)
Re: tableur et booleen

Posted:
11 Sep 2019, 17:07
by jeff68