Here’s the challenge: I need to take a single dollar value and distribute it in a bell curve over a set of dates.
Variables:
1. Dollar Value
2. Start date
3. End date
The dollar value would be distributed among the valid months (picture the date along the columns).
Perhaps it’s best asked by giving an example: say that I have $100,000 that I need to distribute between January and June (6 months). If it was uniformly distributed, it’s $16,667 per month. The formula would check if the current column’s date is between the start and end date and then divide it by the count of all months between those 2 dates. General formula in every cell along the row:
=IF(AND(CurrentMonth >= StartDate, CurrentMonth <= EndDate), (DollarValue)/(COUNTIFS(DateRange, CurrentMonth >= StartDate, DateRange, CurrentMonth <=EndDate)),”“)
The above is a pretty simple formula to enter the average value among the valid date range (i.e. uniformly distributed).
The question is, are there any ideas for bell curves??
Variables:
1. Dollar Value
2. Start date
3. End date
The dollar value would be distributed among the valid months (picture the date along the columns).
Perhaps it’s best asked by giving an example: say that I have $100,000 that I need to distribute between January and June (6 months). If it was uniformly distributed, it’s $16,667 per month. The formula would check if the current column’s date is between the start and end date and then divide it by the count of all months between those 2 dates. General formula in every cell along the row:
=IF(AND(CurrentMonth >= StartDate, CurrentMonth <= EndDate), (DollarValue)/(COUNTIFS(DateRange, CurrentMonth >= StartDate, DateRange, CurrentMonth <=EndDate)),”“)
The above is a pretty simple formula to enter the average value among the valid date range (i.e. uniformly distributed).
The question is, are there any ideas for bell curves??