IIF(ISNULL) for Yes/No DataType

vellaima

Well-known member
Joined
Jan 29, 2003
Messages
109
Hi,

Can anyone please tell me IIF(ISNULL) for Yes/No DataType in MS-ACCESS. Please do help me out.
 
SQL="Select modified from ABC"
Here modified is of datatype Yes/No in MS-ACCESS.
How to write IIF(ISNULL) Statement for this column?
 
I think youll find just checking to see if it is true or false will suffice
 
yes/no column

I think null is not applicable for this column,If selected yes or no,
if its no you have to take as null.(Or the default value differs)

Raju
 
You can directly check

If modified = True then..........if modified having value

If modified = False then........if modified not having value.

if its false is null.....else true...

let me know
 
I think the SQL which i have found it is a better solution. Since i am binding it to a checkbox inside ASP Repeater.
 
ok..

for checking null and assigning false..instead of that you can check = false...it should work...chk it out ...let me know

thanx
 
sql ..?

iif([modified] Is Null, False, True)

are you are using this in SQL statements ?
 
Back
Top