Conditionals and how to use the FALSE output in a cell

Jwan622

New Member
Joined
Jul 17, 2013
Messages
40
I have written a few conditionals and the output of those functions are FALSE. I want to use that fact to write other conditionals. So, if cell 1 conditional reads FALSE, I want to write a conditional in cell 2 that uses the output FALSE in cell one. However, the FALSE output in cell 1 isn't text.

I don't want to copy/paste the output FALSE in another cell. What should I do? How do I utilize the output FALSE in a conditional statement?

Also, how do I set the color of the output of a conditional if it returns TRUE and set another color if the output returns FALSE.
 
Last edited:

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
If A1 contains a formula that returns TRUE or FALSE
B1 can refer to that cell in an IF

=IF(A1,"do this if a1 is true","do something else if A1 is false")
 
Upvote 0
Then type the FALSE without quotes, like say =IF(A1=FALSE,3,4)
 
Upvote 0
You don't need to type the =FALSE bit
You can just reverse the valueiftrue and valueiffalse

=IF(A1,4,3)
same as
=IF(A1=FALSE,3,4)
 
Upvote 0

Forum statistics

Threads
1,215,111
Messages
6,123,159
Members
449,098
Latest member
Doanvanhieu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top