stevekos07
Registered User.
- Local time
- , 21:29
- Joined
- Jul 26, 2015
- Messages
- 174
Let me see if I can put this properly. I have a form which displays information on clients related to a particular "base". In the header of this form I have a calculated field which displays the number of clients who are due to receive a call today, which is obtained from a query:
=DCount("[ClientID]","qryDailyCallSheets","[BaseName] = '" & [cboBaseName] & "' And [CallToday] = 'Yes'")
I want this value to be displayed in another form in an unbound text box. This second form's fields are not derived from the same query. If I try to use the expression builder to derive the value just by an expression:
=[Forms]![frmDailyCallSheets]![txtCalls]
I get an error. Obviously this is not the way to do it.
This second form displays a list of "bases" derived from another query, but using the same table tblBases as it's source information.
I hope this makes sense
.
Can you shed some light on the easiest way to do this?
=DCount("[ClientID]","qryDailyCallSheets","[BaseName] = '" & [cboBaseName] & "' And [CallToday] = 'Yes'")
I want this value to be displayed in another form in an unbound text box. This second form's fields are not derived from the same query. If I try to use the expression builder to derive the value just by an expression:
=[Forms]![frmDailyCallSheets]![txtCalls]
I get an error. Obviously this is not the way to do it.
This second form displays a list of "bases" derived from another query, but using the same table tblBases as it's source information.
I hope this makes sense

Can you shed some light on the easiest way to do this?