anniversery update

shamsu203

Board Regular
Joined
Jun 12, 2014
Messages
70
Office Version
  1. 365
Platform
  1. Windows
Hi
I have various properties let out to various tenets . The tenancy are of various periods eg some may be 1 year or others may be 3 ,5, 10 years when date the rent increase may be yearly or every 2 or 4 years from the start of the contract. Is it possible to have an excel spreadsheet to show the monthly rent and also the date and amount of the increase rent on the annversery date..
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Re: annversery update

Welcome to the Board!

Yes, that should be possible. If you need help with doing that, we would need a bit more details, like the structure of your data and the "rules" you want to impose.
 
Upvote 0
Re: annversery update

Welcome to the Board!

Yes, that should be possible. If you need help with doing that, we would need a bit more details, like the structure of your data and the "rules" you want to impose.
Hi
I give below the structure and rules this is basic and if you have any suggestions it will be appreciated
Deposit₹ 500,000.00 ₹ 100,000.00
Tenanacy Details
Property Tax₹ 3,614.00 ₹ 3,195.00
Tenanacy Start Date01-02-1801-01-1801-12-18
Agreed Rent₹ 15,000.00₹ 5,000.00₹ 10,000.00
Rent Increase Interval months1224

36
Rent Increase %10.00%0.00%10.00%
Current Rentthis is either the agreed rent or the rent after increase. this will change at the next interval period i.eg 15000 become 16500 on 1-2-19, then18150 0n 1-2-20
Next Rent Increase datedate next incrase is due based on the increase interval eg based on start date the next rent incrase is due 1-2-19 then 1-2-20 once 1-2-19 is reached
Regards
shamsu

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
Re: annversery update

OK, let say the the key values are in the following cells:
B5: Tenancy Start Date
B6: Agreed Rent
B7: Rent Increase Interval Months
B8: Rent Increase %

Then the formula for Current Rent would be:
Code:
=B6*(1+B8)^INT(IF(TODAY()>B5,DATEDIF(B5,TODAY(),"m"),0)/B7)

As for the next rent increase date, I had to create my own function in VBA to do it, like this:
Code:
Function NextDueDate(dteStart As Date, intInterval As Integer) As Date
'   Calculate next due date
'   - dteStart: start date
'   - intInterval: interval of increase (in months)


    Dim i As Long
    Dim calcDate As Date
    
    For i = 0 To 1000
        calcDate = DateAdd("m", intInterval * i, dteStart)
        If calcDate > Date Then
            NextDueDate = calcDate
            Exit For
        End If
    Next i


End Function
Then, you would just use it like any other Excel function on your sheet, i.e.
Code:
=NextDueDate(B5,B7)
There maybe a way to do it without using VBA to create your own function, but I cannot quite figure it out.
If you want to play around with it, take a look at these threads, as I think you will probably want to do something along these lines:
https://www.mrexcel.com/forum/excel-questions/963649-calculate-next-due-date-recurring-tasks.html
https://www.mrexcel.com/forum/excel-questions/590524-how-can-i-calculate-next-payment-date.html
 
Upvote 0
Re: annversery update

OK, let say the the key values are in the following cells:
B5: Tenancy Start Date
B6: Agreed Rent
B7: Rent Increase Interval Months
B8: Rent Increase %

Then the formula for Current Rent would be:
Code:
=B6*(1+B8)^INT(IF(TODAY()>B5,DATEDIF(B5,TODAY(),"m"),0)/B7)

As for the next rent increase date, I had to create my own function in VBA to do it, like this:
Code:
Function NextDueDate(dteStart As Date, intInterval As Integer) As Date
'   Calculate next due date
'   - dteStart: start date
'   - intInterval: interval of increase (in months)


    Dim i As Long
    Dim calcDate As Date
    
    For i = 0 To 1000
        calcDate = DateAdd("m", intInterval * i, dteStart)
        If calcDate > Date Then
            NextDueDate = calcDate
            Exit For
        End If
    Next i


End Function
Then, you would just use it like any other Excel function on your sheet, i.e.
Code:
=NextDueDate(B5,B7)
There maybe a way to do it without using VBA to create your own function, but I cannot quite figure it out.
If you want to play around with it, take a look at these threads, as I think you will probably want to do something along these lines:
https://www.mrexcel.com/forum/excel-questions/963649-calculate-next-due-date-recurring-tasks.html
https://www.mrexcel.com/forum/excel-questions/590524-how-can-i-calculate-next-payment-date.html
tks the first part worked beautifully. I did not use the vba as am not familiar with the same
 
Upvote 0
Upvote 0
Re: annversery update

You don't need to know anything about VBA to use what I wrote for you.
Just follow the first four steps under "Insert VBA code to Excel Workbook" in the following link to add my VBA code to a module:
https://www.ablebits.com/office-addins-blog/2013/12/06/add-run-vba-macro-excel/

Then, you can use it like you would any other Excel function, like I showed in my previous post.
Hi
I copied and pasted the VBA code given and changed the cell ref as required . I get an error message=name? Pls let me know what needs to be done remove this error.
Tks
 
Upvote 0
Re: annversery update

I copied and pasted the VBA code
What is the name of the module where you have posted this VBA code that I gave you?
 
Upvote 0
Re: annversery update

the name of the module is NextDueDate
Not the name of the function, but rather the module.
They usually have named like Sheet1, ThisWorkbook, Module1, Module2, etc unless you physically changed the default name of your module.
The reason why I am asking is because if you place it in the wrong module (i.e. one of the Sheet modules) and try to access it from another sheet, it won't work and you will get the error you are describing.

What that error is telling you is that it cannot find any function with that name which means one of three things:
- you placed it in the wrong area
- you mis-typed the function name somewhere (either in VBA or on the sheet, so there isn't an exact match)
- Macros/VBA are not enabled on your workbook
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,236
Messages
6,123,798
Members
449,127
Latest member
Cyko

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