I'm feeling really silly for not being able to do this, but I've searched everywhere and I can't find a solution. I'm also very new to Access, so maybe I just don't know what to look for. I have a very simple DB to keep track of whether users are "Active" or not in our LMS. I have a very simple form for our employees to add/remove users and mark them as active or inactive.
I would like to have two text fields in the footer of the form, one that shows the COUNT(*) of all record, and one that shows the total number of active users.
I have a report where I use =Count(*) as the data Control Source for a textbox for the total and =Abs(Sum([Active])) for the total active users. This works beautifully. But I'd rather have it all in one place. So I'd like to put these in the footer of the form.
However, when I do this, both values show up as 0, or sometimes "False". I've tried running a requery on these fields from the code builder on my Add/remove buttons to no avail. Is there any way to get a calculated number in there?