Hello everyone,
I am looking for help populating out a rent schedule for several leased properties. I have a table with the length of the lease, the total rent, and rent values & durations in months for each rent step, like the following:
Months | Total Rent | Rent Step 1 | Step 1 Duration | Rent Step 2 | Step 2 Duration | Rent Step 3 | Step 3 Duration | ... |
48 | 405900 | 11000 | 3 | 11275 | 3 | 11550 | 12 | |
36 | 472920 | 12750 | 12 | 13135 | 12 | 13525 | 12 | |
1 | 9750 | 9750 | 1 | 0 | 0 | 0 | 0 |
I need these steps broken out month-by-month, so that there is a column for rent each month at each of the properties, like so:
Months | Total Rent | Month 1 | Month 2 | Month 3 | Month 4 | Month 5 | Month 6 | Month 7 | ... |
48 | 405900 | 11000 | 11000 | 11000 | 11275 | 11275 | 11275 | 11550 | |
36 | 472920 | 12750 | 12750 | 12750 | 12750 | 12750 | 12750 | 12750 | |
1 | 9750 | 9750 | 0 | 0 | 0 | 0 | 0 | 0 |
Both the length of the rent steps and the total number of steps in the contract vary per property.
Any help would be greatly appreciated!
Solved! Go to Solution.
Hi @MatthewK
I put together a quick sample on how you could accomplish this.
Let me know if this works for you or if you have any questions.
Thank you Luke, this worked like a charm! Exactly the functionality I was looking for.
User | Count |
---|---|
19 | |
15 | |
13 | |
9 | |
8 |