Yes, I am PRINTING my report to Adobe pdf. No one else has seen this problem? It's on Google and there doesn't seem to be a fix. Thought someone here might have an answer.
I have a report that I need to print in booklet form. If I run it to Word it loses a lot of formatting. If I run it to pdf it shrinks the pages. Is there something I'm missing?
I have a form of accounts and a subform register of transactions.
Clicking on a transaction opens a form to edit current transaction or create a new one.
If the account has no transactions, it does not return an account ID or the name of the account.
If I've created a new account, the register...
OldID will be deleted when everything works. Also fCatTypeID and fCatGroupID in tblCategory.
It's called tblCombo because it's the basis of little combo boxes.
TypeID is not related to type in Description that I'm trying to pull above.
I created a helper table for some small tables I.e. tblCombo for color, type, group, etc. So then I use Pat Hartman's Address Book. It worked great until I created the helper table.
Using her code to BuildSql I get:
SELECT tblCategory.CategoryID, tblCategory.Category,
tblCombo.Data AS Type...
the query I want is 2qryRegister. All the others feed into it. The problem is when I add the transaction totals. Is there a way I can get all that together?
I have a query that groups transactions together by ID:
But when I use this query and add another table it loses its grouping:
What am I doing wrong? The addition table is left join.
I’ve worked on this so long that I can no longer see the trees for the forest.
I want to transfer money from one account to another so (on your advice) I’ve created a self join table. Mostly this works except for when there is more than one transfer (bottom subform) in the Check.
The code on...
I removed the CkAmount from qryTransactions. If I remove the Sum from Cleared It says Does not include as a part of an Aggregated function. The only thing it will accept is sum. There are not 2 ID's 19. It is an autonumber.
SELECT qryTransactions.TransactionID,
qryTransactions.Cleared,
Nz(-[Credit],0)+Nz([debit],0) AS CkAmount,
-Nz([CatCredit],0)+Nz([CatDebit],0) AS CatAmount,
qryTransfers.TAmount,
Sum(IIf([Cleared]=True,+[CkAmount],0)) AS ClearedAmt...
it's an optional variable. still working on it. Nevermind.
For anyone else with my original problem: I'd like to tell you what the problem was. Before I started all this NotInList code for my combos, I had set up a form in the "ListItemsEditForm" under data and forgot about it. After going...