Here is a simple automation to gather addresses from Zillow, separating the address, city, state, and zip into individual columns in Google Sheets.
As I improve the playbook I’ll edit this first post so you can see the progress. Feel free to ask any questions or provide suggestions below
My contact info www.solutionlab.ai or https://www.linkedin.com/in/webbizdan/
–Version 1–
- Bardeen Playbook V1: Shared Playbook | Bardeen
- Here is a video: Loom | Free Screen & Video Recording Software | Loom
- Reg Ex Formulas Used
Address: ^[^,]*
City: (?<=, )[^,]*(?=,)
State: (?<=, )\b\w{2}\b
Zip: (?<=,.+)(?=\d)\d+
What I want to improve (comment below if you have any other ideas) : I would love to automatically remove any duplicates. Once Bardeen fixes their bug we can add this into this playbook