I'm pretty new to Access but have worked through most of my problems. Now I'm just trying to make it "dumber" for users.
Scenario: Built a database to store information on a non-profit food closet organization. People come in and are either new for the year (everybody is new in the month of January) or have been there before. I have made a report to show new people and old people broken up.
Problem: When going through error check. The only way this works is if the new person isn't checked for the present month, then run report to get numbers, then go back in a mark them for the month. The only other way i can think to do it is have a separate report for each month.
My query has New: IIf([Jan]="No" And [Feb]="No"...,1,0) and so on as a field.
Question: is there a way to have it not count the current month and update that code each month?
Any help will be appreciated.