
Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
If we have started paying out funds for a certain project, the amount(s) are
entered into the database. I summed them in a query for other reports that
show how much has been paid out (eg. $12,000), but for this most recent
report, I do not want to show an amount paid to date (whick is currently
appearing in my report), but merely a check box to signify that payments have
started. If no payments have been made and the field is null, the box is not
checked.
Any suggestions? Cheers.
> > I have a number/currency field that I would like to have appear as a check
> > box on a report, and am unable to do this in the query or the report. The
[quoted text clipped - 6 lines]
> of number values; a Check Box value can only contain be -1 or 0.
> What are you trying to do?
Ken Snell (MVP) - 30 Nov 2005 16:54 GMT
Add a calculated field to your report's record source query:
PaymentsStarted: IIf([PaymentsField] Is Null, False, True)
Then bind your checkbox control to this field in the report's record source
query.

Signature
Ken Snell
<MS ACCESS MVP>
> If we have started paying out funds for a certain project, the amount(s)
> are
[quoted text clipped - 23 lines]
>> of number values; a Check Box value can only contain be -1 or 0.
>> What are you trying to do?
fredg - 30 Nov 2005 17:57 GMT
> If we have started paying out funds for a certain project, the amount(s) are
> entered into the database. I summed them in a query for other reports that
[quoted text clipped - 16 lines]
>> of number values; a Check Box value can only contain be -1 or 0.
>> What are you trying to do?
Add a Check box to the report.
Set it's Control source to
=[PaidToDate] >0

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
IrenaY - 30 Nov 2005 20:35 GMT
Thank you both for your responses. I tried both successfully.
> > If we have started paying out funds for a certain project, the amount(s) are
> > entered into the database. I summed them in a query for other reports that
[quoted text clipped - 20 lines]
> Set it's Control source to
> =[PaidToDate] >0