How about adding a check box (“allow null for agency”) to the form?
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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, 1 month 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
-
AugLoop.All (TEST Augmentation Loop MSIT)
by
LarryK
4 hours, 17 minutes ago -
Boot Sequence for Dell Optiplex 7070 Tower
by
Serge Carniol
9 hours, 21 minutes ago -
OTT Upgrade Windows 11 to 24H2 on Unsupported Hardware
by
bbearren
12 hours, 54 minutes ago -
Inetpub can be tricked
by
Susan Bradley
14 hours, 13 minutes ago -
How merge Outlook 2016 .pst file w/into newly created Outlook 2024 install .pst?
by
Tex265
10 hours, 59 minutes ago -
FBI 2024 Internet Crime Report
by
Alex5723
16 hours, 43 minutes ago -
Perplexity CEO says its browser will track everything users do online
by
Alex5723
4 hours, 30 minutes ago -
Login issues with Windows Hello
by
CWBillow
1 day, 3 hours ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
15 hours, 43 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
1 day, 15 hours ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
1 day, 15 hours ago -
Google AI is now hallucinating idioms
by
Alex5723
1 day, 15 hours ago -
april update
by
69800
18 hours, 11 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
1 day, 16 hours ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
1 day, 17 hours ago -
WuMgr not loading?
by
LHiggins
12 hours, 51 minutes ago -
Word crashes when accessing Help
by
CWBillow
21 hours, 11 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
1 day, 16 hours ago -
Blank Inetpub folder
by
Susan Bradley
1 day, 14 hours ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
2 days, 3 hours ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
1 day, 13 hours ago -
Wait command?
by
CWBillow
1 day, 20 hours ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
2 days, 9 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
2 days, 16 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
3 days, 1 hour ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
3 days, 2 hours ago -
How to use Skype after May?
by
Joann
1 day, 11 hours ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
2 days, 21 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
3 days, 15 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
3 days, 16 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.