Waheed2008
Registered User.
- Local time
- Today, 10:27
- Joined
- Jul 17, 2008
- Messages
- 57
In an access form, I am using a combo box and a label object. I want that when I select any value in combo box, its value be picked up and match in a table, and add corresponding values of all the entries with the same combo box value.
I am using this function to calculate SUM of values from a table:
Issues Log in Forms!Issues Log!cmbCodesis a form name and it is not being accepted because of space charcter in name. I cannot change form name because it is being used at many other places and I dont know how many places are there for which changes will be required.
Is there any solution for this problem.
I 'll be realy very thankfull for this help.
I am using this function to calculate SUM of values from a table:
Code:
Me.lblTotalExpense.Caption = DSum("[Expenses]", "Issues Log", "[CostCodes] =""" & Forms![B]Issues Log[/B]!cmbCodes & """")
Issues Log in Forms!Issues Log!cmbCodesis a form name and it is not being accepted because of space charcter in name. I cannot change form name because it is being used at many other places and I dont know how many places are there for which changes will be required.
Is there any solution for this problem.
I 'll be realy very thankfull for this help.