software






 

Question by  makeupgirl513 (25)

How do you put formulas in excel with multiple conditions?

I need help with excel.

 
+7

Answer by  wingnut85 (7)

Excel tests for multiple conditions using the IF function. The function is defined as IF(test, true_value, false_value). You can find many examples in the Excel Help for the IF function.

 
+7

Answer by  Silvio (61)

You must use concatenated if ... Suppose you have a condition like cond1 and cond2, you can use =if(condition1;if(condition2;true;false);false) condition1 or condition2 => =if( condition1;true;if(condition2; true; false ) )

 
+6

Answer by  Atomicrayon (2504)

That's a pretty loaded question. If you go to the top of the excel panel, you'll be able to review the help menu.

 
+5

Answer by  gigo (1706)

Multiple conditions you can have with nested if statements. You can write something like =IF(B1=1;A1;IF(B1=2;A2;IF(B1=3;A3;""))). If you do not have an english version you have to translate the IF.

 
+4

Answer by  Clement (1453)

To combine, e. g. , comparisons you can use AND and OR functions. For instance, =AND(A1>0,B7<8) means that both the value in the cell A1 should be positive and the value in the cell B7 should be less than 8.

 
You have 50 words left!