Ever wondered where your records are coming from?
Here's a SQL Query that'll show you the number of records created, by their source for 2007. The dates can easily be changed so show whatever date range you'd like. This should work on any SQL based GoldMine system.
select source, count(*) as "#", max(accountno)
from contact1
where createon >= '1/1/2007' and createon <= '12/31/2007'
group by source
order by source
If you're using a dBASE GoldMine, this won't give a summary but will display the information:
select source, company
from contact1
where createon >= '1/1/2007' and createon <= '12/31/2007'
order by source
P.S. Want to learn how to write your own SQL Queries in GoldMine?
Check out http://www.thegmblog.com/sql4gm/
Please Note: The GoldMine Blog has moved to http://www.thegmblog.com
