executing funtion on access.

D

Douglas J. Steele

It all depends on the function.

It could be as simple as using an Update query:

UPDATE MyTable SET MyField = MyFunction(MyField)
 
Top