Search results

  1. T

    Filters and reports...

    ... don't mix too well. Fox example now I have a report which has several subreports. The subreport has an on open event: Me.Filter = Forms![Form-X].Filter Me.FilterOn = True This works fine when opening the subreport alone. But when opening the actual report (that holds the subreport) - the...
  2. T

    Grouping data

    I have a table that has several true/false -fields among other fields. Example: ID TF1 TF2 TF3 TF4 ... 1 true false true true ... 2 false false true false ... 3 true true false false ... I would need a report in which the data is grouped by those true/false fields. Example: TF1: 1 3 TF2: 3...
  3. T

    Printing problem

    The problem is: Printing a form results the form to be printed to a wrong printer. I am not a newbie at printing, yes I have selected the right printer in the print -menu. The "wrong" printer isn't even installed on this computer. Trying to print from the file-menu or with DoCmd.PrintOut -...
  4. T

    Grouping data by multiple check boxes

    I have this table, which has several 1/0-fields (true/false). Simplified example of the table: ID, C-1, C-2, C-3, C-4 1, 0, 1, 1, 0 2, 1, 0, 0, 0 3, 0, 1, 0, 0 I would need a report that groups the data by the selected C-N values. Example report: C-1: ID: 2 C-2: ID: 1...
Back
Top Bottom