Hi all!
I want to create a yearly calendar for the 106 leases I manage showing the monthly rent for each property.
My Master Lease sheet has columns for "Monthly Rent", "Rent Increase Date", and "Monthly Rent After Increase" which will be effective once the rent increase date is reached. If there are no renewal options left for a property, the rent increase date populates "N/A".
My Rent Schedule Calendar has a column for each month, and each of the rows are titled by a property ID.
If there are renewal options remaining on a property lease, the following formula returns a correct value, if there are no renewal options left, I get "#INVALIDOPERATION".
=IF(VLOOKUP([Property ID]@row, {Master Lease Sheet 1}, 48) > DATE(2023, 4, 30), VLOOKUP([Property ID]@row, {Master Lease Sheet - Rent VLOOKUP}, 40), VLOOKUP([Property ID]@row, {Master Lease Sheet Range 2}, 50))
I've tried every iteration I can think of to get the formula to return "Monthly Rent" if there is an "N/A" but I can't figure it out for the life of me. If there is even a better way than what I'm trying to create this rent forecast, I'm all ears. I super hope this question makes sense. Thanks for your time!