473,387 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Combo Box After Update Code not working

48
I am using Access 2007. I have a form with two Combo Boxes and a Text box. the first combo box CboZone have values like zone1, zone2,.. the 2nd Combo box CboMonth has values like Month1, Month2.. I need to populate the text box with a value from a table Small_6M depending on the values selected in the combo boxes. the controls are text and the value collected is a number. the MsgBox does return anything. i do not know why.
I really need to get this working asap i have been trying for while with no luck.thanks
Here is the Code:
Expand|Select|Wrap|Line Numbers
  1. Private Sub CboMonth_AfterUpdate()
  2.     Dim strSql As String    
  3.     MsgBox "[" & Me.CboMonth & "]"
  4.     strSql = "Select Small_6M.Dec_2011 From  Small_6M      Where Small_6M.Zone = '" & Me!CboZone & "'" 
  5.  
  6.     Me.txt1 = "'" & strSql & "'"
  7.  
  8. End Sub
** Mod Edit **
The layout of the data in [Small_6M] varies from month to month, but follows the following general layout :

Table = [Small_6M]
Expand|Select|Wrap|Line Numbers
  1. Field Name  Type
  2. Zone        String
  3. mmm_yyyy    Numeric Double
  4. ...
  5. mmm_yyyy    Numeric Double
There are twelve monthly columns starting with the month following the current one. [mmm_yyyy] for January of 2012, for instance, would be [Jan_2012] and the last field would be [Dec_2012].

An example of some of the data might be :
Expand|Select|Wrap|Line Numbers
  1. Zone         Jan_2012  F3  Feb_2012  F5  Mar_2012  F7  F8  Apr_2012  ...
  2. AEP South     0.05309       0.05832       0.06381           0.06494  ...
  3. AEP West      0.04528       0.052         0.05918           0.06177  ...
  4. CenterPoint   0.05433       0.0594        0.06465           0.06585  ...
  5. Oncor         0.05258       0.05772       0.06311           0.06467  ...
  6. TNMP          0.05258       0.05772       0.06311           0.06467  ...
Nov 29 '11 #1
35 5659
TheSmileyCoder
2,322 Expert Mod 2GB
Hi and welcome to BYTES

I think you may have a typo in your post. Do you mean to say that the msgbox in your code returns "[]"?

What is the rowsource for cboMonth?
Nov 29 '11 #2
NeoPa
32,556 Expert Mod 16PB
You don't say how the data is held in [Small_6M] and your code gives no clue. We don't have the basic info required to help you I'm afraid.
Nov 30 '11 #3
Seth Schrock
2,965 Expert 2GB
Like NeoPa and Smiley said, your question lacks some information, but give this a try. Setup a query that contains the information that you are looking for in the textbox and have your two combo boxes. Then in the after update event of your combo box, do a dlookup() to get the value from the query and then set textbox to that value. If the query returns more than one value, you will have to set some criteria in the dlookup () function to get only one value. I would put this dlookup() function in both combo boxes within an IF THEN ELSE statement to test if the other combo box was populated. See following example:

For Combo Box 1 After Update event:
Expand|Select|Wrap|Line Numbers
  1. If IsNull(Me.ComboBox2) Then
  2. Me.ComboBox2.SetFocus
  3. ELSE
  4. Me.Textbox = DLookup("{field name}", "{query name}", {Optional critiera})
  5. End If
For Combo Box 2 after update event:
Expand|Select|Wrap|Line Numbers
  1. If Not IsNull(Me.ComboBox1) Then
  2. Me.Textbox = DLookup("{field name}", "{query name}", {Optional critiera})
  3. ELSE
  4. Me.ComboBox1.SetFocus
  5. End If
I don't know if this is the best method, but it is something to look at.

PS.
The reason for using the after update event in both combo boxes is that it makes it so that you can populate the combo boxes in any order. While it might not make sense to you and me to do it in backwards order, a user who doesn't know can usually find ways to break the system without trying and it is better to prepare as much as possible to prevent user error.
Nov 30 '11 #4
almaroc
48
Actually I do not get anything. this is what's boggling me. i have attached a copy of the database
Nov 30 '11 #5
almaroc
48
thanks for your reply but i am not really sure how the dlookup works.
Nov 30 '11 #6
Seth Schrock
2,965 Expert 2GB
There is lots of information about DLookup() on the Internet, but I'll try to briefly explain the syntax. So you have the DLookup(The next thing you put in is the field name that you are looking for in double quotes followed by a comma. Next, you have name of the table or query that the field is in followed by a comma if there is critieria to follow. For the criteria, I would have to know more about your database before I can help you with that syntax as there are several options. I will look at your database after work.
Nov 30 '11 #7
NeoPa
32,556 Expert Mod 16PB
NeoPa:
You don't say how the data is held in [Small_6M] and your code gives no clue. We don't have the basic info required to help you I'm afraid.
Just to be clear, posting a database attachment is not a substitute for providing a proper question with the requisite details as requested.

