I have a calculated text box which i named [Files sum] in my reports detail section. It has a control source of {=IIf([ECV2 date]=1,1,0)+IIf([Pass2 date]=1,1,0)+IIf([TWC2 date]=1,1,0)+IIf([EVF2 Date]=1,1,0)+IIf([Medical2 date]=1,1,0)+IIf([Pic2 date]=1,1,0)+IIf([Police2 date]=1,1,0)+IIf([TT2 Recvd]=1,1,0)+IIf([Med2 Recvd]=1,1,0)} just to add the different field if it has a date on it and make it 0 if its blank. Im concern with the 0 value and wanted to count (sum) it in my report footer. Anyone can help me how to do this? I tried =sum(Iif([Files sum]=0,1,0)) but it returns 0 value, same case with using count(). Please help me on this.