Return value based on criteria in a chart

Rportz

Board Regular
Joined
Mar 24, 2016
Messages
55
If I enter the number of family size, I want the cell to return "Qualified" if the Income is no greater than the income that correlates with the Number in Household (refer to chart) otherwise return "not qualified." For instance, if I enter Family Size of 2 and enter the income as $15,000.00, then the cell returns "Qualified" because $15,000 is less than the $16,460 (see chart). If I enter family size of 2 and enter income as $20,000, then the cell returns "Not Qualified"

Chart:

A
B
C
D
1
Family Size
1
2
3
2
Income
$12,140
$16,460
$20,780

<tbody>
</tbody>


A
B
C
1
Enter Family Size:
2
2
Enter Income:
$15,000
"Qualified"

<tbody>
</tbody>


I appreciate any help you can provide on this

Rita
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
I would use an IF formula.

=IF(income entered<=HLOOKUP( family size entered,B1:D2,2,FALSE),"Qualified","Not Qualified")

The HLOOKUP range of B1:D2 is assuming that the 1,2,3 family size numbers are in row 1, with "1" starting in B1, and that the income is directly beneath it.
 
Upvote 0

Forum statistics

Threads
1,214,972
Messages
6,122,530
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top