p_d_hodgson
New member
- Local time
- Today, 00:33
- Joined
- Jul 15, 2020
- Messages
- 11
Hi,
Could anyone please help me on these issues? I think the answer to question 1 is initially a NO, but there may be ways around it I cannot think of.
1. I have a database I am developing for a customer, and I am releasing it as an ACCDE (executable only) front-end, with a separate back end. I want to (from Access) print labels, and believe that because the label page format may change (the customer may change their labels, and I don't want to have to keep changing reports) the easiest way to support this is through a Word merge. When I try to connect the Word document to the ACCDE, it says that it cannot because "The data source contains no visible tables"... Is there a way to overcome this?
2. Trying to create the mail merge from Access using "External Data\Word Merge" has issues... my data has to come from a query because the data is across multiple tables, and one value is generated by a global Function based on a record ID (pkey). When I create the template and try to link back to the query I am only offered tables! Does anyone know a way round this?
3. I tried creating a template and linking it to a table in a different dummy database, then use Access VBA to open the template and link it to the correct database abd query based on this code:
Set oWord = CreateObject("Word.Application")
Set oWdoc = oWord.Documents.Open(wdTemplateName)
oWord.Visible = False
With oWdoc.MailMerge
.MainDocumentType = wdMailingLabels 'wdFormLetters
.OpenDataSource _
Name:=CurrentProject.FullName, _
AddToRecentFiles:=False, _
LinkToSource:=True, _
SQLStatement:="SELECT * FROM [qryTagInfo]"
.Destination = 0 'wdSendToNewDocument
.Execute Pause:=False
End With
I get an error "ODBC Microsoft Access Driver Login Failed"/"Driver Cannot find the file '...\Sandons.mdb'", which is strange as CurrentProject.FullName is '...\Sandons v2.accdb', i.e. it seems to have lost the bit of the filename from the space onwards! Which is doubly odd as some of the directories in the path have spaces in them!!!
Not sure if this is relevant (probably not) but when I OK that, it comes up with a login prompt for ODBC but as this is obviously for a database that does not exist I press the 'Database...' button, which comes up with a list of databases in the current directory including the one that I want (Sandons v2.accdb) so I select that then OK the login, this produces a prompt for 'Select Table' with no tables listed (all my tables are linked tables to the back-end database). If I press 'Options..' on that screen I get checkboxes for Tables/Views/System Tables/Synonyms, so I tick the 'Views' and it lists the query I want to use (qryTagInfo), so I select that and OK, then the Word template appears but with no data. When I go back to Access (not closing Word) there is a message box saying "Microsoft Access"/"Word was unable to open the data source".
I also had an error at one point that seemed to indicate that Word could not open the database because it was locked (presumably by Access that I was running to automate the Word mail merge!).
Could anyone point me to a more 'correct way' of having Access use Word to generate a mail merge based on query data generated from the data in the same Access database (particularly when one item is using a global function that formats the primary key into a string e.g. XYZnnn where nnn is 100+pkey value!)? It seems obvious that I must be barking up the wrong tree!
Many thanks,
Paul
Could anyone please help me on these issues? I think the answer to question 1 is initially a NO, but there may be ways around it I cannot think of.
1. I have a database I am developing for a customer, and I am releasing it as an ACCDE (executable only) front-end, with a separate back end. I want to (from Access) print labels, and believe that because the label page format may change (the customer may change their labels, and I don't want to have to keep changing reports) the easiest way to support this is through a Word merge. When I try to connect the Word document to the ACCDE, it says that it cannot because "The data source contains no visible tables"... Is there a way to overcome this?
2. Trying to create the mail merge from Access using "External Data\Word Merge" has issues... my data has to come from a query because the data is across multiple tables, and one value is generated by a global Function based on a record ID (pkey). When I create the template and try to link back to the query I am only offered tables! Does anyone know a way round this?
3. I tried creating a template and linking it to a table in a different dummy database, then use Access VBA to open the template and link it to the correct database abd query based on this code:
Set oWord = CreateObject("Word.Application")
Set oWdoc = oWord.Documents.Open(wdTemplateName)
oWord.Visible = False
With oWdoc.MailMerge
.MainDocumentType = wdMailingLabels 'wdFormLetters
.OpenDataSource _
Name:=CurrentProject.FullName, _
AddToRecentFiles:=False, _
LinkToSource:=True, _
SQLStatement:="SELECT * FROM [qryTagInfo]"
.Destination = 0 'wdSendToNewDocument
.Execute Pause:=False
End With
I get an error "ODBC Microsoft Access Driver Login Failed"/"Driver Cannot find the file '...\Sandons.mdb'", which is strange as CurrentProject.FullName is '...\Sandons v2.accdb', i.e. it seems to have lost the bit of the filename from the space onwards! Which is doubly odd as some of the directories in the path have spaces in them!!!
Not sure if this is relevant (probably not) but when I OK that, it comes up with a login prompt for ODBC but as this is obviously for a database that does not exist I press the 'Database...' button, which comes up with a list of databases in the current directory including the one that I want (Sandons v2.accdb) so I select that then OK the login, this produces a prompt for 'Select Table' with no tables listed (all my tables are linked tables to the back-end database). If I press 'Options..' on that screen I get checkboxes for Tables/Views/System Tables/Synonyms, so I tick the 'Views' and it lists the query I want to use (qryTagInfo), so I select that and OK, then the Word template appears but with no data. When I go back to Access (not closing Word) there is a message box saying "Microsoft Access"/"Word was unable to open the data source".
I also had an error at one point that seemed to indicate that Word could not open the database because it was locked (presumably by Access that I was running to automate the Word mail merge!).
Could anyone point me to a more 'correct way' of having Access use Word to generate a mail merge based on query data generated from the data in the same Access database (particularly when one item is using a global function that formats the primary key into a string e.g. XYZnnn where nnn is 100+pkey value!)? It seems obvious that I must be barking up the wrong tree!
Many thanks,
Paul