FUNDAMENTALS OF COMPUTER

DATABASE FUNDAMENTALS

HOW TO USE THE CONCATENATE FUNCTION IN EXCEL

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which is the correct way to write this function:IF B4 is greater than 200, show “High", otherwise, show “Low”
A
IF(B4>200, “High", “Low")
B
=IF(B4<200, “High", “Low")
C
=IF(B4>200, “High", “Low")
D
=IF(B4>200"High", “")
Explanation: 

Detailed explanation-1: -Syntax. Use the IF function, one of the logical functions, to return one value if a condition is true and another value if it’s false. For example: =IF(A2>B2, "Over Budget", "OK")

Detailed explanation-2: -Another way to get an Excel IF to test multiple conditions is by using an array formula. To complete an array formula correctly, press the Ctrl + Shift + Enter keys together. In Excel 365 and Excel 2021, this also works as a regular formula due to support for dynamic arrays.

Detailed explanation-3: -The syntax of IF-THEN is =IF(logic test, value if true, value if false). The first argument tells the function what to do if the comparison is true. The second argument tells the function what to do if the comparison is false.

There is 1 question to complete.