Recent content by jedooley

  1. J

    Inserting Records?

    Can I insert records into a query that joins 3 tables? I need to do an insert statement into 3 different tables at the same time. Is it possible?
  2. J

    Emailing a Form?

    Can someone tell me how I can properly email a form so it looks like it does in access. I tried email a form by clicking on the menu. I can send it fine but it looks very sloppy. It looks like a query with numbers running off the page. I know it prompts you for a template option? Can...
  3. J

    Union Statement Question?

    Do you know if I can add more queries after a Union? New select statements that are not part of the union? I want to make this form but I need more records pulled that are not part of the union? Can I combine multiple queries in a form? thanks
  4. J

    Select after Union?

    I have this Union Query that works great. I want to run a select statement right after it. Can someone tell me if my syntx is wrong or the sub query is wrong. The Union works great on its own. SELECT TOP 1 Inventory.Inventory_ID, Location.Location_Name, Product.Product_Name...
  5. J

    Union Statement Help

    Thanks Alot Man, That worked great.
  6. J

    Union Statement Help

    Thanks for your help. I have attached the table and results Its still not working quite right. Please help
  7. J

    Union Statement Help

    The Statment gives me the correct bottom record for the first statement but gives the correct top record for the second statement when I need the bottom record.
  8. J

    Union Statement Help

    Can someone tell me if there is anything wrong with this statement. It pulls the right data in the first statement but always the wrong data in the second. I want it to pull the last record in the table that meets the where clause? The first statement pulls the last record (which is correct)...
  9. J

    Selecting Bottom Records?

    Can someone tell me if there is a function to select the Bottom records in the table? I know there is a select top 1 fieldname from table etc.
  10. J

    Cannot Add Record to Form?

    Thank for your response. I have a table that Product, Client, Job, Delivery. I was just wondering if it is possible to add new records through a form rather than getting people to go to the actual table itself. The Job Table stores the ProductID, Client ID but all the info about the...
  11. J

    Cannot Add Record to Form?

    Can someone please explain what this message means. I am trying to add a record to table with a form. I am guess it has something to do with multiple tables the queries data comes from. Cannot Add Record(s) Join Key of Table 'Delivery' not in Recordset Is there another way to add a record...
  12. J

    Date Query Question

    Nope that does not work, That returns all records. I should have between 10-12 records returned See attachment
  13. J

    Date Query Question

    That is progress, but it is just returning records for the most current date entered which is today. I need it to do that plus return records for the other locations for the most current date entered, which is not today. thanks for helping. I am sure there is a way to do this.
  14. J

    Date Query Question

    I need the most current record. For ex. Location 1 Mon 45 1 Tue 10 Location 2 Tue 10 location 3 today 55 A date range won;t work because I don't want it to select duplicate records
  15. J

    Date Query Question

    The between Date thing won't work. I want the most current Inventory level regardless if it was today. So I want 1 reading per location. some might have Mon levels, some might have wed for example.
Back
Top Bottom