I have a table that has several true/false -fields among other fields. Example:
ID TF1 TF2 TF3 TF4 ...
1 true false true true ...
2 false false true false ...
3 true true false false ...
I would need a report in which the data is grouped by those true/false fields. Example:
TF1:
1
3
TF2:
3
TF3:
1
2
TF4:
1
Any ideas how to do this without changing the table structure?
ID TF1 TF2 TF3 TF4 ...
1 true false true true ...
2 false false true false ...
3 true true false false ...
I would need a report in which the data is grouped by those true/false fields. Example:
TF1:
1
3
TF2:
3
TF3:
1
2
TF4:
1
Any ideas how to do this without changing the table structure?