MS Access display query results on form -


i have simple clients table , made form enter fields. have query called "balances" math , calculates balance on each clients account. want particular client's balance show on form when record open.

i tried making text box control source = [balances].[balance] gives me #name? when view form. names correct, i'm not sure if right way go this.

it sounds want dlookup(), in case control source of "balance" text box like

=dlookup("balance", "balances", "clientid=" & [clientid]) 

experiment , let know how goes.


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -