J
JOM
I have a combo box named Groups on my report, that contains the following
information GR1, Gr2, Gr3. in my report footer I would like to count how
many Gr1, Gr2 and Gr3 are for my report.....
What I have is iif([Groups]="Gr1",
abs(sum([Groups]="Gr1")),iif([Groups]="Gr2",
abs(sum([Groups]="Gr2")),iif([Groups]="Gr3", abs(sum([Groups]="Gr3")),"NA")))
But I only get the result of Gr1 and the rest are not counted, how do I
count them?
information GR1, Gr2, Gr3. in my report footer I would like to count how
many Gr1, Gr2 and Gr3 are for my report.....
What I have is iif([Groups]="Gr1",
abs(sum([Groups]="Gr1")),iif([Groups]="Gr2",
abs(sum([Groups]="Gr2")),iif([Groups]="Gr3", abs(sum([Groups]="Gr3")),"NA")))
But I only get the result of Gr1 and the rest are not counted, how do I
count them?