Put IS NULL into SQL in VBA code

behedwin

Active Member
Joined
Dec 10, 2014
Messages
399
I have this sql statement in a query

Code:
SELECT Profile_Table.Profile_ID, Profile_Table.FirstName, Profile_Table.LastName, Profile_Table.Personnummer, Profile_Table.AnstalldSom, Profile_Table.JobbarPa, Profile_Table.WorkStartDate, Profile_Table.WorkEndDate, Profile_Table.JobbProcent, Profile_Table.AnstallningBelastar, Profile_Table.Mandag, Profile_Table.Tisdag, Profile_Table.Onsdag, Profile_Table.Torsdag, Profile_Table.Fredag, Profile_Table.Address1, Profile_Table.Address2, Profile_Table.ZipCode, Profile_Table.City, Profile_Table.Phone1, Profile_Table.Phone2, Profile_Table.Phone3, Profile_Table.Email1, Profile_Table.Email2, Profile_Table.Anstallningsform, Profile_Table.IKT_Ansvarig, Profile_Table.IT_Ansvarig, Profile_Table.Skyddsombud, Profile_Table.SBA_Ansvarig, Profile_Table.Forstelarare, Profile_Table.Arbetslagsledare, Profile_Table.Belastningsregistret, Profile_Table.Tystnadsplikt, Profile_Table.Aktuellt_Avtal, [firstname] & " " & [lastname] AS Fullname, Profile_Table.ProfileArchived
FROM Profile_Table
WHERE (((Profile_Table.ProfileArchived) Is Null));

i change this statement with VBA code to this

Code:
  strSource = "SELECT Profile_Table.Profile_ID, Profile_Table.FirstName, Profile_Table.LastName, Profile_Table.Personnummer, Profile_Table.AnstalldSom, Profile_Table.JobbarPa, Profile_Table.WorkEndDate, Profile_Table.JobbProcent " & _
    "FROM Profile_Table " & _
    "Where Profile_Table.Profile_ID Like '*" & Me.txtSearch.Text & "*' " _
    & "Or FirstName Like '*" & Me.txtSearch.Text & "*' " _
    & "Or LastName Like '*" & Me.txtSearch.Text & "*' " _
    & "Or Personnummer Like '*" & Me.txtSearch.Text & "*' " _
    & "Or Anstalldsom Like '*" & Me.txtSearch.Text & "*' " _
    & "Or JobbProcent Like '*" & Me.txtSearch.Text & "*' " _
    & "Or Anstallningsform Like '*" & Me.txtSearch.Text & "*' " _
    & "Or JobbarPa Like '*" & Me.txtSearch.Text & "*' "
      Me.ListPicker.RowSource = strSource


As you can see in the query sql statement there is also a WHERE statement with IS NULL
Profile_Table.ProfileArchived IS NULL

I cant figure out how to put this into my VBA code above.
How to add this to the WHERE lines.

The idea here is that IS NULL filter out cells with data in them.
So i want to do the same when i run the vba code that i use to search.
But if i just add it with an OR statement i dont think ill get the result i want.
 
Last edited:

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You can shorten something like this by assigning a control reference to a variable:

Code:
Dim strSearch As String

strSearch = Me.txtSearch.Text
....
"Where Profile_Table.Profile_ID Like '*" & strSearch & "*' " _
    & "Or FirstName Like '*" & strSearch & "*' " _ etc.

You're sure you want the Text property value of the control, and not it's value? The text property is only available when the control has the focus (otherwise you'll generate an error), plus, it is not always the same as the value property. The value property is the default property of a text box or combo, so .Value isn't even required.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,249
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top