Steve, Don't use Tally, use the SQL way to do the same thing.
CREATE TEMP VIEW SteveTally (VendorN, VendorCount) + AS SELECT VendorN, COUNT (*) FROM Master Then use PROJECT: PROJECT TABLE StevesTally FROM SteveTally USING * Bill Steve Breen wrote: > I am trying to us a tally command to create a table on the fly > > IE: Tally VendorN from master > > Can any one advise me of the best way to accomplish this? > > > > Thanks > > > > > > Stephen Breen > > > > >
