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
-
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
5 hours, 22 minutes ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
1 hour, 6 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
3 hours, 56 minutes ago -
Discover the Best AI Tools for Everything
by
Alex5723
4 hours, 5 minutes ago -
Edge Seems To Be Gaining Weight
by
bbearren
4 hours, 48 minutes ago -
Rufus is available from the MSFT Store
by
PL1
2 hours, 16 minutes ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
1 day, 5 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
11 hours, 32 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
7 hours, 43 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
1 day ago -
Office gets current release
by
Susan Bradley
1 day, 3 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
2 days, 17 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
2 days, 2 hours ago -
Stop the OneDrive defaults
by
CWBillow
2 days, 18 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
3 days, 4 hours ago -
X Suspends Encrypted DMs
by
Alex5723
3 days, 6 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
3 days, 6 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
3 days, 7 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
3 days, 8 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
2 days, 20 hours ago -
Enabling Secureboot
by
ITguy
3 days, 3 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
3 days, 15 hours ago -
No more rounded corners??
by
CWBillow
3 days, 11 hours ago -
Android 15 and IPV6
by
Win7and10
3 days, 1 hour ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
4 days, 4 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
4 days, 7 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
4 days, 1 hour ago -
Windows Update orchestration platform to update all software
by
Alex5723
4 days, 14 hours ago -
May preview updates
by
Susan Bradley
4 days, 1 hour ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
3 days, 17 hours ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
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.