up vote 1 down vote favorite
share [g+] share [fb]

I was wondering if there is a better way to cope with MS-Access' inability to handle NULL for boolean-values other than change the column-data-type to integer.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

I think you must use a number, and so, it seems does Allen Browne, Access MVP, in a response dated 17-Apr-07 10:16:35. http://www.eggheadcafe.com/software/aspnet/29743570/yesno-data-types.aspx

link|improve this answer
Thanks Remou, there are some good tips on Allen Browne's site :) – Florian Sep 17 '08 at 21:43
If you enjoy Allen Browne, you may also like Tony Toews. He is particularly good on corruption: granite.ab.ca/accsmstr.htm – Remou Sep 18 '08 at 8:25
feedback

Not that I've found :( I haven't programmed Access in awhile, but what I remember involves quite a lot of isNull checks.

link|improve this answer
Yes, Access can handle Null values for other data types, but when I link a table from a DB with boolean-types, Access treats Null like False. – Florian Sep 17 '08 at 21:36
feedback

I think it depends on how you want your app/solution to interpret said NULLs in your data.

Do you want to simply "ignore" them in a report... i.e. have them print out as blank spaces or newlines? In that case you can use the handy IsNull function along with the "immediate if" iif() in either the SQL builder or a column in the regular Access query designer as follows:

IIF(IsNull(BooleanColumnName), NewLine/BlankSpace/Whatever, BooleanColumnName)

On the other hand, if you want to consider the NULLs as "False" values, you had better update the column and just change them with something like:

Update table
SET BooleanColumnName = FALSE
WHERE BooleanColumnName IS NULL

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.