How about adding a check box (“allow null for agency”) to the form?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
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, 3 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
-
Have Copilot there but not taking over the screen in Word
by
CWBillow
3 hours, 59 minutes ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
1 day, 2 hours ago -
Are Macs immune?
by
Susan Bradley
23 hours, 44 minutes ago -
HP Envy and the Function keys
by
CWBillow
10 hours, 5 minutes ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
1 day, 13 hours ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
1 day, 13 hours ago -
Unable to update to version 22h2
by
04om
4 hours, 26 minutes ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
1 day, 21 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
1 day, 21 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
1 day, 7 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
2 days, 10 hours ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
1 day, 23 hours ago -
Is your battery draining?
by
Susan Bradley
10 hours, 24 minutes ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
4 hours, 1 minute ago -
Weasel Words Rule Too Many Data Breach Notifications
by
Nibbled To Death By Ducks
2 days, 14 hours ago -
Windows Command Prompt and Powershell will not open as Administrator
by
Gordski
19 minutes ago -
Intel Management Engine (Intel ME) Security Issue
by
PL1
1 day, 22 hours ago -
Old Geek Forced to Update. Buy a Win 11 PC? Yikes! How do I cope?
by
RonE22
1 day, 15 hours ago -
National scam day
by
Susan Bradley
21 hours, 36 minutes ago -
macOS Tahoe 26 the end of the road for Intel Macs, OCLP, Hackintosh
by
Alex5723
1 day, 18 hours ago -
Cyberattack on some Washington Post journalists’ email accounts
by
Bob99
3 days, 15 hours ago -
Tools to support internet discussions
by
Kathy Stevens
2 days, 3 hours ago -
How get Group Policy to allow specific Driver to download?
by
Tex265
3 days, 6 hours ago -
AI is good sometimes
by
Susan Bradley
3 days, 22 hours ago -
Mozilla quietly tests Perplexity AI as a New Firefox Search Option
by
Alex5723
3 days, 12 hours ago -
Perplexity Pro free for 12 mos for Samsung Galaxy phones
by
Patricia Grace
4 days, 22 hours ago -
June KB5060842 update broke DHCP server service
by
Alex5723
4 days, 21 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.06.02.123
by
Alex5723
5 days, 1 hour ago -
Excessive security alerts
by
WSSebastian42
3 days, 16 hours ago -
* CrystalDiskMark may shorten SSD/USB Memory life
by
Alex5723
5 days, 10 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.