• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula Help Plz

Azhar Nadeem

New Member
In the attached file have two parameters
1. Product Code
2. Minimum Loan Limit (Variable)

I am trying to match product code with minimum loan limit and output result as "Not Eligible for Rollover", "Ok to Proceed"

Help plz.

Regards
 

Attachments

This will give you the min. loan: in any cell:
=VLOOKUP($C$4,$G$5:$H$10,2,FALSE)
An example of an IF statement in one cell to give a text output:
=IF(C12>=VLOOKUP($C$4,$G$5:$H$10,2,FALSE),"This","That")
 
Back
Top