A aattas Registered User. Local time , 00:41 Joined Dec 24, 2014 Messages 75 Mar 17, 2019 #1 Gents, I have a report that shows (attached) the different of results. I want to know how access report can calculate the results as follows: Total of (1) = Total of (2) = Total of (3) = Total of (null) = Attachments List of codes.JPG 31 KB · Views: 115
Gents, I have a report that shows (attached) the different of results. I want to know how access report can calculate the results as follows: Total of (1) = Total of (2) = Total of (3) = Total of (null) =
Ranman256 Well-known member Local time Today, 17:41 Joined Apr 9, 2015 Messages 4,354 Mar 17, 2019 #2 Put the calculations in the query. Summations in the report footers.
C CJ_London Super Moderator Staff member Local time Today, 22:41 Joined Feb 19, 2013 Messages 17,603 Mar 17, 2019 #3 just a guess but in the report footer create 4 controls with the following as the controlsource =sum(iif(numbercol=1,1,0)) change the value in red to 2,3 or null as required. Change 'numbercol' to the name of the relevant field/control
just a guess but in the report footer create 4 controls with the following as the controlsource =sum(iif(numbercol=1,1,0)) change the value in red to 2,3 or null as required. Change 'numbercol' to the name of the relevant field/control
A aattas Registered User. Local time , 00:41 Joined Dec 24, 2014 Messages 75 Mar 24, 2019 #4 Gents, My apology for the delay, i was on leave. I tried the footer and it worked for the total, so i did with the grouping sum, and i got what i need. Thankyou very much for helping.
Gents, My apology for the delay, i was on leave. I tried the footer and it worked for the total, so i did with the grouping sum, and i got what i need. Thankyou very much for helping.