Display text automatically

O

OKY

I need to enter a text in A1 if i enter text in B1.
In other words, if I enter any text in B2 I want A1 to display "OPEN"

Thank you for your help.
 
G

Gord Dibben

=IF(B1="","","OPEN")

I don't know how B2 got into the picture but maybe a typo?


Gord Dibben MS Excel MVP
 
N

Niek Otten

If you really mean text and not numbers:

in A1:

=IF(ISTEXT(B1),"OPEN","")

But if you mean anything at all instead of just text:

=IF(B1="","","OPEN")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top