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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. robertsfd

    How to get object properties in a query - rather than Database Documenter

    Thanks, this seems useful. However, I no longer have access to an earlier version of Access. This apparently only goes through Access 2007 (I'm running 2010). Perhaps I can get an earlier version so as to be able to use this. Thanks for the help.
  2. robertsfd

    How to get object properties in a query - rather than Database Documenter

    I have a large number of databases that I want to get various properties from to populate a spreadsheet. I can use the Database Documenter and hand input all the values that I want in the spreadsheet, but I can't imagine there isn't a way to query that metadata so I could import query results...
  3. robertsfd

    Is it possible to display the results of a query in an txt box?

    What I have always done is displayed it in a listbox (sized like a textbox) and put the SQL as the Row Source. Since I'm not an expert (or even an intermediate), I don't know if there is a reason NOT to do it this way. But it definitely works.
  4. robertsfd

    How to get a query result into a variable

    Thanks to you both. As I suspected, this is beyond what I know at this point. I will need to "learn up" on some material before I can adequately follow Skip's solution and apply it. PH's I can understand and will need to mess around a bit to see if I can apply it correctly. Again, thanks to...
  5. robertsfd

    How to get a query result into a variable

    I have a form with a listbox control lstVIN which is populated with records from a table of vehicles (bound on the field VIN). Based on what vehicle the user selects, I want a variable to hold the result of the following query (which will be a single number): SELECT Max(EndingMileage) FROM...
  6. robertsfd

    How to: request input, store in a cell, and later use in a message box

    OK, thanks for the info Skip. As you can see, I'm a long way from being knowledgeable. My earlier comment was just based on code from macros in spreadsheets I've used. This spurs on my quest to learn more...a godd thing in and of itself. Thanks again to you both. Have a nice day.
  7. robertsfd

    How to: request input, store in a cell, and later use in a message box

    Thanks Skip. Now I see what I did wrong so that it didn't work exactly as you showed. And PH, I've seen and used the "cel" many times. I can't tell you what it is, but if you google it (along with "Excel VBA" or something, you should see many examples and might be able to tell where it is...
  8. robertsfd

    How to: request input, store in a cell, and later use in a message box

    PH, I'm only a beginner, but I think "cel" is shorthand for the current cell.
  9. robertsfd

    How to: request input, store in a cell, and later use in a message box

    Thanks Skip. Not sure I didn't do something wrong the first time I tried your solution, but when I added "ActiveCell" to your variable2 statement, it worked. variable2 = ActiveCell.Offset(0, 1).Value Many thanks to you. Have a great day, Doug
  10. robertsfd

    How to: request input, store in a cell, and later use in a message box

    I have a macro that requests input from a user, stores in one column (column A), and another column (column B)calculates a formula based on that input value. I want a message box to then report both the user input value in column A and the calculated value in column B. Each time the macro...
  11. robertsfd

    Can't get code to work until the third time it is run? No idea why!

    Thanks for the thought Glenn. I should have been more clear - there are column headings in row 9, thus the first of the code just gets past those (and any other rows that might already be filled up) to add data to the first available row. The problem has been solved. Apparently my problem was...
  12. robertsfd

    Can't get code to work until the third time it is run? No idea why!

    Just to clarify something mentioned above: It isn't that the macro fails to work the first two times each time the worksheet is open. Rather it doesn't work for the first two rows of the spreadsheet - once the first two rows are filled in, it works as intended.
  13. robertsfd

    Can't get code to work until the third time it is run? No idea why!

    I have a spreadsheet with several columns. Half the columns are formulas based on the other half of the columns that contain values input by the user. For the user input cells, I have a macro that requests these input values with an InputBox and puts them in the cell, moves a few columns over...
  14. robertsfd

    Macro to add data in a file (or alternative)

    Thanks so much. These both indeed help.
  15. robertsfd

    Macro to add data in a file (or alternative)

    OK, these are good ideas. Thanks. But still... Is it possible to disable the macro after running once (or twice, thrice, etc)? In other words, I do not want it to run except the first time it is opened - is this possible? As a workaround, I guess I could have it insert the date/time stamp...
  16. robertsfd

    Macro to add data in a file (or alternative)

    I want to create a macro in a spreadsheet template that, when the spreadsheet template is first opened, generates a time and date stamp and places it in a cell. I only want the macro to run when the file is first opened, thereafter the macro would be disabled. 1. Is it possible to disable the...
  17. robertsfd

    Table validation rule involving multiple table: can it be done?

    I have two tables in a one to many relationship. Both tables have date fields. I want to ensure Table2.Date > Table1.Date. Can this be done at the table level? If so, what is the correct syntax? Thanks in advance.
  18. robertsfd

    Can you pattern match for date fields?

    Wonderful. Thanks to you both. It works as intended.

Part and Inventory Search

Back
Top