Recent content by flavioso

  1. F

    2 totals from subform to parent

    I have successfully added a subtotal from the subform to show the values on the parent form. My problem is I am being instructed to have a second subtotal from the subform for a different column of data on the parent form. When I add one subtotal, it works fine. Add a second, and I get a...
  2. F

    Query only records that are missing entries

    That worked perfectly with Nz. Thank you so much.
  3. F

    Query only records that are missing entries

    Hello and thanks to anyone in advance. I have a database that is used a phone log where users log their phone calls. My issue is that sometimes a user fails to log specific information in a field. Is there any way to create a query where it only returns records that are missing information...
  4. F

    Filter Form but Label Click

    Hello: Please see the image below. What I am trying to achieve is when the user clicks on a letter (26 labels), the subform is filtered to the field fldLETTER according to the label. I have about 19,000 records and each has a 1 letter code for sorting. So when they click on label1 (A), it...
  5. F

    Lock Combo box after focus on subform

    Hello. I have a main form which has a list of vendors in a combo box. Once the user selects the vendor, and starts keying in order information in the subform, I want the combo box to be locked. I have tried using the On Got Focus with the following code, but unable to do so. The subform name...
  6. F

    DataSheet New Record Error

    Hello friends. Please see the image below. I have this datasheet attached to the main record by the DOCKETID. The actual record ID for the data in the datasheet is SUBDOCKETID. Whenever I add a new line into the datasheet for the given master record, it populates the data with the previous...
  7. F

    Tab back to first field in subform

    Hello, Would anyone know how to tab back to the first field in a subform using VBA? I would like to prevent a user from adding more than one record in a subform, yet I want them to be able to add a new record when the record doesn't exist, and at the same time be able to update information when...
  8. F

    Combo Box Selection and Values

    Hello. I have 2 tables, one called tblDETAILS and another table called tblQUALIFY. In both tables, I have 3 fields, fldCOMP, fldQUALIFY, fldACTIONS. On my form for tblDETAILS, I have a combo box which has all three fields from tblQUALIFY. When the user selects the fldCOMP column, it has the...
  9. F

    List tables in a combo or list box

    I found this post from aways back, and would like to know if anyone knows a way to open the table from the combo box without having to create a "switchboard"? I appreciate any help. Thanks, Brad
  10. F

    Store value from form in table

    If I use a composite key, how do I create a relationship between the 2 tables?
  11. F

    Store value from form in table

    The goal of the database is to track quotes for specific OEM customers. Each year the OEM will have a new quote, and each quote may have multiple products associated with it. Per my manager, the quote number needs to be "quote type" - "year" & "increment (record id)" Since modifying the...
  12. F

    Store value from form in table

    I created a form which allows a user to select the Year and the Quote Type, and then created an unbound text box(Text5 below) which concatenates in the control source the Quote type, year, and record ID. This field becomes a quotation number. What I would like to know is if there is anyway to...
  13. F

    Help with AfterUpdate

    Paul: I tried your code suggestion, and although I didn't get any errors from it, it still didn't populate. The goal I am trying to achieve is this. I am being asked to create a database where we manage sales quotes for OEMS (sub-distributors) on a yearly basis. The tree is YEAR...
  14. F

    Help with AfterUpdate

    I went and tried your suggestion, but the OEM combo box still doesn't populate. Do you have any suggestions?
  15. F

    Help with AfterUpdate

    Hello: I have created 3 cascading combo boxes, cboYEAR, cboCUSTOMER, cboOEM. The database is based off the year. The cboCUSTOMER loads just fine afterUpdate, but I need to load the cboOEM based on the cboCUSTOMER and the cboYEAR. For some reason it won't work. My code that I have for...
Back
Top Bottom