• Report questions (Access 2000)

    Author
    Topic
    #422816

    1. I searched but could not find the answer to this. If I have a date type and some of the dates are zero, I want this to display as blank on the report otherwise show the date as 00/00/0000. I know there has to be a way to do this but I have not found it.
    2. I have several fields on a detail line. I want them to print unless one other text field is not empty. If that field is not blank I want it to display or be visible, otherwise the other fields should print. Is there a way to do this in Access?

    Viewing 0 reply threads
    Author
    Replies
    • #965491

      1) Do you really mean zero (0), or do you mean null? A zero date would be displayed as 12/30/1899.

      2) Do you want the entire detail section to be skipped, or do you just want to hide specific controls?

      • #965493

        1. Yes, really a zero date. I did see the date display as 12/30/1899, but I do not want anything to print if it is zero.

        2. I just want a few specific fields (controls) to not print if the text field is not blank. I sort of need to overlay it. One big message will print if a certain condition is met, otherwise the other controls will print.

        • #965506

          1. Set the Format property of the text box bound to the date field to something like

          mm/dd/yyyy;;""

          replacing mm/dd/yyyy with the desired date format.

          2. Create code in the On Format event of the detail section of the report:

          Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
          If IsNull(Me,txtSomething) Then
          Me.ControlA.Visible = True
          Me.ControlB.Visible = True
          Me.ControlC.Visible = True
          Else
          Me.ControlA.Visible = False
          Me.ControlB.Visible = False
          Me.ControlC.Visible = False
          End If
          End Sub

          Adapt as needed.

    Viewing 0 reply threads
    Reply To: Report questions (Access 2000)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: