Search results

  1. J

    access 2007 import wizard - saved steps in macro?

    hi all, i'm tryin to use acc 2007 and i see that all has been hidden very well... ok - i want to be able to import a spreadsheet via a button. i imported a spreadsheet and saved the steps, but i see no code anywhere where this has been saved (?) i wanted to create a button and add the code...
  2. J

    Bad entries - is there an error log?

    cool thanks for that i wil slap them first... THEN ask questions :)
  3. J

    No relationships!

    that makes sense cheers for that! :)
  4. J

    No relationships!

    would having a db with several tables and NOT setting any relationships up in the relationships window affect the db in any way? i have such a db, which originally had all the relationships set etc. however, as i encountered errors and had to replace tables and delete entries, i must have at...
  5. J

    Bad entries - is there an error log?

    I have a small access db in a network which has started to crap out far too often lately. The main table records job entries and inserts a date stamp. Every now and then, an entry has a ridicuous ID (auto inc field) and/or a bad date stamp and i can't delete the record (instead i have to output...
  6. J

    Some help with this report please

    please delete this thread sorry all
  7. J

    Worksheet with many tabs - automation needed

    thanks for that - you're a star!!!!!
  8. J

    Worksheet with many tabs - automation needed

    Hi all, I have a single spreadsheet with multiple tabs, and I need to change that to multiple spreadsheets with a single worksheet each. I'm wondering if any of you have come across a little script or app that might do this?
  9. J

    XL Import issue

    Can I create a table 'on the fly' to host an xl import? I'm using... DoCmd.TransferSpreadsheet acImport, 8, "tbl_Import", sPathOfFileToImport, True ...at the moment, and it would be neat if I could tie it into that statement The issue is that I need to import an xl spreadsheet whose...
  10. J

    variables in SQL syntax - brackets prob

    thanks BETWEEN works great!!! Thanks for your help ;)
  11. J

    variables in SQL syntax - brackets prob

    Hi all, I'm having trouble with my syntax in an SQL statement that passes variables I'm trying to do this: SELECT * FROM MyTable WHERE ID >= var1 AND < var2 I'm having probs with the single & double quotation marks that separate the vars from the statement proper I got something like this...
  12. J

    Excluding Dates problem - syntax

    thank you all Thank you all for your help!! Date_Diff confused me a little, so I used Between -> it does what I need Thanks again for your time Jose :)
  13. J

    Excluding Dates problem - syntax

    nearly! that also displays tomorrow's record - which is Phil, 10th of Nov 05 ======================== Name, Date (Day/Month/Year) John, 09/09/2005 Phil, 10/09/2005 Xena, 03/11/2004 ======================== Thanks so far
  14. J

    Excluding Dates problem - syntax

    Don't display records older than x days - problem with syntax Hi all, I have a table with some records: Name, Date (Day/Month/Year) John, 09/09/2005 Phil, 10/09/2005 Xena, 03/11/2004 I want my query to display all records with today's date, or those that are 100 days older than today's date...
  15. J

    Query - retrieve a set number of records

    Top That's great!!! It works great - I just need one more bit of knowledge, if you would spare me :) * The reason I replace data is simply that it is a small app that imports csv data into a table, modifies it, then exports it into XL. Each import replaces the last. Basically, I'm storing the...
  16. J

    Query - retrieve a set number of records

    Hi all, I want to retrieve a set number of records from a table, using a query. I'm not sure of how to do this. I can't use the ID, because the table gets its data replaced contantly by imports (so the ID doesn;t start at 1...) I want to be able to retrieve, say, the first 25 records on that...
  17. J

    FileDialog(msoFileDialogOpen) - get selected file name

    last thing thanks for the link - i did spend time searching for it - obviously not enough. :)
  18. J

    FileDialog(msoFileDialogOpen) - get selected file name

    Using FileDialog(msoFileDialogOpen), how do I get the name of the selected file? I've worked my way down the properties (e.g: Debug.Print Application.FileDialog(msoFileDialogOpen).SelectedItems .Item .Title etc... Thanks in advance
  19. J

    Dynamic MultiDimentional Array

    thanks thank you! that works great!
  20. J

    Can I Execute a query and capture result?

    cool thanks for that!!!
Top Bottom