vote up 1 vote down star

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.

flag

5 Answers

vote up 2 vote down check

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|flag
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
vote up 0 vote down

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|flag
vote up 0 vote down

Cannot delete my wrong answer ... sorry

link|flag
vote up 0 vote down

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

link|flag
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
vote up 0 vote down

Check out : http://articles.techrepublic.com.com/5100-10878_11-6125114.html

link|flag

Your Answer

Get an OpenID
or

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