Hi all, I am using CR10 version and has created a formula in my report details section.
data in my report is like this:
indtotyes & indtotno are the formulae i have created to total each "ind" [if ind is yes then indtotyes is 1 else indtotno is 1]
As you can see, indtotyes is 3 ,but there is a dual count on empno 1234 [who is in two different projects]. How can i count 1234 once and not twice ?
Hope i am clear in explaining my problem. please let me know if it's not.
Thank you all..
data in my report is like this:
indtotyes & indtotno are the formulae i have created to total each "ind" [if ind is yes then indtotyes is 1 else indtotno is 1]
Code:
--Suppressed
empno empname proj ind indtotyes indtotno
details:-1234 xxxxx A yes 1 0
1234 xxxxx B yes 1 0
2345 yyyyy A no 0 1
abc 12345 A yes 1 0
Group footer: ----
total for yes:- 3
----
----
total for no:- 1
----
Hope i am clear in explaining my problem. please let me know if it's not.
Thank you all..