formula to return a spcified value if a set of criteria meets con.

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

Guest

I have mulitple columns of data to evaluate. I need to be able to add a
column to the end where in each row I can enter a set of criteria that will
return a specified value.

For example:
If cells A1 thru F1 are null/blank (contain no data) return the value
"current month"
If cell A1 is not null (contains any type of data) return value "prior month"
 
Hi
do you mean
=IF(A1<>"","prior month",IF(COUNTA(A1:F1)=0,"current month","not
defined"))

--
Regards
Frank Kabel
Frankfurt, Germany

"Georgia at Nexstar" <Georgia at (e-mail address removed)>
schrieb im Newsbeitrag
I have mulitple columns of data to evaluate. I need to be able to add a
column to the end where in each row I can enter a set of criteria that will
return a specified value.

For example:
If cells A1 thru F1 are null/blank (contain no data) return the value
"current month"
If cell A1 is not null (contains any type of data) return value
"prior month"
 

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