Bit columns store a 1 or a 0.
Entering 1 or 0 in a bit column gives the ERROR:
Invalid value for cell (row 42, column 17).
The changed value in this cell was not recognized as valid. .Net Framework Data Type: Boolean Error Message: String was not recognized as a valid Boolean.
Type a value appropriate for the data type or press ESC to cancel the change.
How can 1 or 0 NOT be a valid boolean?
Bit fields should allow 1 or 0.
bool b = 1;, it won't even compile. To solve your problem you will probably need to post more information.BITwhich allows 1 or 0. Your error (as indicated by the message) is coming from the .NET framework, where you can't convert 1 or 0 to a boolean.