% allocated over time varies

A

AK

Need some help with allocating values over time based on percentages

Columns:
Start | Finish | Duration (calculated) | Value | Jan08|Feb08|Mar08|Apr08|so on

If the start date is 01/05/08 and finish date is 06/05/08 then the duration
would be 6 (months). Then in each month column the start and finish
encompass the Value would be based on a separate worksheet with percentages
for each duration.

So the other worksheet would look like this:

1 2 3 4 5 6 7 8
1 100%
2 35% 65%
3 20% 50% 30%
4
5
6 10% 15% 20% 20% 15% 20%


So if the duration is 6 months and the value is 100, then month 1 would
equal 100*.1 and month 2 100x.15 and so on


Any way to use offset and indirect to automate this function?

Thanks in advance
 
S

Sheeloo

All you need is VLOOKUP to get the percentage and have a formula like
IF(VLOOKUP(),VLOOKUP()*100,0)

where VLOOKUP() will be in the following form;

VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)

Lookup_value - will be the duration

Table_array - will be your range with percentages.

Col_index_num - will be the month number

Range_lookup - will be False
 

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

Top