Calculate a SUM after Combo box SelectedIndexChanged

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Diana Miller
    New Member
    • Nov 2010
    • 13

    Calculate a SUM after Combo box SelectedIndexChanged

    I am using VB 2008 Express to connect to an Access 2007 database. I have a combo box called SelectYearMonth that is populated by the database. In the Access report VBA, I used the AfterUpdate() event to calculate a sum. I need to know how to do the same operation in VB 2008 Express.

    When I made a report in Access using VBA I coded my calculation as:
    Code:
    Me.ExactReprintTextbox = DSum("Pages", "HBELP_FINAL_Q", "YEARMONTH = " & [SelectYearMonth] & " AND JOBTYPE = 'E'")
    While this works great with Access VBA, this syntax does not work in VB 2008 Express.

    How do I code this in VB 2008 Express?

    Any help is greatly appreciated!

    -Diana
Working...