Search results

  1. I

    Filter by form with multiple options

    Wondering if we can re-visit this as I have run into a snag and I can't quite figure out why this is happening. I am opening the form by the Select Case method as a way of enforcing Security for users. However, there are some users that would require full access to all available records but...
  2. I

    Filter by form with multiple options

    Thank you so much! That was very helpful.
  3. I

    Filter by form with multiple options

    I am wondering if this is possible as I can't seem to get it to work. I am using Select Case to filter a form on open and it works fine when I have this: Case Is = 2 Forms![Open Opportunities List].Form.Filter = "[Employee] = 4" Forms![Open Opportunities...
  4. I

    Change Column Headings in Xtab Query

    Hello all! This may not be possible, but I thought I would ask. I have inherited an Access 2003 database and have been asked to help improve the functionality of said database. Specifically, I have been asked to create some charts for improved reporting. I used the wizard to create a crosstab...
  5. I

    Disable shortcut / right click on a form

    I have been searching for this solution all afternoon and have gotten nowhere. I am running Access 2010. I have added the following to the "On Open" event on my main form: Private Sub Form_Open(Cancel As Integer) DoCmd.ShowToolbar "Ribbon", acToolbarNo DoCmd.NavigateTo...
  6. I

    how to sort a filtered unbound continuous subform from main form

    Oh Bob!! Thank you, Thank you, Thank you!! It was the missing space!!! Arghh....
  7. I

    how to sort a filtered unbound continuous subform from main form

    I want the user to have the option to sort or no. When the form loads, the data is in order of entry which is date order in this case. Management reviews the data and wants to be able to sort from high to low for points awarded.
  8. I

    how to sort a filtered unbound continuous subform from main form

    I cannot seem to find a solution to this problem. I am using Access 2003 and I am trying to sort an unbound continuous subform from my main form by clicking a command button: Private Sub cmdSort_Click() Me.subfrmViewCatches.Form.OrderBy = "[PointsAwarded]DESC"...
  9. I

    ByRef Argument Type Mismatch

    Oh, I got it! I will fix on Monday as my work day is done. Thanks helping me think this through!
  10. I

    ByRef Argument Type Mismatch

    No change, same error. (sigh)
  11. I

    ByRef Argument Type Mismatch

    Same compile error. No difference.
  12. I

    ByRef Argument Type Mismatch

    This one has me stumped. I am using Access 2003 and have successfully used this code in other DBs to send emails via Lotus Notes. I have modifed my original code for a new database and I am getting a: "ByRef Argument Type Mismatch" Compile Error. I cannot seem to find the cause. Option Compare...
  13. I

    Query suddenly not working - any advice?

    Unfortunately, there are employee records in the database that I cannot delete as they are linked to what is being tracked. Can I attach screen shots to show the results?
  14. I

    Query suddenly not working - any advice?

    I am working in Access 2003 and I have a query that is the source for a chart on a form. The query has worked fine for several years but suddenly it will not populate for the month of April. There is data in the source table for April, but the query is not showing it and I can't figure out why...
  15. I

    Continuous form advice

    :confused: I tried to set focus to the TempCM field but that didn't help. I took away the If.. Then....Else statement and I got a "No Current Record" error if I left the TempCM blank. Help, please....just point me in the right direction.....
  16. I

    Continuous form advice

    I am running Access 2003 and need some advice regarding a continuous subform. The main form is unbound and the continuous subform is bound to a temporary table. When the user clicks the "submit" button, the code writes the data to a "permanent" table. There are times, however, when there will be...
  17. I

    Puzzling over a query - possilbe subquery solution

    oops.... I see it.... nvm SELECT SafetyGLDrivingAudittbl.Group, Count(SafetyGLDrivingAudittbl.SGDAID) AS AllAudits, Sum(IIf([SafetyGLDrivingAudittbl].[TotalUnsafe]<>0,1,0)) AS TallyUnsafe FROM SafetyGLDrivingAudittbl WHERE (((SafetyGLDrivingAudittbl.InputDate) Between...
  18. I

    Puzzling over a query - possilbe subquery solution

    Thank you for your quick response.... but I am getting an error: SELECT SafetyGLDrivingAudittbl.Group, Count(SafetyGLDrivingAudittbl.SGDAID) AS AllAudits, Sum(IIf([SafetyGLDrivingAudittbl].[Unsafe]<>0,1,0)) AS TotalUnsafe FROM SafetyGLDrivingAudittbl GROUP BY SafetyGLDrivingAudittbl.Group...
  19. I

    Puzzling over a query - possilbe subquery solution

    Hello all! I have been puzzling over this for a day and a half and am getting nowhere fast. I am using Access 2003 and have a table with the following fields: ID (autonumber) InputDate (date/time) Group (text) TotalAudited (number) Unsafe (number) Now I want to count (not sum) the records...
  20. I

    Report Parameters for Chart

    Just been re-reading a page from Allen Browne: http://allenbrowne.com/ser-62.html Giving me some ideas on how I might proceed with this.....
Back
Top Bottom