How about adding a check box (“allow null for agency”) to the form?
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Using Null in Listbox choice (A2k3, SP1)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Using Null in Listbox choice (A2k3, SP1)
- This topic has 8 replies, 4 voices, and was last updated 20 years, 2 months ago.
AuthorTopicWSpbrodsky
AskWoody LoungerMarch 16, 2005 at 3:05 pm #417149Viewing 1 reply threadAuthorReplies-
WSgdrezek
AskWoody LoungerMarch 16, 2005 at 3:16 pm #935174Thanks for the suggestion, but I have actually brought something like that up to the people I am doing this for and that didn’t fly with them. They are kinda “goofy” when it comes to things like this; i.e. extra keystrokes, “unnecessary” movement from using the keyboard to using the mouse, etc. So I said I’d try to make it part of the selection(s) from the listbox.
Thanks again.gdr
-
WSgdrezek
AskWoody LoungerMarch 16, 2005 at 3:48 pm #935169(Edited by gdrezek on 16-Mar-05 10:48. strAuthSQL should have been strSQL throughout the example)
Hi All,
I trying to be able to include IsNull along with tangible values for a search string. Basically I wish to reproduce
“WHERE NumberPKID = ” & lngCaseNumberPKID
” AND (AgencyPKID IN ” & “(” & strAgencies & “)”
” OR AgencyPKID IS NULL)”Following is an attempt at doing this:
strSQL = "SELECT DISTINCT ["there are ten fields selected] " strSQL = strSQL & "FROM qryFormCases " strSQL = strSQL & "WHERE CaseNumberPKID = " & lngIGICaseNumberPKID If Not ctl2.ItemsSelected(0) = 0 Then For Each itm2 In ctl2.ItemsSelected If Len(ctl2.ItemData(itm2)) 0 Then strAgencies = strAgencies & ctl2.ItemData(itm2) & ", " Else strSQL = strSQL & " OR AgencyPKID Is Null" End If Next itm2 strAgencies = Left(strAgencies, Len(strAgencies) - 2) strSQL = strSQL & " AND AgencyPKID IN " & "(" & strAgencies & ")" Else 'do nothing End If
Obviously I can’t seem to get this done correctly.
How is it possible to do this?
Thank you.gdr
-
WScharlotte
AskWoody LoungerMarch 16, 2005 at 3:35 pm #935182You can’t include Is Null in the list, you include it as part of the where condition.
Remove it from here:
strAuthSQL = strAuthSQL & " OR AgencyPKID Is Null"
And add it like this:
strAgencies = Left(strAgencies, Len(strAgencies) - 2)
strAuthSQL = strAuthSQL & " AND AgencyPKID IN " & "(" & strAgencies & ") OR AgencyPKID Is Null" -
WSgdrezek
AskWoody LoungerMarch 16, 2005 at 4:03 pm #935189Hi Charlotte,
After reading your reply I looked at my original post and realized that I had typos in the strSQL string. strAuthSql should have been changed to strSQL. I edited that post.
I am trying to add IsNull as a choice to the strSQL along with any Agency they may wish to search by. The IN() may have 3 Agencies as entries. They also may have (what I am trying for) 2 Agencies (or 1 as the case may be) to search by as well as “AgencyPKID Is Null”. It’s that part I’m having fun with.
Since I made the correction edit, does that make my question more clear, rather than the “mud” I threw out in the original post?
Thank you.gdr
-
-
WSHansV
AskWoody LoungerMarch 16, 2005 at 3:48 pm #935186Does this do what you want?
If Ctl2.ItemsSelected.Count > 0 Then
For Each itm2 In Ctl2.ItemsSelected
If Len(Ctl2.ItemData(itm2)) > 0 Then
strAgencies = strAgencies & Ctl2.ItemData(itm2) & “, ”
Else
strAuthSQL = “AgencyPKID Is Null”
End If
Next itm2
If Len(strAgencies) > 0 Then
strAgencies = “AgencyPKID IN (” & left(strAgencies, Len(strAgencies) – 2) & “)”
If Len(strAuthSQL) > 0 Then
strAgencies = strAgencies & ” OR ” & strAuthSQL
End If
ElseIf Len(strAuthSQL) > 0 Then
strAgencies = strAuthSQL
End If
If Len(strAgencies) > 0 Then
strSQL = strSQL & ” AND (” & strAgencies & “)”
End If
End If -
WSgdrezek
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgdrezek
AskWoody LoungerMarch 16, 2005 at 5:03 pm #935207Hi Hans,
Thanks!
All I needed to do was to ensure the string values corresponded with my setup and
added — strAgencyNotNull = “AgencyPKID IN ” & “(” & strAgencies & “)”
to your work and here you go. The code I am using:strSQL = "SELECT DISTINCT [again, 10 fields listed here] " strSQL = strSQL & "FROM qryFormCases " strSQL = strSQL & "WHERE CaseNumberPKID = " & lngCaseNumberPKID If Not ctl2.ItemsSelected(0) = 0 Then For Each itm2 In ctl2.ItemsSelected If Len(ctl2.ItemData(itm2)) 0 Then strAgencies = strAgencies & ctl2.ItemData(itm2) & ", " Else strAgencyNull = "AgencyPKID Is Null" End If Next itm2 If Len(strAgencies) > 0 Then strAgencies = Left(strAgencies, Len(strAgencies) - 2) strAgencyNotNull = "AgencyPKID IN " & "(" & strAgencies & ")" If Len(strAgencyNull) > 0 Then strAgencyNotNull = strAgencyNotNull & " OR " & strAgencyNull End If ElseIf Len(strAgencyNull) > 0 Then strAgencyNotNull = strAgencyNull End If If Len(strAgencyNotNull) > 0 Then strSQL = strSQL & " AND (" & strAgencyNotNull & ")" End If Else 'do nothing End If
So far it seems to work through all the various groupings I need.
Thanks again.gdr
-
-
-
-
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
FBI: Still Usןמע One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
2 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
5 hours, 19 minutes ago -
Stop the OneDrive defaults
by
CWBillow
51 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
10 hours, 47 minutes ago -
X Suspends Encrypted DMs
by
Alex5723
12 hours, 59 minutes ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
13 hours, 17 minutes ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
13 hours, 54 minutes ago -
OpenAI model sabotages shutdown code
by
Cybertooth
14 hours, 31 minutes ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
2 hours, 41 minutes ago -
Enabling Secureboot
by
ITguy
9 hours, 41 minutes ago -
Windows hosting exposes additional bugs
by
Susan Bradley
22 hours, 25 minutes ago -
No more rounded corners??
by
CWBillow
18 hours, 14 minutes ago -
Android 15 and IPV6
by
Win7and10
7 hours, 59 minutes ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
1 day, 10 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
1 day, 13 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
1 day, 8 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
1 day, 20 hours ago -
May preview updates
by
Susan Bradley
1 day, 8 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
23 hours, 45 minutes ago -
Just got this pop-up page while browsing
by
Alex5723
1 day, 12 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
1 day, 10 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
12 hours, 14 minutes ago -
At last – installation of 24H2
by
Botswana12
2 days, 12 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
9 hours, 1 minute ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
22 hours, 57 minutes ago -
Limited account permission error related to Windows Update
by
gtd12345
3 days, 13 hours ago -
Another test post
by
gtd12345
3 days, 14 hours ago -
Connect to someone else computer
by
wadeer
3 days, 8 hours ago -
Limit on User names?
by
CWBillow
3 days, 11 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.