Can someone explain to me why the boxes update only if specific combo box is updated.
Quota only updates when the product combox is updated (despite having the date as a search criteria.
Approved and Waiting use the same formula (other than the criteria), and only update with the date is updated. (despite also having location and product as search criteria).
Available is just [quota]-[approved] and as such updates depending on the field changed.

i'm missing some sort of basic understand about when things poll for new information. is it possible to jsut have the text boxes constantly checking?
in case it matters here is the code, but perhaps it's a form thing (although i looked and couldn't find a setting.)
Quota
Code:
=Round(DLookUp([cboLAProduct],"[tblLeaveAvailablility]","[vDate1]=[tblLeaveAvailablility]![Scheduling_Date]")*(DLookUp("[Individual]","[tblSiteNumbers]","'UMG'=[tblSiteNumbers]![Site]"))/100)
Approved/Waiting
Code:
=DCount("*","[qryLeaveAvailability]","Status='Approved' And PrimaryProduct=[cboLAProduct] And location=[cbosite] And #" & Format([vDate1],"mm/dd/yyyy") & "# BETWEEN [LeaveStartDate] AND [LeaveEndDate]")