Recent content by 3gustavo

  1. 3

    Export a report with a filtered subform inside it

    That helped me a lot. Thank you so much.
  2. 3

    Help on error '2455'

    Yes, like I said, it is confidential. Actually, no reference there is true. I am using the CONTROL name and gonna check the first bullet. Thank you, Pat
  3. 3

    Export a report with a filtered subform inside it

    It is. I can make the way you like to do. Do you know a code that export a report with a filtered subform/subreport in it, please?
  4. 3

    Export a report with a filtered subform inside it

    No, it is not the same situation. That's why I created two different threads... Come on, man. Of course I am using the right name. You just can't know what it is because of something called confidentiality agreement, that's why I just put 'subform'. You are not helping at all...
  5. 3

    Help on error '2455'

    Confidentiality agreement
  6. 3

    Help on error '2455'

    Also doesn't matter if you disagree. The 2455 error doesn't concern about subform or subreport... Let's make it easier And yes, it is something that's normally. You just don't know about it
  7. 3

    Export a report with a filtered subform inside it

    It export the report without the filter. Is the code right?
  8. 3

    Help on error '2455'

    Doesn't matter if is a subform or subreport. I just need help with the error... No, the container isn't named "subform"
  9. 3

    Export a report with a filtered subform inside it

    Thank you. I am planning to export the report (ID report) in pdf format with the filtered subform (subform) inside it by clicking in a button of another form (Me). The filter is based on the value of a textbox (txtbox) in that form. Private Sub Command669_Click() Dim report As String report...
  10. 3

    Export a report with a filtered subform inside it

    Hi, Can someone tell me how to filter a subform that is inside a report and export the report with the filtered subform in pdf, please?
  11. 3

    Help on error '2455'

    There is a subform in the report and I want to filter the subform. This doesn't matter actually, because I want to solve the error 2455
  12. 3

    Help on error '2455'

    Private Sub Report_Open(Cancel As Integer) Me.subform.Form.Filter = "[ID]= '" & Forms![ID Form]![Person ID] & "' " Me.subform.Form.FilterOn = True End Sub When try to run this code, I am receiving this error: "Your entered an expression that has an invalid reference to/the property...
Top Bottom