Search results

  1. U

    Crosstabs

    You can't put any queries in a report. You can make a reports from queries. If you want to make a subreport. Ex: Make Report1 and Report2...open Report1 in design view...drag Report2 in Report1... hth, Michael
  2. U

    Totals in a report Footer

    Make a header for HCPCS and footer for Total Price...Go to Sorting and Grouping..select HCPCS for Group Header..Say Yes to Group Header..Place HCPCS field in Group Header...Total Price...Say Yes to Group Footer...Make a blank field for sum total. hth, Michael
  3. U

    Dates Query

    If you have a date field run this in the criteria Between #1/1/04# and #1/1/05# <--- Example ( you can use any date you wish) hth, Michael
  4. U

    Get Rid of Duplicate

    Thanks alot man. The whole time my claim rep field was causing duplicate. I knew I was on the right track. Thanks again, Michael
  5. U

    Get Rid of Duplicate

    I have a query that I would like to put in a report. Before I do that I have an expression that runs stolen car make and car model. How do I get rid of duplicate and put car make field and car model field together? I attached a sample database. If you run the query you will notice I have lots...
  6. U

    Very Urgent

    Try pasting this code below by making a command button in form for sorting. FieldName.SetFocus DoCmd.RunCommand acCmdSortAscending hth, Michael
  7. U

    open form with certain records

    Try pasting this code in a command button (on click event). On Error GoTo Err_Handler Dim strFieldName As String Dim strForm As String strForm = "Form Name that you wish to open" 'Open a form with specific record strFieldName = "[FieldName]='" & Me.FieldName & "'"...
  8. U

    Required Fields

    Post your database. Michael
  9. U

    Pull down menu.

    I'm a little confuse what are you trying to do get all your records in a combo box? If so, make a blank combo box in a form. Row Source Type: Table/Query Row Source: Table Name Another way to do is the Combo Box Wizard. hth, Michael
  10. U

    Required Fields

    Try ghudson sample This will stop the user from going to a new record till your OrigProcDt field is completed. Be sure to paste the code in Form Before_Update. hth, Michael
  11. U

    Required Fields

    My guess is you dont have a new version of access. I attached a 97 version. hth, Michael
  12. U

    Image loaded based on combo box selection

    See attached file.. hth, Michael
  13. U

    Updated Combo Box

    Try pasting the code below in After_Update Combo Box Me!ComboBoxRequery.Requery hth, Michael
  14. U

    Image loaded based on combo box selection

    Paste this code below on After_Update Combo Box... Me.RecordsetClone.Findfirst "[field name] = " & Me![ComboboxName] Me.Bookmark = Me.RecordSetClone.Bookmark hth, Michael
  15. U

    May I refresh a subform? May I insert a record in the top of the table?

    Requery is the keyword... Try this Forms!FormName!SubformName.Requery hth, Michael
  16. U

    How can I turn my whole database to Read-only?

    You can also right click on a database, go to property, and check the Read Only. This will prevent user from making changes. hth, Michael
  17. U

    Required Fields

    Check out the attachment. hth, Michael
  18. U

    Using a hidden form to close database?

    Try searching the forums for Close Database on Timer. I found couple of examples that might be useful. hth, Michael
  19. U

    Combo Box help needed

    Try pasting the sql below on row source combo box. If it doesn't work, you might want to attached the database. (I'm guessing Functiona_Areas is not a primary key) SELECT [tblFunctionalAreas]. [Functiona_Areas] FROM [tblFunctionalAreas] ORDER BY [tblFunctionalAreas].[Functiona_Areas] hth...
  20. U

    Combo Box help needed

    What does your row source say in the combo box property? Try something like this...SELECT [YourTable].[name of Functional Area Field] FROM [YourTable]; hth, Michael
Back
Top Bottom