Search results

  1. M

    data entry 3tables 1 form

    Yes, it is possible. Make a MainForm on the ATHLETS table, and make 2 subforms, (on the RACES table, and the RACE DETAILS table). Link them all via AthletsID (number). Populate a LINK CHILD FIELDS, and LINK MASTER FIELDS properties for the both subforms.
  2. M

    Ignore Blank Query Criteria – Access 2010

    Try to do that with LIKE in the query criteria.
  3. M

    Question Disable listbox selector

    Look at "DemoListBoxA2000.mdb" (attachment, zip). Open Form1 and try. Look at VBA.
  4. M

    Counting similar responses from Multiple fields; output into a crosstab type view

    Look at "DemoWindowsTiresInteriorA2000.mdb" (attachment, zip). I added "Table2". Look at Tables, Query3, Module1. Run Query3. I think it is what you need.
  5. M

    Report Footnote Based On Detail Records

    Look at "DemoReportFootnoteA2000.mdb" (attachment, zip). Open Report1 and see. I think it is what you need.
  6. M

    distinct

    Not SELECT DISTINCT..... but SELECT TOP 1....
  7. M

    Updating Multiple Fields based on entry in another

    Do this via COMBO BOX. Look at "DemoComboB3A2000.mdb" (attachment, zip). Open form and try.
  8. M

    VBA for Export to excel

    Look at "DemoQueryExcelA2000.mdb" (attachment, zip). Open form and try. Look at VBA, Query1.
  9. M

    Creating a Select Query to search for Mutliple Values

    What is the look of your table ? What is the primary key ? Write some records in your table.
  10. M

    Updating SubForm Data

    Try this: me.SubTotal = Me!Parent!Total / me.Quantity
  11. M

    Records not visible in form

    In properties "Data Entry" put NO.
  12. M

    Updating SubForm Data

    Try next: The code put in "On Current" event, (in subform).
  13. M

    Forms, multiple data for one text box

    As I can understand you, yor table is not normalized well. Learn something about DATABASE NORMALIZATION.
  14. M

    number rows based on value of a field

    Hello lala! Look at "DemoNumberRowsA2000.mdb" (attachment, zip). Open Form1 and try. Look at VBA, but if you delete a record 4.0 the next record will be 4.3. Adapt it as you need.
  15. M

    Extra detail required

    Look at "DemoExtraDetailA2000.mdb" (attachment, zip). Look at Tables, Queries, Forms(VBA), Module1. Try with Form1, or Form2. Adapt it as you need.
  16. M

    Blank form at data entry

    In Sub Form_Load put this code; DoCmd.GoToRecord , , acNewRec
  17. M

    Which is the best code to use to save a record and exit using a button?

    Look at "DemoSaveRecordA2000.mdb" (attachment, zip). You don't need any code for the SAVE RECORD. Record will be saved automatic always when you go on the next record, or a new record, or when yu close the form, (for close the form click on the X button in right upper corner on the form). The...
  18. M

    Question Help on formulating sort and group by Query

    Put the "Order No" Unique = No.
  19. M

    Where to incorporate the module

    Look at "DemoWeekendsA2000.mdb" (attachment, zip). I suggest to put it in Date_BeforeUpdate event. Look at tables, Form1 (vba). Open Form1 and try.
  20. M

    Top 5 query

    Look at "DemoTop5QueryA2000.mdb" (attachment, zip). Look at Table1, Query1, run Query1.
Back
Top Bottom