Hello Friends, We all use Ms Excel for different purposes.We have variety of Excel Functions available.Excel Functions are divided into various categories: Mathematical Textual Financial Logical Date/Time And Many More... I have Some Knowledge about Logical Excel Functions.I wanted to share it with you all: IF Function :This function is used to check condition and returns value depend upon the condition.Syntax of if is: if(condition,value_if_true,value_if_false) where: condition is the Logical Test which we would like to test; value_if_true is outcome which appears on cell if condition or Logical Test is true; value_if_false is outcome which appears on cell if condition or Logical Test is false; either value_if_true or value_if_false returns by function depends upon Logical Test Fails or Pass Example 1: Suppose we want to check the Salary Column in Employee Sheet whether salary is greater than 20000 or not? Important Tip: we should type the text value in double quotes while usin...