複数のフィールドを持つアクセス テーブルがあります。すべての行、すべてのフィールドを読み取り、フィールドに NULL が含まれている場合はデフォルト値 "" を設定したいと考えています。フィールド定義を使用してテーブルを読み込もうとしていますが、フィールドの既存の値を見つけることができません。
Dim fld As DAO.Field
Dim t As DAO.TableDef
Dim fldVal as string (test variable to see if I can find value of field)
For Each t In cd.TableDefs
If t.Name = "PERSONS" Then
For Each fld In t.Fields
Just trying to find the existing value here
fldVal = fld.Value
If fld.Type = 10 And IsNull(fld) = True Then
fld.Value = ""
End If
Next
End If
Next