Recent content by state90

  1. S

    Cancel SetFocus on Text Field When Hitting Exit Command Button

    Thank you for your response. Just to make sure I am understanding your recommendations correctly you are recommending (1) That instead of having the following coding in each On Exit event of the required text fields I should remove those and do it all in the On Click event of the Main Menu...
  2. S

    Cancel SetFocus on Text Field When Hitting Exit Command Button

    By no means am I a VBA expert. I am getting better and probably to the extent where I am most dangerous! I have a form with required fields. In order to force these requirements on the user I use a message box to alert the user of the requirement followed by a SetFocus back to the required text...
  3. S

    Updating Text Boxes Values That Were Previously Assigned

    Sorry....real stupid oversight on my part. When I created the form the minimum billing amounts were bound fields to the Base Price field of the table. As soon as I made these 12 fields unbound, everything worked. The trick will now be to capture the data when the form is completed and transfer...
  4. S

    Updating Text Boxes Values That Were Previously Assigned

    I have created a new contract data entry form. An early part of the form's data entry handles tiered pricing selection. I used check boxes for this area. The result of clicking a check box (among other things) is that it populates 12 text fields with monthly minimum billing amounts (Ex., If I...
  5. S

    Transparent Conditional Formatting on Report

    I have a budget report that has 24 text boxes displaying numeric values. 12 are monthly actual amounts (i.e., JanAct, FebAct, MarAct, etc.) and 12 are budget fields (i.e., JanBud, FebBud, MarBud, etc.). Depending on a pull down menu from a form that displays month [cboDate] (i.e., Jan-2016...
  6. S

    Setting Default for Dependent ComboBox with Two Columns

    PBaldy, Thank you for your help. I figured it out based on something you had written when you referenced whether the first column was bound or unbound. I had the second column as the bound column. I had read elsewhere that if the default value is in the data of the bound column then the default...
  7. S

    Setting Default for Dependent ComboBox with Two Columns

    Too big. It is huge. 800 Mb. One road I was thinking of going down is that the combo in question (CboCCDescription) is dependent on the selection of the functional roll-up combo (CboFuncRollup). For example, if Sales is selected in the functional roll-up then only the Sales related cost center...
  8. S

    Setting Default for Dependent ComboBox with Two Columns

    The bound column is column(1) which is the description. Cost Center number is the unbound column. From what you said, shouldn't "All" work? I tried putting that in the combobox default value under Data. Should I use VBA to set the default? If so, how? I do have a series of directions set for...
  9. S

    Setting Default for Dependent ComboBox with Two Columns

    I have a combobox (CboCCDescription) with two visible columns (Cost Center and Cost Center Description - i.e., 200 - Sales; 300 - Marketing, etc). I would like to set the default to "ALL" but it is not accepting that as a default. I suspect it is because the combo box is now a two column...
  10. S

    Building Group By Query Utlizing Form Fields as Crtieria

    Ha! I am good like that! I will start a new thread. Thank you again for resolving the Group By portion. Now I just need it to factor in all the criteria.
  11. S

    Building Group By Query Utlizing Form Fields as Crtieria

    Okay.....Thank you for the solution to the reporting Group By. That worked perfectly! Now I need to figure out how to tie it all together. I don't know the proper etiquette as it relates to this but I am assuming it requires a new thread. Here is where it stands.... The report is grouping by...
  12. S

    Building Group By Query Utlizing Form Fields as Crtieria

    Okay....let me try it. Thanks plog. Much appreciated.
  13. S

    Building Group By Query Utlizing Form Fields as Crtieria

    So, if I am understanding this correctly, don't have the report pull from a query but rather the source data table directly instead?
  14. S

    Building Group By Query Utlizing Form Fields as Crtieria

    plog, Now we get to some of the actual details. Below is the VBA behind the report that is fed by the query. Do you see any issues in this VBA that could be keeping me from grouping as preferred? Private Sub Command126_Click() Dim vFields Dim vValues Dim where As String Dim...
  15. S

    Building Group By Query Utlizing Form Fields as Crtieria

    And then have the form feed the Where clause correct? That is what I did. Let me try again from scratch and see what happens.
Back
Top Bottom