Forum Discussion
- MarkShnier__You
Qrew Legend
np, Try this
Count(
[checkbox field 1],
[checkbox field 2],
[checkbox field 3],
[checkbox field 4],
[checkbox field 5],
[checkbox field 6],
[checkbox field 7],
[checkbox field 8],
...
etc.
...
[checkbox 12-15])
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- SteveHansonQrew TraineeIt took me a minute to figure out why this wasn't working; I had to select the formula under Columns to Display, and change formula from Tex to Numeric. This was handy to get the total within each record to display at the end of the record row, but how do I get the report to total each column?
------------------------------
Steve Hanson
------------------------------- SteveHansonQrew TraineeAnother rookie mistake. It turns out what I was looking for was already built-in. In the field settings, under Checkbox field options I clicked Show a "totals" row in reports. This then produced a row at the bottom totaling up all the checkboxes for each column of my report.
------------------------------
Steve Hanson
------------------------------
- AdamKeever1Qrew CommanderUse ToNumber to turn the true value of a checkbox to the number 1:
Sum(
ToNumber([field1]),
....,
ToNumber([fieldn])
)
...Just saw Mark's post and that is valid too.
------------------------------
Adam Keever
------------------------------