P
Pam
I have a report that lists contribution amounts for a certain month. I would
like everyone to receive the report. However, I want to supress the "thank
you for your contribution" line for those that didn't contribute that month.
This information is in the detail part of the report and here is the code I
am using (but is not working!):
*****
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Sum_Of_Amount Is Null Then
Label21.Visible = False
Label22.Visible = False
Label24.Visible = False
ContributionDate_By_Month.Visible = False
Sum_Of_Amount.Visible = False
End If
End Sub
****
I am still getting the report for each person. For the ones where no
contribution is made, the date and amount are just blanks.
Maybe I don't have the right code or maybe it should be somewhere other than
Detail_Format?
Thanks!
like everyone to receive the report. However, I want to supress the "thank
you for your contribution" line for those that didn't contribute that month.
This information is in the detail part of the report and here is the code I
am using (but is not working!):
*****
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Sum_Of_Amount Is Null Then
Label21.Visible = False
Label22.Visible = False
Label24.Visible = False
ContributionDate_By_Month.Visible = False
Sum_Of_Amount.Visible = False
End If
End Sub
****
I am still getting the report for each person. For the ones where no
contribution is made, the date and amount are just blanks.
Maybe I don't have the right code or maybe it should be somewhere other than
Detail_Format?
Thanks!