answersLogoWhite

0


Best Answer

The different functions from the Logical functions category deal with true and false. The main one of them is the IF function.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What function in Excel deals with true or false?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What category in Excel returns a true or false value?

Excel has a category called Logical Functions. The IF function is the one of those that most people use and associate with returning True or False values. Other functions also return True or False values. There is a TRUE function and a FALSE function. The OR function and the AND function can be used to return True or False values too. The NOT function can reverse a True or False value, so it also returns True or False.


When the condition is a question that can be answered true or false Excel calls this?

An IF function can be used to do this. It is one of the Logical functions. Others include AND, OR, NOT, FALSE, TRUE and XOR. Using the IF function, we sometimes talk about What-if.


How many parameters are possible using the IF function in Excel?

The IF function has 3 parameters. The condition, the true part and the false part.


List the functions for the category 'Logical' in Microsoft Excel 2003?

A logical function is one that can return a true value or a false value. They are usually used in doing comparisons and seeing if things are equal to each other or not, or which is higher or lower. The logical functions that Excel provides are: TRUE FALSE AND OR NOT IF


Function returns the value true if at least one argument is true and false if all arguments are false in Microsoft Excel?

You need to use the OR function. You could have something like this:=OR(A2>5,A4>10,A6>20)


Can true and false be summed with excel?

Yes. TRUE has the value 1 and FALSE has the value of 0.


When you type numbers in a format that excel recognizes excel automatically applies format to the cell true or false?

False


How do you use a if function in Excel on another cell with a nested if function?

i would need a little more information to be specific to your need, however the general way is =if(A1=2,"True value","False value",if(A1=3,"True Value","False Value)) you can continue the formula till you done with your conditions, however excel 2003 can only nest 7 level and Excel 2007 has no limits


How do you put an if statement in excel?

=IF(statement,true,false)


What IF stands for in Excel?

It does not "stand" for anything.It is an inbuilt function in Excel that allows you to perform a logical test and then do either of two user defined actions depending on whether the result of that test is true or false.


In excel 2007 using IF function you have the logical test value if true and value if false but you want the cell with the formula to be blank if the cell you are referring to is left blank?

=IF(something,true,"")


What does the NOT function in Excel do?

The NOT function is a logical function used to reverse the result of a logical statement or check if something is false. If you wanted to identify a value that were different in two cells you could use the NOT function to check if they are not equal, like this: =NOT(A2=B2) If they are the same it will return TRUE and if they are the same it will return FALSE.