I have a database that essentially is a complete check printer and check register. I have a query (qryLastCheck) that returns the variable LastCheckNumPrinted which I would like to use as the starting point for automatically adding +1 for a new check. I also want to see this as a value on my input form. What is the correct syntax for the control source to see this value in a textbox? I have tried the following with no luck:
=qryLastCheck!LastCheckNumPrinted
=me!qryLastCheckNumPrinted.value
Both return #Name (error)
I could make this an unbound subform, but it seems like a lot of work essentially when I want to use the value as well.
Final question: Is than an easier way to do this, perhaps with a whole different approach?
=qryLastCheck!LastCheckNumPrinted
=me!qryLastCheckNumPrinted.value
Both return #Name (error)
I could make this an unbound subform, but it seems like a lot of work essentially when I want to use the value as well.
Final question: Is than an easier way to do this, perhaps with a whole different approach?