Thanks in advance for any help.
I need to create a report with projected earnings over a series of month end dates. The source table looks like this
JobName | MonthlyAmount | StartDate | EndDate
Job1 | $500 | 1/31/15 | 11/30/15
Job2 | $750 | 3/10/15 | 9/30/15
Job3 | $600 | 2/20/15 | 1/31/16
The user selects the data rage to be run
e.g. 9/30/15 - 12/31/15
The output should look like this
9/30/15 | 10/31/15 | 11/31/15 | 12/31/15
$1,850 | $1,100 | $1,100 | $600
I'm not sure how to turn a date range (StartDate, EndDate) in the table into multiple records in the output.
Thanks again
I need to create a report with projected earnings over a series of month end dates. The source table looks like this
JobName | MonthlyAmount | StartDate | EndDate
Job1 | $500 | 1/31/15 | 11/30/15
Job2 | $750 | 3/10/15 | 9/30/15
Job3 | $600 | 2/20/15 | 1/31/16
The user selects the data rage to be run
e.g. 9/30/15 - 12/31/15
The output should look like this
9/30/15 | 10/31/15 | 11/31/15 | 12/31/15
$1,850 | $1,100 | $1,100 | $600
I'm not sure how to turn a date range (StartDate, EndDate) in the table into multiple records in the output.
Thanks again