Adimpact.com

From the monthly archives:

October 2009

Hey There!  Happy Halloween!

Happy Halloween

In our previous entry we discussed using the merge code fields to tag who should be getting holiday cards and gifts.  Now that you’ve gone through the process of adding the appropriate merge codes to your contacts, you probably want to see who has been tagged!

If you are only working with primary contacts I suggest using a filter…  Your filter will look something like this:

hc2-1

The key here is to use the Contains operator, as there may be multiple values in the field.

Once you’ve built your filter you can see the list from the Filter’s Preview tab as well as from the Contact Search Center!  Review this post on how to do that:

http://www.thegoldmineblog.com/2007/09/so-easy-yet-so-useful-how-to-print-a-filter/

You can, then, export from the search center, use GoldMine’s report’s to print labels, etc…

You can also use GoldMine’s Export Wizard available under File | Import/Export | Export Contact Records (Or Tools | Import/Export Wizard | Export Contact Records in 7.x or below).

hc2-2

The wizard gives you a variety of options of the export format (dBASE, ASCII, etc.) as well as whether you want to export primary and/or secondary contacts as well as limiting the export to a merge code.

hc2-3

Once exported, you can use MS Word® to print labels, etc.  My only complaint with the Export wizard here is that if the additional contact doesn’t have an address listed the Export wizard won’t automatically pick up the address of the primary contact.

Which brings us to our last method of export, a SQL Query, actually three.

For a review of using SQL Query’s Check Out This Post: http://www.thegoldmineblog.com/2007/10/the-one-that-didnt-get-away-finding-the-last-time-you-visited-a-client-or-prospect/

Here’s one for primary contacts:

select company, contact, title, address1, address2, address3, city, state, zip, phone1, contact1.accountno from contact1 where mergecodes like ‘%HC%’ order by company, contact

Here’s one for secondary contacts without an address (It’ll pick up the address from the primary contact):

select contact1.company, contsupp.contact, contsupp.title, contact1.address1, contact1.address2, contact1.address3, contact1.city, contact1.state, contact1.zip, contsupp.phone, contact1.accountno from contact1, contsupp where rectype = ‘C’ and (contsupp.address1 is null or contsupp.address1 <= ”) and contact1.accountno = contsupp.accountno and contsupp.mergecodes like ‘%HC%’ order by company, contsupp.contact

Finally one for secondary contacts with an address:

select contact1.company, contsupp.contact, contsupp.title, contsupp.address1, contsupp.address2, contsupp.address3, contsupp.city, contsupp.state, contsupp.zip, contsupp.phone, contact1.accountno from contact1, contsupp where rectype = ‘C’ and contsupp.address1 > ‘ ‘ and contact1.accountno = contsupp.accountno and contsupp.mergecodes like ‘%HC%’
order by company, contsupp.contact

Just change the ‘HC’ in each query to the mergecode you’re using.  After running each you, can do the Right-Click | Output to Excel trick and you’re on your way!

GoldMine Blog Notification Form

When you invest in Crystal Reports for GoldMine not only do you get 49 ready-to-use to Crystal Reports for your edition of GoldMine (Corporate 6.7, Corporate 7.0, Corporate 7.5, Premium 8.0 and Premium 8.5) but I’ll also release BONUS reports from time to time that you’ll be able to get no additional charge.

Here’s Open Opportunities Forecasted Amount by Month & Salesperson…  Click on the screen shot for a full size image.

open-opportunities-forecasted-amount-by-month-and-salesperson1

{ 0 comments }

It’s getting to be that time of year again, and with it the challenge of figuring out who should be getting what during the holiday season.

There are several different ways of doing this in GoldMine, but let me show you my favorite… This method uses the “Merge” field – and is usable for both primary and secondary contacts.

gm-merge-field

merge-for-secondary

To configure the merge field for Holiday use we just have to change the lookup values for the primary contact, the same merge codes will automatically be used for secondary contacts.

Within the Merge field, either use the Right-Arrow or use the F2 key on the keyboard to see the Lookup list.

merge-f2-lookup

Single Left-Click on the New button to add different merge codes.  You may want to use a single one or multiple depending on how you handle cards and gifts.  The two I have here are:

HC for Holiday Card and
HG for Holiday Gift.

We use the format:

HC;//Holiday Card (Code, semi-colon, two slashes, and then description).

Only the code will be placed in the field.  With this format you can fit up to 5 codes in the merge code field.  Select one code, as you normally would when using the lookup list, then select a second in the same manner.  GoldMine will automatically place a comma and space between the two instead of replacing one code with another.

multiple-merge-code-example

You can use any number of letters or numbers for the code but all codes should have the same number of characters.  I prefer two which allows up to 5 codes in the merge field but also makes it easy to remember what each is for.  You may want to use HC for Holiday Cards, but H1, H2, and H3 for different levels of gifts…

Get started on this and in our next  entry we’ll discuss getting that list out of GoldMine using SQL queries and the export wizard.

{ 0 comments }

The latest GoldBox enhancements are now available from the Downloads page of the web site.  Here’s a quick summary:

[click to continue…]

{ 0 comments }