You may choose to go blindly towards suggestions offered prior to the full question being clear, but in the absence of such information I must warn you that any such suggestion could as easily be leading you away from an appropriate answer as it it could towards it. There are many ways to achieve a result, but many are only appropriate in limited circumstances. The use of DLookup() definitely falls into that category and should be used carefully if you want a reliable and well-designed project.

I'll leave that thought with you (as only you can make your actual choices), but if things go badly, you'll know I warned you.
Nov 30 '11 #8
Seth Schrock
2,965 Expert 2GB
Okay... tabl Small_6M is an excel file that I don't have so I still don't know what kind of data is in that (perhaps a screen shot would be enough to tell us what we need to know). The first combo box as the options hard-coded into the row source and the second combo box is linked to the Small_6M table. Other than that, I really don't know much more than I did before. Guessing by the design of what I see here, you are in for a lot of extra work to do what you need. Included is the 2003 version minus the Small_6M table link which didn't work anyway.

@NeoPa, I'll remember your words from now on. After experiencing this, I'll certainly look before I leap.
Attached Files
File Type: zip TEXENERGY.zip (189.6 KB, 111 views)
Dec 1 '11 #9
NeoPa
32,556 Expert Mod 16PB
I expect I've fallen into that trap many more times than you have Seth ;-) Although I see a certain understanding still to be gleaned, I can't feel critical of your efforts as they're clearly from the best of motives :-)

PS. You're doing good work and I really like your avatar :-D
Dec 1 '11 #10
almaroc
48
sorry about that here is the file. thanks !
Dec 1 '11 #11
NeoPa
32,556 Expert Mod 16PB
NeoPa:
NeoPa:
You don't say how the data is held in [Small_6M] and your code gives no clue. We don't have the basic info required to help you I'm afraid.
Just to be clear, posting a database attachment is not a substitute for providing a proper question with the requisite details as requested.
At this stage I will walk away as there is clearly little notice being paid to my posts by the OP. I'll continue to monitor as a moderator of course, but working in this way is just not sensible.
Dec 1 '11 #12
Seth Schrock
2,965 Expert 2GB
Wow, Poor design for the excel file if you plan on having it linked to access. Also, I'm still lost on what you are wanting. For me, if I select Jul_2012 then I get a message box saying [Jul-2012]. I have no idea why you would want that as it just duplicates what is already showing in the combo box. As far as the textbox goes, because of the design of your database, you are going to have a ton of work coding the solution that will have to be changed as time goes on because you are going to have the years change on your months. The code that you need with your current design will be a Case() function for each month of every year as well as a query for each month. There is a way to run the sql code for a query in vba, but I'm not sure how to do that. The only option that I know of is to make a query and the use the dlookup() function to retrieve the value found in the query. This is not the best solution however. I'm not going to take the time to give you the code as it would be a waste of my time on a poor design. Do a google search for database normalization to help with the redesign. My guess is that it would be easier to start from scratch. Once you do the redesign, then you can come back and ask your questions. Until you do that it is pointless to continue this tread. I'm not trying to be mean. If you continue designing databases, you will see why proper database design will help you and save you lots of headaches.
Dec 2 '11 #13
almaroc
48
thanks for your input. this is my original design just reading directly from the spreadsheet but i could never get it to work. I am a newbie to access so i have a lot to here is my original code. and database.
Expand|Select|Wrap|Line Numbers
  1. Private Sub CboMonth_AfterUpdate()
  2.  
  3.    With worksheets = ("Y:\A2zmediaws\daily pricing\Small Pricing.xls")
  4.  If CboMonth.ListIndex <> -1 Then
  5.         'With Myws
  6.             Select Case Me.CboMonth.ListIndex
  7.                 Case 0
  8.                 Select Case Me.CboZone.ListIndex
  9.                     Case 0
  10.                         Me.Txt_6M = worksheets.range("D15").Value
  11.                     Case 1
  12.                         Me.Txt_6M = myws.range("D16").Value
  13.                     Case 2
  14.                         Me.Txt_6M = myws.range("D17").Value
  15.                     Case 3
  16.                         Me.Txt_6M = myws.range("D18").Value
  17.                     Case 4
  18.                         Me.Txt_6M = myws.range("D19").Value
  19.                 End Select
  20.                 Case 1
  21.                 Select Case Me.CboZone.ListIndex
  22.                     Case 0
  23.                         Me.Txt_6M = myws.range("F15").Value
  24.                     Case 1
  25.                         Me.Txt_6M = myws.range("F16").Value
  26.                     Case 2
  27.                         Me.Txt_6M = myws.range("F17").Value
  28.                     Case 3
  29.                         Me.Txt_6M = myws.range("F18").Value
  30.                     Case 4
  31.                         Me.Txt_6M = myws.range("F19").Value
  32.                  End Select
  33.                  Case 2
  34.                  Select Case Me.CboZone.ListIndex
  35.                     Case 0
  36.                         Me.Txt_6M = myws.range("H15").Value
  37.                     Case 1
  38.                         Me.Txt_6M = myws.range("H16").Value
  39.                     Case 2
  40.                         Me.Txt_6M = myws.range("H17").Value
  41.                     Case 3
  42.                         Me.Txt_6M = myws.range("H18").Value
  43.                     Case 4
  44.                         Me.Txt_6M = myws.range("H19").Value
  45.                  End Select
  46.                  Case 3
  47.                  Select Case Me.CboZone.ListIndex
  48.                     Case 0
  49.                         Me.Txt_6M = myws.range("K15").Value
  50.                     Case 1
  51.                         Me.Txt_6M = myws.range("K16").Value
  52.                     Case 2
  53.                         Me.Txt_6M = myws.range("K17").Value
  54.                     Case 3
  55.                         Me.Txt_6M = myws.range("k18").Value
  56.                     Case 4
  57.                         Me.Txt_6M = myws.range("K19").Value
  58.                  End Select
  59.             End Select
  60.  
  61.  
