Help with IF Function

S

supersub15

I need to evaluate 2 values in cells C9 and E9. One or the other
should be within 125% + $100,000 of the other. If this test fails,
it's "Rejected", else it's "Accepted".

Can this be done in a single formula?
 
S

Sandy Mann

Being as you quote 125% I assume that you mean if 125% of the smaller value
+ 1000000 is less than the larger value. If so then use:

=MIN(F4:G4)*125%+1000>=F4

or

=IF(MIN(F4:G4)*125%+1000>=F4,"Within allowance","Outside of allowance")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
S

supersub15

Being as you quote 125% I assume that you mean if 125% of the smaller value
+ 1000000 is less than the larger value. If so then use:

=MIN(F4:G4)*125%+1000>=F4

or

=IF(MIN(F4:G4)*125%+1000>=F4,"Within allowance","Outside of allowance")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk







- Show quoted text -

Thanks Sandy. That seems to do it.
 
S

Sandy Mann

You're very welcome. Thanks for the feedback

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 

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