Is there a way to automatically fill in a field when another field is keyed? Example - the county automatically enters when the city is keyed in. Possilbe??
When you design a database, you can create a column, and to put in DefaultValue your expression.
for example table has columns ID, xx, yy and you want the field zz=xx+yy. You just add this column in design mode and in DefaultValue put xx+yy. John Fill
I just tried to do as I sayd, but it doesn't work. Instead it you can just use a query
select xx,yy,(xx+yy) as zz from tablex. zz will be always autoupdatable. John Fill
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.