Search results

  1. D

    Missing MsysResources

    Sorry, it does appear if I enable show hidden objects, however when I try to open it I get a message stating unrecognised database format
  2. D

    Missing MsysResources

  3. D

    Missing MsysResources

    Thanks It doesn't show in the original db or the blank one I created.
  4. D

    Missing MsysResources

    Yes I can create a new blank database. Where would I see the MsysResources table?
  5. D

    Missing MsysResources

    Hi After a Microsoft365 upgrade, my databases will not load reports. When I try to compact and repair I get a message that the MsysResources file is missing. I have copied the front end from another computer which is working fine but the error persists on my laptop. Would appreciate any...
  6. D

    Importing from excel column headers in row 5

    Thanks for your response. The function loops through 134 spreadsheets and each has a different range of data, albeit each starting in cell A5. How would I select the individual ranges in each spreadsheet?
  7. D

    Importing from excel column headers in row 5

    Hi all My client has modified their excel spreadsheets so the headers are now in row 5 instead of row 1. How can I modify the following function to reflect the changes? Public Function ImportHierarchyFunctionFiles() Dim MyFile As String Dim MyPath As String Dim db As Database Set db =...
  8. D

    Export to Excel not working correctly

    Hi I have the following code to export separate excel files from a query in my database. The problem is that it is exporting all data from the query to each spreadsheet instead of the data applicable to that countrycode. Can someone please help me with this. Private Sub Command185_Click()...
  9. D

    Solved Creating Excel Files from Access

    Absolutely brilliant - thank you. What you gave me is so much simpler than what I was attempting to do.
  10. D

    Solved Creating Excel Files from Access

    Thanks for the resposne I copied your code and am getting End With without With when I compile it
  11. D

    Solved Creating Excel Files from Access

    Hi I am trying to create 134 Excel Macro Enable workbooks from my Access application. My code is Public Function CreateDataFiles() Dim xlApp As Object Dim xlWB As Object Dim strFileName As String Set xlWB = Workbooks.Add("C:\KPMG\Excel Templates\Member Firm DataFile.xlsm") Dim rs As...
  12. D

    Code not recognising correct fields in a sharepoint list

    Thanks for that. I tried that but to no avail.
  13. D

    Code not recognising correct fields in a sharepoint list

    Hi all I hope I am posting this in the correct part of the forum. I have an application which I designed thinking the back end was to be deployed to an sql server. I now find they want it on Sharepoint which I have never used before. I have managed to split the back end to a sharepoint site...
  14. D

    Complex Query

    Hi arnelgp I am sorry to trouble you again with this. Ultimately, my back end will end up on a sharepoint site. When I tested this after migrating the tables to sharepoint it no longer works. Do I need to modify the "set" rules? I have tried changing the column number but to no avail. Thanks
  15. D

    Join Expression Not Supported

    Obviously the "and" is a problem. I did try to delete this from the code initially but had trouble including the syntax surrounding "andwhere". I have now sorted that out and the code is running correctly. Thank you for your help and patience.
  16. D

    Join Expression Not Supported

    This is now showing ...................And WHERE tblConsolRawData.CountryCode = 4
  17. D

    Join Expression Not Supported

    Sorry, I am trying to learn SQL but am only a beginner at it. I replaced the AndWhere as suggested and I now get "Syntax Error (Missing Operator) in query expression
  18. D

    Join Expression Not Supported

    Ok Thanks I understand what you mean but I am unsure how to do this as the code is actually creating the qryDefs
  19. D

    Join Expression Not Supported

    This is what I am getting SELECT tblDump.Id, tblConsolRawData.[Member Firm], tblConsolRawData.[Survey Methodology (Legacy Anonymous / Linked Data)], tblConsolRawData.GPID, tblConsolRawData.[First Name], tblConsolRawData.[Last Name], tblConsolRawData.[Email Address]...
  20. D

    Join Expression Not Supported

    Thanks for your response. The original underlying query only ran on one table. It is now extracting data from 2 joined tables. The new table is a set of rules surrounding data requirements. 1.There are no memo fields. 2. I don't think character limits are the issue here. The query runs as...
Top Bottom