Hi,
Maybe you could update contacts title field (or some other field) according accounts category using sql query.
Running the following query will find all contacts where company category (account_type actually) is "Prospect" and update contacts title field to "Prospect". As you have several categories you would need run the query couple of times and change the WHERE and SET parameters.
Hope this helps
Code:
UPDATE contacts INNER JOIN (accounts INNER JOIN accounts_contacts ON accounts.id = accounts_contacts.account_id) ON contacts.id = accounts_contacts.contact_id SET contacts.title = "Prospect"
WHERE (((accounts.account_type)="Prospect"));
Bookmarks