I am looking for a query than can work in Access that gives me the total count of users who completed certain requirements. I know I can group by column, the "tricky" part is that I need to group in one column if the user completed any of the requirements from columns B,C or D. In other words, this is my data:
User Company A B C D E
John ABC 1 1
Bob ABC 1 1 1 1
Reggie ABC 1 1 1
Alex BCA 1
Mary BCA 1 1
Jane CBA 1 1 1 1
And this is the end result I'm looking:
Company A E F(B or C or D)
ABC 2 3 2
BCA 2 0 1
CBA 1 0 1