Attached Files
File Type: zip TEXENERGY.zip (388.4 KB, 90 views)
File Type: zip Small Pricing.zip (17.8 KB, 89 views)
Dec 2 '11 #14
NeoPa
32,556 Expert Mod 16PB
Seth Shrock:
There is a way to run the sql code for a query in vba, but I'm not sure how to do that.
All QueryDefs have a .SQL property which exposes the SQL they run. Executing a SQL string can be done in various ways, some of which are :
  1. Expand|Select|Wrap|Line Numbers
    1. {DatabaseObject}.Execute SQLString
  2. Expand|Select|Wrap|Line Numbers
    1. DoCmd.RunSQL SQLString

Seth:
Do a google search for database normalization to help with the redesign.
We have a decent article on Bytes that will help with that (Database Normalisation and Table structures).
Dec 2 '11 #15
almaroc
48
well the problem with the redesign is that the excel sheet. is what i get from the pricing company. the excel sheet is not my design. I'm just trying to work with it.
Dec 5 '11 #16
Seth Schrock
2,965 Expert 2GB
How often does the data change in the excel sheet? Is it once a year?
Dec 5 '11 #17
NeoPa
32,556 Expert Mod 16PB
Almaroc:
well the problem with the redesign is that the excel sheet. is what i get from the pricing company. the excel sheet is not my design.
That, and the fact that you have never explained what the design is. Hence my leaving the thread as far as helping directly with the question goes. My earlier response was a clarification on some points Seth raised. I'm happy to do that still, but not so working on a question that is missing the basic information required for it to make sense. Until that changes I'll continue simply to monitor the thread.
Dec 5 '11 #18
almaroc
48
the data changes everyday, and the fields change every month i.e in jan-2012 my fields will be jan-2012, feb-2012,....dec2012. and on February the fields will be feb-2012, mar-2012...jan-2013. it is a twelve month span from the current month. the data is actually energy prices that is changing daily.
Dec 5 '11 #19
Seth Schrock
2,965 Expert 2GB
Is the only purpose of this database to make it easier to lookup the price for the area and month specified? If so, it might be easier to just leave it in Excel. Otherwise, you are going to have to manually update your database with the price changes every day and change the design every month. You just simply can't use the data out of the Excel file that you posted in post 14 as a linked table in Access.
Dec 5 '11 #20
almaroc
48
Thanks Seth. I have Realized that so i changed my code to read directly from the file which is replaced every day with the current prices sheet. this is what i am working on now. i don't get any error message but yet i don't get any value in my text box.
Attached Files
File Type: zip TEXENERGY.zip (360.2 KB, 100 views)
Dec 5 '11 #21
NeoPa
32,556 Expert Mod 16PB
Almaroc:
the data changes everyday, and the fields change every month i.e in jan-2012 my fields will be jan-2012, feb-2012,....dec2012. and on February the fields will be feb-2012, mar-2012...jan-2013. it is a twelve month span from the current month. the data is actually energy prices that is changing daily.
I can't tell if this is a serious attempt to provide the information as to the layout of the data. If so, as it doesn't even mention a field (or column) called [Zone], we're still in little better a position to answer your question.

