Search results

  1. P

    Sendobject - Report with subform

    we have over 100 extemely busy bankers who are receiving these emails so installing snp reader is not possible. i've tried to write to pdf but haven't been successul. there's tons of code out there for a pdf file but can't seem to make them work. some are very complicated.
  2. P

    Sendobject - Report with subform

    For some reason the subform in my report is not showing up in the HTML and Rich Text Format. It works perfectly with the Snapshot format but not everyone receiving the email has MS Access and wont be able to open up the snp file. Thank you in advance for your help.
  3. P

    Emailing an attachment in Lotus Notes

    Hi, I have this code that sends out an email from Lotus Notes (works great!). I just need to figure out how to attach a form or a report. Does anyone know where to add the report/forn name? Thank you in advance. Public Sub SendLotusNotesMail(strMailTitle As String, strLotusNotesUserID As...
  4. P

    Transparent subreport

    Hi Jennifer, After reading that you were able to do alternate row colors, i thought maybe you can assist with me problem. I have a report that has several subreports. For one of the subreports I would like to grey out a row if the "category" for that row is a specific value. Here's my code...
  5. P

    Conditional formatting for reports

    Does that mean there is a way to gray out a line based on an if statment? I tried the following. On Repor Open If me.category.value = "category name" then me.detailfield1.backcolor = number end if The error message is "Can't find the field "category"...."
  6. P

    Replace #Error

    That worked perfectly! Thank you Bob!
  7. P

    Replace #Error

    Me too! I'm also looking for the solution to that problem. Any luck?
  8. P

    Pivot table report

    I've been trying to think about how to go about doing this but I'm stuck. I basically will be receiving 3 data dumps every month. 1) Last Year's Total 2) Current Year's Month to date Total 3) Last Year's Month to date Total For example if the current month is March of 2008. I would get 1)...
  9. P

    Updating the record with the result of an equation

    If all the reports that include calculated fields need to have their respective forms open, I have to find another solution because I won't be able to do that. Can you please elaborate on how I can do it by storing the results of the calculations?
  10. P

    Updating the record with the result of an equation

    ah.. so there is a catch. Why is it bad practice to record the result of an equation into the table? For example I have a field named "Total Invoiced" in the Project Table. The control source of the field is...
  11. P

    Updating the record with the result of an equation

    Really? I've never done that before. How do you do that? Thanks!
  12. P

    Updating the record with the result of an equation

    Great! I basically have a main form with event information ProjectName Budgeted Invoiced etc.. The invoiced and many other fields have these calculated fields because they are summaries of other tables/queries. When a field has this equation it's more for view only purposes and the result...
  13. P

    Updating the record with the result of an equation

    Is there any way to update the actual record with the result from an equation like these? 1)=DLookUp("[SumOfAllocationAmount]","qryInvoicedPB","[ProjectID]=[Forms]![tblProjects]!ProjectID") 2)=[BudgetPB]-[InvoicedPB] 3)=[qryInvitations subform]!TotalAllocations Thanks for reading!
  14. P

    GoToRecord in subform

    Thank you for the reference. I'm still getting a "can't find" message I've tried: 1)Forms!MAINFORM!tblGLCCtransactions_subform.AllocationAmount = Me.InvoiceAmount 2)Me!tblGLCCtransactions_subform.AllocationAmount = Me.InvoiceAmount Do I need to add this (DoCmd.GoToControl...
  15. P

    GoToRecord in subform

    Hi guys, I'm sure there is an easy solution to this but I don't know it. haha I have a form and a subform. I have a command button that I want to automatically populate 2 values into my subform. I've tried. 1)Forms![tblGLCCtransactions subform]![AllocationAmount] = Me.InvoiceAmount...
  16. P

    Combining 2 queries

    Actually, the change didn't take that long. Realized I already had the functionalilty in place to reclass individual invoices in place. Thanks for your help! I'm relieved to know that the database will be robust.
  17. P

    Schedule Compact

    Question.. I copied and pasted the code in my main form under Timer and changed the time to a few minutes ahead so that I can see what happens. I also checked and DAO 3.5 was already checked off. I was on the look out but didn't see any changes occur. Closed the database and looked at the file...
  18. P

    Combining 2 queries

    I played with that idea but here is the problem: My Transaction table is defined as follows: TransactionID InvoiceID CostCenter Amount How can I put the reclasses in the same table without having to individually reclass all say 10 invoices one by one. And how would I do it? Creating another...
  19. P

    Combining 2 queries

    Thank you in advance for your assistance. I've read through the other threads but can't seem to find anything that is simple (not an experienced SQLer so can't really tweak too much) and that would work for my problem. I have a Project table linked to an Invoice Table (1 to many respectively)...
  20. P

    Vlookup in query..

    Learned something new! Thank you!!
Back
Top Bottom