Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have text on EXCEL sheet.
Cell A1-FALSE, A2-FALSE, A3-RUN
So I want to display RUN only on cell B1

What I have tried:

I have tried whit SUMPRODUCT to display RUN. I tired whit TEXT goes wrong
Posted
Updated 15-May-21 20:59pm

Add the following to cell B1:
=A3
 
Share this answer
 
Do you mean
=IF(AND(A1=FALSE, A2=FALSE),A3,"")

But this isn't an Excel support site: it's for software development, not the basics of how to use a spreadsheet.

You should probably look for a quick Excel course or book - there are plenty out there and they will cover the simple stuff like this very well.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900