Counting Y/N Records

G

Guest

In the survey form I'm making, I would like the total of all the records for
each question to show in the footer section. The questions are Y/N fields.

Thanks in advance, Shannon

PS, I already asked this, but can't find it. Is there a way to sort posts?
 
F

fredg

In the survey form I'm making, I would like the total of all the records for
each question to show in the footer section. The questions are Y/N fields.

Thanks in advance, Shannon

PS, I already asked this, but can't find it. Is there a way to sort posts?

In the Report Footer?
Y/N fields meaning they are Check Box fields?

Yes replies:
=ABS(Sum([CheckName]))

No replies:
=Sum([CheckName]+1)
 
G

Guest

That's exactly what I needed! Thanks!

fredg said:
In the survey form I'm making, I would like the total of all the records for
each question to show in the footer section. The questions are Y/N fields.

Thanks in advance, Shannon

PS, I already asked this, but can't find it. Is there a way to sort posts?

In the Report Footer?
Y/N fields meaning they are Check Box fields?

Yes replies:
=ABS(Sum([CheckName]))

No replies:
=Sum([CheckName]+1)
 
G

Guest

I was able to do that for the first nine entries. On the tenth entry, they
all displayed "err#." Do you know what to do? I have many entries.

fredg said:
In the survey form I'm making, I would like the total of all the records for
each question to show in the footer section. The questions are Y/N fields.

Thanks in advance, Shannon

PS, I already asked this, but can't find it. Is there a way to sort posts?

In the Report Footer?
Y/N fields meaning they are Check Box fields?

Yes replies:
=ABS(Sum([CheckName]))

No replies:
=Sum([CheckName]+1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top