Need formula help with excel
Closed
neverlost41
-
30 Sep 2009 à 00:23
cliffmid Posts 3 Registration date Wednesday 30 September 2009 Status Member Last seen 1 October 2009 - 1 Oct 2009 à 09:12
cliffmid Posts 3 Registration date Wednesday 30 September 2009 Status Member Last seen 1 October 2009 - 1 Oct 2009 à 09:12
Related:
- Need formula help with excel
- Grade formula in excel marksheet - Guide
- Formula bar in excel - Guide
- Excel mod apk for pc - Download - Spreadsheets
- Number to words in excel formula - Guide
- Formula to calculate vat in excel - Guide
2 responses
Dear Sir,
Please try using two different formulas for solving the problem and then combine them if they work well. One should pull the value for less than zero and the other one for greater value of zero.
Thanks.
Please try using two different formulas for solving the problem and then combine them if they work well. One should pull the value for less than zero and the other one for greater value of zero.
Thanks.
cliffmid
Posts
3
Registration date
Wednesday 30 September 2009
Status
Member
Last seen
1 October 2009
1 Oct 2009 à 09:12
1 Oct 2009 à 09:12
try this
=IF(A1<=0, A2, A3)
=IF(A1<=0, A2, A3)
30 Sep 2009 à 10:07
1 Oct 2009 à 08:31
IF(A1 <= 0; "ordering", "stock")
unquote
Note that you are using two kinds of separators ";" and ",". I'm using a dutch version and need to use ";", but most people on this forum need to use ",". I'm assuming you need to use the ",".
To aswer your question look at the syntaxis of the IF function:
IF(condition which can be true or false, value or cell when condition is true, value or cell when condition is false)
In your case it would look like this: IF(A1<= 0,A2,A3) .
Best regards,
Trowa