Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to sort a set of contacts Alphabetically by Account Manager

Status
Not open for further replies.

JoeFixes

Vendor
Dec 21, 2004
12
0
0
US
Maybe this is an easy task. We have a set of contacts all with varied account managers assigned. I am searching to learn how to list alphabetically either by state or by company name a set of contacts all for one account manage only. It seems like a simple request, yet I am stumped on how to achieve it.

Can anyone help?

Thank you

JoeFixes
 
This really depends on the version of GoldMine that you are using.

GoldMine Premium? Just Double-Click on the field label that you wish to Sort by.

GoldMine Standard? There are 13 Indexes pre-defined. Key1 thru Key5 are most commonly used for Account Manager.



DJ Hunt
Phone: (978)2-3333
WebSite:
- GoldMine Premium - The Definitive Guide
- One-on-One GoldMine Technical Support ( Fee Based )
 
Hi DJHunt,

We are using V. 6.7. I want to first sort by account manager and then within the accounts for that person sort those by company or by state.

JoeFixes
 
1st Sort SQL Query

select *
from Contact1
where Key1 like '%DJ Hunt%'
order by Company

2nd Sort SQL Query

select *
from Contact1
where Key1 like '%DJ Hunt%'
order by State


DJ Hunt
Phone: (978)2-3333
WebSite:
- GoldMine Premium - The Definitive Guide
- One-on-One GoldMine Technical Support ( Fee Based )
 
DJ,

Forgive my ignorance. Where do I get into the SQL Query sort options?

JoeFixes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top