IF statement formular

R

redlion

Hello,

Hi Guys,

The attached spreadsheet is used to assess if we will invest in certai
companies.

I have tried the following IF statement but it does not work.

=IF(OR(C19=Criteria!H4,C8>Criteria!H11,C22>Criteria!H18),"","LLLLLL")

With the First statment (C19+Criteria!H4) how do I tell it if it = C1
and > C19



Any help would be great

Thanks
Redlio

+-------------------------------------------------------------------
|Filename: raitotest5.zip
|Download: http://www.excelforum.com/attachment.php?postid=5040
+-------------------------------------------------------------------
 
R

redlion

I have some Investment Criteria that must be meet if I am to invest in
them.

the following must be meet to Invest

Current Ration must be at least 1
Return on Shareholders funds exceeds 15% and
Dividend Yield exceeds 4.5%

I would like an IF statment to tell me if any of these are not meet.
 
D

duane

assuming your cell references are correct

=IF(OR(C19<Criteria!H4,C8<Criteria!H11,C22<Criteria!H18),"LLLLLL","")

would appear to return LLLLLL if any criteria not met, and "" if al
ar
 
S

Steel Monkey

Try Something like this
=IF(AND(C19>=Criteria!H4,C8>Criteria!H11,C22>=Criteria!H18),"","LLLLLL")

If the below values are always the same you could simplify matters b
putting
=IF(AND(C19>=1,C8>15,C22>4.5),"","LLLLLL")
Current Ration must be at least 1
Return on Shareholders funds exceeds 15% and
Dividend Yield exceeds 4.5%

let me know how it goe
 

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

Combining Multiply Worksheets onto one 10
Count if and Sumproduct 2
Help Me !!!! 5
If Function 5
Time formatting 2
LookUp with Mulitple Criteria 4
Copy cells in a determined order 3
Multiple IF Statements 1

Top