I'm making an eligibility chart based on income. If 1 person (equals a
household) makes between $0 and $1000 (household income) they are in quot;xquot;
category. if that person makes between $1001 and $2000, they are in quot;yquot;
category. If that person exceeds $2000, they are in quot;zquot; category. So I have
3 categories they can be included in (x=Free, y=reduced, z=paid...it isn't
just a true and false statement). The tricky part is the number of people in
the household. 2 to infinite # of people making in the range of $0-$1000
need to be in quot;freequot; category. 2 cells are being drawn from. A1 is the
number of people, A2 is the income, A3 is the formula for figuring their
eligibility. I need A3 to say quot;Freequot;, or quot;Reducedquot;, or quot;Paidquot; as the end
result of the data. Thank you for any help you may provide.
I'm not sure what the effect of the number of people is on the higher
incomes - could you explain that part a bit more?
A lookup table as follows will allow you to get the categories from the
incomes:
0 Free
1001 Reduced
2001 Paid
I can explain how to use it when I understand about the number of
people.
PeteThanks for the quick reply Pete, I'm driving myself crazy with this. Let me
see if I can explain it better.
The chart will be used to figure categories without using a calculator for
income conversions or an income eligibility table as a reference to tell me
what category a family falls in. So when I enter in A1 (household size) and
then enter the income amount in A2, I need A3 to tell pop up and read quot;FREEquot;,
quot;REDUCED, or quot;FULL PRICEquot;
This is a rough mock-up of what I need to make a spreadsheet of.
FreeReduced
household size annual inc.annual inc.
1$10,000$15,000
2$14,000$20,000
3$18,000$25,000
4$22,000$30,000
5$26,000$35,000
6$30,000$40,000
7$34,000$45,000
8$38,000$50,000
If you look at a household of 4 and they make 15,000. They are under the
22,000 mark, so they are in the free category. If they made 22,001...they
would be in the reduced category because they are $1 over the cutoff. If
this family exceeded 30,000, they would be Full Price. I need to be able to
enter in a spreadsheet for example in A1 (household) is 4...A2 (income) is
$24,618...A3 would then pop up and say quot;REDUCEDquot;. I need the range because
theoretically the household of 4 could make $0-$22,000...or
$22,001-$30,000....or might make $30,001-$$$$$$$. A houshold of 8 may only
make 25,000. That would put them in the FREE category since the cutoff for 8
is 38,000. If they made 38,001, it would put them in the reduced category.
I am stumped as to how to write this formula. I've been trying to use
=IF(AND(....
quot;Petequot; wrote:
gt; I'm not sure what the effect of the number of people is on the higher
gt; incomes - could you explain that part a bit more?
gt;
gt; A lookup table as follows will allow you to get the categories from the
gt; incomes:
gt;
gt; 0 Free
gt; 1001 Reduced
gt; 2001 Paid
gt;
gt; I can explain how to use it when I understand about the number of
gt; people.
gt;
gt; Pete
gt;
gt;
Okay, there is a simple relationship between the threshold levels in
your example, so all you will need is the following formula in cell A3:
=IF(A2lt;=(A1*4000 6000),quot;Freequot;,IF(A2lt;=(A1*5000 1000 0),
quot;Reducedquot;,quot;Paidquot;))
assuming that A1 contains the number of people and A2 is the income.
Try that out with some example values.
PeteThanks Pete, this is so much simpler than what I was trying to do. You are a
life saver. One more question if you don't mind.
Why 4000 6000 or 5000 10000. I have different numbers that will need to be
used in the chart.
FreeReduced
household size annual inc.annual inc.
1$12441$17,705
2$16,679$23,736
3$20,917$29,767
4$25,155$35,798
5$29,393$41,829
6$33,631$47,860
7$37,869$53,891
8$42,107$59,922
I also need to add $4,238 for each additional member in the FREE category
and $6,031 for each additional in the REDUCED. So if there were 15 in the
free it would add 4238 to income for each additional member.quot;Petequot; wrote:
gt; Okay, there is a simple relationship between the threshold levels in
gt; your example, so all you will need is the following formula in cell A3:
gt;
gt; =IF(A2lt;=(A1*4000 6000),quot;Freequot;,IF(A2lt;=(A1*5000 1000 0),
gt; quot;Reducedquot;,quot;Paidquot;))
gt;
gt; assuming that A1 contains the number of people and A2 is the income.
gt;
gt; Try that out with some example values.
gt;
gt; Pete
gt;
gt;
nevermind pete, I figured it out. Thanks so much for your time.
quot;Petequot; wrote:
gt; Okay, there is a simple relationship between the threshold levels in
gt; your example, so all you will need is the following formula in cell A3:
gt;
gt; =IF(A2lt;=(A1*4000 6000),quot;Freequot;,IF(A2lt;=(A1*5000 1000 0),
gt; quot;Reducedquot;,quot;Paidquot;))
gt;
gt; assuming that A1 contains the number of people and A2 is the income.
gt;
gt; Try that out with some example values.
gt;
gt; Pete
gt;
gt;
Just for the benefit of others, then...
Though your numbers in the second table look a bit messier, they follow
a similar relationship - the difference between each value in your
first threshold is 4,238 (was 4,000) with a constant value of 8,203
(was 6,000). Presumably, there has been some kind of cost-of-living
adjustment. For your second threshold the difference is 6,031 (was
5,000) with a constant of 11,674 (was 10,000), so you can substitute
these new values for the old at the appropriate places. The formula
will cater for any size of household.
If the numbers are likely to change in the future, you might like to
record them in the sheet and refer to the cells in the formula. For
example, if you do a little table in cells C1 to E2 as follows:
Constant 8203 11674
Increment 4238 6031
then you can change the formula in A3 to:
=IF(A2lt;=(A1*D2 D1),quot;FREEquot;,IF(A2lt;=(A1*E2 E1),
quot;REDUCEDquot;,quot;PAIDquot;))
In future you only need to change the values in the table to keep up to
date.
PeteHope you are still around Pete.
What if the difference isn't the same? what if it jumps from 1037 for a
household of 1 to 1390 for household of 2, then 1744 for a household of 3.
The difference goes from 353 to354, but down the list there may be a
difference of 356?
quot;Petequot; wrote:
gt; Just for the benefit of others, then...
gt;
gt; Though your numbers in the second table look a bit messier, they follow
gt; a similar relationship - the difference between each value in your
gt; first threshold is 4,238 (was 4,000) with a constant value of 8,203
gt; (was 6,000). Presumably, there has been some kind of cost-of-living
gt; adjustment. For your second threshold the difference is 6,031 (was
gt; 5,000) with a constant of 11,674 (was 10,000), so you can substitute
gt; these new values for the old at the appropriate places. The formula
gt; will cater for any size of household.
gt;
gt; If the numbers are likely to change in the future, you might like to
gt; record them in the sheet and refer to the cells in the formula. For
gt; example, if you do a little table in cells C1 to E2 as follows:
gt;
gt; Constant 8203 11674
gt; Increment 4238 6031
gt;
gt; then you can change the formula in A3 to:
gt;
gt; =IF(A2lt;=(A1*D2 D1),quot;FREEquot;,IF(A2lt;=(A1*E2 E1),
gt; quot;REDUCEDquot;,quot;PAIDquot;))
gt;
gt; In future you only need to change the values in the table to keep up to
gt; date.
gt;
gt; Pete
gt;
gt;
Yes, I'm still here. Again, the difference between these numbers has a
simple relationship - it is:
353 x N N,
where N is the number in the household. I would suggest, therefore,
that your sequence continues 2098, 2452, 2806 etc, and the overall
relationship is:
= 682 (353 * N) N
Actually, this is one less than your value for N=1, but the other
values are the same.
PeteLittle confused on the formula. I understand the algebra, but don't quite
know how to put it in a formula...this is an example of what I'm dealing
with. The difference on all of these is 353 except for the jump from 1390 to
1744. That one is 354.
Category 1 Category 2
Household Inc.
1 1037
2 1390
3 1744
4 2097
5 2450
6 2803
7 3156
8 3509Every additional household after this is increased by 354. I don't know how
to approach it when the relationship doesn't involve the same amount.
this is what I have right now.
=IF(L4lt;=683 (353*A10) A10,quot;Freequot;,IF(L4lt;=973 (503*A 10) A10,quot;Reducedquot;,quot;Paidquot;))
L4 = income
A10 = household size
Thanks for any help you can provide and have provided.quot;Petequot; wrote:
gt; Yes, I'm still here. Again, the difference between these numbers has a
gt; simple relationship - it is:
gt;
gt; 353 x N N,
gt;
gt; where N is the number in the household. I would suggest, therefore,
gt; that your sequence continues 2098, 2452, 2806 etc, and the overall
gt; relationship is:
gt;
gt; = 682 (353 * N) N
gt;
gt; Actually, this is one less than your value for N=1, but the other
gt; values are the same.
gt;
gt; Pete
gt;
gt;
- Jun 22 Fri 2007 20:37
Range of numbers in a formula...PLEASE HELP!!!
close
全站熱搜
留言列表
發表留言