Search results

  1. T

    Query Help

    I have been asked to produce a report that will look at showing totals, percentage, average and oldest date on a table. The purpose is to show how many records have been selected for an underwriter, so I need to group the underwriter and count the records where his/her name appears (No issue...
  2. T

    YEs No

    Are you looking to use a VBA Form, if so then the tools for a check box or drop down is available to you within the toolbox. If you are wanting it on a word document like in a table, then that will depend on what version of Word you are using. If prior to 2007 then look for a toolbar called...
  3. T

    Filtering a continuous form

    The docmd isnt the answer you need. You should look to use something like this: Dim sProcessId With Combo9 'Combo Box Name If .ListIndex <> -1 Then 'sProcessId = .SelText 'Retrieves the value of the bound column which may more may not be 'displayed in the list box sProcessId =...
Back
Top Bottom