[NOT SUM] Assign Values based on Start Date

add456

New Member
Joined
Feb 6, 2015
Messages
3
Hi all, here is the context:

  • I sell software subscriptions, each varying in start date and duration
  • It is important to know the monthly totals for subscription sales (i.e. new sales + monthly reoccurring revenue from deals that already closed)
  • I am trying to figure out a method / formula to automate the monthly totals so that once the base info is entered (see TABLE 1), then the revenue schedule (see TABLE 2) is automatically populated

So here is the sheet with the raw info ...

TABLE 1.
Company
Start
End
# Months
Monthly $$$
Acme1
1/1/18
5/1/18
4
50,000
Acme2
3/1/18
7/1/18
4
121,000

<tbody>
</tbody>

... I would like to determine the formulas to the following is auto populated (to the right of this table) based on 1) START, 2) # MONTHS and 3) Monthly $$$$

TABLE 2.
Company
Jan
Feb
Mar
Apr
May
Jun
July
Aug
Sept
Oct
Nov
Acme1
50,000
50,000
50,000
50,000
50,000
Acme2
121,000
121,000
121,000
121,000
121,000

<tbody>
</tbody>

Any help would be appreciated!!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Assume
Table1 on Sheet1 with "Company" in A1
Table2 on Sheet2 with "Company" in A1
Assume the dates at the top of table 2 are dates for the first of each month formatted as month only (or as desired)

Insert a column in Table 2 after company that contains this formula:
=MATCH(A2,Sheet1!A:A,0)

Put this formula in Sheet2, C2 (January 2018 for first company)
=IF(AND(INDIRECT("Sheet1!B"&$B2)<=C$1,INDIRECT("Sheet1!C"&$B2)>=C$1),INDIRECT("Sheet1!E"&$B2),"")

Drag-Copy that formula over and down to cover all companies and dates.
 
Upvote 0

Forum statistics

Threads
1,214,626
Messages
6,120,602
Members
448,974
Latest member
ChristineC

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