Landco Real Estate

Landco Exit Survey

Share your experience to help us improve for future tenants.

Landco Real Estate

Send exit survey

Enter the tenant's details below to generate a personalized survey link and ready-to-send email.

Google Sheets setup (one time) Paste the Apps Script code below into your sheet to automatically log every submission. See the "Google Sheets Setup" section at the bottom of this page.

Google Sheets setup

Paste this Apps Script into your Google Sheet (Extensions → Apps Script) to auto-log every survey submission. Each response will land in a new row automatically.

Apps Script code
function doPost(e) {
  try {
    var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
    var data = JSON.parse(e.postData.contents);

    if (sheet.getLastRow() === 0) {
      sheet.appendRow([
        "Timestamp","Tenant Name","Email","Unit","Move-In",
        "Reason for Leaving","Overall ★","Cleanliness ★","HVAC ★",
        "Parking ★","Security ★","Maintenance ★","Communication ★",
        "NPS","Value Perception","Lease Clarity",
        "Did Well","Needs Improvement","Other Comments"
      ]);
    }

    sheet.appendRow([
      new Date(data.ts), data.tenantName, data.email, data.unit,
      data.moveIn, data.reason, data.overall, data.clean,
      data.hvac, data.parking, data.security, data.maint,
      data.comm, data.nps, data.value, data.clarity,
      data.well, data.improve, data.other
    ]);

    return ContentService
      .createTextOutput(JSON.stringify({status:"ok"}))
      .setMimeType(ContentService.MimeType.JSON);
  } catch(err) {
    return ContentService
      .createTextOutput(JSON.stringify({status:"error", message: err.toString()}))
      .setMimeType(ContentService.MimeType.JSON);
  }
}

function doGet(e) {
  return ContentService
    .createTextOutput("Landco Exit Survey — endpoint active.")
    .setMimeType(ContentService.MimeType.TEXT);
}
After pasting: 1. Click Deploy → New deployment 2. Type: Web app 3. Execute as: Me 4. Who has access: Anyone 5. Click Deploy → copy the Web App URL → paste it in the field below Important: Every time you change the script, click Deploy → Manage deployments → create a New version.

Portal PIN

Change the 4–6 digit PIN used to access this landlord portal.

Landco Real Estate

We value your experience.

As you prepare to move on, your honest feedback helps us serve every tenant better. This survey takes about 3 minutes.

1
Your tenancy
2
Property ratings
3
Management
4
Open feedback
Your contact info
Please provide your name and email so we can follow up if needed.
Full name *
Email address *
About your tenancy
Suite / unit number
Approximate move-in date
Primary reason for leaving
Relocating business
Downsizing space
Upsizing space
Found better value
Closing business
Property issues
Other
Property & space
Overall satisfaction with the property
Rate each area
Cleanliness & common areas
HVAC / temperature
Parking & access
Security & safety
Management
Maintenance responsiveness
Communication quality
Were lease terms & charges communicated clearly?
Yes, always
Mostly
Sometimes
Rarely
Value
Did you feel you received fair value for rent paid?
Excellent value
Fair value
Slightly overpriced
Significantly overpriced
Likelihood to recommend
How likely are you to recommend this property to another business? (0–10)
Not likelyExtremely likely
Open feedback
What did we do well?
What is the single most important thing we should improve?
Any other comments?
Landco Real Estate

Responses

All exit survey submissions from departing tenants. Hit ↻ Refresh to pull latest from monday.com.