I have inherited a database with quite a few null fields. I’d like to call the following procedure to convert those nulls:
Sub NoNulls(TableName As String, Optional DefaultDate As Date)
On Error GoTo nonulls_err:
‘given a tablename, remove all nulls and keep them from coming back
‘watch out for reentrancy w/the doevents in the loop
………………………………….truncated……………………………………..
I am not at all sure where and when would be the best to do so. Any advise?
TIA for sharing your expertise,
Elizabeth