Search results

  1. E

    How to Publish and Save each Record Report in Separate File?

    I did thank you twice :) and added reputation
  2. E

    How to Publish and Save each Record Report in Separate File?

    Solution Found. DoCmd.OpenReport "Total Report", acViewPreview, , "ProjectNumber='" & !ProjectNumber & "'" DoCmd.OutputTo acOutputReport, "Total Report", acFormatPDF, MyPath & MyFileName DoCmd.Close acReport, "Total Report"
  3. E

    How to Publish and Save each Record Report in Separate File?

    Hoe to Filter the Report Paul? :)
  4. E

    How to Publish and Save each Record Report in Separate File?

    Hi Paul, How to filter the Report please?
  5. E

    How to Publish and Save each Record Report in Separate File?

    Hi, Paul thnx I have already done that, how can I send you the db?
  6. E

    How to Publish and Save each Record Report in Separate File?

    Private Sub PrintAll_Click() Dim db As DAO.Database Dim rs As DAO.Recordset Dim MyPath As String Dim MyFileName As String Dim MyProjectNumber As String Dim MyProjectName As String MyPath = "C:\Reports\" Set db = CurrentDb() Set rs = db.OpenRecordset("SELECT...
  7. E

    How to Publish and Save each Record Report in Separate File?

    Hi Paul, What I'm trying to do is print all the reports in separate files, at C:\Reports. Print each record with Project Numb + Project Name Done. Problem instead of printing only one record inside the report, is printing all of them.
  8. E

    How to Publish and Save each Record Report in Separate File?

    Dear Paul you jocking or testing me?:) that wont do anything
  9. E

    How to Publish and Save each Record Report in Separate File?

    Trying to make this code work, don't know how to filter as it prints identical all reports. Private Sub cmdExportPDF_Click() Dim db As DAO.Database Dim rs As DAO.Recordset Dim MyPath As String MyPath = "C:\Reports" If Len(Dir(MyPath, vbDirectory)) < 1 Then MkDir (MyPath) End If Dim...
  10. E

    Comparing 2 Fields Query

    Trying to Compare 2 fields Status with answers Yes or No, from 2 Tables PipeLine and Pipe, and get the fields that don't match, what am i doing wrong? SELECT PipeLine.[Project Name], PipeLine.[Capacity DC], PipeLine.[Project Num], PipeLine.[Status] FROM PipeLine LEFT JOIN Pipe ON...
Back
Top Bottom