I'm using this sql statement to set a field to NULL if "N" exists in the Lab Table.Hold field. However, when this sql statement runs it appears a space is being set in the field vs having the field be completely NULL. SImiliar to prssing the space button on the key board is what is occurring.
sSQL = "UPDATE [Lab Table] SET [Lab Table].Hold= NULL WHERE [Lab Table].Hold='N';"
sSQL = "UPDATE [Lab Table] SET [Lab Table].Hold= NULL WHERE [Lab Table].Hold='N';"