View Full Version : Counting and Printing


Montasir
02-25-2004, 12:29 AM
Hi!


I have a problem with a report?

I would like to add a calculation of a field in the end of the report.

Example

Filed 1 "doing"
Field 2 "done"
Field 3 "not yet"

So when I print the report I would like to get how many of each field by numbers..

I have another question

after I fill the form I need to print it as report but when I do that it prints the form and also not one form all the forms and same for the reports is there any other method the Ctrl+p like example a button or som.

And please reply if you can't
Thanks a million for reading this message in advance.

Best regards
Monte
:(

tangoman66
02-25-2004, 02:12 AM
I've had trouble doing something similar with my reports. In the end I added a calculation field in thereport header as it would not work in the footer (I dont know why :confused: ). For my calculation I wanted a simple count function so I added a textbox and used the following formula...

=count([Field Name]) where [field name] is the field you wish to count.

If I understand what you said your three textboxes would have the following formulae...

=count([doing])
=count([done])
=count([not yet])

I have no idea about your printing problem though. Hope this is helpful