I dont know if this is possible.. I have a form frmCustomers with a subform sfrmCustomers
and in the subform I have a unbound text field in the footer txtCOUNT with the control source of
=Sum(IIf([Action]="Received From",1,0))
and in the main form I have another unbound txt field txtReceivedtime s
It is just for a quick reference as I am combing through customers to see how many returns I have for them.
I was wondering if it were possible to get the txtReceivedtime s into a query. My query is pulling from the table of the main form and what I have so far looks like this.
I know its incorrect when I try and run the query it asks me to put in parameter value. and its just not working. I didnt know if there was a simple way to make this work or not???
Thanks a bunch!
and in the subform I have a unbound text field in the footer txtCOUNT with the control source of
=Sum(IIf([Action]="Received From",1,0))
and in the main form I have another unbound txt field txtReceivedtime s
It is just for a quick reference as I am combing through customers to see how many returns I have for them.
I was wondering if it were possible to get the txtReceivedtime s into a query. My query is pulling from the table of the main form and what I have so far looks like this.
Code:
SELECT [Register Form].Status, [Register Form].Model, [Register Form].[Serial Number], [Forms]![TRACKING REGISTER]![Receivedtimes] AS Received FROM [Register Form] WHERE ((([Register Form].Status)="IN")) ORDER BY [Register Form].Model;
I know its incorrect when I try and run the query it asks me to put in parameter value. and its just not working. I didnt know if there was a simple way to make this work or not???
Thanks a bunch!
Comment