Search results

  1. I

    Overflow

    I am running Access 2003 and have created the following: Sub MSDeficient() Dim HoldMSComplID As Integer Dim HoldMNumber As Integer Dim HoldMName As String Dim HoldCourseID As Integer Dim HoldDeficient As Integer Dim dbObject As DAO.Database Dim...
  2. I

    Cross tab / pie chart

    I need some help and just can't seem to find the answers I am looking for. I am running Access 2003 and need to create a pie chart based on a count of data in a table. However, I just can't quite get what I want after hours of trial and error. I created the following 2 queries to count the...
  3. I

    Pivot tables & match function

    I am using Excel 2003 and I am trying to optimize the performance of my workbook. The workbook has several pivot tables based on two separate source files. I am most concerned with 12 of my pivots and want to be able to reduce the number in half (6) to improve the speed of the refresh rate on...
  4. I

    Newbie help

    FANTASTIC! That did it! Thank you soooo much!!!! :D
  5. I

    Newbie help

    Paul, I hope you are still available to help me out here..... Its not working properly. I'm not getting several hundred thousand entries anymore but its not collecting the CheckItem or ResponseID data. Of course since the code does not tell it what that is I need to point to it, but I'm...
  6. I

    Newbie help

    Paul, Thank you, I was thinking that might be it on my drive home. I will have to investigate it in the morning when I go back to work. I appreciate your patience with me this afternoon :)
  7. I

    Newbie help

    D'oh....I'm sorry....I'm just not thinking clearly here.... Okay, I get it now...... But its still looping through 590,000 times (until I stopped it). How do I get it to stop at 10?
  8. I

    Newbie help

    Is this what you mean by explicitly specify?: Do While Not MSAuditRS.EOF MSAuditRS.AddNew MSAuditRS.Fields("AuditDate").Value = HoldAuditDate MSAuditRS.Fields("SuprLink").Value = HoldSuprLink...
  9. I

    Newbie help

    I get a compile error - Invalid or unqualified reference .MoveFirst is Highlighted when I comment out the With Block.
  10. I

    Newbie help

    Paul, I really appreciate this and I am trying to grasp it all... but...:confused: So I get rid of these two lines: With MSAuditRS . . . End with But I'm not clear about the "explicitly specify each recordset" part...
  11. I

    Newbie help

    Sorry, I'm really green with all of this..... :o So I add: Set MSAuditRS = dbObject.OpenRecordset(strQuery) Set MSHistoryRS = dbObject.OpenRecordset(strQuery2) With MSAuditRS .MoveFirst To open the record set.....(yes,this is the table with 10 records)...
  12. I

    Newbie help

    So something like....? Sub MSAuditCheck() Dim HoldAuditDate As Date Dim HoldDateRange As String Dim HoldSuprLink As String Dim HoldAuditorName As String Dim HoldCheckItem As Integer Dim HoldResponseID As Integer Dim dbObject As DAO.Database Dim MSAuditRS As...
  13. I

    Newbie help

    I am trying to pull together the following on my own and I got stuck. My usual support person is on vacation and I can't wait for him to return. Sub MSAuditCheck() Dim HoldAuditDate As Date Dim HoldDateRange As String Dim HoldSuprLink As String Dim HoldAuditorName As String...
  14. I

    Using VBA to delete data from one field in a table

    I am using a continuous form bound to a table to record unsafe driving activites to a separate table. I have that module working. However, as the form is bound, it is more or less a place marker and I need to delete the data from one field in the table. I have tried to work out the module...
  15. I

    Compile Error: Invalid Qualifier

    D'oh! I should have seen that!
  16. I

    Compile Error: Invalid Qualifier

    Um, pardon my ignorance, but what do I want?
  17. I

    Compile Error: Invalid Qualifier

    I am still pretty new to VBA and am having trouble compiling the following module. I get a "Compile Error: Invalid Qualifier" pointing to "HoldInputDate" and "HoldGLGroup" and "HoldGLGroup".....etc in the following section: .Fields("InputDate").Value = HoldInputDate.Value...
  18. I

    Balance Fwd + DSum

    Thank you so much....it was the square brackets overall. Its working perfectly now.
  19. I

    Balance Fwd + DSum

    I need some help in trying to create a balance forward field on a report. I am running Access 2003 and I want to be able to produce a report by employee number to show total "points" accumulated. I want the employee to be able to select a date range for the report (i.e. from the first of...
  20. I

    Conditional data labels

    Thank you Bilbo...although I do not expect my company to move to Office 2007 anytime soon, if you could direct me to some information on cell references and editing the cells via VBA. I learn better if I can see by example.
Back
Top Bottom