Formula Help!!

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

Guest

Hi ,

Can someone please help me?
If certain cells are not blank I would like "Registration" to appear in my
cell
I have tried various combinations or OR, AND, IF, ISBLANK....and many more.
I think I'm over complicating this though.

Basically if any of (Q or R) and S and U and AL are all not blank, my
criteria are met.
So I need data to be in columns, S, U, AL and either Q or R. If these
criteria are met, the cell needs to say Registration.

Can anyone help?

Thanks Becki
 
If A1 = the cell taht you want to test use the formula: =
if(A1="";"Registration";"")
 
Thanks.
I'd actually got that far, the problems start when I try to incorporate the
other cells.
So cell AM1 needs to say registration if any of S1, U1 or AL1 is blank and
also if Q1 and R1 is blank.
 
That makes it a bit more complicated but with OR and AND operators you can do
a lot :

In this case I would use =
If(OR(S1="";U1="";AL1="";AND(Q1="";R1=""));"Registration";"")

Test if it gives the desired result. If you need to change the logic, search
the HELP for AND an OR operators to learn how these work.

Good luck !

Hans
 
Thanks so much - it works!

hans bal(nl) said:
That makes it a bit more complicated but with OR and AND operators you can do
a lot :

In this case I would use =
If(OR(S1="";U1="";AL1="";AND(Q1="";R1=""));"Registration";"")

Test if it gives the desired result. If you need to change the logic, search
the HELP for AND an OR operators to learn how these work.

Good luck !

Hans
 

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