However, as it does indicate at least that the data expected in the table is named in such a way as that it covers twelve months from today's date, we at least have a way of knowing what we're referring to. If the requirement is that when Me.CboMonth is selected then the data corresponding to that selected month is shown in the TextBox Me.txt1, then we have all we need (I'd suggest - This assumes that the Zone value is the unique identifier for the record or row required from [Small_6M]).

If, as I assume (I'm afraid we have to make more assumptions than is sensible due to the lack of information available from you), the values found in Me.CboMonth match the names of the fields currently found in [Small_6M] (as they change each month I understand), then the poulation of the TextBox becomes relatively straightforward :

Expand|Select|Wrap|Line Numbers
  1. Private Sub CboMonth_AfterUpdate()
  2.     With Me
  3.         .txt1 = DLookup(Expr:="[" & .CboMonth & "]", _
  4.                         Domain:="[Small_6M]", _
  5.                         Criteria:="[Zone] = '" & .CboZone & "'")
  6.     End With
  7. End Sub
There may be shorter ways to this if the data of the relevant record is already available within the dataset of the form, but without that knowledge this is the closest we can suggest I believe.
Dec 5 '11 #22
Seth Schrock
2,965 Expert 2GB
NeoPa, here is the Excel file in a 2003 version format if that helps. I'm wondering if a macro could be used in Excel to put the data into a usable format instead of having combined cells.
Attached Files
File Type: zip Small Pricing.zip (5.1 KB, 104 views)
Dec 5 '11 #23
NeoPa
32,556 Expert Mod 16PB
I'll have a look Seth, particularly as you've gone to that trouble on my behalf (which I appreciate). I would expect though, assuming my guesswork as to what the question is all about is reasonably accurate (and I do sometimes miss by a distance), that my previous post (#22) should provide an answer to the requirement originally posted.
Dec 5 '11 #24
NeoPa
32,556 Expert Mod 16PB
Having looked at it I guess that even what is included in post #12 isn't accurate. This starts at what is currently next month. I doubt that will make much of a difference to the solution mind you, as long as [CboMonth] accurately reflects the available options.

Having done a test import for myself, I can see that even the empty columns (where columns are displayed as merged for some reason) do not cause any problems, as they just result in a bunch of empty fields in the table which need never be referenced. I would expect post #22 to provide a viable solution for the OP.

PS. Actually, as this info is still missing and many people are likely to want to see it I will add an explanation in post #1 explaining the data properly.
Dec 5 '11 #25
Seth Schrock
2,965 Expert 2GB
Wrong excel file in previous thread. A primary Key will need to be added to this because zone plus date won't work. This is where I think that the macro could add one.
Attached Files
File Type: zip Small_6M.zip (17.7 KB, 74 views)
Dec 5 '11 #26
NeoPa
32,556 Expert Mod 16PB
Seth:
Wrong excel file in previous thread.
I guess you mean post :-(

:-( because such a data format doesn't allow for accurate/reliable processing using Access. There is nothing, except the position of the rows in the file, that indicates which are related to the 6 month data and which to any of the other categories.

It's also a big, big :-( when you think of the fact that none of this was explained in the question - even after heavy prompting. It's a wonder I still have all (most) of my hair (Just a thought - was it Brigitte Bardot in 1 Million Years BC?).
Dec 5 '11 #27
Seth Schrock
2,965 Expert 2GB
Post yes, sorry. The only thing that I can think of is to add a column for period (ie 6 month, 12 month, etc) and add a third combo to select which period to search. It still isn't the best design, but I think that it could work. I guess the empty columns isn't a problem, but the empty rows would be, so the macro idea could still be used for this.
Dec 6 '11 #28
NeoPa
32,556 Expert Mod 16PB
That is a sound idea that could work, but it would require that work be done to the basic Excel data before it could work. That rather throws out a lot of the convenience of the previous situation (as originally described until it just turned out to be all wrong) though, where the file would be placed into an existing folder overwriting the previous version and would automatically be accessible as [Small_6M].

It means preparatory code would need to be run on the data in the Excel file before this could work. That could be done from within the Access project if required, using Application Automation, or elsewhere (In Excel for instance), but it would be required one way or another.
Dec 6 '11 #29
almaroc
48
thank you neo for your explanation. you really broke it down. thanks a lot. I am only using one text box in this question to see if i can get it to work. it actually going to be a text box for each period. txt_6M, txt_12M, etc.
the purpose is to view the base rate which the data in the excel file. have a text box where the sale agent will enter his markup and calculate the commission. but for now i am trying to find the best way to read the data from the excel file.
Dec 6 '11 #30
NeoPa
32,556 Expert Mod 16PB
I think I've already explained how, but here's a quick rerun.

Get the data in the Excel file to be updated to include the period (6M; 12M; etc) on each row. Easy enough using Excel code, but can be done from within Access too.

Have a linked table connected to this updated file.

Include the period in the selection criteria (The example code in post #22 shows only criteria for [Zone] at the moment).

That way all should be doable.
Dec 6 '11 #31
almaroc
48
I tried your code. i still don't get anything. i don't get any error messages but i don't get any data in my text box either. this must be something that i am missing. so i uploaded my database and the file. please take a look at it. i know i have been a pain. please bear with me. thanks.
Expand|Select|Wrap|Line Numbers
  1. Private Sub CboMonth_AfterUpdate()
  2.     With Me
  3.         .txt1 = DLookup(Expr:="[" & .CboMonth & "]", _
  4.                         Domain:="[Small_6M]", _
  5.                         Criteria:="[Zone] = '" & .CboZone & "'")
  6.     End With
  7. End Sub
I did not add any field name because for now i am only using the six month values.
my controls are: CboZone containing values like "AEP South", "AEP West", etc. CboMonth containing Values like "Jan_2012", "Feb_2012", etc and one Text Box txt1.
Attached Files
File Type: zip TEXENERGY.zip (382.9 KB, 88 views)
File Type: zip Small_6M.zip (7.1 KB, 73 views)
Dec 6 '11 #32
Seth Schrock
2,965 Expert 2GB
I happen to know that NeoPa has Access 2003 which can't open your file. If you could post exactly what code you are using (in code tags), the control names on your form, and the name of the field that you added for the period and that should be all we need.
Dec 6 '11 #33
almaroc
48
I have edited my post # 32 to include the code and answers to your questions. thanks for your help.
Dec 6 '11 #34
almaroc
48
Thank you guys so much i finally got it to work . this really stupid it was the security option in access that was stopping the code from running i just had to disable it. thanks Neo & Seth. you guys have been a great help.
Dec 7 '11 #35
NeoPa
32,556 Expert Mod 16PB
The code you've posted there matches the layout I thought you had at that time. Since then it has become clear that your data is not as straightforward so I gave some tips on how to approach the newly defined situation. Why not take it from there?
Dec 7 '11 #36

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: David | last post by:
Hi, I am trying to a field in a Access database, and I have used the code generated by the Web Matrix UPDATE code wizard. When the update function is called, no errors are generated, but no...
3
by: Jimmy | last post by:
I use a combo box to filter the results of a form. Sql for combo box is... SELECT StatusPriority, Status FROM tblStatus UNION Select = 0 as AllChoice, "Show All" as Bogus From tblStatus ORDER...
1
by: gchris53 | last post by:
Hello, Any advice on the attached would be greatly appreciated. I am currently customising someone elses database and have the following problem. A date is updated on a form, in database...
1
by: suneel271 | last post by:
code working in internet explorer but not in mozilla and iam getting erroe like window.event has no properties and here is the code <%@ page language="java" contentType="text/html;...
5
by: qatarya3sal | last post by:
Imports System.XML Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ...
3
by: kepskp | last post by:
i just write code for select option in combo box which i m select but when i press search button and then click on back button then there in no option selected. and that same code working in ie7 and...
10
by: MNNovice | last post by:
Hello all: I could not get a combo box to display a list in a Search Form. My object is to select an artist's name and have his/her CDs listed on the subform through a qry. But I couldn't do it....
5
by: somacore | last post by:
I have a C# webform which uses a formview to insert, update, and delete records selected from a gridview into an Access database. The insert and delete functions work fine, the update does not. ...
20
by: MNNovice | last post by:
I am new at understanding SQL - so please be patient with me. On frmEchoEnter the user is supposed to select a number from cboEchoSelect before the sub forms are enabled to receive data entry. ...
3
by: Tarneem | last post by:
I have error in update code. It work but i not found data in Microsoft Access. This is the code. <html> <body><br><br><br><br><br><br><br><br> <h1><center>Appointment Update <hr> <% dim...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.