So, this should be simple right?
But I'm going crazy trying to work this out and have done over an hour of searching online, whits end...
I'm trying to take a count of records that have a checkbox checked (Yes/True) and return this total to a textbox on an unbound form by using the CONTROL SOURCE property of the textbox.
Underlying Table and Field:
tbl_JOBS = Table
Interviewed = Field (Boolean yes/no)
What do I put in the Unbound Form's Control Source property to return what I want? I've tried things like this to no avail: =Abs(Sum(IIf([tbl_JOBS]![Interviewed]=Yes,1,0)))
I just keep getting #ERROR in the textbox...