hi all,
good day i have a problem in my data base getting the grandtotal of my subtotal...
i dont have a TOTAL fields in my Table... my TOTAL in my form is Unbound in my form this is the code in my unboundtextbox total
First Yr
Second Yr
Third Yr
Fourth Yr
Total Enrolment
so example i have 3 schools it means i have 3 Total Enrolment
what code i will make to total the 3 schools to get the grandtotal
i tried this code but it dont work
pls help me.. thank you. its a continues form...
good day i have a problem in my data base getting the grandtotal of my subtotal...
i dont have a TOTAL fields in my Table... my TOTAL in my form is Unbound in my form this is the code in my unboundtextbox total
First Yr
Code:
=[first yr male]+[first yr female]
Code:
=[second yr male]+[second yr female]
Code:
=[third yr male]+[third yr female]
Code:
=[fourth yr male]+[fourth yr female]
Code:
=[first yr male]+[first yr female]+[second yr male]+[second yr female]+[third yr male]+[third yr female]+[fourth yr male]+[fourth yr female]
what code i will make to total the 3 schools to get the grandtotal
i tried this code but it dont work
Code:
=Sum([first yr male]+[first yr female]+[second yr male]+[second yr female]+[third yr male]+[third yr female]+[fourth yr male]+[fourth yr female])
Last edited: