travisbrown
Technical User
- Dec 31, 2001
- 1,016
I'm not sure exactly where to start, so bear with me as I try and explain.
I have a table of transactions for a quarterly magazine subscription.
With magazines, you have deferred revenue - i.e. you get $40 and owe the subscriber 4 issues (your liability). If it was done in the second quarter of 2006, you'd get $20 for 2006 and $20 for 2007. If it was a two year subscription, it would be deferred to installments over a few years.
I'm trying to figure out how to report on how much revenue from each transaction is allocated to each year for the duration of the subscription. I guess it needs to go in some kind of pivot table. Any ideas how to get started?
All I need in the end is the received and deferred revenue for each year for a given date range.
Below is what I think the relevant fields are. Any help is appreciated.
It's a little beyond anything I've had to do before, and maybe I need to hire a reporting genius. I'd usually do everything I need in SQL Server, but I think this is better suited to Excel.
I have a table of transactions for a quarterly magazine subscription.
With magazines, you have deferred revenue - i.e. you get $40 and owe the subscriber 4 issues (your liability). If it was done in the second quarter of 2006, you'd get $20 for 2006 and $20 for 2007. If it was a two year subscription, it would be deferred to installments over a few years.
I'm trying to figure out how to report on how much revenue from each transaction is allocated to each year for the duration of the subscription. I guess it needs to go in some kind of pivot table. Any ideas how to get started?
All I need in the end is the received and deferred revenue for each year for a given date range.
Below is what I think the relevant fields are. Any help is appreciated.
Code:
LIABILITY TOTAL CURRENCY DATE
4 12.5 CAD 5/19/2005
4 12.5 CAD 5/19/2006
4 12.5 CAD 2/19/2005
4 12.5 CAD 4/5/2005
4 12.5 CAD 5/29/2005
8 44.95 CAD 5/9/2005
4 12.5 CAD 8/12/2005
4 12.5 CAD 6/19/2005
4 12.5 CAD 1/20/2008
It's a little beyond anything I've had to do before, and maybe I need to hire a reporting genius. I'd usually do everything I need in SQL Server, but I think this is better suited to Excel.