Search results

  1. L

    Inserting Two Identical Tables Into One Table

    pbaldy,, OK, got it . . . I have my fishing rod. Any takers ?
  2. L

    Inserting Two Identical Tables Into One Table

    Arnelgp, I did changed 'anotherTable' to another table name.
  3. L

    Inserting Two Identical Tables Into One Table

    Arnelgp, Did not work, I added 'From Administration', but it did fix the problem. INSERT INTO anotherTable ( [Name], [Survey_Taker_Telephone_Number], [Type], [Type_Score], [Contact_Me] ) (SELECT Leadership.Name, Leadership.Survey_Taker_Telephone_Number, Leadership.Type, Leadership.Type_Score...
  4. L

    Inserting Two Identical Tables Into One Table

    NauticalGent, What happened . . .
  5. L

    Inserting Two Identical Tables Into One Table

    pbaldy, Fish ?
  6. L

    Inserting Two Identical Tables Into One Table

    How can I insert the below "Select" queries results (that works) in to one (1) table. SELECT Leadership.Name, Leadership.Survey_Taker_Telephone_Number, Leadership.Type, Leadership.Type_Score, Leadership.Contact_Me FROM Leadership Union SELECT Administration.Name...
  7. L

    Query Retrieval From Form

    What I'm doing is using a form for a survey. After the user answers the last question on the form (survey), press a button, his/her record is saved to a table that has all records (individual's responses). I want to capture the firstname, middlename, and lastname on the form and pass it to a...
  8. L

    Query Retrieval From Form

    OK,I found out that I can get the information in VBA. I guest I have to somehow (through VBA and SQL) insert the form information into a table via SQL query in VBA (via DoCmd command). Do you think this is the solution. I originally wanted to pass the firstname, middilename, and lastname into...
  9. L

    Query Retrieval From Form

    The only way a record shows in the query is when I advance to the next record (new record), then back to the previous record on the form. Is this the way that it suppose to work ? I wanted to retrieve the current record on the form without saving (i.e. advancing to the next record).
  10. L

    Query Retrieval From Form

    I created a new database ("Database3") and the same thing happens. See attachment.:banghead:
  11. L

    Query Retrieval From Form

    1. The data is in the form that I'm trying to retrieve 2. No error codes returned 3. The form, table, query, or report does not appear to be corrupted. How can I tell ?
  12. L

    Query Retrieval From Form

    Yes, I can retrieve all records from the table without the filter. Here is the SQL code: SELECT Spiritual_Gift_Totals.Survey_Taker_First_Name, Spiritual_Gift_Totals.Survey_Taker_Middle_Name, Spiritual_Gift_Totals.Survey_Taker_Last_Name, Spiritual_Gift_Totals.Leadership...
  13. L

    Query Retrieval From Form

    I thought I gave everything that is needed in my opening request. I'm using a query to retrieve a data field in a form. This query criteria is [Forms]![Questions]![Last_Name]. I also tried CStr([Forms]![Questions]![Last_Name]). The field definition in the table is "Short Text". The form is open...
  14. L

    Query Retrieval From Form

    That is, the current record on the form.
  15. L

    Query Retrieval From Form

    Thanks . . . No record(s) are displayed.
  16. L

    Query Retrieval From Form

    I would appreciate it if someone could tell me where to look for the resolution of this problem.
  17. L

    Query Retrieval From Form

    Any hints on resolving this failure ?
  18. L

    Query Retrieval From Form

    Can somone tell me what is wrong with my attempt to retrieve of a value (Last_Name) from an open form (Questions) to a query ? Form name is Questions Form field name is Last_Name This query criteria is [Forms]![Questions]![Last_Name]. I also tried CStr([Forms]![Questions]![Last_Name]). The...
  19. L

    Retrieve Value From Multiple Textboxes

    Whoops . . . I see my mistake. Thanks ! ! !
  20. L

    Retrieve Value From Multiple Textboxes

    Now I'm getting a return of "False". See code below i = 0 Do While i < 3 i = i + 1 Aout = Me.Controls("A" & i) MsgBox Aout = Aout & i Loop End
Back
Top Bottom