Skip to content
×
Pro Members Get
Full Access!
Get off the sidelines and take action in real estate investing with BiggerPockets Pro. Our comprehensive suite of tools and resources minimize mistakes, support informed decisions, and propel you to success.
Advanced networking features
Market and Deal Finder tools
Property analysis calculators
Landlord Command Center
ANNUAL Save 54%
$32.50 /mo
$390 billed annualy
MONTHLY
$69 /mo
billed monthly
7 day free trial. Cancel anytime
×
Take Your Forum Experience
to the Next Level
Create a free account and join over 3 million investors sharing
their journeys and helping each other succeed.
Use your real name
By signing up, you indicate that you agree to the BiggerPockets Terms & Conditions.
Already a member?  Login here
Real Estate Technology
All Forum Categories
Followed Discussions
Followed Categories
Followed People
Followed Locations
Market News & Data
General Info
Real Estate Strategies
Landlording & Rental Properties
Real Estate Professionals
Financial, Tax, & Legal
Real Estate Classifieds
Reviews & Feedback

Updated over 11 years ago on . Most recent reply

User Stats

92
Posts
31
Votes
Ryan Thomas
  • Investor
  • ST. Augustine, FL
31
Votes |
92
Posts

Are there any Microsoft Excel gurus out there?

Ryan Thomas
  • Investor
  • ST. Augustine, FL
Posted

I need a little help building a quick and easy macro, and im having a tough time (im no programmer). Basically it works like this:

Sheet 1 is a list of 10,000 property addresses and other info.
Sheet 2 is a template .enex file i exported from evernote.

What I want to do is create a macro that copies the template into sheet 3, then auto populates the info from each row of sheet 1 into a row on sheet 3 with the pre created template.

This way I can make my 10,000 properties individual notes to be uploaded into evernote.

I can pretty much create the macro to do one template, but I dont understand how to look it and make it go through the entire list from sheet 1.

Any help would be greatly appreciated.

Most Popular Reply

User Stats

2,918
Posts
2,087
Votes
Dion DePaoli
  • Real Estate Broker
  • Northwest Indiana, IN
2,087
Votes |
2,918
Posts
Dion DePaoli
  • Real Estate Broker
  • Northwest Indiana, IN
Replied

You can record the macro procedures to do what you want, which sounds like some copy and paste event type thing. Then you can place those instructions in a loop that searches tests for the last record in the sheet.

Here is one example which searches for the an empty cell to determine if the loop should continue. This will allow the macro to be dynamic and work in a sheet with 10 or 10,000 data lines.

Sub ReportMaker()
Range("A2").Select ' Select cell with first set of data only replace inside the " "
Do Until IsEmpty(ActiveCell) ' Set Do loop to stop when an empty cell is reached.

' Insert your code here.

ActiveCell.Offset(1, 0).Select ' Step down 1 row from present location moving to the next record. If the records are multi line, increase the "1" by number of rows. This will require the data to be formated in terms of rows to be similar.
Loop
End Sub

You can create some code to automate the Evernote export but that might be a little overkill for what you are doing. That code is a bit more advanced and long. For the sake of simplicity, I would simply export the Evernote file into excel or import into excel manually.

  • Dion DePaoli
  • Loading replies...