Use a vlookup table, but the lower value of each age in a column in
ascending order like
0 200
15 250
25 300
etc
then use
=VLOOKUP(lookup_age,A2:B10,2)
now if you use another cell to put the age in
=VLOOKUP(D1,A2:B10,2)
using my example if you put in 10 in D1 the value that's returned is 200,
between 15 and 24 is 250 and so on
--
For everyone's benefit keep the discussion in the newsgroup.
Regards,
Peo Sjoblom
Kimberlie said:
=DATEDIF(G7,$C$4,"y") is the formula I used to calcuate the age. This is
referencing a column with a birthdate (G7) and a cell ($C$4) with a proposed
effective date for policies. Now I need to reference a range of prices
based on the age that is calculated. There are nine prices (age banded) to
choose from, and I am stumped as to how to make it work. I appreciate any
guidance you can offer.