berkshirea
Technical User
hi guys, i've got a table like this, where col1 to col3 are checkboxes, it's either ticked or unticked.
id - item - col1 - col2 - col3
1 - david -checked - unchecked - checked
2 - david -checked - checked - unchecked
3 - anne -unchecked -checked - checked
4 - peter -checked - checked - unchecked
5 - peter -unchecked - unchecked - unchecked
.
..
and i want to have the recordset something like this(counting those with ticks on checkbox):
item - col1 - col2 - col3
david - 2 - 1 - 1
anne - 0 - 1 - 1
peter - 1 - 1 - 0
any tips guys? thanks in advance.
id - item - col1 - col2 - col3
1 - david -checked - unchecked - checked
2 - david -checked - checked - unchecked
3 - anne -unchecked -checked - checked
4 - peter -checked - checked - unchecked
5 - peter -unchecked - unchecked - unchecked
.
..
and i want to have the recordset something like this(counting those with ticks on checkbox):
item - col1 - col2 - col3
david - 2 - 1 - 1
anne - 0 - 1 - 1
peter - 1 - 1 - 0
any tips guys? thanks in advance.