If then formula with multiple cells

A

Ada33

Hi there,

I have columns D and E either containing numbers of are blank. I want
formula in cell F to output the following:
a) if both columns D and E contain a number, I want it to output "bot
paid"
b) if column D contains a number but E does not, I want it to outpu
"conference pmt pending"
c) if column E contains a number and D does not, I want it to outpu
"membership pmt pending"

I have no idea how to enter an IF formula with that many variables
Thoughts
 
C

Claus Busch

hi,

Am Fri, 13 Sep 2013 00:59:57 +0100 schrieb Ada33:
I have columns D and E either containing numbers of are blank. I want a
formula in cell F to output the following:
a) if both columns D and E contain a number, I want it to output "both
paid"
b) if column D contains a number but E does not, I want it to output
"conference pmt pending"
c) if column E contains a number and D does not, I want it to output
"membership pmt pending"

try:
=IF(COUNT(D1:E1)=2,"both paid",IF(ISNUMBER(D1),"conference pmt pending","membership pmt pending"))


Regards
Claus B.
 
A

Ada33

You are a genius sir! Thank-you! :)
hi,

Am Fri, 13 Sep 2013 00:59:57 +0100 schrieb Ada33:
-

try:
=IF(COUNT(D1:E1)=2,"both paid",IF(ISNUMBER(D1),"conference pm
pending","membership pmt pending"))


Regards
Claus B.
 

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