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
Post a Comment