Analyzing multiple IF formulas for a single answer

H

heyredone

I am creating a worksheet that will require analyzing multiple IF formulas to
provide a single answer in a cell.

Currently in cell J8 I have:
=IF(I8<=0,"NG",IF(I8>=30,"30"))
I want to also add ... if I8>=1 and I8<30, then it inserts the number that
is currently in cell I8.

How do I add this formula to the current string I have?
Thank you!
 
F

Fred Smith

Try this:

=IF(I8<=0,"NG",if(i8<1,"Undefined",if(i8<30,i8,30)))

Change "Undefined" to whatever you want to happen when I8 is between 0 and
1.

Regards,
Fred.
 

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

Similar Threads

Multiple If Stmts 2
Conditional formulas 1
Multiple Conditionals in MS Excel 2007 6
Need column K to = 0 if J is blank 3
Nesting if/or/and 4
#VALUE problem 4
VLOOKUP formula 3
Setting a cell's formula with VBA 4

Top