Search results

  1. A

    Restrict summing by date

    Something like this: SELECT date, Sum(amount) AS TotalAmount FROM tablename GROUP BY date HTH
  2. A

    What am I doing wrong?

    Make sure the field types for the joined fields are the same.
  3. A

    1 mde form shows 2 diff date formats for users

    It's possible their local PC system date time format is causing this. Check the Control Panel and Regional settings. HTH
  4. A

    Group By Query

    JJT, I think your best alternative would be my suggestion on your original post of 9-17. If your not sure how I can give more detail.
  5. A

    Multiple queries

    If you want to execute a series of queries use a macro. That should work if I'm understanding you correctly.
  6. A

    Startup on forms

    Go into the properties of your form and change 'Data Entry' Yes. Create a macro to run the maximize command and assign it to the 'on open' event of form. HTH
  7. A

    Trouble with Duplicates

    Try doing this: Copy the structure of current table into a new table and make the case number the primary key. Append the data from old to new. This will keep first record and drop all dups. [This message has been edited by arickards (edited 09-20-2001).]
  8. A

    Data Entry Form - Blank Record vs. 1st Record

    Hi Tom, Got your email. Try this on the on open event of the form: 'Function Macro1() On Error GoTo Macro1_Err DoCmd.RunCommand acCmdRecordsGoToNew Macro1_Exit: Exit Function Macro1_Err: MsgBox Error$ Resume Macro1_Exit End Function HTH, ASH~
  9. A

    Data Entry Form - Blank Record vs. 1st Record

    In the form properties make the form data entry.
  10. A

    Small App If Anyone is Interested...

    Could I get a copy too in A2K? Thanks.
  11. A

    Linking two sub forms with a form

    Insert the subforms into your main form. In the properties of the subform use the link master and link child property and type in the field name you want to link by. HTH
  12. A

    Form load and display on click

    I have a large form and currerntly with all the subforms and other info it is slow. What I would like to do is have buttons that will only load and dislay the related info of the current form. TIA ASH~
  13. A

    Display message when query finishes

    Sure is. Use the open query in the first row. In the second use the msgbox. HTH ASH~
  14. A

    Forms!!!

    Try this. Create a query and add both tables select the fields etc.. Create an inner join, assuming you have a field in both tables that link the records. Then on the control source of the form use the query. HTH ASH~
  15. A

    Forms!!!

    Try this. Create a query and add both tables select the fields etc.. Create an inner join, assuming you have a field in both tables that link the records. Then on the control source of the form use the query. HTH ASH~
  16. A

    How to insert records to a different table?

    Its possible you could use a macro to run an append query. Assign the on click of the command button to the macro. [This message has been edited by arickards (edited 10-04-2000).]
  17. A

    want entry in one field to cause pop up list in other field

    Create a query as the control for the form. Then see my response to Dale Cleeve, Combo Boxes and Fields. I believe your needs are analogous.
  18. A

    Combo Boxes and Fields

    Use an unbound combo text box on the form. In your query insert this for the criteria [Forms]![FormName]![Modeltxt]. For the row source, link it to the table and column that contains your models. If that does not work simply make a seperate table that contains individual models and make that...
  19. A

    multifunctional forms

    Create a query with all your tables. The tables will need a uniqe key to link. Create the form and have the query as the control source.
  20. A

    Totaling items in combo box

    Use a crosstab query to accomplish this. Use the GroupBy and Sum features.
Back
Top Bottom