Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by elvanace1

  1. elvanace1

    TransferText action - filename specifications

    This is the line: DoCmd.OutputTo acQuery, "TT-TRANSITION BOEING FILE-single", "MicrosoftExcelBiff8(*.xls)", "s:\it\exchange\Rocketdyne-SB_" & Format(Now(), "yyyy-mm-dd") & ".csv", False, "", 0 What am I doing wrong?
  2. elvanace1

    TransferText action - filename specifications

    One last question. Is there a way to onit the headers info when writing the file?
  3. elvanace1

    can you set OutputTo to append instead of replace and existing file?

    When using the OutputTo (an.xls file)feature within a macro, is there a way to append an existing file instead of replace it?
  4. elvanace1

    Is there a way to sequentially search a form field?

    Adding a second combo box to the form, using the control wizard and make sure you select the option to 'find a record in my form'works. Thanks so much!
  5. elvanace1

    Is there a way to sequentially search a form field?

    I changed the field to a combo box and set AutoExpand to True - but that didn't work. Did I do it wrong?
  6. elvanace1

    Is there a way to sequentially search a form field?

    No, the field in the form is locked so the actual data cannot be modified. I have a user that would like to just start typeing there search criteria. Then with every key-stroke have access narrow the search results.
  7. elvanace1

    Is there a way to sequentially search a form field?

    Is there a way to sequentially search a form field? Meaning, is there a way to place the cursor in a specific locked field and begin typing the desired value (without Ctrl-F) and have Access start searching automatically? Thanks, Eleanor
  8. elvanace1

    Make Table Query - need to add autonumber column/field

    I need to populate a new table from query results, but I need to include an autonumber field or new records number in the new table. How can I do this?
  9. elvanace1

    is it possible to select random record from a table?

    SELECT TOP 1 ... ORDER BY Rnd(Val([Any field])" is perfect! Thanks sooo much.
  10. elvanace1

    is it possible to select random record from a table?

    But if there is no purely numeric field, what then?
  11. elvanace1

    is it possible to select random record from a table?

    Rnd() generates a random number, but what if the table's index is alpha-numneric. How do you get a random record?
  12. elvanace1

    is it possible to select random record from a table?

    Is is possible to write a query that will select records from a table randomly?
  13. elvanace1

    How do you auto run a query every hour?

    This is brilliant! Thanks
  14. elvanace1

    How do you auto run a query every hour?

    Yes. I need to run a query every hour from within access. I cannot use the windows scheduler.

Part and Inventory Search

Back
Top