Input Cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need a formula that will input a number. If a1 > 1 then input a1, if a1 < 1
then input b1 and if b1< 0 then input c1.
 
Hmm... what if a1 = 1?

Try something like:

=IF(A1>=1,A1,IF(B1<0,C1,B1))
 

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

Back
Top