Search results

  1. A

    Combining data from different records

    I am looking for a method to combine the data for a particular field from each record into a separate field. Example: Result: Seattle, WA 98104, Chicago, IL 60605, Los Angeles, CA 90010. How can this be achieved?
  2. A

    Custom Error Msg for Import

    Hi, I am looking to make a custom messages for this code, If it imports successfully then output "Import Successful" else "Error in Source File". New to coding, so any pre-written script to help would be appreciated. Private Sub cmdImportExcel_Click() 'the path to the excel workbook Dim...
  3. A

    Removing Form Icon

    Simple and works! Thank you
  4. A

    Removing Form Icon

    Please help me to remove the form default icon. I don't want anything in replace of it. A simple solution rather one that requires modules of code. The links under this thread did not help. Thanks in advance.
  5. A

    Importing excel data - sample database

    Neither of the threads below provide the solution to my query.
  6. A

    Importing excel data - sample database

    Hi, I really need a simple sample database which demonstrates how to select a an excel file from a chosen location and transfer the data to the specified table. Can anyone point one out to me please?\ Many thanks
  7. A

    Average of count per row

    I have created a summary query which counts each grade, I want to average percentage the count of each grade using the total. How can this be achieved in the query? :banghead: Thanks in advance
  8. A

    Report Groupings Issue

    Hi All, Unfortunately, I can't share the database for confidentiality reasons but here is what I want to achieve: - Every Subject has a set of students - some subjects share the same student list - rather than listing the students under each subject separately, I wish to have a format where I...
  9. A

    Sending Form in Email

    I have some graphs on a form, I found it easier to manipulate the graphs on a form than on a report. I want ALL the graphs on the form to be inserted into the body of the mail. Any pre-written VBA written to achieve this would be greatly appreciated.
  10. A

    Customising Error 3022

    Can someone please help me place the customised 3022 message into this code as it is still defaulting to the original msg Dim rst As DAO.Recordset Dim varItm As Variant Set rst = CurrentDb.OpenRecordset("tbl_assignSessions", dbOpenDynaset) For Each varItm In List41.ItemsSelected With...
  11. A

    Attach second report to email

    Sorry, I should have been clearer. I am trying to add a text to the hyperlink as shown in bold below, but it just displays the code and does not convert it to an actual hyperlink. How do I modify the code to allow HTML formatting? Public Sub Command6_Click() Dim vTo, vCC, vSubj, vBody, vRpt...
  12. A

    Attach second report to email

    Thanks, but how do I modify the original post in Post#1 to make HTML compatible hyperlinks?
  13. A

    Attach second report to email

    How do I add the hyperlink text to disguise the file path?
  14. A

    Attach second report to email

    the hyperlink works perfectly thank you!
  15. A

    Attach second report to email

    As an alternative, Can I add a hyperlink in the body of the email to a location on the server? If, so how do I do this in this code?
  16. A

    Attach second report to email

    Hi, I have a fully working script for attaching a report to an e-mail. I want to extend the script to attach another report. not sure how I can add a second sql script and attach the second report to the e-mail... Public Sub Command6_Click() Dim vTo, vCC, vSubj, vBody, vRpt, vForm, vHoy Dim...
  17. A

    Limiting Access report group to 10 records per group when printed?

    Can I limit an Access report group to 10 records per group when printed? A simple code snippet that I can use and adapt perhaps.
  18. A

    Insert Listbox values into a table

    OK, still getting the error... Test Data: Enter Day: Sunday Period: 11
  19. A

    Insert Listbox values into a table

    Its not adding due to the value not existing in the staff table? but when I add it manually, it adds, but not through the VBA
  20. A

    Insert Listbox values into a table

    One to Many
Back
Top Bottom