Code: Select all
Insert -> Field -> OtherAny ideas would be appreciated.
Code: Select all
Insert -> Field -> OtherSo what? The user opens a spreadsheet, confirms a dialog and hits the print button. Is that hidden enough? Is a simple link so difficult to understand?@Villeroy
Whilst the solution that you suggest may work, I would like a solution that is hidden as much as possible from the user. The use of an additional spreadsheet may just add confusion.
But without any solutions (or workarounds), I may just have to have a re-think on my way forward.'Sorry this can't be done, despite the documentation saying so. But there is a lack of functionality
within OpenOffice, or their is a bug that has yet to be resolved.'
Mail merges work for me as documented in various mail merge guides. I have a serial letter with database fields, hit F4, select the one record of a person I want to send a letter to and hit the "data to fields" button which fills all the placeholder fields in that document with the selected record's data. In case of a multiple record selection it seems to import the first record only. I can also print the document directly and select more than one record in the following print dialog.onesimus wrote:@NewGuard
Yes, it would be nice if someone came out and said:But without any solutions (or workarounds), I may just have to have a re-think on my way forward.'Sorry this can't be done, despite the documentation saying so. But there is a lack of functionality
within OpenOffice, or their is a bug that has yet to be resolved.'
Depending on the type of database, a so called union query can select the first 10 rows of some record set followed by the first one of the same. Looks like this and does not work with pseudo-databases (spreadsheets, text files, dBase, email address books):I need to print the first ten records, then go back and print the first record again.
Code: Select all
SELECT TOP 10 * FROM "Table"
UNION ALL
SELECT TOP 1 * FROM "Table"