Mar 13, 2020 10:49 AM
Hi, I have a table with clients linked for certain projects and am looking to grab only their email addresses for a bulk email, without opening up 100s of clients to grab those specific email addresses. Any ideas?
Mar 13, 2020 12:49 PM
Hey Jessica. Am I correct in concluding your table is setup something like this?
Clients (table)
Email (single line text)
jessica@jessica.jessica
zollie@zollie.zollie
Linked Projects (linked record)
some project name
some other project name
Projects (table)
Name (single line text)
some project name
some other project name
Clients (linked record)
zollie,jessica
bob,fred
If so, your solution would be to add a lookup field to the Projects table. A lookup field can retrieve any fields from a linked record. It looks like this:
Client Emails (lookup)
jessica@jessica.jessica, zollie@zollie.zollie
Mar 13, 2020 02:34 PM
You want a quick and dirty solution that lists all the email addresses so you can copy and paste them into an email message (or something), right?
Mar 13, 2020 03:33 PM
Yes. I just have certain client names in the table, their data is in another table. Sorry I’m new at this.
Mar 13, 2020 03:38 PM
Right.
One approach - since you only need the emails addresses, why not just dump the table containing the email addresses into a CSV export and then import that into Excel or Google sheets and you’ve got the data.
Also, it’s possible to display the table, select only the email addresses column and use Ctrl-C/Cmd-C to copy the entire list and then paste elsewhere.
Does this achieve the objective or did I miss something?
Mar 13, 2020 03:49 PM
I don’t want to email all my clients in the client tab, just the ones linked in this tab. Does that make sense?
Mar 13, 2020 03:54 PM
Ok, create a view and set the filter to include only those items where links exist, then copy the addresses.