Inhoudsopgave
IsNull Beschrijving
Wordt gebruikt om te controleren op een NULL-waarde.
Eenvoudige IsNull-voorbeelden
12 | Dim aMsgBox IsNull(a) |
Resultaat: False
123 | Dim aa = NulMsgBox IsNull(a) |
Resultaat: Waar
IsNull-syntaxis
In de VBA-editor kunt u "IsNull(" typen om de syntaxis voor de IsNull-functie te zien:
De functie IsNull bevat een argument:
Uitdrukking: Een uitdrukking die zal worden getest.
IsNull Functie Toegang tot VBA
De functie IsNull werkt hetzelfde in Access VBA als in Excel VBA.
Het is handig om te controleren op een NULL-waarde in een RecordSet-object.
123456789101112131415 | SubtoewijzenGSTTypeIfNull()Stel dbs = CurrentDb inStel rst = dbs.OpenRecordset("tblInvoices", dbOpenDynaset)Met eerst.Beweeg eerst.MoveLastDoen tot .EOF = False'Als GST Type null is, wijs er dan 1 aan toe.Als IsNull(rst.Fields("GSTType")) = True Danrst.Fields("GSTType") = 1Stop als.VerplaatsVolgendeLusEindigt metEinde sub |