Search results

  1. C

    pdf shrinks report

    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.
  2. C

    pdf shrinks report

    exporting my Access report to pdf shrinks the report a lot when the pdf is opened. I'm talking about importing when pdf is opened. Sorry.
  3. C

    Return an empty register

    Click on split to open the edit menu. I can't figure how to send a valid account number to add a new transaction
  4. C

    pdf shrinks report

    PDF definitely reduces the report when importing
  5. C

    pdf shrinks report

    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?
  6. C

    Return an empty register

    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...
  7. C

    Query return on alias fields

    I'm attaching the form here. I can't figure out where to go on the SORT option. How do I fit the individual queries into the main one?
  8. C

    Query return on alias fields

    Thank you. Turns out it was trickier than I thought. You've simplified it.
  9. C

    Query return on alias fields

    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.
  10. C

    Query return on alias fields

    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...
  11. C

    Aggregate query loses aggregate

    Whoa! I did not know you could do that! THANK YOU so much!
  12. C

    Aggregate query loses aggregate

    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?
  13. C

    Aggregate query loses aggregate

    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.
  14. C

    AfterUpdate double amount

    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...
  15. C

    Solved Totals Query

    Wow! You nailed it! It's a foreign key with nothing in it but it's in there twice. Thank you so much!
  16. C

    Solved Totals Query

    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.
  17. C

    Solved Totals Query

    or this?
  18. C

    Solved Totals Query

    Like this?
  19. C

    Solved Totals Query

    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...
  20. C

    Solved NotInList error

    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...
Back
Top Bottom