Recent content by Katsku

  1. K

    Exporting subform to word template

    I would need to export a main form and subform (the subform is a datasheet with multiple entries) to a word template. The main form exports fine by using bookmarks. However, I'm struggling with exporting all the records from the subform instead of just the last one. I suspect the answer is in...
  2. K

    Inner and outer joins in the same query

    Thank you so much for helping the newbie out!! It works perfectly. Saved my weekend!
  3. K

    Inner and outer joins in the same query

    Hi, Thanks for your help. However, Access does not accept this either, I get an error saying (the same one as previously) join not supported. I got it working by using: SELECT customer.customer_id, cust_category.cust_category_name FROM ( (customer) LEFT JOIN categories_of_customers ON...
  4. K

    Inner and outer joins in the same query

    Hello, I've been trying to work this out but have not been able to solve this. If anyone is able to help it would be greatle appreciated. The below query (simplified) works fine in MySQL but I'm not able to make it work in Access: SELECT customer.customer_id...
Back
Top Bottom