Search results

  1. Freddy

    Contuous subform with buttons

    I have a rather large list of reports that I want to present to the user as a continuous subform with buttons on each record for the user to print that particular report. The form draws from a table that has the report name and a flag indicating whether there is data for the report to display...
  2. Freddy

    Running Concatenation

    I am trying to create a simple query that will keep a running list of first names, but am having problems. It was done in the design view but here's the sql for discussion purposes: PARAMETERS RunningList Text ( 255 ); SELECT Family.LastName, ([RunningList] & ", " & [FirstName]) AS RunningList...
  3. Freddy

    Sort by Number of Pages

    I have a report of customer info that is currently sorted by customer number. There are 1000s of customers and the report is well over 5,000 pages. I've been asked by the bosses on high to sort the report by the number of pages the customer receives so we can sent the smaller reports to a...
  4. Freddy

    Import Spec

    For various purposes and reasons, I create separate databases that load in the same set of text files. The record formats of these files are lengthy. Currently I either copy a database with the spec already in place to a new db and delete the non-relevant tables, queries, etc or retype the...
Top Bottom